├── .gitignore ├── LICENSE ├── README.md ├── hbctool ├── __init__.py ├── hasm.py ├── hbc │ ├── __init__.py │ ├── hbc59 │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── data │ │ │ ├── opcode.json │ │ │ └── structure.json │ │ ├── example │ │ │ ├── index.android.bundle │ │ │ ├── pretty.out │ │ │ └── raw.out │ │ ├── parser.py │ │ ├── raw │ │ │ ├── BytecodeFileFormat.h │ │ │ ├── BytecodeList.def │ │ │ └── SerializedLiteralGenerator.h │ │ ├── test.py │ │ ├── tool │ │ │ └── opcode_generator.py │ │ └── translator.py │ ├── hbc62 │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── data │ │ │ ├── opcode.json │ │ │ └── structure.json │ │ ├── example │ │ │ ├── index.android.bundle │ │ │ ├── pretty.out │ │ │ └── raw.out │ │ ├── parser.py │ │ ├── raw │ │ │ ├── BytecodeFileFormat.h │ │ │ ├── BytecodeList.def │ │ │ └── SerializedLiteralGenerator.h │ │ ├── test.py │ │ ├── tool │ │ │ └── opcode_generator.py │ │ └── translator.py │ ├── hbc74 │ │ ├── __init__.py │ │ ├── data │ │ │ ├── opcode.json │ │ │ └── structure.json │ │ ├── example │ │ │ ├── index.android.bundle │ │ │ ├── objdump.out │ │ │ ├── pretty.out │ │ │ └── raw.out │ │ ├── parser.py │ │ ├── raw │ │ │ ├── BytecodeFileFormat.h │ │ │ ├── BytecodeList.def │ │ │ └── SerializedLiteralGenerator.h │ │ ├── test.py │ │ ├── tool │ │ │ └── opcode_generator.py │ │ └── translator.py │ ├── hbc76 │ │ ├── __init__.py │ │ ├── data │ │ │ ├── opcode.json │ │ │ └── structure.json │ │ ├── example │ │ │ ├── index.android.bundle │ │ │ ├── objdump.out │ │ │ ├── pretty.out │ │ │ └── raw.out │ │ ├── parser.py │ │ ├── raw │ │ │ ├── BytecodeFileFormat.h │ │ │ ├── BytecodeList.def │ │ │ └── SerializedLiteralGenerator.h │ │ ├── test.py │ │ ├── tool │ │ │ └── opcode_generator.py │ │ └── translator.py │ ├── hbc84 │ │ ├── __init__.py │ │ ├── data │ │ │ ├── opcode.json │ │ │ └── structure.json │ │ ├── parser.py │ │ ├── raw │ │ │ ├── BytecodeFileFormat.h │ │ │ ├── BytecodeList.def │ │ │ └── SerializedLiteralGenerator.h │ │ ├── tool │ │ │ └── opcode_generator.py │ │ └── translator.py │ └── hbc85 │ │ ├── __init__.py │ │ ├── data │ │ ├── opcode.json │ │ └── structure.json │ │ ├── parser.py │ │ ├── raw │ │ ├── BytecodeFileFormat.h │ │ ├── BytecodeList.def │ │ └── SerializedLiteralGenerator.h │ │ ├── tool │ │ └── opcode_generator.py │ │ └── translator.py ├── metadata.py ├── test.py └── util.py ├── image ├── hbctool_example.gif └── hbctool_example.mp4 ├── output └── .gitkeep ├── poetry.lock ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/README.md -------------------------------------------------------------------------------- /hbctool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/__init__.py -------------------------------------------------------------------------------- /hbctool/hasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hasm.py -------------------------------------------------------------------------------- /hbctool/hbc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/__init__.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/.DS_Store -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/__init__.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/data/opcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/data/opcode.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/data/structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/data/structure.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/example/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/example/index.android.bundle -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/example/pretty.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/example/pretty.out -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/example/raw.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/example/raw.out -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/parser.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/raw/BytecodeFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/raw/BytecodeFileFormat.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/raw/BytecodeList.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/raw/BytecodeList.def -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/raw/SerializedLiteralGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/raw/SerializedLiteralGenerator.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/test.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/tool/opcode_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/tool/opcode_generator.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc59/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc59/translator.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/.DS_Store -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/__init__.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/data/opcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/data/opcode.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/data/structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/data/structure.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/example/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/example/index.android.bundle -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/example/pretty.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/example/pretty.out -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/example/raw.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/example/raw.out -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/parser.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/raw/BytecodeFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/raw/BytecodeFileFormat.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/raw/BytecodeList.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/raw/BytecodeList.def -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/raw/SerializedLiteralGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/raw/SerializedLiteralGenerator.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/test.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/tool/opcode_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/tool/opcode_generator.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc62/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc62/translator.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/__init__.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/data/opcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/data/opcode.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/data/structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/data/structure.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/example/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/example/index.android.bundle -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/example/objdump.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/example/objdump.out -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/example/pretty.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/example/pretty.out -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/example/raw.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/example/raw.out -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/parser.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/raw/BytecodeFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/raw/BytecodeFileFormat.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/raw/BytecodeList.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/raw/BytecodeList.def -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/raw/SerializedLiteralGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/raw/SerializedLiteralGenerator.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/test.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/tool/opcode_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/tool/opcode_generator.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc74/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc74/translator.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/__init__.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/data/opcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/data/opcode.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/data/structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/data/structure.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/example/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/example/index.android.bundle -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/example/objdump.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/example/objdump.out -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/example/pretty.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/example/pretty.out -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/example/raw.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/example/raw.out -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/parser.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/raw/BytecodeFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/raw/BytecodeFileFormat.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/raw/BytecodeList.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/raw/BytecodeList.def -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/raw/SerializedLiteralGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/raw/SerializedLiteralGenerator.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/test.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/tool/opcode_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/tool/opcode_generator.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc76/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc76/translator.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc84/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc84/__init__.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc84/data/opcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc84/data/opcode.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc84/data/structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc84/data/structure.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc84/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc84/parser.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc84/raw/BytecodeFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc84/raw/BytecodeFileFormat.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc84/raw/BytecodeList.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc84/raw/BytecodeList.def -------------------------------------------------------------------------------- /hbctool/hbc/hbc84/raw/SerializedLiteralGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc84/raw/SerializedLiteralGenerator.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc84/tool/opcode_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc84/tool/opcode_generator.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc84/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc84/translator.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc85/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc85/__init__.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc85/data/opcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc85/data/opcode.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc85/data/structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc85/data/structure.json -------------------------------------------------------------------------------- /hbctool/hbc/hbc85/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc85/parser.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc85/raw/BytecodeFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc85/raw/BytecodeFileFormat.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc85/raw/BytecodeList.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc85/raw/BytecodeList.def -------------------------------------------------------------------------------- /hbctool/hbc/hbc85/raw/SerializedLiteralGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc85/raw/SerializedLiteralGenerator.h -------------------------------------------------------------------------------- /hbctool/hbc/hbc85/tool/opcode_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc85/tool/opcode_generator.py -------------------------------------------------------------------------------- /hbctool/hbc/hbc85/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/hbc/hbc85/translator.py -------------------------------------------------------------------------------- /hbctool/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/metadata.py -------------------------------------------------------------------------------- /hbctool/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/test.py -------------------------------------------------------------------------------- /hbctool/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/hbctool/util.py -------------------------------------------------------------------------------- /image/hbctool_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/image/hbctool_example.gif -------------------------------------------------------------------------------- /image/hbctool_example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/image/hbctool_example.mp4 -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gilcu3/hbctool/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | docopt --------------------------------------------------------------------------------