├── .gdbinit
├── .github
├── FUNDING.yml
└── workflows
│ ├── cmake-ubuntu.yml
│ └── cmake-windows.yml
├── .gitignore
├── CMakeLists.txt
├── LICENSE
├── README.md
├── cmake
├── Findlibairspy.cmake
├── Findlibrtlsdr.cmake
└── Findlibusb-1.0.cmake
├── dat
├── config
│ └── nfc-lab.ini
├── drivers
│ ├── amd64
│ │ ├── WUDFUpdate_01007.dll
│ │ ├── WdfCoInstaller01007.dll
│ │ └── WinUSBCoInstaller.dll
│ ├── dpinst-amd64.exe
│ ├── dpinst-x86.exe
│ ├── dsl_usb_instruments.inf
│ ├── winusbcompat.cat
│ ├── winusbcompat.inf
│ └── x86
│ │ ├── WUDFUpdate_01007.dll
│ │ ├── WdfCoInstaller01007.dll
│ │ └── WinUSBCoInstaller.dll
├── firmware
│ ├── DSLogicBasic.bin
│ ├── DSLogicPlus-pgl12-2.bin
│ ├── DSLogicPlus-pgl12.bin
│ ├── DSLogicPlus.bin
│ ├── DSLogicU2Basic-pgl12-2.bin
│ ├── DSLogicU2Basic-pgl12.bin
│ ├── DSLogicU2Basic.bin
│ ├── DSLogicU2Pro16.bin
│ ├── DSLogicU3Pro16.bin
│ └── DSLogicU3Pro32.bin
├── installer
│ ├── config.xml.in
│ ├── license.txt.in
│ ├── package.xml.in
│ └── script.js.in
└── scripts
│ ├── build-installer.ps1.in
│ └── build-runenv.ps1.in
├── debian
├── changelog
├── control
├── copyright
├── docs
├── rules
└── source
│ └── format
├── dll
├── airspy
│ ├── include
│ │ ├── airspy.h
│ │ └── airspy_commands.h
│ └── x86_64
│ │ ├── bin
│ │ ├── libairspy.dll
│ │ └── pthreadVC2.dll
│ │ └── lib
│ │ ├── libairspy.def
│ │ └── libairspy.dll.a
├── openssl
│ └── x86_64
│ │ └── bin
│ │ ├── libcrypto-1_1-x64.dll
│ │ └── libssl-1_1-x64.dll
├── readme.txt
├── rtlsdr
│ ├── include
│ │ ├── rtl-sdr.h
│ │ └── rtl-sdr_export.h
│ └── x86_64
│ │ ├── bin
│ │ └── librtlsdr.dll
│ │ └── lib
│ │ ├── librtlsdr.def
│ │ └── librtlsdr.dll.a
└── usb
│ ├── include
│ └── libusb.h
│ └── x86_64
│ ├── bin
│ └── libusb-1.0.dll
│ └── lib
│ ├── libusb-1.0.a
│ ├── libusb-1.0.def
│ └── libusb-1.0.dll.a
├── doc
├── clion-c++-formatter.xml
├── drawio
│ ├── nfc-decoder1.drawio
│ └── nfc-decoder2.drawio
├── img
│ ├── clion-toolchain-settings.png
│ ├── nfc-baseband-iq.png
│ ├── nfc-baseband-reqa.png
│ ├── nfc-decoder-example.png
│ ├── nfc-decoder-symbols.png
│ ├── nfc-demodulator-ask-request.png
│ ├── nfc-demodulator-bpsk-detector.png
│ ├── nfc-demodulator-bpsk-process.png
│ ├── nfc-demodulator-pattern-process.png
│ ├── nfc-demodulator-response.png
│ ├── nfc-demodulator-speed-detector.png
│ ├── nfc-lab-devices1.png
│ ├── nfc-lab-devices2.png
│ ├── nfc-lab-devices3.png
│ ├── nfc-lab-devices4.png
│ ├── nfc-lab-devices5.png
│ ├── nfc-lab-devices6.png
│ ├── nfc-lab-devices7.png
│ ├── nfc-lab-screenshot0.png
│ ├── nfc-lab-screenshot1.png
│ ├── nfc-lab-screenshot2.png
│ ├── nfc-lab-screenshot3.png
│ ├── nfc-lab-screenshot4.png
│ ├── nfc-lab-screenshot5.png
│ ├── nfc-lab-screenshot6.png
│ ├── nfc-lab-screenshot7.png
│ ├── nfc-symbol-correlation.png
│ ├── nfca-ask-miller.png
│ ├── nfca-ask-ook.png
│ ├── nfca-bpsk.png
│ ├── nfcb-ask-nrz.png
│ ├── nfcb-bpsk.png
│ ├── nfcf-manchester.png
│ ├── nfcf-observe.png
│ ├── nfcf-reverse.png
│ ├── nfcv-ppm2.png
│ ├── signal-pre-process-example.png
│ └── signal-pre-process.png
└── pdf
│ ├── AN10833.pdf
│ ├── AN2056.pdf
│ ├── ISO13239.pdf
│ ├── ISO14443-2.pdf
│ ├── ISO14443-3.pdf
│ ├── ISO14443-4.pdf
│ ├── ISO15693-2.pdf
│ ├── ISO15693-3.pdf
│ ├── ISO15693-lri512.pdf
│ ├── ISO18092-2013.pdf
│ ├── ISO7816-3-2006.pdf
│ ├── ISO7816-4-2005.pdf
│ ├── JIS.X.6319-4.Sony.Felica.pdf
│ ├── NFC Analog Specification.pdf
│ ├── NFC Digital Protocol.pdf
│ ├── NFC Technology and Measurements.pdf
│ ├── NFCForum-TS-Type-1-Tag_1.1.pdf
│ ├── NFCForum-TS-Type-2-Tag_1.1.pdf
│ ├── NFCForum-TS-Type-3-Tag_1.1.pdf
│ └── NFCForum-TS-Type-4-Tag_2.0.pdf
├── src
├── CMakeLists.txt
├── nfc-app
│ ├── CMakeLists.txt
│ ├── app-qt
│ │ ├── CMakeLists.txt
│ │ └── src
│ │ │ └── main
│ │ │ ├── assets
│ │ │ ├── app
│ │ │ │ ├── app.qrc
│ │ │ │ └── rc
│ │ │ │ │ ├── nfc-lab.desktop
│ │ │ │ │ ├── nfc-lab.ico
│ │ │ │ │ ├── nfc-lab.png
│ │ │ │ │ └── nfc-lab.svg
│ │ │ └── theme
│ │ │ │ ├── LICENSE.rst
│ │ │ │ ├── README.rst
│ │ │ │ ├── dark
│ │ │ │ ├── icons
│ │ │ │ │ ├── actions
│ │ │ │ │ │ └── scalable
│ │ │ │ │ │ │ ├── action-about.svg
│ │ │ │ │ │ │ ├── action-clear.svg
│ │ │ │ │ │ │ ├── action-decoder.svg
│ │ │ │ │ │ │ ├── action-filter.svg
│ │ │ │ │ │ │ ├── action-follow.svg
│ │ │ │ │ │ │ ├── action-help.svg
│ │ │ │ │ │ │ ├── action-listen.svg
│ │ │ │ │ │ │ ├── action-logic.svg
│ │ │ │ │ │ │ ├── action-open.svg
│ │ │ │ │ │ │ ├── action-radio.svg
│ │ │ │ │ │ │ ├── action-record.svg
│ │ │ │ │ │ │ ├── action-refresh.svg
│ │ │ │ │ │ │ ├── action-register.svg
│ │ │ │ │ │ │ ├── action-save.svg
│ │ │ │ │ │ │ ├── action-selected.svg
│ │ │ │ │ │ │ ├── action-setup.svg
│ │ │ │ │ │ │ ├── action-spectrum.svg
│ │ │ │ │ │ │ ├── action-stop.svg
│ │ │ │ │ │ │ ├── action-stream.svg
│ │ │ │ │ │ │ ├── action-time.svg
│ │ │ │ │ │ │ ├── action-wide.svg
│ │ │ │ │ │ │ └── action-zoom.svg
│ │ │ │ │ ├── arrows
│ │ │ │ │ │ └── scalable
│ │ │ │ │ │ │ ├── caret-down-filled.svg
│ │ │ │ │ │ │ ├── caret-up-down-filled.svg
│ │ │ │ │ │ │ ├── caret-up-filled.svg
│ │ │ │ │ │ │ ├── carrier-off.svg
│ │ │ │ │ │ │ ├── carrier-on.svg
│ │ │ │ │ │ │ ├── frame-exchange.svg
│ │ │ │ │ │ │ ├── frame-request.svg
│ │ │ │ │ │ │ ├── frame-response.svg
│ │ │ │ │ │ │ ├── frame-startup.svg
│ │ │ │ │ │ │ ├── rst-high.svg
│ │ │ │ │ │ │ ├── rst-low.svg
│ │ │ │ │ │ │ ├── vcc-high.svg
│ │ │ │ │ │ │ └── vcc-low.svg
│ │ │ │ │ ├── filter
│ │ │ │ │ │ └── scalable
│ │ │ │ │ │ │ ├── filter-empty.svg
│ │ │ │ │ │ │ ├── filter-filled-void.svg
│ │ │ │ │ │ │ ├── filter-filled.svg
│ │ │ │ │ │ │ ├── filter-off.svg
│ │ │ │ │ │ │ ├── match-bytes.svg
│ │ │ │ │ │ │ ├── match-regex.svg
│ │ │ │ │ │ │ ├── math-greater.svg
│ │ │ │ │ │ │ └── math-lower.svg
│ │ │ │ │ ├── flags
│ │ │ │ │ │ └── scalable
│ │ │ │ │ │ │ ├── alert-circle-filled.svg
│ │ │ │ │ │ │ ├── alert-triangle-filled.svg
│ │ │ │ │ │ │ ├── lock-flag-filled.svg
│ │ │ │ │ │ │ └── row-remove.svg
│ │ │ │ │ ├── icons.qrc
│ │ │ │ │ └── index.theme
│ │ │ │ └── style
│ │ │ │ │ ├── rc
│ │ │ │ │ ├── .keep
│ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ ├── arrow_down@2x.png
│ │ │ │ │ ├── arrow_down_disabled.png
│ │ │ │ │ ├── arrow_down_disabled@2x.png
│ │ │ │ │ ├── arrow_down_focus.png
│ │ │ │ │ ├── arrow_down_focus@2x.png
│ │ │ │ │ ├── arrow_down_pressed.png
│ │ │ │ │ ├── arrow_down_pressed@2x.png
│ │ │ │ │ ├── arrow_left.png
│ │ │ │ │ ├── arrow_left@2x.png
│ │ │ │ │ ├── arrow_left_disabled.png
│ │ │ │ │ ├── arrow_left_disabled@2x.png
│ │ │ │ │ ├── arrow_left_focus.png
│ │ │ │ │ ├── arrow_left_focus@2x.png
│ │ │ │ │ ├── arrow_left_pressed.png
│ │ │ │ │ ├── arrow_left_pressed@2x.png
│ │ │ │ │ ├── arrow_right.png
│ │ │ │ │ ├── arrow_right@2x.png
│ │ │ │ │ ├── arrow_right_disabled.png
│ │ │ │ │ ├── arrow_right_disabled@2x.png
│ │ │ │ │ ├── arrow_right_focus.png
│ │ │ │ │ ├── arrow_right_focus@2x.png
│ │ │ │ │ ├── arrow_right_pressed.png
│ │ │ │ │ ├── arrow_right_pressed@2x.png
│ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ ├── arrow_up@2x.png
│ │ │ │ │ ├── arrow_up_disabled.png
│ │ │ │ │ ├── arrow_up_disabled@2x.png
│ │ │ │ │ ├── arrow_up_focus.png
│ │ │ │ │ ├── arrow_up_focus@2x.png
│ │ │ │ │ ├── arrow_up_pressed.png
│ │ │ │ │ ├── arrow_up_pressed@2x.png
│ │ │ │ │ ├── base_icon.png
│ │ │ │ │ ├── base_icon@2x.png
│ │ │ │ │ ├── base_icon_disabled.png
│ │ │ │ │ ├── base_icon_disabled@2x.png
│ │ │ │ │ ├── base_icon_focus.png
│ │ │ │ │ ├── base_icon_focus@2x.png
│ │ │ │ │ ├── base_icon_pressed.png
│ │ │ │ │ ├── base_icon_pressed@2x.png
│ │ │ │ │ ├── branch_closed.png
│ │ │ │ │ ├── branch_closed@2x.png
│ │ │ │ │ ├── branch_closed_disabled.png
│ │ │ │ │ ├── branch_closed_disabled@2x.png
│ │ │ │ │ ├── branch_closed_focus.png
│ │ │ │ │ ├── branch_closed_focus@2x.png
│ │ │ │ │ ├── branch_closed_pressed.png
│ │ │ │ │ ├── branch_closed_pressed@2x.png
│ │ │ │ │ ├── branch_end.png
│ │ │ │ │ ├── branch_end@2x.png
│ │ │ │ │ ├── branch_end_disabled.png
│ │ │ │ │ ├── branch_end_disabled@2x.png
│ │ │ │ │ ├── branch_end_focus.png
│ │ │ │ │ ├── branch_end_focus@2x.png
│ │ │ │ │ ├── branch_end_pressed.png
│ │ │ │ │ ├── branch_end_pressed@2x.png
│ │ │ │ │ ├── branch_line.png
│ │ │ │ │ ├── branch_line@2x.png
│ │ │ │ │ ├── branch_line_disabled.png
│ │ │ │ │ ├── branch_line_disabled@2x.png
│ │ │ │ │ ├── branch_line_focus.png
│ │ │ │ │ ├── branch_line_focus@2x.png
│ │ │ │ │ ├── branch_line_pressed.png
│ │ │ │ │ ├── branch_line_pressed@2x.png
│ │ │ │ │ ├── branch_more.png
│ │ │ │ │ ├── branch_more@2x.png
│ │ │ │ │ ├── branch_more_disabled.png
│ │ │ │ │ ├── branch_more_disabled@2x.png
│ │ │ │ │ ├── branch_more_focus.png
│ │ │ │ │ ├── branch_more_focus@2x.png
│ │ │ │ │ ├── branch_more_pressed.png
│ │ │ │ │ ├── branch_more_pressed@2x.png
│ │ │ │ │ ├── branch_open.png
│ │ │ │ │ ├── branch_open@2x.png
│ │ │ │ │ ├── branch_open_disabled.png
│ │ │ │ │ ├── branch_open_disabled@2x.png
│ │ │ │ │ ├── branch_open_focus.png
│ │ │ │ │ ├── branch_open_focus@2x.png
│ │ │ │ │ ├── branch_open_pressed.png
│ │ │ │ │ ├── branch_open_pressed@2x.png
│ │ │ │ │ ├── checkbox_checked.png
│ │ │ │ │ ├── checkbox_checked@2x.png
│ │ │ │ │ ├── checkbox_checked_disabled.png
│ │ │ │ │ ├── checkbox_checked_disabled@2x.png
│ │ │ │ │ ├── checkbox_checked_focus.png
│ │ │ │ │ ├── checkbox_checked_focus@2x.png
│ │ │ │ │ ├── checkbox_checked_pressed.png
│ │ │ │ │ ├── checkbox_checked_pressed@2x.png
│ │ │ │ │ ├── checkbox_indeterminate.png
│ │ │ │ │ ├── checkbox_indeterminate@2x.png
│ │ │ │ │ ├── checkbox_indeterminate_disabled.png
│ │ │ │ │ ├── checkbox_indeterminate_disabled@2x.png
│ │ │ │ │ ├── checkbox_indeterminate_focus.png
│ │ │ │ │ ├── checkbox_indeterminate_focus@2x.png
│ │ │ │ │ ├── checkbox_indeterminate_pressed.png
│ │ │ │ │ ├── checkbox_indeterminate_pressed@2x.png
│ │ │ │ │ ├── checkbox_unchecked.png
│ │ │ │ │ ├── checkbox_unchecked@2x.png
│ │ │ │ │ ├── checkbox_unchecked_disabled.png
│ │ │ │ │ ├── checkbox_unchecked_disabled@2x.png
│ │ │ │ │ ├── checkbox_unchecked_focus.png
│ │ │ │ │ ├── checkbox_unchecked_focus@2x.png
│ │ │ │ │ ├── checkbox_unchecked_pressed.png
│ │ │ │ │ ├── checkbox_unchecked_pressed@2x.png
│ │ │ │ │ ├── line_horizontal.png
│ │ │ │ │ ├── line_horizontal@2x.png
│ │ │ │ │ ├── line_horizontal_disabled.png
│ │ │ │ │ ├── line_horizontal_disabled@2x.png
│ │ │ │ │ ├── line_horizontal_focus.png
│ │ │ │ │ ├── line_horizontal_focus@2x.png
│ │ │ │ │ ├── line_horizontal_pressed.png
│ │ │ │ │ ├── line_horizontal_pressed@2x.png
│ │ │ │ │ ├── line_vertical.png
│ │ │ │ │ ├── line_vertical@2x.png
│ │ │ │ │ ├── line_vertical_disabled.png
│ │ │ │ │ ├── line_vertical_disabled@2x.png
│ │ │ │ │ ├── line_vertical_focus.png
│ │ │ │ │ ├── line_vertical_focus@2x.png
│ │ │ │ │ ├── line_vertical_pressed.png
│ │ │ │ │ ├── line_vertical_pressed@2x.png
│ │ │ │ │ ├── radio_checked.png
│ │ │ │ │ ├── radio_checked@2x.png
│ │ │ │ │ ├── radio_checked_disabled.png
│ │ │ │ │ ├── radio_checked_disabled@2x.png
│ │ │ │ │ ├── radio_checked_focus.png
│ │ │ │ │ ├── radio_checked_focus@2x.png
│ │ │ │ │ ├── radio_checked_pressed.png
│ │ │ │ │ ├── radio_checked_pressed@2x.png
│ │ │ │ │ ├── radio_unchecked.png
│ │ │ │ │ ├── radio_unchecked@2x.png
│ │ │ │ │ ├── radio_unchecked_disabled.png
│ │ │ │ │ ├── radio_unchecked_disabled@2x.png
│ │ │ │ │ ├── radio_unchecked_focus.png
│ │ │ │ │ ├── radio_unchecked_focus@2x.png
│ │ │ │ │ ├── radio_unchecked_pressed.png
│ │ │ │ │ ├── radio_unchecked_pressed@2x.png
│ │ │ │ │ ├── toolbar_move_horizontal.png
│ │ │ │ │ ├── toolbar_move_horizontal@2x.png
│ │ │ │ │ ├── toolbar_move_horizontal_disabled.png
│ │ │ │ │ ├── toolbar_move_horizontal_disabled@2x.png
│ │ │ │ │ ├── toolbar_move_horizontal_focus.png
│ │ │ │ │ ├── toolbar_move_horizontal_focus@2x.png
│ │ │ │ │ ├── toolbar_move_horizontal_pressed.png
│ │ │ │ │ ├── toolbar_move_horizontal_pressed@2x.png
│ │ │ │ │ ├── toolbar_move_vertical.png
│ │ │ │ │ ├── toolbar_move_vertical@2x.png
│ │ │ │ │ ├── toolbar_move_vertical_disabled.png
│ │ │ │ │ ├── toolbar_move_vertical_disabled@2x.png
│ │ │ │ │ ├── toolbar_move_vertical_focus.png
│ │ │ │ │ ├── toolbar_move_vertical_focus@2x.png
│ │ │ │ │ ├── toolbar_move_vertical_pressed.png
│ │ │ │ │ ├── toolbar_move_vertical_pressed@2x.png
│ │ │ │ │ ├── toolbar_separator_horizontal.png
│ │ │ │ │ ├── toolbar_separator_horizontal@2x.png
│ │ │ │ │ ├── toolbar_separator_horizontal_disabled.png
│ │ │ │ │ ├── toolbar_separator_horizontal_disabled@2x.png
│ │ │ │ │ ├── toolbar_separator_horizontal_focus.png
│ │ │ │ │ ├── toolbar_separator_horizontal_focus@2x.png
│ │ │ │ │ ├── toolbar_separator_horizontal_pressed.png
│ │ │ │ │ ├── toolbar_separator_horizontal_pressed@2x.png
│ │ │ │ │ ├── toolbar_separator_vertical.png
│ │ │ │ │ ├── toolbar_separator_vertical@2x.png
│ │ │ │ │ ├── toolbar_separator_vertical_disabled.png
│ │ │ │ │ ├── toolbar_separator_vertical_disabled@2x.png
│ │ │ │ │ ├── toolbar_separator_vertical_focus.png
│ │ │ │ │ ├── toolbar_separator_vertical_focus@2x.png
│ │ │ │ │ ├── toolbar_separator_vertical_pressed.png
│ │ │ │ │ ├── toolbar_separator_vertical_pressed@2x.png
│ │ │ │ │ ├── transparent.png
│ │ │ │ │ ├── transparent@2x.png
│ │ │ │ │ ├── transparent_disabled.png
│ │ │ │ │ ├── transparent_disabled@2x.png
│ │ │ │ │ ├── transparent_focus.png
│ │ │ │ │ ├── transparent_focus@2x.png
│ │ │ │ │ ├── transparent_pressed.png
│ │ │ │ │ ├── transparent_pressed@2x.png
│ │ │ │ │ ├── window_close.png
│ │ │ │ │ ├── window_close@2x.png
│ │ │ │ │ ├── window_close_disabled.png
│ │ │ │ │ ├── window_close_disabled@2x.png
│ │ │ │ │ ├── window_close_focus.png
│ │ │ │ │ ├── window_close_focus@2x.png
│ │ │ │ │ ├── window_close_pressed.png
│ │ │ │ │ ├── window_close_pressed@2x.png
│ │ │ │ │ ├── window_grip.png
│ │ │ │ │ ├── window_grip@2x.png
│ │ │ │ │ ├── window_grip_disabled.png
│ │ │ │ │ ├── window_grip_disabled@2x.png
│ │ │ │ │ ├── window_grip_focus.png
│ │ │ │ │ ├── window_grip_focus@2x.png
│ │ │ │ │ ├── window_grip_pressed.png
│ │ │ │ │ ├── window_grip_pressed@2x.png
│ │ │ │ │ ├── window_minimize.png
│ │ │ │ │ ├── window_minimize@2x.png
│ │ │ │ │ ├── window_minimize_disabled.png
│ │ │ │ │ ├── window_minimize_disabled@2x.png
│ │ │ │ │ ├── window_minimize_focus.png
│ │ │ │ │ ├── window_minimize_focus@2x.png
│ │ │ │ │ ├── window_minimize_pressed.png
│ │ │ │ │ ├── window_minimize_pressed@2x.png
│ │ │ │ │ ├── window_undock.png
│ │ │ │ │ ├── window_undock@2x.png
│ │ │ │ │ ├── window_undock_disabled.png
│ │ │ │ │ ├── window_undock_disabled@2x.png
│ │ │ │ │ ├── window_undock_focus.png
│ │ │ │ │ ├── window_undock_focus@2x.png
│ │ │ │ │ ├── window_undock_pressed.png
│ │ │ │ │ └── window_undock_pressed@2x.png
│ │ │ │ │ ├── style.qrc
│ │ │ │ │ └── style.qss
│ │ │ │ └── light
│ │ │ │ ├── icons
│ │ │ │ ├── actions
│ │ │ │ │ ├── 24
│ │ │ │ │ │ ├── action-listen.png
│ │ │ │ │ │ ├── action-record.png
│ │ │ │ │ │ └── action-stop.png
│ │ │ │ │ └── 48
│ │ │ │ │ │ ├── action-clear.png
│ │ │ │ │ │ ├── action-filter.png
│ │ │ │ │ │ ├── action-follow.png
│ │ │ │ │ │ ├── action-open.png
│ │ │ │ │ │ ├── action-save.png
│ │ │ │ │ │ ├── action-setup.png
│ │ │ │ │ │ └── action-time.png
│ │ │ │ ├── arrows
│ │ │ │ │ └── 16
│ │ │ │ │ │ ├── arrow-blue.png
│ │ │ │ │ │ ├── arrow-green.png
│ │ │ │ │ │ └── arrow-red.png
│ │ │ │ ├── icons.qrc
│ │ │ │ ├── index.theme
│ │ │ │ └── status
│ │ │ │ │ └── 16
│ │ │ │ │ ├── encrypted-flag.png
│ │ │ │ │ └── warning-flag.png
│ │ │ │ └── style
│ │ │ │ ├── rc
│ │ │ │ ├── .keep
│ │ │ │ ├── arrow_down.png
│ │ │ │ ├── arrow_down@2x.png
│ │ │ │ ├── arrow_down_disabled.png
│ │ │ │ ├── arrow_down_disabled@2x.png
│ │ │ │ ├── arrow_down_focus.png
│ │ │ │ ├── arrow_down_focus@2x.png
│ │ │ │ ├── arrow_down_pressed.png
│ │ │ │ ├── arrow_down_pressed@2x.png
│ │ │ │ ├── arrow_left.png
│ │ │ │ ├── arrow_left@2x.png
│ │ │ │ ├── arrow_left_disabled.png
│ │ │ │ ├── arrow_left_disabled@2x.png
│ │ │ │ ├── arrow_left_focus.png
│ │ │ │ ├── arrow_left_focus@2x.png
│ │ │ │ ├── arrow_left_pressed.png
│ │ │ │ ├── arrow_left_pressed@2x.png
│ │ │ │ ├── arrow_right.png
│ │ │ │ ├── arrow_right@2x.png
│ │ │ │ ├── arrow_right_disabled.png
│ │ │ │ ├── arrow_right_disabled@2x.png
│ │ │ │ ├── arrow_right_focus.png
│ │ │ │ ├── arrow_right_focus@2x.png
│ │ │ │ ├── arrow_right_pressed.png
│ │ │ │ ├── arrow_right_pressed@2x.png
│ │ │ │ ├── arrow_up.png
│ │ │ │ ├── arrow_up@2x.png
│ │ │ │ ├── arrow_up_disabled.png
│ │ │ │ ├── arrow_up_disabled@2x.png
│ │ │ │ ├── arrow_up_focus.png
│ │ │ │ ├── arrow_up_focus@2x.png
│ │ │ │ ├── arrow_up_pressed.png
│ │ │ │ ├── arrow_up_pressed@2x.png
│ │ │ │ ├── base_icon.png
│ │ │ │ ├── base_icon@2x.png
│ │ │ │ ├── base_icon_disabled.png
│ │ │ │ ├── base_icon_disabled@2x.png
│ │ │ │ ├── base_icon_focus.png
│ │ │ │ ├── base_icon_focus@2x.png
│ │ │ │ ├── base_icon_pressed.png
│ │ │ │ ├── base_icon_pressed@2x.png
│ │ │ │ ├── branch_closed.png
│ │ │ │ ├── branch_closed@2x.png
│ │ │ │ ├── branch_closed_disabled.png
│ │ │ │ ├── branch_closed_disabled@2x.png
│ │ │ │ ├── branch_closed_focus.png
│ │ │ │ ├── branch_closed_focus@2x.png
│ │ │ │ ├── branch_closed_pressed.png
│ │ │ │ ├── branch_closed_pressed@2x.png
│ │ │ │ ├── branch_end.png
│ │ │ │ ├── branch_end@2x.png
│ │ │ │ ├── branch_end_disabled.png
│ │ │ │ ├── branch_end_disabled@2x.png
│ │ │ │ ├── branch_end_focus.png
│ │ │ │ ├── branch_end_focus@2x.png
│ │ │ │ ├── branch_end_pressed.png
│ │ │ │ ├── branch_end_pressed@2x.png
│ │ │ │ ├── branch_line.png
│ │ │ │ ├── branch_line@2x.png
│ │ │ │ ├── branch_line_disabled.png
│ │ │ │ ├── branch_line_disabled@2x.png
│ │ │ │ ├── branch_line_focus.png
│ │ │ │ ├── branch_line_focus@2x.png
│ │ │ │ ├── branch_line_pressed.png
│ │ │ │ ├── branch_line_pressed@2x.png
│ │ │ │ ├── branch_more.png
│ │ │ │ ├── branch_more@2x.png
│ │ │ │ ├── branch_more_disabled.png
│ │ │ │ ├── branch_more_disabled@2x.png
│ │ │ │ ├── branch_more_focus.png
│ │ │ │ ├── branch_more_focus@2x.png
│ │ │ │ ├── branch_more_pressed.png
│ │ │ │ ├── branch_more_pressed@2x.png
│ │ │ │ ├── branch_open.png
│ │ │ │ ├── branch_open@2x.png
│ │ │ │ ├── branch_open_disabled.png
│ │ │ │ ├── branch_open_disabled@2x.png
│ │ │ │ ├── branch_open_focus.png
│ │ │ │ ├── branch_open_focus@2x.png
│ │ │ │ ├── branch_open_pressed.png
│ │ │ │ ├── branch_open_pressed@2x.png
│ │ │ │ ├── checkbox_checked.png
│ │ │ │ ├── checkbox_checked@2x.png
│ │ │ │ ├── checkbox_checked_disabled.png
│ │ │ │ ├── checkbox_checked_disabled@2x.png
│ │ │ │ ├── checkbox_checked_focus.png
│ │ │ │ ├── checkbox_checked_focus@2x.png
│ │ │ │ ├── checkbox_checked_pressed.png
│ │ │ │ ├── checkbox_checked_pressed@2x.png
│ │ │ │ ├── checkbox_indeterminate.png
│ │ │ │ ├── checkbox_indeterminate@2x.png
│ │ │ │ ├── checkbox_indeterminate_disabled.png
│ │ │ │ ├── checkbox_indeterminate_disabled@2x.png
│ │ │ │ ├── checkbox_indeterminate_focus.png
│ │ │ │ ├── checkbox_indeterminate_focus@2x.png
│ │ │ │ ├── checkbox_indeterminate_pressed.png
│ │ │ │ ├── checkbox_indeterminate_pressed@2x.png
│ │ │ │ ├── checkbox_unchecked.png
│ │ │ │ ├── checkbox_unchecked@2x.png
│ │ │ │ ├── checkbox_unchecked_disabled.png
│ │ │ │ ├── checkbox_unchecked_disabled@2x.png
│ │ │ │ ├── checkbox_unchecked_focus.png
│ │ │ │ ├── checkbox_unchecked_focus@2x.png
│ │ │ │ ├── checkbox_unchecked_pressed.png
│ │ │ │ ├── checkbox_unchecked_pressed@2x.png
│ │ │ │ ├── line_horizontal.png
│ │ │ │ ├── line_horizontal@2x.png
│ │ │ │ ├── line_horizontal_disabled.png
│ │ │ │ ├── line_horizontal_disabled@2x.png
│ │ │ │ ├── line_horizontal_focus.png
│ │ │ │ ├── line_horizontal_focus@2x.png
│ │ │ │ ├── line_horizontal_pressed.png
│ │ │ │ ├── line_horizontal_pressed@2x.png
│ │ │ │ ├── line_vertical.png
│ │ │ │ ├── line_vertical@2x.png
│ │ │ │ ├── line_vertical_disabled.png
│ │ │ │ ├── line_vertical_disabled@2x.png
│ │ │ │ ├── line_vertical_focus.png
│ │ │ │ ├── line_vertical_focus@2x.png
│ │ │ │ ├── line_vertical_pressed.png
│ │ │ │ ├── line_vertical_pressed@2x.png
│ │ │ │ ├── radio_checked.png
│ │ │ │ ├── radio_checked@2x.png
│ │ │ │ ├── radio_checked_disabled.png
│ │ │ │ ├── radio_checked_disabled@2x.png
│ │ │ │ ├── radio_checked_focus.png
│ │ │ │ ├── radio_checked_focus@2x.png
│ │ │ │ ├── radio_checked_pressed.png
│ │ │ │ ├── radio_checked_pressed@2x.png
│ │ │ │ ├── radio_unchecked.png
│ │ │ │ ├── radio_unchecked@2x.png
│ │ │ │ ├── radio_unchecked_disabled.png
│ │ │ │ ├── radio_unchecked_disabled@2x.png
│ │ │ │ ├── radio_unchecked_focus.png
│ │ │ │ ├── radio_unchecked_focus@2x.png
│ │ │ │ ├── radio_unchecked_pressed.png
│ │ │ │ ├── radio_unchecked_pressed@2x.png
│ │ │ │ ├── toolbar_move_horizontal.png
│ │ │ │ ├── toolbar_move_horizontal@2x.png
│ │ │ │ ├── toolbar_move_horizontal_disabled.png
│ │ │ │ ├── toolbar_move_horizontal_disabled@2x.png
│ │ │ │ ├── toolbar_move_horizontal_focus.png
│ │ │ │ ├── toolbar_move_horizontal_focus@2x.png
│ │ │ │ ├── toolbar_move_horizontal_pressed.png
│ │ │ │ ├── toolbar_move_horizontal_pressed@2x.png
│ │ │ │ ├── toolbar_move_vertical.png
│ │ │ │ ├── toolbar_move_vertical@2x.png
│ │ │ │ ├── toolbar_move_vertical_disabled.png
│ │ │ │ ├── toolbar_move_vertical_disabled@2x.png
│ │ │ │ ├── toolbar_move_vertical_focus.png
│ │ │ │ ├── toolbar_move_vertical_focus@2x.png
│ │ │ │ ├── toolbar_move_vertical_pressed.png
│ │ │ │ ├── toolbar_move_vertical_pressed@2x.png
│ │ │ │ ├── toolbar_separator_horizontal.png
│ │ │ │ ├── toolbar_separator_horizontal@2x.png
│ │ │ │ ├── toolbar_separator_horizontal_disabled.png
│ │ │ │ ├── toolbar_separator_horizontal_disabled@2x.png
│ │ │ │ ├── toolbar_separator_horizontal_focus.png
│ │ │ │ ├── toolbar_separator_horizontal_focus@2x.png
│ │ │ │ ├── toolbar_separator_horizontal_pressed.png
│ │ │ │ ├── toolbar_separator_horizontal_pressed@2x.png
│ │ │ │ ├── toolbar_separator_vertical.png
│ │ │ │ ├── toolbar_separator_vertical@2x.png
│ │ │ │ ├── toolbar_separator_vertical_disabled.png
│ │ │ │ ├── toolbar_separator_vertical_disabled@2x.png
│ │ │ │ ├── toolbar_separator_vertical_focus.png
│ │ │ │ ├── toolbar_separator_vertical_focus@2x.png
│ │ │ │ ├── toolbar_separator_vertical_pressed.png
│ │ │ │ ├── toolbar_separator_vertical_pressed@2x.png
│ │ │ │ ├── transparent.png
│ │ │ │ ├── transparent@2x.png
│ │ │ │ ├── transparent_disabled.png
│ │ │ │ ├── transparent_disabled@2x.png
│ │ │ │ ├── transparent_focus.png
│ │ │ │ ├── transparent_focus@2x.png
│ │ │ │ ├── transparent_pressed.png
│ │ │ │ ├── transparent_pressed@2x.png
│ │ │ │ ├── window_close.png
│ │ │ │ ├── window_close@2x.png
│ │ │ │ ├── window_close_disabled.png
│ │ │ │ ├── window_close_disabled@2x.png
│ │ │ │ ├── window_close_focus.png
│ │ │ │ ├── window_close_focus@2x.png
│ │ │ │ ├── window_close_pressed.png
│ │ │ │ ├── window_close_pressed@2x.png
│ │ │ │ ├── window_grip.png
│ │ │ │ ├── window_grip@2x.png
│ │ │ │ ├── window_grip_disabled.png
│ │ │ │ ├── window_grip_disabled@2x.png
│ │ │ │ ├── window_grip_focus.png
│ │ │ │ ├── window_grip_focus@2x.png
│ │ │ │ ├── window_grip_pressed.png
│ │ │ │ ├── window_grip_pressed@2x.png
│ │ │ │ ├── window_minimize.png
│ │ │ │ ├── window_minimize@2x.png
│ │ │ │ ├── window_minimize_disabled.png
│ │ │ │ ├── window_minimize_disabled@2x.png
│ │ │ │ ├── window_minimize_focus.png
│ │ │ │ ├── window_minimize_focus@2x.png
│ │ │ │ ├── window_minimize_pressed.png
│ │ │ │ ├── window_minimize_pressed@2x.png
│ │ │ │ ├── window_undock.png
│ │ │ │ ├── window_undock@2x.png
│ │ │ │ ├── window_undock_disabled.png
│ │ │ │ ├── window_undock_disabled@2x.png
│ │ │ │ ├── window_undock_focus.png
│ │ │ │ ├── window_undock_focus@2x.png
│ │ │ │ ├── window_undock_pressed.png
│ │ │ │ └── window_undock_pressed@2x.png
│ │ │ │ ├── style.qrc
│ │ │ │ └── style.qss
│ │ │ └── cpp
│ │ │ ├── .gitignore
│ │ │ ├── 3party
│ │ │ └── customplot
│ │ │ │ ├── GPL.txt
│ │ │ │ ├── QCustomPlot.cpp
│ │ │ │ ├── QCustomPlot.h
│ │ │ │ └── changelog.txt
│ │ │ ├── QtApplication.cpp
│ │ │ ├── QtApplication.h
│ │ │ ├── QtConfig.h.in
│ │ │ ├── QtDecoder.cpp
│ │ │ ├── QtDecoder.h
│ │ │ ├── QtMemory.cpp
│ │ │ ├── QtMemory.h
│ │ │ ├── QtWindow.cpp
│ │ │ ├── QtWindow.h
│ │ │ ├── QtWindow.ui
│ │ │ ├── dialogs
│ │ │ ├── ConfigDialog.cpp
│ │ │ ├── ConfigDialog.h
│ │ │ ├── ConfigDialog.ui
│ │ │ ├── InspectDialog.cpp
│ │ │ ├── InspectDialog.h
│ │ │ ├── InspectDialog.ui
│ │ │ ├── LicenseDialog.cpp
│ │ │ ├── LicenseDialog.h
│ │ │ └── LicenseDialog.ui
│ │ │ ├── events
│ │ │ ├── ConsoleLogEvent.cpp
│ │ │ ├── ConsoleLogEvent.h
│ │ │ ├── DecoderControlEvent.cpp
│ │ │ ├── DecoderControlEvent.h
│ │ │ ├── FourierStatusEvent.cpp
│ │ │ ├── FourierStatusEvent.h
│ │ │ ├── LogicDecoderStatusEvent.cpp
│ │ │ ├── LogicDecoderStatusEvent.h
│ │ │ ├── LogicDeviceStatusEvent.cpp
│ │ │ ├── LogicDeviceStatusEvent.h
│ │ │ ├── RadioDecoderStatusEvent.cpp
│ │ │ ├── RadioDecoderStatusEvent.h
│ │ │ ├── RadioDeviceStatusEvent.cpp
│ │ │ ├── RadioDeviceStatusEvent.h
│ │ │ ├── SignalBufferEvent.cpp
│ │ │ ├── SignalBufferEvent.h
│ │ │ ├── StorageControlEvent.cpp
│ │ │ ├── StorageControlEvent.h
│ │ │ ├── StorageStatusEvent.cpp
│ │ │ ├── StorageStatusEvent.h
│ │ │ ├── StreamFrameEvent.cpp
│ │ │ ├── StreamFrameEvent.h
│ │ │ ├── SystemShutdownEvent.cpp
│ │ │ ├── SystemShutdownEvent.h
│ │ │ ├── SystemStartupEvent.cpp
│ │ │ └── SystemStartupEvent.h
│ │ │ ├── features
│ │ │ ├── Caps.cpp
│ │ │ └── Caps.h
│ │ │ ├── format
│ │ │ ├── DataFormat.cpp
│ │ │ └── DataFormat.h
│ │ │ ├── graph
│ │ │ ├── AxisLabel.cpp
│ │ │ ├── AxisLabel.h
│ │ │ ├── ChannelGraph.cpp
│ │ │ ├── ChannelGraph.h
│ │ │ ├── ChannelStyle.h
│ │ │ ├── FrameData.cpp
│ │ │ ├── FrameData.h
│ │ │ ├── FrameGraph.cpp
│ │ │ ├── FrameGraph.h
│ │ │ ├── MarkerBracket.cpp
│ │ │ ├── MarkerBracket.h
│ │ │ ├── MarkerCursor.cpp
│ │ │ ├── MarkerCursor.h
│ │ │ ├── MarkerPeaks.cpp
│ │ │ ├── MarkerPeaks.h
│ │ │ ├── MarkerRange.cpp
│ │ │ ├── MarkerRange.h
│ │ │ ├── MarkerRibbon.cpp
│ │ │ ├── MarkerRibbon.h
│ │ │ ├── MarkerValue.cpp
│ │ │ ├── MarkerValue.h
│ │ │ ├── MarkerZoom.cpp
│ │ │ ├── MarkerZoom.h
│ │ │ ├── SelectionRect.cpp
│ │ │ ├── SelectionRect.h
│ │ │ ├── TickerFrequency.cpp
│ │ │ ├── TickerFrequency.h
│ │ │ ├── TickerTime.cpp
│ │ │ └── TickerTime.h
│ │ │ ├── main.cpp
│ │ │ ├── main.rc.in
│ │ │ ├── model
│ │ │ ├── ParserModel.cpp
│ │ │ ├── ParserModel.h
│ │ │ ├── StreamFilter.cpp
│ │ │ ├── StreamFilter.h
│ │ │ ├── StreamModel.cpp
│ │ │ └── StreamModel.h
│ │ │ ├── parser
│ │ │ ├── Parser.cpp
│ │ │ ├── Parser.h
│ │ │ ├── ParserISO7816.cpp
│ │ │ ├── ParserISO7816.h
│ │ │ ├── ParserNfc.cpp
│ │ │ ├── ParserNfc.h
│ │ │ ├── ParserNfcA.cpp
│ │ │ ├── ParserNfcA.h
│ │ │ ├── ParserNfcB.cpp
│ │ │ ├── ParserNfcB.h
│ │ │ ├── ParserNfcF.cpp
│ │ │ ├── ParserNfcF.h
│ │ │ ├── ParserNfcV.cpp
│ │ │ └── ParserNfcV.h
│ │ │ ├── protocol
│ │ │ ├── ProtocolFrame.cpp
│ │ │ ├── ProtocolFrame.h
│ │ │ ├── ProtocolParser.cpp
│ │ │ └── ProtocolParser.h
│ │ │ ├── styles
│ │ │ ├── IconStyle.cpp
│ │ │ ├── IconStyle.h
│ │ │ ├── Theme.cpp
│ │ │ └── Theme.h
│ │ │ ├── tests.cpp
│ │ │ └── widgets
│ │ │ ├── AbstractPlotWidget.cpp
│ │ │ ├── AbstractPlotWidget.h
│ │ │ ├── FramesWidget.cpp
│ │ │ ├── FramesWidget.h
│ │ │ ├── FrequencyWidget.cpp
│ │ │ ├── FrequencyWidget.h
│ │ │ ├── HexViewWidget.cpp
│ │ │ ├── HexViewWidget.h
│ │ │ ├── IconDelegate.cpp
│ │ │ ├── IconDelegate.h
│ │ │ ├── LogicWidget.cpp
│ │ │ ├── LogicWidget.h
│ │ │ ├── ParserDelegate.cpp
│ │ │ ├── ParserDelegate.h
│ │ │ ├── ParserWidget.cpp
│ │ │ ├── ParserWidget.h
│ │ │ ├── RadioWidget.cpp
│ │ │ ├── RadioWidget.h
│ │ │ ├── StreamDelegate.cpp
│ │ │ ├── StreamDelegate.h
│ │ │ ├── StreamHeader.cpp
│ │ │ ├── StreamHeader.h
│ │ │ ├── StreamMenu.cpp
│ │ │ ├── StreamMenu.h
│ │ │ ├── StreamMenu.ui
│ │ │ ├── StreamWidget.cpp
│ │ │ └── StreamWidget.h
│ └── app-rx
│ │ ├── CMakeLists.txt
│ │ └── src
│ │ └── main
│ │ └── cpp
│ │ └── main.cpp
├── nfc-lib
│ ├── CMakeLists.txt
│ ├── lib-ext
│ │ ├── CMakeLists.txt
│ │ ├── airspy
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── c
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── airspy.c
│ │ │ │ ├── airspy.h
│ │ │ │ ├── airspy_commands.h
│ │ │ │ ├── filters.h
│ │ │ │ ├── iqconverter_float.c
│ │ │ │ ├── iqconverter_float.h
│ │ │ │ ├── iqconverter_int16.c
│ │ │ │ └── iqconverter_int16.h
│ │ ├── crapto1
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── c
│ │ │ │ ├── crapto1.c
│ │ │ │ ├── crapto1.h
│ │ │ │ ├── crypto1.c
│ │ │ │ └── parity.h
│ │ ├── dslogic
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── c
│ │ │ │ ├── COPYING
│ │ │ │ ├── backend.c
│ │ │ │ ├── common
│ │ │ │ ├── ds_types.h
│ │ │ │ ├── log
│ │ │ │ │ ├── xlog.c
│ │ │ │ │ └── xlog.h
│ │ │ │ └── minizip
│ │ │ │ │ ├── crypt.h
│ │ │ │ │ ├── ioapi.c
│ │ │ │ │ ├── ioapi.h
│ │ │ │ │ ├── iowin32.c
│ │ │ │ │ ├── iowin32.h
│ │ │ │ │ ├── miniunz.c
│ │ │ │ │ ├── minizip.c
│ │ │ │ │ ├── mztools.c
│ │ │ │ │ ├── mztools.h
│ │ │ │ │ ├── of.h
│ │ │ │ │ ├── unzip.c
│ │ │ │ │ ├── unzip.h
│ │ │ │ │ ├── zip.c
│ │ │ │ │ └── zip.h
│ │ │ │ ├── config.h
│ │ │ │ ├── dsdevice.c
│ │ │ │ ├── error.c
│ │ │ │ ├── hardware
│ │ │ │ ├── DSL
│ │ │ │ │ ├── command.c
│ │ │ │ │ ├── command.h
│ │ │ │ │ ├── dscope.c
│ │ │ │ │ ├── dsl.c
│ │ │ │ │ ├── dsl.h
│ │ │ │ │ └── dslogic.c
│ │ │ │ ├── common
│ │ │ │ │ ├── ezusb.c
│ │ │ │ │ └── usb.c
│ │ │ │ └── demo
│ │ │ │ │ ├── demo.c
│ │ │ │ │ └── demo.h
│ │ │ │ ├── hwdriver.c
│ │ │ │ ├── input
│ │ │ │ ├── in_binary.c
│ │ │ │ ├── in_vcd.c
│ │ │ │ ├── in_wav.c
│ │ │ │ └── input.c
│ │ │ │ ├── lib_main.c
│ │ │ │ ├── libsigrok-internal.h
│ │ │ │ ├── libsigrok.h
│ │ │ │ ├── log.c
│ │ │ │ ├── log.h
│ │ │ │ ├── output
│ │ │ │ ├── csv.c
│ │ │ │ ├── gnuplot.c
│ │ │ │ ├── output.c
│ │ │ │ ├── srzip.c
│ │ │ │ └── vcd.c
│ │ │ │ ├── session.c
│ │ │ │ ├── session_driver.c
│ │ │ │ ├── std.c
│ │ │ │ ├── strutil.c
│ │ │ │ ├── tests
│ │ │ │ ├── check_core.c
│ │ │ │ ├── check_driver_all.c
│ │ │ │ ├── check_main.c
│ │ │ │ ├── check_strutil.c
│ │ │ │ ├── lib.c
│ │ │ │ ├── lib.h
│ │ │ │ └── test_main.cpp
│ │ │ │ ├── trigger.c
│ │ │ │ ├── version.c
│ │ │ │ └── version.h
│ │ ├── ed25519
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── c
│ │ │ │ ├── add_scalar.c
│ │ │ │ ├── ed25519.h
│ │ │ │ ├── fe.c
│ │ │ │ ├── fe.h
│ │ │ │ ├── fixedint.h
│ │ │ │ ├── ge.c
│ │ │ │ ├── ge.h
│ │ │ │ ├── key_exchange.c
│ │ │ │ ├── keypair.c
│ │ │ │ ├── precomp_data.h
│ │ │ │ ├── sc.c
│ │ │ │ ├── sc.h
│ │ │ │ ├── seed.c
│ │ │ │ ├── sha512.c
│ │ │ │ ├── sha512.h
│ │ │ │ ├── sign.c
│ │ │ │ └── verify.c
│ │ ├── lime
│ │ │ └── CMakeLists.txt
│ │ ├── microtar
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── c
│ │ │ │ ├── microtar.c
│ │ │ │ └── microtar.h
│ │ ├── mirisdr
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── c
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── COPYING
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.mingw
│ │ │ │ ├── Makefile.mingw-win
│ │ │ │ ├── README.md
│ │ │ │ ├── adc.c
│ │ │ │ ├── async.c
│ │ │ │ ├── async.h
│ │ │ │ ├── constants.h
│ │ │ │ ├── convenience.c
│ │ │ │ ├── convert
│ │ │ │ ├── 252_s16.c
│ │ │ │ ├── 336_s16.c
│ │ │ │ ├── 384_s16.c
│ │ │ │ ├── 504_s16.c
│ │ │ │ ├── 504_s8.c
│ │ │ │ └── base.c
│ │ │ │ ├── devices.c
│ │ │ │ ├── gain.c
│ │ │ │ ├── gain.h
│ │ │ │ ├── getopt
│ │ │ │ ├── getopt.c
│ │ │ │ └── getopt.h
│ │ │ │ ├── hard.c
│ │ │ │ ├── hard.h
│ │ │ │ ├── libmirisdr.c
│ │ │ │ ├── libmirisdr.pc.in
│ │ │ │ ├── libusb.h.1.0.13
│ │ │ │ ├── miri_fm.c
│ │ │ │ ├── miri_sdr.c
│ │ │ │ ├── mirisdr.h
│ │ │ │ ├── mirisdr.rules
│ │ │ │ ├── mirisdr_export.h
│ │ │ │ ├── reg.c
│ │ │ │ ├── soft.c
│ │ │ │ ├── soft.h
│ │ │ │ ├── streaming.c
│ │ │ │ ├── structs.h
│ │ │ │ └── sync.c
│ │ ├── mufft
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ ├── c
│ │ │ │ ├── COPYING
│ │ │ │ ├── COPYING.GPLv2
│ │ │ │ ├── Doxyfile
│ │ │ │ ├── README.md
│ │ │ │ ├── bench.c
│ │ │ │ ├── cpu.c
│ │ │ │ ├── fft.c
│ │ │ │ ├── fft.h
│ │ │ │ ├── fft_internal.h
│ │ │ │ ├── kernel.c
│ │ │ │ ├── mufft.pc.in
│ │ │ │ ├── test.c
│ │ │ │ └── x86
│ │ │ │ │ ├── kernel.avx.c
│ │ │ │ │ ├── kernel.h
│ │ │ │ │ ├── kernel.sse.c
│ │ │ │ │ └── kernel.sse3.c
│ │ │ │ └── doxygen
│ │ │ │ └── fft.md
│ │ ├── nlohmann
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── cpp
│ │ │ │ ├── ChangeLog.md
│ │ │ │ ├── LICENSE.MIT
│ │ │ │ ├── README.md
│ │ │ │ └── nlohmann
│ │ │ │ ├── adl_serializer.hpp
│ │ │ │ ├── byte_container_with_subtype.hpp
│ │ │ │ ├── detail
│ │ │ │ ├── conversions
│ │ │ │ │ ├── from_json.hpp
│ │ │ │ │ ├── to_chars.hpp
│ │ │ │ │ └── to_json.hpp
│ │ │ │ ├── exceptions.hpp
│ │ │ │ ├── hash.hpp
│ │ │ │ ├── input
│ │ │ │ │ ├── binary_reader.hpp
│ │ │ │ │ ├── input_adapters.hpp
│ │ │ │ │ ├── json_sax.hpp
│ │ │ │ │ ├── lexer.hpp
│ │ │ │ │ ├── parser.hpp
│ │ │ │ │ └── position_t.hpp
│ │ │ │ ├── iterators
│ │ │ │ │ ├── internal_iterator.hpp
│ │ │ │ │ ├── iter_impl.hpp
│ │ │ │ │ ├── iteration_proxy.hpp
│ │ │ │ │ ├── iterator_traits.hpp
│ │ │ │ │ ├── json_reverse_iterator.hpp
│ │ │ │ │ └── primitive_iterator.hpp
│ │ │ │ ├── json_pointer.hpp
│ │ │ │ ├── json_ref.hpp
│ │ │ │ ├── macro_scope.hpp
│ │ │ │ ├── macro_unscope.hpp
│ │ │ │ ├── meta
│ │ │ │ │ ├── cpp_future.hpp
│ │ │ │ │ ├── detected.hpp
│ │ │ │ │ ├── identity_tag.hpp
│ │ │ │ │ ├── is_sax.hpp
│ │ │ │ │ ├── type_traits.hpp
│ │ │ │ │ └── void_t.hpp
│ │ │ │ ├── output
│ │ │ │ │ ├── binary_writer.hpp
│ │ │ │ │ ├── output_adapters.hpp
│ │ │ │ │ └── serializer.hpp
│ │ │ │ ├── string_escape.hpp
│ │ │ │ └── value_t.hpp
│ │ │ │ ├── json.hpp
│ │ │ │ ├── json_fwd.hpp
│ │ │ │ ├── ordered_map.hpp
│ │ │ │ └── thirdparty
│ │ │ │ └── hedley
│ │ │ │ ├── hedley.hpp
│ │ │ │ └── hedley_undef.hpp
│ │ ├── posix
│ │ │ └── CMakeLists.txt
│ │ └── rtlsdr
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ └── main
│ │ │ └── c
│ │ │ ├── librtlsdr.c
│ │ │ ├── reg_field.h
│ │ │ ├── rtl-sdr.h
│ │ │ ├── rtl-sdr_export.h
│ │ │ ├── rtlsdr_i2c.h
│ │ │ ├── tuner_e4k.c
│ │ │ ├── tuner_e4k.h
│ │ │ ├── tuner_fc0012.c
│ │ │ ├── tuner_fc0012.h
│ │ │ ├── tuner_fc0013.c
│ │ │ ├── tuner_fc0013.h
│ │ │ ├── tuner_fc2580.c
│ │ │ ├── tuner_fc2580.h
│ │ │ ├── tuner_r82xx.c
│ │ │ └── tuner_r82xx.h
│ ├── lib-hw
│ │ ├── CMakeLists.txt
│ │ ├── hw-dev
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ ├── cpp
│ │ │ │ ├── hw
│ │ │ │ │ ├── DeviceFactory.cpp
│ │ │ │ │ ├── RecordDevice.cpp
│ │ │ │ │ └── SignalBuffer.cpp
│ │ │ │ └── usb
│ │ │ │ │ └── Usb.cpp
│ │ │ │ └── include
│ │ │ │ └── hw
│ │ │ │ ├── Device.h
│ │ │ │ ├── DeviceFactory.h
│ │ │ │ ├── RecordDevice.h
│ │ │ │ ├── SignalBuffer.h
│ │ │ │ ├── SignalDevice.h
│ │ │ │ ├── SignalType.h
│ │ │ │ └── usb
│ │ │ │ └── Usb.h
│ │ ├── hw-logic
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ ├── cpp
│ │ │ │ ├── DSLogicDevice.cpp
│ │ │ │ └── DSLogicInternal.h
│ │ │ │ └── include
│ │ │ │ └── hw
│ │ │ │ └── logic
│ │ │ │ ├── DSLogicDevice.h
│ │ │ │ └── LogicDevice.h
│ │ └── hw-radio
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ └── main
│ │ │ ├── cpp
│ │ │ ├── AirspyDevice.cpp
│ │ │ ├── MiriDevice.cpp
│ │ │ └── RealtekDevice.cpp
│ │ │ └── include
│ │ │ └── hw
│ │ │ └── radio
│ │ │ ├── AirspyDevice.h
│ │ │ ├── MiriDevice.h
│ │ │ ├── RadioDevice.h
│ │ │ └── RealtekDevice.h
│ ├── lib-lab
│ │ ├── CMakeLists.txt
│ │ ├── lab-data
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ ├── cpp
│ │ │ │ ├── Crc.cpp
│ │ │ │ └── RawFrame.cpp
│ │ │ │ └── include
│ │ │ │ └── lab
│ │ │ │ └── data
│ │ │ │ ├── Crc.h
│ │ │ │ └── RawFrame.h
│ │ ├── lab-logic
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ ├── cpp
│ │ │ │ ├── IsoDecoder.cpp
│ │ │ │ ├── IsoTech.cpp
│ │ │ │ ├── IsoTech.h
│ │ │ │ └── tech
│ │ │ │ │ ├── Iso7816.cpp
│ │ │ │ │ └── Iso7816.h
│ │ │ │ └── include
│ │ │ │ └── lab
│ │ │ │ └── iso
│ │ │ │ ├── Iso.h
│ │ │ │ └── IsoDecoder.h
│ │ ├── lab-radio
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ ├── cpp
│ │ │ │ ├── NfcDecoder.cpp
│ │ │ │ ├── NfcTech.cpp
│ │ │ │ ├── NfcTech.h
│ │ │ │ └── tech
│ │ │ │ │ ├── NfcA.cpp
│ │ │ │ │ ├── NfcA.h
│ │ │ │ │ ├── NfcB.cpp
│ │ │ │ │ ├── NfcB.h
│ │ │ │ │ ├── NfcF.cpp
│ │ │ │ │ ├── NfcF.h
│ │ │ │ │ ├── NfcV.cpp
│ │ │ │ │ └── NfcV.h
│ │ │ │ └── include
│ │ │ │ └── lab
│ │ │ │ └── nfc
│ │ │ │ ├── Nfc.h
│ │ │ │ └── NfcDecoder.h
│ │ └── lab-tasks
│ │ │ ├── CMakeLists.txt
│ │ │ └── src
│ │ │ └── main
│ │ │ ├── cpp
│ │ │ └── tasks
│ │ │ │ ├── AbstractTask.h
│ │ │ │ ├── FourierProcessTask.cpp
│ │ │ │ ├── LogicDecoderTask.cpp
│ │ │ │ ├── LogicDeviceTask.cpp
│ │ │ │ ├── RadioDecoderTask.cpp
│ │ │ │ ├── RadioDeviceTask.cpp
│ │ │ │ ├── SignalResamplingTask.cpp
│ │ │ │ ├── SignalStorageTask.cpp
│ │ │ │ └── TraceStorageTask.cpp
│ │ │ └── include
│ │ │ └── lab
│ │ │ └── tasks
│ │ │ ├── FourierProcessTask.h
│ │ │ ├── LogicDecoderTask.h
│ │ │ ├── LogicDeviceTask.h
│ │ │ ├── RadioDecoderTask.h
│ │ │ ├── RadioDeviceTask.h
│ │ │ ├── SignalResamplingTask.h
│ │ │ ├── SignalStorageTask.h
│ │ │ └── TraceStorageTask.h
│ └── lib-rt
│ │ ├── CMakeLists.txt
│ │ └── rt-lang
│ │ ├── CMakeLists.txt
│ │ └── src
│ │ └── main
│ │ ├── cpp
│ │ ├── Executor.cpp
│ │ ├── FileSystem.cpp
│ │ ├── Format.cpp
│ │ ├── Logger.cpp
│ │ ├── Map.cpp
│ │ ├── Package.cpp
│ │ ├── Tokenizer.cpp
│ │ └── Worker.cpp
│ │ └── include
│ │ └── rt
│ │ ├── BlockingQueue.h
│ │ ├── Buffer.h
│ │ ├── ByteBuffer.h
│ │ ├── Catalog.h
│ │ ├── Event.h
│ │ ├── Executor.h
│ │ ├── FileSystem.h
│ │ ├── Finally.h
│ │ ├── Format.h
│ │ ├── List.h
│ │ ├── Logger.h
│ │ ├── Map.h
│ │ ├── Observer.h
│ │ ├── Package.h
│ │ ├── Promise.h
│ │ ├── Queue.h
│ │ ├── Shared.h
│ │ ├── Subject.h
│ │ ├── Task.h
│ │ ├── Throughput.h
│ │ ├── Tokenizer.h
│ │ ├── Variant.h
│ │ └── Worker.h
└── nfc-test
│ ├── CMakeLists.txt
│ ├── test-dio
│ ├── CMakeLists.txt
│ └── src
│ │ └── main
│ │ └── cpp
│ │ └── main.cpp
│ └── test-sdr
│ ├── CMakeLists.txt
│ └── src
│ └── main
│ └── cpp
│ └── main.cpp
└── wav
├── test_NFC-A_106kbps_001.json
├── test_NFC-A_106kbps_001.wav
├── test_NFC-A_106kbps_002.json
├── test_NFC-A_106kbps_002.wav
├── test_NFC-A_106kbps_003.json
├── test_NFC-A_106kbps_003.wav
├── test_NFC-A_106kbps_004.json
├── test_NFC-A_106kbps_004.wav
├── test_NFC-A_106kbps_212kbps_001.json
├── test_NFC-A_106kbps_212kbps_001.wav
├── test_NFC-A_106kbps_424kbps_001.json
├── test_NFC-A_106kbps_424kbps_001.wav
├── test_NFC-A_212kbps_001.json
├── test_NFC-A_212kbps_001.wav
├── test_NFC-A_424kbps_001.json
├── test_NFC-A_424kbps_001.wav
├── test_NFC-A_424kbps_002.json
├── test_NFC-A_424kbps_002.wav
├── test_NFC-B_106kbps_001.json
├── test_NFC-B_106kbps_001.wav
├── test_NFC-B_106kbps_002.json
├── test_NFC-B_106kbps_002.wav
├── test_NFC-F_212kbps_001.json
├── test_NFC-F_212kbps_001.wav
├── test_NFC-F_212kbps_002.json
├── test_NFC-F_212kbps_002.wav
├── test_NFC-F_212kbps_003.json
├── test_NFC-F_212kbps_003.wav
├── test_NFC-F_212kbps_004.json
├── test_NFC-F_212kbps_004.wav
├── test_NFC-V_26kbps_001.json
├── test_NFC-V_26kbps_001.wav
├── test_NFC-V_26kbps_002.json
├── test_NFC-V_26kbps_002.wav
├── test_POLL_ABF_001.json
├── test_POLL_ABF_001.wav
├── test_POLL_AB_001.json
└── test_POLL_AB_001.wav
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: josevcm
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea/
2 | /cmake-**/
3 | /bin/installer/
4 | /run/
5 | src/nfc-app/app-qt/src/main/cpp/QtConfig.h
6 | /build
7 | /nfc-lab
--------------------------------------------------------------------------------
/dat/drivers/amd64/WUDFUpdate_01007.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/drivers/amd64/WUDFUpdate_01007.dll
--------------------------------------------------------------------------------
/dat/drivers/amd64/WdfCoInstaller01007.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/drivers/amd64/WdfCoInstaller01007.dll
--------------------------------------------------------------------------------
/dat/drivers/amd64/WinUSBCoInstaller.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/drivers/amd64/WinUSBCoInstaller.dll
--------------------------------------------------------------------------------
/dat/drivers/dpinst-amd64.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/drivers/dpinst-amd64.exe
--------------------------------------------------------------------------------
/dat/drivers/dpinst-x86.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/drivers/dpinst-x86.exe
--------------------------------------------------------------------------------
/dat/drivers/winusbcompat.cat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/drivers/winusbcompat.cat
--------------------------------------------------------------------------------
/dat/drivers/x86/WUDFUpdate_01007.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/drivers/x86/WUDFUpdate_01007.dll
--------------------------------------------------------------------------------
/dat/drivers/x86/WdfCoInstaller01007.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/drivers/x86/WdfCoInstaller01007.dll
--------------------------------------------------------------------------------
/dat/drivers/x86/WinUSBCoInstaller.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/drivers/x86/WinUSBCoInstaller.dll
--------------------------------------------------------------------------------
/dat/firmware/DSLogicBasic.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/firmware/DSLogicBasic.bin
--------------------------------------------------------------------------------
/dat/firmware/DSLogicPlus-pgl12-2.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/firmware/DSLogicPlus-pgl12-2.bin
--------------------------------------------------------------------------------
/dat/firmware/DSLogicPlus-pgl12.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/firmware/DSLogicPlus-pgl12.bin
--------------------------------------------------------------------------------
/dat/firmware/DSLogicPlus.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/firmware/DSLogicPlus.bin
--------------------------------------------------------------------------------
/dat/firmware/DSLogicU2Basic-pgl12-2.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/firmware/DSLogicU2Basic-pgl12-2.bin
--------------------------------------------------------------------------------
/dat/firmware/DSLogicU2Basic-pgl12.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/firmware/DSLogicU2Basic-pgl12.bin
--------------------------------------------------------------------------------
/dat/firmware/DSLogicU2Basic.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/firmware/DSLogicU2Basic.bin
--------------------------------------------------------------------------------
/dat/firmware/DSLogicU2Pro16.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/firmware/DSLogicU2Pro16.bin
--------------------------------------------------------------------------------
/dat/firmware/DSLogicU3Pro16.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/firmware/DSLogicU3Pro16.bin
--------------------------------------------------------------------------------
/dat/firmware/DSLogicU3Pro32.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dat/firmware/DSLogicU3Pro32.bin
--------------------------------------------------------------------------------
/dat/installer/config.xml.in:
--------------------------------------------------------------------------------
1 |
2 |
3 | NFC LAB @nfc-lab_VERSION@ - josevcm@gmail.com
4 | @nfc-lab_VERSION@
5 | NFC LAB Installer
6 | Jose Vicente Campos Martinez
7 | NFC LAB
8 | @APP_TARGET_DIR@
9 |
--------------------------------------------------------------------------------
/dat/installer/script.js.in:
--------------------------------------------------------------------------------
1 | function Component() {
2 | }
3 |
4 | Component.prototype.createOperations = function () {
5 | component.createOperations();
6 | };
7 |
8 | Component.prototype.installerFinished = function () {
9 | console.log("Installation finished!");
10 | QMessageBox.information("Installation", "The installation is complete!");
11 | };
--------------------------------------------------------------------------------
/debian/changelog:
--------------------------------------------------------------------------------
1 | nfc-lab (3.2.7) UNRELEASED; urgency=medium
2 |
3 | * Initial release.
4 |
5 | -- Jose Vicente Campos Sun, 26 Jan 2025 09:05:17 +0100
--------------------------------------------------------------------------------
/debian/docs:
--------------------------------------------------------------------------------
1 | README.md
2 | LICENSE
--------------------------------------------------------------------------------
/debian/rules:
--------------------------------------------------------------------------------
1 | #!/usr/bin/make -f
2 |
3 | # Output every command that modifies files on the build system.
4 | export DH_VERBOSE = 1
5 |
6 | %:
7 | dh $@ -v --buildsystem=cmake
8 |
9 | override_dh_auto_configure:
10 | dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release
11 |
--------------------------------------------------------------------------------
/debian/source/format:
--------------------------------------------------------------------------------
1 | 3.0 (native)
2 |
--------------------------------------------------------------------------------
/dll/airspy/x86_64/bin/libairspy.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dll/airspy/x86_64/bin/libairspy.dll
--------------------------------------------------------------------------------
/dll/airspy/x86_64/bin/pthreadVC2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dll/airspy/x86_64/bin/pthreadVC2.dll
--------------------------------------------------------------------------------
/dll/airspy/x86_64/lib/libairspy.dll.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dll/airspy/x86_64/lib/libairspy.dll.a
--------------------------------------------------------------------------------
/dll/openssl/x86_64/bin/libcrypto-1_1-x64.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dll/openssl/x86_64/bin/libcrypto-1_1-x64.dll
--------------------------------------------------------------------------------
/dll/openssl/x86_64/bin/libssl-1_1-x64.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dll/openssl/x86_64/bin/libssl-1_1-x64.dll
--------------------------------------------------------------------------------
/dll/readme.txt:
--------------------------------------------------------------------------------
1 | To link library.dll to your project, you need to add the following line to your project file:
2 |
3 | gendef library.dll
4 | dlltool -d library.def -l library.dll.a
--------------------------------------------------------------------------------
/dll/rtlsdr/x86_64/bin/librtlsdr.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dll/rtlsdr/x86_64/bin/librtlsdr.dll
--------------------------------------------------------------------------------
/dll/rtlsdr/x86_64/lib/librtlsdr.dll.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dll/rtlsdr/x86_64/lib/librtlsdr.dll.a
--------------------------------------------------------------------------------
/dll/usb/x86_64/bin/libusb-1.0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dll/usb/x86_64/bin/libusb-1.0.dll
--------------------------------------------------------------------------------
/dll/usb/x86_64/lib/libusb-1.0.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dll/usb/x86_64/lib/libusb-1.0.a
--------------------------------------------------------------------------------
/dll/usb/x86_64/lib/libusb-1.0.dll.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/dll/usb/x86_64/lib/libusb-1.0.dll.a
--------------------------------------------------------------------------------
/doc/img/clion-toolchain-settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/clion-toolchain-settings.png
--------------------------------------------------------------------------------
/doc/img/nfc-baseband-iq.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-baseband-iq.png
--------------------------------------------------------------------------------
/doc/img/nfc-baseband-reqa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-baseband-reqa.png
--------------------------------------------------------------------------------
/doc/img/nfc-decoder-example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-decoder-example.png
--------------------------------------------------------------------------------
/doc/img/nfc-decoder-symbols.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-decoder-symbols.png
--------------------------------------------------------------------------------
/doc/img/nfc-demodulator-ask-request.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-demodulator-ask-request.png
--------------------------------------------------------------------------------
/doc/img/nfc-demodulator-bpsk-detector.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-demodulator-bpsk-detector.png
--------------------------------------------------------------------------------
/doc/img/nfc-demodulator-bpsk-process.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-demodulator-bpsk-process.png
--------------------------------------------------------------------------------
/doc/img/nfc-demodulator-pattern-process.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-demodulator-pattern-process.png
--------------------------------------------------------------------------------
/doc/img/nfc-demodulator-response.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-demodulator-response.png
--------------------------------------------------------------------------------
/doc/img/nfc-demodulator-speed-detector.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-demodulator-speed-detector.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-devices1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-devices1.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-devices2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-devices2.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-devices3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-devices3.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-devices4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-devices4.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-devices5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-devices5.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-devices6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-devices6.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-devices7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-devices7.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-screenshot0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-screenshot0.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-screenshot1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-screenshot1.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-screenshot2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-screenshot2.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-screenshot3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-screenshot3.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-screenshot4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-screenshot4.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-screenshot5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-screenshot5.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-screenshot6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-screenshot6.png
--------------------------------------------------------------------------------
/doc/img/nfc-lab-screenshot7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-lab-screenshot7.png
--------------------------------------------------------------------------------
/doc/img/nfc-symbol-correlation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfc-symbol-correlation.png
--------------------------------------------------------------------------------
/doc/img/nfca-ask-miller.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfca-ask-miller.png
--------------------------------------------------------------------------------
/doc/img/nfca-ask-ook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfca-ask-ook.png
--------------------------------------------------------------------------------
/doc/img/nfca-bpsk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfca-bpsk.png
--------------------------------------------------------------------------------
/doc/img/nfcb-ask-nrz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfcb-ask-nrz.png
--------------------------------------------------------------------------------
/doc/img/nfcb-bpsk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfcb-bpsk.png
--------------------------------------------------------------------------------
/doc/img/nfcf-manchester.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfcf-manchester.png
--------------------------------------------------------------------------------
/doc/img/nfcf-observe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfcf-observe.png
--------------------------------------------------------------------------------
/doc/img/nfcf-reverse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfcf-reverse.png
--------------------------------------------------------------------------------
/doc/img/nfcv-ppm2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/nfcv-ppm2.png
--------------------------------------------------------------------------------
/doc/img/signal-pre-process-example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/signal-pre-process-example.png
--------------------------------------------------------------------------------
/doc/img/signal-pre-process.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/img/signal-pre-process.png
--------------------------------------------------------------------------------
/doc/pdf/AN10833.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/AN10833.pdf
--------------------------------------------------------------------------------
/doc/pdf/AN2056.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/AN2056.pdf
--------------------------------------------------------------------------------
/doc/pdf/ISO13239.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/ISO13239.pdf
--------------------------------------------------------------------------------
/doc/pdf/ISO14443-2.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/ISO14443-2.pdf
--------------------------------------------------------------------------------
/doc/pdf/ISO14443-3.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/ISO14443-3.pdf
--------------------------------------------------------------------------------
/doc/pdf/ISO14443-4.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/ISO14443-4.pdf
--------------------------------------------------------------------------------
/doc/pdf/ISO15693-2.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/ISO15693-2.pdf
--------------------------------------------------------------------------------
/doc/pdf/ISO15693-3.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/ISO15693-3.pdf
--------------------------------------------------------------------------------
/doc/pdf/ISO15693-lri512.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/ISO15693-lri512.pdf
--------------------------------------------------------------------------------
/doc/pdf/ISO18092-2013.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/ISO18092-2013.pdf
--------------------------------------------------------------------------------
/doc/pdf/ISO7816-3-2006.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/ISO7816-3-2006.pdf
--------------------------------------------------------------------------------
/doc/pdf/ISO7816-4-2005.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/ISO7816-4-2005.pdf
--------------------------------------------------------------------------------
/doc/pdf/JIS.X.6319-4.Sony.Felica.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/JIS.X.6319-4.Sony.Felica.pdf
--------------------------------------------------------------------------------
/doc/pdf/NFC Analog Specification.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/NFC Analog Specification.pdf
--------------------------------------------------------------------------------
/doc/pdf/NFC Digital Protocol.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/NFC Digital Protocol.pdf
--------------------------------------------------------------------------------
/doc/pdf/NFC Technology and Measurements.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/NFC Technology and Measurements.pdf
--------------------------------------------------------------------------------
/doc/pdf/NFCForum-TS-Type-1-Tag_1.1.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/NFCForum-TS-Type-1-Tag_1.1.pdf
--------------------------------------------------------------------------------
/doc/pdf/NFCForum-TS-Type-2-Tag_1.1.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/NFCForum-TS-Type-2-Tag_1.1.pdf
--------------------------------------------------------------------------------
/doc/pdf/NFCForum-TS-Type-3-Tag_1.1.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/NFCForum-TS-Type-3-Tag_1.1.pdf
--------------------------------------------------------------------------------
/doc/pdf/NFCForum-TS-Type-4-Tag_2.0.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/doc/pdf/NFCForum-TS-Type-4-Tag_2.0.pdf
--------------------------------------------------------------------------------
/src/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | # application modules
2 | add_subdirectory(nfc-app)
3 | add_subdirectory(nfc-lib)
4 | add_subdirectory(nfc-test)
5 |
6 |
--------------------------------------------------------------------------------
/src/nfc-app/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_subdirectory(app-qt)
2 | add_subdirectory(app-rx)
3 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/app/app.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | rc/nfc-lab.ico
4 | rc/nfc-lab.png
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/app/rc/nfc-lab.desktop:
--------------------------------------------------------------------------------
1 | [Desktop Entry]
2 | Type=Application
3 | Name=NFC Lab
4 | GenericName=NFC signal and protocol analyzer
5 | Comment=NFC signal and protocol analyzer using SDR receiver
6 | Exec=nfc-lab
7 | Terminal=false
8 | Icon=nfc-lab
9 | Categories=AudioVideo;Audio;Qt;HamRadio;
10 | Keywords=SDR;Radio;HAM;
11 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/app/rc/nfc-lab.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/app/rc/nfc-lab.ico
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/app/rc/nfc-lab.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/app/rc/nfc-lab.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/actions/scalable/action-about.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/actions/scalable/action-filter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/actions/scalable/action-listen.svg:
--------------------------------------------------------------------------------
1 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/actions/scalable/action-logic.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/actions/scalable/action-record.svg:
--------------------------------------------------------------------------------
1 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/actions/scalable/action-refresh.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/actions/scalable/action-zoom.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/arrows/scalable/carrier-off.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/arrows/scalable/carrier-on.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/arrows/scalable/frame-exchange.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/arrows/scalable/frame-response.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/arrows/scalable/frame-startup.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/arrows/scalable/rst-high.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/arrows/scalable/rst-low.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/arrows/scalable/vcc-high.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/arrows/scalable/vcc-low.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/filter/scalable/filter-empty.svg:
--------------------------------------------------------------------------------
1 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/filter/scalable/math-greater.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/icons/filter/scalable/math-lower.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/.keep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_down_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_left_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_right_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/arrow_up_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/base_icon_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_closed_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_end_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_line_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_more_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/branch_open_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_checked_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_indeterminate_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/checkbox_unchecked_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_horizontal_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/line_vertical_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_checked_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/radio_unchecked_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_horizontal_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_move_vertical_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_horizontal_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/toolbar_separator_vertical_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/transparent_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_close_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_grip_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_minimize_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/dark/style/rc/window_undock_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/24/action-listen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/24/action-listen.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/24/action-record.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/24/action-record.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/24/action-stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/24/action-stop.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-clear.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-filter.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-follow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-follow.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-open.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-save.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-setup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-setup.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-time.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/actions/48/action-time.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/arrows/16/arrow-blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/arrows/16/arrow-blue.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/arrows/16/arrow-green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/arrows/16/arrow-green.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/arrows/16/arrow-red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/arrows/16/arrow-red.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/index.theme:
--------------------------------------------------------------------------------
1 | [Icon Theme]
2 | Name=Tracer Theme
3 | Comment=Tracer Theme
4 |
5 | # Directory list
6 | Directories=actions/24,actions/48,arrows/16
7 |
8 | [arrows/16]
9 | Size=16
10 | Context=Arrows
11 | Type=Fixed
12 |
13 | [actions/24]
14 | Size=24
15 | Context=Actions
16 | Type=Fixed
17 |
18 | [actions/48]
19 | Size=48
20 | Context=Actions
21 | Type=Fixed
22 |
23 | [flags/16]
24 | Size=16
25 | Context=Flags
26 | Type=Fixed
27 |
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/status/16/encrypted-flag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/status/16/encrypted-flag.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/icons/status/16/warning-flag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/icons/status/16/warning-flag.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/.keep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/.keep
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_down_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_left_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_right_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/arrow_up_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/base_icon_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_closed_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_end_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_line_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_more_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/branch_open_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_checked_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_indeterminate_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/checkbox_unchecked_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_horizontal_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/line_vertical_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_checked_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/radio_unchecked_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_horizontal_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_move_vertical_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_horizontal_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/toolbar_separator_vertical_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/transparent_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_close_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_grip_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_minimize_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_disabled.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_disabled@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_disabled@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_focus.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_focus@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_focus@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_pressed.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_pressed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/src/nfc-app/app-qt/src/main/assets/theme/light/style/rc/window_undock_pressed@2x.png
--------------------------------------------------------------------------------
/src/nfc-app/app-qt/src/main/cpp/.gitignore:
--------------------------------------------------------------------------------
1 | QtConfig.h
2 | main.rc
3 |
--------------------------------------------------------------------------------
/src/nfc-lib/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_subdirectory(lib-ext)
2 | add_subdirectory(lib-hw)
3 | add_subdirectory(lib-lab)
4 | add_subdirectory(lib-rt)
5 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | #add_subdirectory(airspy) # switch to dynamic link library
2 | add_subdirectory(ed25519)
3 | add_subdirectory(nlohmann)
4 | add_subdirectory(microtar)
5 | add_subdirectory(mufft)
6 | #add_subdirectory(lime)
7 | #add_subdirectory(posix)
8 | #add_subdirectory(rtlsdr) # switch to dynamic link library
9 | add_subdirectory(mirisdr)
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/crapto1/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | set(CMAKE_C_STANDARD 99)
2 |
3 | set(PUBLIC_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/main/c)
4 |
5 | add_library(crapto1 STATIC
6 | src/main/c/crapto1.c
7 | src/main/c/crypto1.c
8 | )
9 |
10 | target_include_directories(crapto1 PUBLIC ${PUBLIC_SOURCE_DIR})
11 | target_include_directories(crapto1 PRIVATE ${LIBUSB_INCLUDE_DIR})
12 |
13 | target_link_libraries(crapto1)
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/dslogic/src/main/c/common/minizip/of.h:
--------------------------------------------------------------------------------
1 | #ifndef _OF_H
2 | #define _OF_H
3 |
4 | #ifndef OF /* function prototypes */
5 | # ifdef STDC
6 | # define OF(args) args
7 | # else
8 | # define OF(args) ()
9 | # endif
10 | #endif
11 |
12 | #endif /* _OF_H */
13 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/ed25519/src/main/c/keypair.c:
--------------------------------------------------------------------------------
1 | #include "ed25519.h"
2 | #include "sha512.h"
3 | #include "ge.h"
4 |
5 |
6 | void ed25519_create_keypair(unsigned char *public_key, unsigned char *private_key, const unsigned char *seed) {
7 | ge_p3 A;
8 |
9 | sha512(seed, 32, private_key);
10 | private_key[0] &= 248;
11 | private_key[31] &= 63;
12 | private_key[31] |= 64;
13 |
14 | ge_scalarmult_base(&A, private_key);
15 | ge_p3_tobytes(public_key, &A);
16 | }
17 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/ed25519/src/main/c/sc.h:
--------------------------------------------------------------------------------
1 | #ifndef SC_H
2 | #define SC_H
3 |
4 | /*
5 | The set of scalars is \Z/l
6 | where l = 2^252 + 27742317777372353535851937790883648493.
7 | */
8 |
9 | void sc_reduce(unsigned char *s);
10 | void sc_muladd(unsigned char *s, const unsigned char *a, const unsigned char *b, const unsigned char *c);
11 |
12 | #endif
13 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/microtar/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | set(CMAKE_C_STANDARD 99)
2 |
3 | set(PUBLIC_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/main/c)
4 |
5 | add_library(microtar STATIC
6 | src/main/c/microtar.c
7 | )
8 |
9 | target_include_directories(microtar PUBLIC ${PUBLIC_SOURCE_DIR})
10 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/mirisdr/src/main/c/convert/base.c:
--------------------------------------------------------------------------------
1 |
2 | #include "252_s16.c"
3 | #include "336_s16.c"
4 | #include "384_s16.c"
5 | #include "504_s16.c"
6 | #include "504_s8.c"
7 |
8 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/mirisdr/src/main/c/libmirisdr.pc.in:
--------------------------------------------------------------------------------
1 | prefix=@prefix@
2 | exec_prefix=@exec_prefix@
3 | libdir=@libdir@
4 | includedir=@includedir@
5 |
6 | Name: MiriSDR Library
7 | Description: C Utility Library
8 | Version: @VERSION@
9 | Cflags: -I${includedir}/ @MIRISDR_PC_CFLAGS@
10 | Libs: -L${libdir} -lmirisdr -lusb-1.0
11 | Libs.private: @MIRISDR_PC_LIBS@
12 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/mufft/src/main/c/mufft.pc.in:
--------------------------------------------------------------------------------
1 | prefix=@PREFIX@
2 | exec_prefix=${prefix}
3 | libdir=${prefix}/lib
4 | includedir=${prefix}/include
5 |
6 | Name: muFFT
7 | Description: muFFT is a library for doing the fast fourier transform (FFT) in one or two dimensions.
8 | Requires:
9 | Version: @VERSION@
10 | Libs: -L${prefix}/lib -lmufft
11 | Cflags: -I${prefix}/include
12 |
13 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/nlohmann/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | set(CMAKE_C_STANDARD 11)
2 |
3 | set(PUBLIC_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp)
4 |
5 | add_library(nlohmann INTERFACE)
6 |
7 | target_include_directories(nlohmann INTERFACE ${PUBLIC_SOURCE_DIR})
8 |
9 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/nlohmann/src/main/cpp/nlohmann/detail/meta/identity_tag.hpp:
--------------------------------------------------------------------------------
1 | #pragma once
2 |
3 | namespace nlohmann
4 | {
5 | namespace detail
6 | {
7 | // dispatching helper struct
8 | template struct identity_tag {};
9 | } // namespace detail
10 | } // namespace nlohmann
11 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/nlohmann/src/main/cpp/nlohmann/detail/meta/void_t.hpp:
--------------------------------------------------------------------------------
1 | #pragma once
2 |
3 | namespace nlohmann
4 | {
5 | namespace detail
6 | {
7 | template struct make_void
8 | {
9 | using type = void;
10 | };
11 | template using void_t = typename make_void::type;
12 | } // namespace detail
13 | } // namespace nlohmann
14 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/posix/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | set(CMAKE_C_STANDARD 99)
2 |
3 | set(PUBLIC_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/main/c)
4 | set(PUBLIC_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/main/include)
5 |
6 | add_library(posix STATIC
7 | src/main/c/select.c
8 | )
9 |
10 | target_include_directories(posix PUBLIC ${PUBLIC_INCLUDE_DIR})
11 | target_include_directories(posix PRIVATE ${PRIVATE_SOURCE_DIR})
12 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-ext/rtlsdr/src/main/c/rtlsdr_i2c.h:
--------------------------------------------------------------------------------
1 | #ifndef __I2C_H
2 | #define __I2C_H
3 |
4 | uint32_t rtlsdr_get_tuner_clock(void *dev);
5 | int rtlsdr_i2c_write_fn(void *dev, uint8_t addr, uint8_t *buf, int len);
6 | int rtlsdr_i2c_read_fn(void *dev, uint8_t addr, uint8_t *buf, int len);
7 |
8 | #endif
9 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-hw/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_subdirectory(hw-dev)
2 | add_subdirectory(hw-logic)
3 | add_subdirectory(hw-radio)
4 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-hw/hw-logic/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | set(CMAKE_CXX_STANDARD 17)
2 |
3 | set(PRIVATE_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp)
4 | set(PUBLIC_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/main/include)
5 |
6 | add_library(hw-logic STATIC
7 | src/main/cpp/DSLogicDevice.cpp
8 | )
9 |
10 | target_include_directories(hw-logic PUBLIC ${PUBLIC_INCLUDE_DIR})
11 | target_include_directories(hw-logic PRIVATE ${PRIVATE_SOURCE_DIR})
12 |
13 | target_link_libraries(hw-logic rt-lang hw-dev)
14 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-lab/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_subdirectory(lab-data)
2 | add_subdirectory(lab-logic)
3 | add_subdirectory(lab-radio)
4 | add_subdirectory(lab-tasks)
5 |
--------------------------------------------------------------------------------
/src/nfc-lib/lib-rt/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_subdirectory(rt-lang)
--------------------------------------------------------------------------------
/src/nfc-test/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_subdirectory(test-dio)
2 | add_subdirectory(test-sdr)
3 |
--------------------------------------------------------------------------------
/wav/test_NFC-A_106kbps_001.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-A_106kbps_001.wav
--------------------------------------------------------------------------------
/wav/test_NFC-A_106kbps_002.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-A_106kbps_002.wav
--------------------------------------------------------------------------------
/wav/test_NFC-A_106kbps_003.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-A_106kbps_003.wav
--------------------------------------------------------------------------------
/wav/test_NFC-A_106kbps_004.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-A_106kbps_004.wav
--------------------------------------------------------------------------------
/wav/test_NFC-A_106kbps_212kbps_001.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-A_106kbps_212kbps_001.wav
--------------------------------------------------------------------------------
/wav/test_NFC-A_106kbps_424kbps_001.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-A_106kbps_424kbps_001.wav
--------------------------------------------------------------------------------
/wav/test_NFC-A_212kbps_001.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-A_212kbps_001.wav
--------------------------------------------------------------------------------
/wav/test_NFC-A_424kbps_001.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-A_424kbps_001.wav
--------------------------------------------------------------------------------
/wav/test_NFC-A_424kbps_002.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-A_424kbps_002.wav
--------------------------------------------------------------------------------
/wav/test_NFC-B_106kbps_001.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-B_106kbps_001.wav
--------------------------------------------------------------------------------
/wav/test_NFC-B_106kbps_002.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-B_106kbps_002.wav
--------------------------------------------------------------------------------
/wav/test_NFC-F_212kbps_001.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-F_212kbps_001.wav
--------------------------------------------------------------------------------
/wav/test_NFC-F_212kbps_002.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-F_212kbps_002.wav
--------------------------------------------------------------------------------
/wav/test_NFC-F_212kbps_003.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-F_212kbps_003.wav
--------------------------------------------------------------------------------
/wav/test_NFC-F_212kbps_004.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-F_212kbps_004.wav
--------------------------------------------------------------------------------
/wav/test_NFC-V_26kbps_001.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-V_26kbps_001.wav
--------------------------------------------------------------------------------
/wav/test_NFC-V_26kbps_002.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_NFC-V_26kbps_002.wav
--------------------------------------------------------------------------------
/wav/test_POLL_ABF_001.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_POLL_ABF_001.wav
--------------------------------------------------------------------------------
/wav/test_POLL_AB_001.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/josevcm/nfc-laboratory/6430eaac471b33798d4fc49e22518a13e86af73d/wav/test_POLL_AB_001.wav
--------------------------------------------------------------------------------