diff --git a/DBC_Converter.exe b/DBC_Converter.exe deleted file mode 100644 index d135c83..0000000 Binary files a/DBC_Converter.exe and /dev/null differ diff --git a/DBC_Converter.py b/DBC_Converter.py index 319788a..ef4398c 100644 --- a/DBC_Converter.py +++ b/DBC_Converter.py @@ -1,23 +1,100 @@ +""" +MainView 클래스는 PyQt5를 사용하여 DBC 파일을 C 파일로 변환하는 GUI 애플리케이션을 구현합니다. +메서드: + __init__(self): + MainView 클래스의 초기화 메서드입니다. UI 설정 및 초기값을 설정합니다. + loadSettings(self): + 설정 파일을 로드하고, 기본 저장 경로 및 마지막 열린 디렉토리를 설정합니다. + saveSettings(self): + 현재 설정을 설정 파일에 저장합니다. + setupUI(self): + UI를 설정하고 메뉴, 툴바, 상태바, 파일 리스트 및 기타 위젯을 추가합니다. + selectSavePath(self): + 저장 경로를 선택하는 파일 다이얼로그를 엽니다. + openSavePath(self): + 현재 설정된 저장 경로를 엽니다. + openCalculator(self): + 계산기를 엽니다. + centerWindow(self): + 창을 화면 중앙에 위치시킵니다. + centerDialog(self, dialog): + 다이얼로그를 부모 창의 중앙에 위치시킵니다. + FilesOpen(self): + 파일 열기 다이얼로그를 열고 선택된 파일을 파일 리스트에 추가합니다. + deleteSelectedFiles(self): + 선택된 파일을 파일 리스트에서 삭제합니다. + deleteAllFiles(self): + 파일 리스트의 모든 파일을 삭제합니다. + removeChannelInfo(self, file_path): + 설정 파일에서 특정 파일의 채널 정보를 제거합니다. + clearAlerts(self): + 알림창의 내용을 지웁니다. + showWarning(self, title, message): + 경고 메시지 박스를 표시합니다. + showDuplicateFilesWarning(self, duplicate_files, new_files, new_files_names): + 중복 파일 경고 메시지 박스를 표시합니다. + sortTreeView(self, col, reverse): + 파일 리스트를 특정 열을 기준으로 정렬합니다. + selectAllFiles(self): + 파일 리스트의 모든 파일을 선택합니다. + invertSelection(self): + 파일 리스트의 선택을 반전시킵니다. + setWindowSize(self, size): + 창의 크기를 설정합니다. + openSettings(self): + 설정 다이얼로그를 엽니다. + openAbout(self): + 프로그램 정보 다이얼로그를 엽니다. + populateTreeView(self, file_paths): + 파일 리스트에 파일을 추가하고 채널 정보를 업데이트합니다. + updateAlertText(self, message, file_list): + 알림창에 메시지를 추가합니다. + convertFiles(self): + 파일을 변환하고 변환 상태를 업데이트합니다. + onHeaderClicked(self, logicalIndex): + 파일 리스트의 헤더를 클릭했을 때 정렬을 수행합니다. + onItemDoubleClicked(self, item, column): + 파일 리스트의 항목을 더블클릭했을 때 파일을 열거나 경로를 엽니다. + openChannelDialog(self, item): + 채널 선택 다이얼로그를 엽니다. + applyChannelSelection(self, item, combo, dialog): + 선택된 채널을 파일 리스트에 적용하고 다이얼로그를 닫습니다. + updateChannelInfo(self, directory, filename, channel): + 설정 파일에 채널 정보를 업데이트합니다. + setupCloseEvent(self): + 프로그램 종료 이벤트를 설정합니다. + onClose(self, event): + 프로그램 종료 시 설정을 초기화하고 저장합니다. +""" import os import sys from PyQt5 import QtWidgets, QtGui, QtCore from datetime import datetime import json import subprocess +import shutil # 파일 복사를 위해 shutil 모듈 추가 class MainView(QtWidgets.QMainWindow): def __init__(self): super().__init__() - self.setWindowIcon(QtGui.QIcon("icon/icon.ico")) # 프로그램 아이콘 설정 + + if hasattr(sys, '_MEIPASS'): + base_path = sys._MEIPASS # 실행 파일 내에서 파일 경로 설정 + else: + base_path = os.path.abspath(".") # 실행 파일이 아닌 경우 현재 디렉토리로 설정 + + icon_path = os.path.join(base_path, "icon/icon.ico") # 아이콘 경로 설정 + self.setWindowIcon(QtGui.QIcon(icon_path)) # 프로그램 아이콘 설정 self.version = "1.0.0" # 프로그램 버전 설정 self.default_save_path = os.path.join(os.path.expanduser("~"), "Desktop") # 바탕화면 경로 설정 self.file_paths = [] # 파일 경로 저장 리스트 self.channel_info = {} # 채널 정보 초기화 self.loadSettings() # 설정 로드 - self.setupUI() # UI 설정 + self.setupUI(base_path) # UI 설정 self.centerWindow() # 창을 화면 중앙에 위치 self.sortTreeView(0, True) # 기본 파일명 오름차순 정렬 self.channel_options = ["CH0", "CH1", "CH2", "CH3", "CH4", "CH5"] # 채널 옵션 설정 + self.setupCloseEvent() # 프로그램 종료 이벤트 설정 def loadSettings(self): self.settings_file = "settings.json" @@ -42,7 +119,7 @@ class MainView(QtWidgets.QMainWindow): with open(self.settings_file, "w", encoding="utf-8") as file: json.dump(self.settings, file, ensure_ascii=False, indent=4) # 설정 파일 저장 - def setupUI(self): + def setupUI(self, base_path): self.setWindowTitle("DBC to C Converter") self.setGeometry(100, 100, 1000, 600) # 창 크기 조정 @@ -117,23 +194,28 @@ class MainView(QtWidgets.QMainWindow): # 툴바 추가 self.toolbar = self.addToolBar("Main Toolbar") - add_file_action = QtWidgets.QAction(QtGui.QIcon("img/add_file.png"), "파일 추가\n(Ctrl+O)", self) + add_file_action_img_path = os.path.join(base_path, "img/add_file.png") # 파일 추가 아이콘 경로 설정 + add_file_action = QtWidgets.QAction(QtGui.QIcon(add_file_action_img_path), "파일 추가\n(Ctrl+O)", self) add_file_action.triggered.connect(self.FilesOpen) self.toolbar.addAction(add_file_action) - delete_file_action = QtWidgets.QAction(QtGui.QIcon("img/delete_file.png"), "선택 파일 삭제\n(Delete)", self) + delete_file_action_img_path = os.path.join(base_path, "img/delete_file.png") # 파일 삭제 아이콘 경로 설정 + delete_file_action = QtWidgets.QAction(QtGui.QIcon(delete_file_action_img_path), "선택 파일 삭제\n(Delete)", self) delete_file_action.triggered.connect(self.deleteSelectedFiles) self.toolbar.addAction(delete_file_action) - delete_all_action = QtWidgets.QAction(QtGui.QIcon("img/delete_all.png"), "모든 파일 삭제\n(Ctrl+Shift+Delete)", self) + delete_all_action_img_path = os.path.join(base_path, "img/delete_all.png") # 모든 파일 삭제 아이콘 경로 설정 + delete_all_action = QtWidgets.QAction(QtGui.QIcon(delete_all_action_img_path), "모든 파일 삭제\n(Ctrl+Shift+Delete)", self) delete_all_action.triggered.connect(self.deleteAllFiles) self.toolbar.addAction(delete_all_action) - delete_description_action = QtWidgets.QAction(QtGui.QIcon("img/delete_description.png"), "알림창 내용 삭제\n(Ctrl+Shift+D)", self) + delete_description_action_img_path = os.path.join(base_path, "img/delete_description.png") # 메시지 창 내용 삭제 아이콘 경로 설정 + delete_description_action = QtWidgets.QAction(QtGui.QIcon(delete_description_action_img_path), "메시지 창 내용 삭제\n(Ctrl+Shift+D)", self) delete_description_action.triggered.connect(self.clearAlerts) self.toolbar.addAction(delete_description_action) - convert_action = QtWidgets.QAction(QtGui.QIcon("img/convert.png"), "변환\n(Ctrl+R)", self) + convert_action_img_path = os.path.join(base_path, "img/convert.png") # 변환 아이콘 경로 설정 + convert_action = QtWidgets.QAction(QtGui.QIcon(convert_action_img_path), "변환\n(Ctrl+R)", self) convert_action.triggered.connect(self.convertFiles) self.toolbar.addAction(convert_action) @@ -239,7 +321,7 @@ class MainView(QtWidgets.QMainWindow): for item in selected_items: index = self.tree.indexOfTopLevelItem(item) file_path = os.path.join(item.text(1), item.text(0)) - self.removeChannelInfo(file_path) # 추가된 부분 + self.removeChannelInfo(file_path) # 채널 정보 제거 self.tree.takeTopLevelItem(index) self.file_paths = [self.tree.topLevelItem(i).text(1) + '/' + self.tree.topLevelItem(i).text(0) for i in range(self.tree.topLevelItemCount())] self.updateAlertText(f"파일 삭제 완료", deleted_files) @@ -254,7 +336,7 @@ class MainView(QtWidgets.QMainWindow): for i in range(self.tree.topLevelItemCount()): item = self.tree.topLevelItem(i) file_path = os.path.join(item.text(1), item.text(0)) - self.removeChannelInfo(file_path) # 추가된 부분 + self.removeChannelInfo(file_path) # 채널 정보 제거 self.tree.clear() self.file_paths = [] self.updateAlertText(f"모든 파일 삭제 완료", deleted_files) @@ -359,7 +441,7 @@ class MainView(QtWidgets.QMainWindow): fsize = format_file_size(os.path.getsize(file_path)) item = QtWidgets.QTreeWidgetItem([file, directory, self.channel_options[0], fsize]) self.tree.addTopLevelItem(item) - self.updateChannelInfo(directory, file, self.channel_options[0]) # Set default channel to 0 + self.updateChannelInfo(directory, file, self.channel_options[0]) # 기본 채널을 0으로 설정 self.file_paths = [self.tree.topLevelItem(i).text(1) + '/' + self.tree.topLevelItem(i).text(0) for i in range(self.tree.topLevelItemCount())] self.saveSettings() @@ -379,15 +461,19 @@ class MainView(QtWidgets.QMainWindow): self.progress_bar.setVisible(True) self.progress_bar.setValue(0) total_files = len(self.file_paths) - timestamp = datetime.now().strftime("%y-%m-%d") + timestamp = datetime.now().strftime("%y-%m-%d-%a-%H-%M-%S") # 날짜 및 시간 형식 변경 + base_output_dir = os.path.join(self.default_save_path, "DBC 변환", timestamp) for index, file_path in enumerate(self.file_paths): file_name = os.path.splitext(os.path.basename(file_path))[0] - rx_output_dir = os.path.join(self.default_save_path, "DBC 변환", timestamp, file_name, "RX") - tx_output_dir = os.path.join(self.default_save_path, "DBC 변환", timestamp, file_name, "TX") + rx_output_dir = os.path.join(base_output_dir, file_name, "RX") + tx_output_dir = os.path.join(base_output_dir, file_name, "TX") + dbc_output_dir = os.path.join(base_output_dir, "#DBC") # DBC 파일 저장 경로 설정 os.makedirs(rx_output_dir, exist_ok=True) os.makedirs(tx_output_dir, exist_ok=True) + os.makedirs(dbc_output_dir, exist_ok=True) # DBC 파일 저장 경로 생성 channel_info = self.settings.get("channel_info", {}).get(os.path.basename(file_path), "CH0") try: + shutil.copy(file_path, dbc_output_dir) # DBC 파일 복사 subprocess.run(["python", "DBC_to_C_RX.py", file_path, rx_output_dir, json.dumps({os.path.basename(file_path): channel_info})], check=True) subprocess.run(["python", "DBC_to_C_TX.py", file_path, tx_output_dir, json.dumps({os.path.basename(file_path): channel_info})], check=True) self.updateAlertText(f"변환 성공", [file_path]) @@ -440,7 +526,7 @@ class MainView(QtWidgets.QMainWindow): def applyChannelSelection(self, item, combo, dialog): item.setText(2, combo.currentText()) - self.updateChannelInfo(item.text(1), item.text(0), combo.currentText()) # 추가된 부분 + self.updateChannelInfo(item.text(1), item.text(0), combo.currentText()) # 채널 정보 업데이트 dialog.close() def updateChannelInfo(self, directory, filename, channel): @@ -453,6 +539,16 @@ class MainView(QtWidgets.QMainWindow): self.saveSettings() print(f"[INFO] Updated channel info for {file_name} to {channel}") + def setupCloseEvent(self): + self.closeEvent = self.onClose # 종료 이벤트 핸들러 설정 + + def onClose(self, event): + self.file_paths = [] # 파일 경로 초기화 + self.settings["file_paths"] = [] # 설정 파일 경로 초기화 + self.settings["channel_info"] = {} # 채널 정보 초기화 + self.saveSettings() # 설정 저장 + event.accept() # 종료 이벤트 수락 + if __name__ == '__main__': app = QtWidgets.QApplication(sys.argv) main_view = MainView() diff --git a/DBC_Converter.spec b/DBC_Converter.spec index ccb7d06..572fa85 100644 --- a/DBC_Converter.spec +++ b/DBC_Converter.spec @@ -1,14 +1,27 @@ # -*- mode: python ; coding: utf-8 -*- +added_files = [("./img/*", './img'), + ("./icon/*", '.icon'), + ("./icon.ico", '.')] -added_files = [("./img/*", './img')] - -a = Analysis( - ['DBC_Converter.py'], +a = Analysis(['DBC_Converter.py'], pathex=[], binaries=[], datas=added_files, - hiddenimports=[PyQt5], + hiddenimports=[ + 'PyQt5', + 'PyQt5.QtCore', + 'PyQt5.QtGui', + 'PyQt5.QtWidgets', + 'PyQt5.QtPrintSupport', + 'PyQt5.QtSvg', + 'PyQt5.QtNetwork', + 'PyQt5.QtWebEngineWidgets', + 'PyQt5.QtWebEngineCore', + 'PyQt5.QtWebChannel', + 'PyQt5.QtWebSockets', + 'cantools', + ], hookspath=[], hooksconfig={}, runtime_hooks=[], @@ -18,25 +31,21 @@ a = Analysis( ) pyz = PYZ(a.pure) -exe = EXE( - pyz, +exe = EXE(pyz, a.scripts, - a.binaries, - a.datas, [], - name='DBC_Converter', + exclude_binaries=True, + name='DBC Converter', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, upx_exclude=[], runtime_tmpdir=None, - console=True, + console=False, disable_windowed_traceback=False, argv_emulation=False, - target_arch=None, - codesign_identity=None, - entitlements_file=None, + icon='./icon.ico' ) coll = COLLECT(exe, @@ -46,5 +55,5 @@ coll = COLLECT(exe, strip=False, upx=True, upx_exclude=[], - name=dist안 폴더이름 + name='DBC Converter' ) \ No newline at end of file diff --git a/DBC_to_C_RX.py b/DBC_to_C_RX.py index 753afbb..154c2be 100644 --- a/DBC_to_C_RX.py +++ b/DBC_to_C_RX.py @@ -3,7 +3,6 @@ import sys import cantools from datetime import datetime import json -import os def parse_dbc_file(file_path): signals = [] @@ -96,12 +95,12 @@ def parse_dbc_file(file_path): return signals -def generate_vcu_rx_function_with_factors(dbc_path, output_file): +def generate_vcu_rx_function_with_factors(dbc_path, output_file, channel_info): # Load the DBC file db = cantools.database.load_file(dbc_path) # Initialize the header of the C file - c_file_content = """ + c_file_content = f""" #include "can.h" // Declare Factors and Offsets for signals @@ -131,9 +130,10 @@ def generate_vcu_rx_function_with_factors(dbc_path, output_file): # Check if "VCU" is in the receivers list if "VCU" in message.receivers: # Define the temporary struct - temp_struct_name = f"CH0_MV1_0x{message.frame_id:X}_temp" + channel = channel_info.get(str(message.frame_id), "CH0") # 기본 채널 설정 + temp_struct_name = f"{channel}_MV1_0x{message.frame_id:X}_temp" c_file_content += f""" -void Receive_{message.name}_CH0_0x{message.frame_id:X}(void) +void Receive_{message.name}_{channel}_0x{message.frame_id:X}(void) {{ struct {{ """ @@ -153,16 +153,16 @@ void Receive_{message.name}_CH0_0x{message.frame_id:X}(void) start_byte = signal.start // 8 start_bit = signal.start % 8 signal_length = signal.length - shift_expr = f"(CAN_ch[0].rx.buf[{start_byte}] >> shift{start_bit})" + shift_expr = f"(CAN_ch[{channel}].rx.buf[{start_byte}] >> shift{start_bit})" if signal_length > 8: # Handle multi-byte signals multi_byte_expr = [] for i in range((signal_length + 7) // 8): byte_shift = i * 8 if i == 0: - multi_byte_expr.append(f"(CAN_ch[0].rx.buf[{start_byte + i}] >> shift{start_bit})") + multi_byte_expr.append(f"(CAN_ch[{channel}].rx.buf[{start_byte + i}] >> shift{start_bit})") else: - multi_byte_expr.append(f"(CAN_ch[0].rx.buf[{start_byte + i}] << shift{byte_shift})") + multi_byte_expr.append(f"(CAN_ch[{channel}].rx.buf[{start_byte + i}] << shift{byte_shift})") shift_expr = " | ".join(multi_byte_expr) c_file_content += f" {temp_struct_name}.{signal.name}_temp = ({shift_expr}) & _{signal_length}bit;\n" @@ -171,14 +171,14 @@ void Receive_{message.name}_CH0_0x{message.frame_id:X}(void) # Assign to final ECU variables for signal in message.signals: factor_name = f"Factor_{str(signal.scale).replace('.', '_')}" - offset_name = f"Offset_m_{abs(signal.offset):.0f}" + offset_name = f"Offset_m_{abs(signal.offset)::.0f}" factor = f" * {factor_name}" if signal.scale != 1 else "" offset = f" + {offset_name}" if signal.offset != 0 else "" temp_var = f"{temp_struct_name}.{signal.name}_temp" if signal.is_signed: - c_file_content += f" ECU3.RX.CH0_{message.name}_0x{message.frame_id:X}.{signal.name} = ({temp_var}{factor}){offset};\n" + c_file_content += f" VCU.RX.{channel}_{message.name}_0x{message.frame_id:X}.{signal.name} = ({temp_var}{factor}){offset};\n" else: - c_file_content += f" ECU3.RX.CH0_{message.name}_0x{message.frame_id:X}.{signal.name} = {temp_var}{factor}{offset};\n" + c_file_content += f" VCU.RX.{channel}_{message.name}_0x{message.frame_id:X}.{signal.name} = {temp_var}{factor}{offset};\n" c_file_content += "}\n" @@ -188,7 +188,7 @@ void Receive_{message.name}_CH0_0x{message.frame_id:X}(void) print(f"Generated RX function C file with Factors and Offsets: {output_file}") -def generate_input_functions(signals, output_file): +def generate_input_functions(signals, output_file, channel_info): if not signals: print("[WARNING] No signals to generate Input functions for.") return @@ -196,15 +196,16 @@ def generate_input_functions(signals, output_file): with open(output_file, 'w') as f: for message in signals: hex_id = f"0x{int(message['id']):X}" - function_name = f"void Input_Data_Set_{message['name']}_CH0_{hex_id}(void)" + channel = channel_info.get(str(message['id']), "CH0") + function_name = f"void Input_Data_Set_{message['name']}_{channel}_{hex_id}(void)" f.write(f"{function_name}\n{{\n") for signal in message["signals"]: - f.write(f" GV_{signal['name']} = ECU3.RX.CH0_RX_{message['name']}_{hex_id}.{signal['name']};\n") + f.write(f" GV_{signal['name']} = VCU.RX.{channel}_RX_{message['name']}_{hex_id}.{signal['name']};\n") f.write("}\n\n") print(f"[INFO] Input functions written to {output_file}") -def generate_structs(signals, output_file): +def generate_structs(signals, output_file, channel_info): if not signals: print("[WARNING] No signals to generate structs for.") return @@ -216,18 +217,19 @@ def generate_structs(signals, output_file): for message in signals: hex_id = f"0x{int(message['id']):X}" + channel = channel_info.get(str(message['id']), "CH0") f.write(f"typedef struct\n{{\n") for signal in message["signals"]: if signal["size"] <= 32: f.write(f" uint32_t {signal['name']} : {signal['size']};\n") else: f.write(f" float {signal['name']};\n") - f.write(f"}} CH0_RX_{message['name']}_{hex_id};\n\n") + f.write(f"}} {channel}_RX_{message['name']}_{hex_id};\n\n") f.write("#endif // GENERATED_STRUCTS_H\n") print(f"[INFO] Structs written to {output_file}") -def generate_globals(signals, output_file, header_file): +def generate_globals(signals, output_file, header_file, channel_info): if not signals: print("[WARNING] No signals to generate globals for.") return @@ -236,6 +238,7 @@ def generate_globals(signals, output_file, header_file): f.write("#include \n") for message in signals: + channel = channel_info.get(str(message['id']), "CH0") for signal in message["signals"]: if signal["size"] > 32: f.write(f"float GV_{signal['name']} = 0.0f;\n") @@ -247,6 +250,7 @@ def generate_globals(signals, output_file, header_file): f.write("#define GENERATED_GLOBALS_H\n\n") f.write("#include \n\n") for message in signals: + channel = channel_info.get(str(message['id']), "CH0") for signal in message["signals"]: if signal["size"] > 32: f.write(f"extern float GV_{signal['name']};\n") @@ -256,16 +260,17 @@ def generate_globals(signals, output_file, header_file): print(f"[INFO] Globals and extern declarations written to {output_file} and {header_file}") -def generate_initialization(signals, output_file): +def generate_initialization(signals, output_file, channel_info): if not signals: print("[WARNING] No signals to generate initialization for.") return with open(output_file, 'w') as f: - f.write("void ECU3_Data_Init(void)\n{\n") + f.write("void VCU_Data_Init(void)\n{\n") for message in signals: hex_id = f"0x{int(message['id']):X}" - struct_prefix = f"ECU3.RX.CH0_RX_{message['name']}_{hex_id}" + channel = channel_info.get(str(message['id']), "CH0") + struct_prefix = f"VCU.RX.{channel}_RX_{message['name']}_{hex_id}" for signal in message["signals"]: if signal["offset"] != 0.0: if signal["size"] <= 32: @@ -285,6 +290,20 @@ def generate_initialization(signals, output_file): if __name__ == "__main__": dbc_file_path = sys.argv[1] output_dir = sys.argv[2] + channel_info_path = sys.argv[3] + + with open(channel_info_path, 'r', encoding='cp1252') as f: + try: + channel_info = json.load(f) + # Convert channel info to int + for key in channel_info: + channel_info[key] = int(channel_info[key].replace("CH", "")) + except json.JSONDecodeError as e: + print(f"[ERROR] Error decoding JSON: {e}") + sys.exit(1) + except Exception as e: + print(f"[ERROR] Error reading channel info file: {e}") + sys.exit(1) output_c_file = f"{output_dir}/generated_receive.c" output_input_file = f"{output_dir}/generated_input.c" @@ -294,8 +313,8 @@ if __name__ == "__main__": output_initialization_file = f"{output_dir}/generated_init.c" signals = parse_dbc_file(dbc_file_path) - generate_vcu_rx_function_with_factors(dbc_file_path, output_c_file) - generate_input_functions(signals, output_input_file) - generate_structs(signals, output_structs_file) - generate_globals(signals, output_globals_file, output_globals_header) - generate_initialization(signals, output_initialization_file) \ No newline at end of file + generate_vcu_rx_function_with_factors(dbc_file_path, output_c_file, channel_info) + generate_input_functions(signals, output_input_file, channel_info) + generate_structs(signals, output_structs_file, channel_info) + generate_globals(signals, output_globals_file, output_globals_header, channel_info) + generate_initialization(signals, output_initialization_file, channel_info) \ No newline at end of file diff --git a/EXE_Create.bat b/EXE_Create.bat index 99aee1d..00797e8 100644 --- a/EXE_Create.bat +++ b/EXE_Create.bat @@ -1,6 +1 @@ -@echo off -REM 실행 파일 생성 -pyinstaller -w --onefile --distpath . DBC_Converter.py - -echo 실행 파일 생성 완료 -pause \ No newline at end of file +pyinstaller DBC_Converter.spec \ No newline at end of file diff --git a/build/DBC_Converter/Analysis-00.toc b/build/DBC_Converter/Analysis-00.toc index 185751f..6f23d4f 100644 --- a/build/DBC_Converter/Analysis-00.toc +++ b/build/DBC_Converter/Analysis-00.toc @@ -1,9 +1,20 @@ -(['C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py'], - ['C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter'], - [], - [('C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib\\stdhooks', +(['C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py'], + ['C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter'], + ['PyQt5', + 'PyQt5.QtCore', + 'PyQt5.QtGui', + 'PyQt5.QtWidgets', + 'PyQt5.QtPrintSupport', + 'PyQt5.QtSvg', + 'PyQt5.QtNetwork', + 'PyQt5.QtWebEngineWidgets', + 'PyQt5.QtWebEngineCore', + 'PyQt5.QtWebChannel', + 'PyQt5.QtWebSockets', + 'cantools'], + [('C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\stdhooks', -1000), - ('C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\_pyinstaller_hooks_contrib', + ('C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_pyinstaller_hooks_contrib', -1000)], {}, [], @@ -12,821 +23,2486 @@ {}, 0, [], - [], - '3.10.11 (tags/v3.10.11:7d4cc5a, Apr 5 2023, 00:38:17) [MSC v.1929 64 bit ' + [('.icon\\icon(org).ico', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon(org).ico', + 'DATA'), + ('.icon\\icon(org).png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon(org).png', + 'DATA'), + ('.icon\\icon.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon.png', + 'DATA'), + ('.icon\\icon.pptx', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon.pptx', + 'DATA'), + ('icon.ico', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon.ico', + 'DATA'), + ('img\\add_file.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\add_file.png', + 'DATA'), + ('img\\add_folder.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\add_folder.png', + 'DATA'), + ('img\\convert.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\convert.png', + 'DATA'), + ('img\\delete_all.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_all.png', + 'DATA'), + ('img\\delete_description.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_description.png', + 'DATA'), + ('img\\delete_file.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_file.png', + 'DATA')], + '3.13.1 (tags/v3.13.1:0671451, Dec 3 2024, 19:06:28) [MSC v.1942 64 bit ' '(AMD64)]', - [('pyi_rth_inspect', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', + [('pyi_rth_pkgutil', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', + 'PYSOURCE'), + ('pyi_rth_multiprocessing', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py', + 'PYSOURCE'), + ('pyi_rth_inspect', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', + 'PYSOURCE'), + ('pyi_rth_pkgres', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgres.py', + 'PYSOURCE'), + ('pyi_rth_setuptools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_setuptools.py', 'PYSOURCE'), ('pyi_rth_pyqt5', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py', - 'PYSOURCE'), - ('pyi_rth_pkgutil', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py', 'PYSOURCE'), ('DBC_Converter', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py', 'PYSOURCE')], - [('pkgutil', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\pkgutil.py', - 'PYMODULE'), - ('zipimport', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\zipimport.py', - 'PYMODULE'), - ('importlib.readers', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\readers.py', - 'PYMODULE'), - ('importlib.abc', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\abc.py', - 'PYMODULE'), - ('typing', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\typing.py', - 'PYMODULE'), - ('contextlib', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\contextlib.py', - 'PYMODULE'), - ('importlib._abc', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\_abc.py', - 'PYMODULE'), - ('importlib._bootstrap', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\_bootstrap.py', - 'PYMODULE'), - ('importlib._bootstrap_external', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\_bootstrap_external.py', - 'PYMODULE'), - ('importlib.metadata', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\__init__.py', - 'PYMODULE'), - ('importlib.metadata._itertools', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_itertools.py', - 'PYMODULE'), - ('importlib.metadata._functools', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_functools.py', - 'PYMODULE'), - ('importlib.metadata._collections', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_collections.py', - 'PYMODULE'), - ('importlib.metadata._meta', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_meta.py', - 'PYMODULE'), - ('importlib.metadata._adapters', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_adapters.py', - 'PYMODULE'), - ('importlib.metadata._text', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_text.py', - 'PYMODULE'), - ('email.message', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\message.py', - 'PYMODULE'), - ('email.policy', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\policy.py', - 'PYMODULE'), - ('email.contentmanager', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\contentmanager.py', - 'PYMODULE'), - ('email.quoprimime', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\quoprimime.py', - 'PYMODULE'), - ('string', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\string.py', - 'PYMODULE'), - ('email.headerregistry', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\headerregistry.py', - 'PYMODULE'), - ('email._header_value_parser', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\_header_value_parser.py', - 'PYMODULE'), - ('urllib', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\urllib\\__init__.py', - 'PYMODULE'), - ('email.iterators', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\iterators.py', - 'PYMODULE'), - ('email.generator', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\generator.py', - 'PYMODULE'), - ('copy', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\copy.py', - 'PYMODULE'), - ('random', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\random.py', - 'PYMODULE'), - ('statistics', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\statistics.py', - 'PYMODULE'), - ('decimal', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\decimal.py', - 'PYMODULE'), - ('_pydecimal', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_pydecimal.py', - 'PYMODULE'), - ('contextvars', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\contextvars.py', - 'PYMODULE'), - ('fractions', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\fractions.py', - 'PYMODULE'), - ('numbers', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\numbers.py', - 'PYMODULE'), - ('hashlib', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\hashlib.py', - 'PYMODULE'), - ('logging', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\logging\\__init__.py', - 'PYMODULE'), - ('pickle', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\pickle.py', - 'PYMODULE'), - ('pprint', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\pprint.py', - 'PYMODULE'), - ('dataclasses', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\dataclasses.py', - 'PYMODULE'), - ('_compat_pickle', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_compat_pickle.py', - 'PYMODULE'), - ('struct', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\struct.py', - 'PYMODULE'), - ('threading', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\threading.py', - 'PYMODULE'), - ('_threading_local', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_threading_local.py', - 'PYMODULE'), - ('bisect', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\bisect.py', - 'PYMODULE'), - ('email._encoded_words', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\_encoded_words.py', - 'PYMODULE'), - ('base64', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\base64.py', - 'PYMODULE'), - ('getopt', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\getopt.py', - 'PYMODULE'), - ('gettext', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\gettext.py', - 'PYMODULE'), - ('email.charset', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\charset.py', - 'PYMODULE'), - ('email.encoders', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\encoders.py', - 'PYMODULE'), - ('email.base64mime', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\base64mime.py', - 'PYMODULE'), - ('email._policybase', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\_policybase.py', - 'PYMODULE'), - ('email.header', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\header.py', - 'PYMODULE'), - ('email.errors', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\errors.py', - 'PYMODULE'), - ('email.utils', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\utils.py', - 'PYMODULE'), - ('email._parseaddr', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\_parseaddr.py', - 'PYMODULE'), - ('calendar', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\calendar.py', - 'PYMODULE'), - ('argparse', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\argparse.py', - 'PYMODULE'), - ('shutil', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\shutil.py', - 'PYMODULE'), - ('tarfile', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\tarfile.py', - 'PYMODULE'), - ('gzip', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\gzip.py', - 'PYMODULE'), - ('_compression', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_compression.py', - 'PYMODULE'), - ('lzma', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\lzma.py', - 'PYMODULE'), - ('bz2', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\bz2.py', - 'PYMODULE'), - ('fnmatch', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\fnmatch.py', - 'PYMODULE'), - ('urllib.parse', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\urllib\\parse.py', - 'PYMODULE'), - ('socket', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\socket.py', - 'PYMODULE'), - ('selectors', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\selectors.py', - 'PYMODULE'), - ('quopri', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\quopri.py', - 'PYMODULE'), - ('uu', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\uu.py', - 'PYMODULE'), - ('optparse', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\optparse.py', - 'PYMODULE'), - ('textwrap', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\textwrap.py', - 'PYMODULE'), - ('email', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\__init__.py', - 'PYMODULE'), - ('email.parser', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\parser.py', - 'PYMODULE'), - ('email.feedparser', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\feedparser.py', - 'PYMODULE'), - ('csv', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\csv.py', - 'PYMODULE'), - ('tokenize', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\tokenize.py', - 'PYMODULE'), - ('token', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\token.py', - 'PYMODULE'), - ('pathlib', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\pathlib.py', - 'PYMODULE'), - ('zipfile', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\zipfile.py', - 'PYMODULE'), - ('py_compile', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\py_compile.py', - 'PYMODULE'), - ('_strptime', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_strptime.py', - 'PYMODULE'), - ('inspect', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\inspect.py', - 'PYMODULE'), - ('dis', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\dis.py', - 'PYMODULE'), - ('opcode', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\opcode.py', - 'PYMODULE'), - ('ast', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\ast.py', - 'PYMODULE'), - ('importlib.machinery', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\machinery.py', - 'PYMODULE'), - ('importlib.util', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\util.py', + [('_pyi_rth_utils.qt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\qt.py', 'PYMODULE'), ('importlib', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\__init__.py', 'PYMODULE'), - ('_pyi_rth_utils.qt', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\qt.py', + ('importlib._bootstrap_external', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\_bootstrap_external.py', + 'PYMODULE'), + ('importlib.metadata', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\__init__.py', + 'PYMODULE'), + ('csv', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\csv.py', + 'PYMODULE'), + ('importlib.metadata._adapters', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_adapters.py', + 'PYMODULE'), + ('importlib.metadata._text', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_text.py', + 'PYMODULE'), + ('email.message', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\message.py', + 'PYMODULE'), + ('email.policy', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\policy.py', + 'PYMODULE'), + ('email.contentmanager', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\contentmanager.py', + 'PYMODULE'), + ('email.quoprimime', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\quoprimime.py', + 'PYMODULE'), + ('string', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\string.py', + 'PYMODULE'), + ('email.headerregistry', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\headerregistry.py', + 'PYMODULE'), + ('email._header_value_parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\_header_value_parser.py', + 'PYMODULE'), + ('urllib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\urllib\\__init__.py', + 'PYMODULE'), + ('email.iterators', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\iterators.py', + 'PYMODULE'), + ('email.generator', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\generator.py', + 'PYMODULE'), + ('copy', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\copy.py', + 'PYMODULE'), + ('random', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\random.py', + 'PYMODULE'), + ('argparse', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\argparse.py', + 'PYMODULE'), + ('gettext', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\gettext.py', + 'PYMODULE'), + ('struct', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\struct.py', + 'PYMODULE'), + ('statistics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\statistics.py', + 'PYMODULE'), + ('decimal', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\decimal.py', + 'PYMODULE'), + ('_pydecimal', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pydecimal.py', + 'PYMODULE'), + ('contextvars', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\contextvars.py', + 'PYMODULE'), + ('fractions', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\fractions.py', + 'PYMODULE'), + ('numbers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\numbers.py', + 'PYMODULE'), + ('hashlib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\hashlib.py', + 'PYMODULE'), + ('logging', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\logging\\__init__.py', + 'PYMODULE'), + ('pickle', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pickle.py', + 'PYMODULE'), + ('pprint', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pprint.py', + 'PYMODULE'), + ('dataclasses', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\dataclasses.py', + 'PYMODULE'), + ('_compat_pickle', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_compat_pickle.py', + 'PYMODULE'), + ('threading', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\threading.py', + 'PYMODULE'), + ('_threading_local', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_threading_local.py', + 'PYMODULE'), + ('bisect', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\bisect.py', + 'PYMODULE'), + ('_strptime', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_strptime.py', + 'PYMODULE'), + ('calendar', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\calendar.py', + 'PYMODULE'), + ('email._encoded_words', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\_encoded_words.py', + 'PYMODULE'), + ('base64', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\base64.py', + 'PYMODULE'), + ('getopt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\getopt.py', + 'PYMODULE'), + ('email.charset', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\charset.py', + 'PYMODULE'), + ('email.encoders', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\encoders.py', + 'PYMODULE'), + ('email.base64mime', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\base64mime.py', + 'PYMODULE'), + ('email._policybase', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\_policybase.py', + 'PYMODULE'), + ('email.header', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\header.py', + 'PYMODULE'), + ('email.errors', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\errors.py', + 'PYMODULE'), + ('email.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\utils.py', + 'PYMODULE'), + ('socket', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\socket.py', + 'PYMODULE'), + ('selectors', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\selectors.py', + 'PYMODULE'), + ('email._parseaddr', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\_parseaddr.py', + 'PYMODULE'), + ('urllib.parse', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\urllib\\parse.py', + 'PYMODULE'), + ('ipaddress', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ipaddress.py', + 'PYMODULE'), + ('quopri', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\quopri.py', + 'PYMODULE'), + ('typing', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\typing.py', + 'PYMODULE'), + ('importlib.abc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\abc.py', + 'PYMODULE'), + ('importlib.resources.abc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\abc.py', + 'PYMODULE'), + ('importlib.resources', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\__init__.py', + 'PYMODULE'), + ('importlib.resources._functional', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\_functional.py', + 'PYMODULE'), + ('importlib.resources._common', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\_common.py', + 'PYMODULE'), + ('importlib.resources._adapters', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\_adapters.py', + 'PYMODULE'), + ('tempfile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tempfile.py', + 'PYMODULE'), + ('importlib._abc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\_abc.py', + 'PYMODULE'), + ('importlib.machinery', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\machinery.py', + 'PYMODULE'), + ('contextlib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\contextlib.py', + 'PYMODULE'), + ('importlib.metadata._itertools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_itertools.py', + 'PYMODULE'), + ('importlib.metadata._functools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_functools.py', + 'PYMODULE'), + ('importlib.metadata._collections', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_collections.py', + 'PYMODULE'), + ('importlib.metadata._meta', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_meta.py', + 'PYMODULE'), + ('textwrap', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\textwrap.py', + 'PYMODULE'), + ('zipfile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\zipfile\\__init__.py', + 'PYMODULE'), + ('zipfile._path', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\zipfile\\_path\\__init__.py', + 'PYMODULE'), + ('zipfile._path.glob', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\zipfile\\_path\\glob.py', + 'PYMODULE'), + ('py_compile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\py_compile.py', + 'PYMODULE'), + ('lzma', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\lzma.py', + 'PYMODULE'), + ('_compression', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_compression.py', + 'PYMODULE'), + ('bz2', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\bz2.py', + 'PYMODULE'), + ('importlib.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\util.py', + 'PYMODULE'), + ('pathlib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pathlib\\__init__.py', + 'PYMODULE'), + ('pathlib._local', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pathlib\\_local.py', + 'PYMODULE'), + ('glob', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\glob.py', + 'PYMODULE'), + ('fnmatch', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\fnmatch.py', + 'PYMODULE'), + ('pathlib._abc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pathlib\\_abc.py', + 'PYMODULE'), + ('inspect', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\inspect.py', + 'PYMODULE'), + ('token', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\token.py', + 'PYMODULE'), + ('dis', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\dis.py', + 'PYMODULE'), + ('opcode', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\opcode.py', + 'PYMODULE'), + ('_opcode_metadata', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_opcode_metadata.py', + 'PYMODULE'), + ('ast', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ast.py', + 'PYMODULE'), + ('email', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\__init__.py', + 'PYMODULE'), + ('email.parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\parser.py', + 'PYMODULE'), + ('email.feedparser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\feedparser.py', + 'PYMODULE'), + ('__future__', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\__future__.py', + 'PYMODULE'), + ('importlib.readers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\readers.py', + 'PYMODULE'), + ('importlib.resources.readers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\readers.py', + 'PYMODULE'), + ('importlib.resources._itertools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\_itertools.py', + 'PYMODULE'), + ('tokenize', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tokenize.py', + 'PYMODULE'), + ('importlib._bootstrap', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\_bootstrap.py', 'PYMODULE'), ('_pyi_rth_utils', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\__init__.py', 'PYMODULE'), - ('tracemalloc', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\tracemalloc.py', + ('_distutils_hack', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_distutils_hack\\__init__.py', 'PYMODULE'), - ('stringprep', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\stringprep.py', + ('setuptools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\__init__.py', 'PYMODULE'), - ('_py_abc', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_py_abc.py', + ('setuptools.msvc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\msvc.py', 'PYMODULE'), - ('subprocess', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\subprocess.py', + ('typing_extensions', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\typing_extensions.py', + 'PYMODULE'), + ('setuptools._vendor.more_itertools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\more_itertools\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor', '-', 'PYMODULE'), + ('setuptools._vendor.more_itertools.recipes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\more_itertools\\recipes.py', + 'PYMODULE'), + ('setuptools._vendor.more_itertools.more', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\more_itertools\\more.py', + 'PYMODULE'), + ('queue', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\queue.py', + 'PYMODULE'), + ('platform', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\platform.py', + 'PYMODULE'), + ('ctypes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\__init__.py', + 'PYMODULE'), + ('ctypes.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\util.py', + 'PYMODULE'), + ('ctypes._aix', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\_aix.py', + 'PYMODULE'), + ('ctypes.macholib.dyld', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\macholib\\dyld.py', + 'PYMODULE'), + ('ctypes.macholib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\macholib\\__init__.py', + 'PYMODULE'), + ('ctypes.macholib.dylib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\macholib\\dylib.py', + 'PYMODULE'), + ('ctypes.macholib.framework', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\macholib\\framework.py', + 'PYMODULE'), + ('ctypes._endian', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\_endian.py', + 'PYMODULE'), + ('_ios_support', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_ios_support.py', + 'PYMODULE'), + ('setuptools._distutils.command.build_ext', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\command\\build_ext.py', + 'PYMODULE'), + ('setuptools._distutils.command', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\command\\__init__.py', + 'PYMODULE'), + ('setuptools._distutils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\__init__.py', + 'PYMODULE'), + ('setuptools._distutils.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\version.py', + 'PYMODULE'), + ('setuptools._distutils.archive_util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\archive_util.py', + 'PYMODULE'), + ('tarfile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tarfile.py', + 'PYMODULE'), + ('gzip', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\gzip.py', + 'PYMODULE'), + ('setuptools._distutils.spawn', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\spawn.py', + 'PYMODULE'), + ('setuptools._distutils.debug', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\debug.py', + 'PYMODULE'), + ('setuptools._distutils.dir_util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\dir_util.py', + 'PYMODULE'), + ('setuptools._distutils.file_util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\file_util.py', + 'PYMODULE'), + ('setuptools._distutils._msvccompiler', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\_msvccompiler.py', + 'PYMODULE'), + ('unittest.mock', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\mock.py', + 'PYMODULE'), + ('unittest', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\__init__.py', + 'PYMODULE'), + ('unittest.async_case', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\async_case.py', + 'PYMODULE'), + ('unittest.signals', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\signals.py', 'PYMODULE'), ('signal', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\signal.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\signal.py', + 'PYMODULE'), + ('unittest.main', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\main.py', + 'PYMODULE'), + ('unittest.runner', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\runner.py', + 'PYMODULE'), + ('unittest.loader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\loader.py', + 'PYMODULE'), + ('unittest.suite', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\suite.py', + 'PYMODULE'), + ('unittest.case', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\case.py', + 'PYMODULE'), + ('unittest._log', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\_log.py', + 'PYMODULE'), + ('difflib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\difflib.py', + 'PYMODULE'), + ('unittest.result', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\result.py', + 'PYMODULE'), + ('unittest.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\util.py', + 'PYMODULE'), + ('pkgutil', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pkgutil.py', + 'PYMODULE'), + ('zipimport', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\zipimport.py', + 'PYMODULE'), + ('asyncio', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\__init__.py', + 'PYMODULE'), + ('asyncio.unix_events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\unix_events.py', + 'PYMODULE'), + ('asyncio.log', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\log.py', + 'PYMODULE'), + ('asyncio.windows_events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\windows_events.py', + 'PYMODULE'), + ('asyncio.windows_utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\windows_utils.py', + 'PYMODULE'), + ('asyncio.selector_events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\selector_events.py', + 'PYMODULE'), + ('ssl', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ssl.py', + 'PYMODULE'), + ('asyncio.proactor_events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\proactor_events.py', + 'PYMODULE'), + ('asyncio.base_subprocess', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\base_subprocess.py', + 'PYMODULE'), + ('asyncio.threads', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\threads.py', + 'PYMODULE'), + ('asyncio.taskgroups', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\taskgroups.py', + 'PYMODULE'), + ('asyncio.subprocess', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\subprocess.py', + 'PYMODULE'), + ('asyncio.streams', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\streams.py', + 'PYMODULE'), + ('asyncio.runners', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\runners.py', + 'PYMODULE'), + ('asyncio.base_events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\base_events.py', + 'PYMODULE'), + ('asyncio.trsock', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\trsock.py', + 'PYMODULE'), + ('asyncio.staggered', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\staggered.py', + 'PYMODULE'), + ('asyncio.timeouts', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\timeouts.py', + 'PYMODULE'), + ('asyncio.tasks', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\tasks.py', + 'PYMODULE'), + ('asyncio.queues', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\queues.py', + 'PYMODULE'), + ('asyncio.base_tasks', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\base_tasks.py', + 'PYMODULE'), + ('asyncio.locks', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\locks.py', + 'PYMODULE'), + ('asyncio.mixins', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\mixins.py', + 'PYMODULE'), + ('asyncio.sslproto', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\sslproto.py', + 'PYMODULE'), + ('asyncio.transports', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\transports.py', + 'PYMODULE'), + ('asyncio.protocols', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\protocols.py', + 'PYMODULE'), + ('asyncio.futures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\futures.py', + 'PYMODULE'), + ('asyncio.base_futures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\base_futures.py', + 'PYMODULE'), + ('asyncio.exceptions', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\exceptions.py', + 'PYMODULE'), + ('asyncio.events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\events.py', + 'PYMODULE'), + ('asyncio.format_helpers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\format_helpers.py', + 'PYMODULE'), + ('asyncio.coroutines', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\coroutines.py', + 'PYMODULE'), + ('asyncio.constants', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\constants.py', + 'PYMODULE'), + ('concurrent.futures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\concurrent\\futures\\__init__.py', + 'PYMODULE'), + ('concurrent.futures.thread', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\concurrent\\futures\\thread.py', + 'PYMODULE'), + ('concurrent.futures.process', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\concurrent\\futures\\process.py', + 'PYMODULE'), + ('multiprocessing.synchronize', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\synchronize.py', + 'PYMODULE'), + ('multiprocessing.heap', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\heap.py', + 'PYMODULE'), + ('multiprocessing.resource_tracker', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\resource_tracker.py', + 'PYMODULE'), + ('multiprocessing.spawn', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\spawn.py', + 'PYMODULE'), + ('runpy', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\runpy.py', + 'PYMODULE'), + ('multiprocessing.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\util.py', + 'PYMODULE'), + ('multiprocessing.forkserver', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\forkserver.py', + 'PYMODULE'), + ('multiprocessing.process', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\process.py', + 'PYMODULE'), + ('multiprocessing.context', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\context.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_win32', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\popen_spawn_win32.py', + 'PYMODULE'), + ('multiprocessing.popen_forkserver', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\popen_forkserver.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_posix', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\popen_spawn_posix.py', + 'PYMODULE'), + ('multiprocessing.popen_fork', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\popen_fork.py', + 'PYMODULE'), + ('multiprocessing.sharedctypes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\sharedctypes.py', + 'PYMODULE'), + ('multiprocessing.pool', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\pool.py', + 'PYMODULE'), + ('multiprocessing.dummy', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\dummy\\__init__.py', + 'PYMODULE'), + ('multiprocessing.dummy.connection', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\dummy\\connection.py', + 'PYMODULE'), + ('multiprocessing.managers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\managers.py', + 'PYMODULE'), + ('multiprocessing.shared_memory', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\shared_memory.py', + 'PYMODULE'), + ('secrets', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\secrets.py', + 'PYMODULE'), + ('hmac', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\hmac.py', + 'PYMODULE'), + ('multiprocessing.reduction', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\reduction.py', + 'PYMODULE'), + ('multiprocessing.resource_sharer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\resource_sharer.py', + 'PYMODULE'), + ('multiprocessing.queues', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\queues.py', + 'PYMODULE'), + ('multiprocessing.connection', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\connection.py', + 'PYMODULE'), + ('xmlrpc.client', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xmlrpc\\client.py', + 'PYMODULE'), + ('xmlrpc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xmlrpc\\__init__.py', + 'PYMODULE'), + ('xml.parsers.expat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\parsers\\expat.py', + 'PYMODULE'), + ('xml.parsers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\parsers\\__init__.py', + 'PYMODULE'), + ('xml', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\__init__.py', + 'PYMODULE'), + ('xml.sax.expatreader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\expatreader.py', + 'PYMODULE'), + ('xml.sax.saxutils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\saxutils.py', + 'PYMODULE'), + ('urllib.request', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\urllib\\request.py', + 'PYMODULE'), + ('getpass', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\getpass.py', + 'PYMODULE'), + ('nturl2path', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\nturl2path.py', + 'PYMODULE'), + ('ftplib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ftplib.py', + 'PYMODULE'), + ('netrc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\netrc.py', + 'PYMODULE'), + ('mimetypes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\mimetypes.py', + 'PYMODULE'), + ('http.cookiejar', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\http\\cookiejar.py', + 'PYMODULE'), + ('http', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\http\\__init__.py', + 'PYMODULE'), + ('urllib.response', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\urllib\\response.py', + 'PYMODULE'), + ('urllib.error', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\urllib\\error.py', + 'PYMODULE'), + ('xml.sax', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\__init__.py', + 'PYMODULE'), + ('xml.sax.handler', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\handler.py', + 'PYMODULE'), + ('xml.sax._exceptions', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\_exceptions.py', + 'PYMODULE'), + ('xml.sax.xmlreader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\xmlreader.py', + 'PYMODULE'), + ('http.client', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\http\\client.py', + 'PYMODULE'), + ('multiprocessing', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\__init__.py', + 'PYMODULE'), + ('concurrent.futures._base', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\concurrent\\futures\\_base.py', + 'PYMODULE'), + ('concurrent', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\concurrent\\__init__.py', + 'PYMODULE'), + ('setuptools._distutils.ccompiler', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\ccompiler.py', + 'PYMODULE'), + ('setuptools._distutils.fancy_getopt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\fancy_getopt.py', + 'PYMODULE'), + ('setuptools._distutils.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\util.py', + 'PYMODULE'), + ('setuptools._distutils.compat.py38', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\compat\\py38.py', + 'PYMODULE'), + ('setuptools._distutils.compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\compat\\__init__.py', + 'PYMODULE'), + ('_aix_support', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_aix_support.py', + 'PYMODULE'), + ('jaraco', '-', 'PYMODULE'), + ('setuptools._vendor.jaraco.functools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\functools\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco', '-', 'PYMODULE'), + ('sysconfig', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\sysconfig\\__init__.py', + 'PYMODULE'), + ('setuptools._distutils.sysconfig', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\sysconfig.py', + 'PYMODULE'), + ('setuptools._distutils.text_file', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\text_file.py', + 'PYMODULE'), + ('setuptools._distutils.compat.py39', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\compat\\py39.py', + 'PYMODULE'), + ('setuptools._distutils.extension', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\extension.py', + 'PYMODULE'), + ('setuptools._distutils._modified', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\_modified.py', + 'PYMODULE'), + ('site', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site.py', + 'PYMODULE'), + ('_pyrepl.main', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\main.py', + 'PYMODULE'), + ('_pyrepl', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\__init__.py', + 'PYMODULE'), + ('_pyrepl.curses', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\curses.py', + 'PYMODULE'), + ('curses', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\curses\\__init__.py', + 'PYMODULE'), + ('curses.has_key', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\curses\\has_key.py', + 'PYMODULE'), + ('_pyrepl._minimal_curses', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\_minimal_curses.py', + 'PYMODULE'), + ('_pyrepl.input', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\input.py', + 'PYMODULE'), + ('_pyrepl.keymap', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\keymap.py', + 'PYMODULE'), + ('_pyrepl.types', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\types.py', + 'PYMODULE'), + ('_pyrepl.commands', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\commands.py', + 'PYMODULE'), + ('_pyrepl.pager', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\pager.py', + 'PYMODULE'), + ('tty', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tty.py', + 'PYMODULE'), + ('_pyrepl.historical_reader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\historical_reader.py', + 'PYMODULE'), + ('_pyrepl.reader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\reader.py', + 'PYMODULE'), + ('_pyrepl._threading_handler', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\_threading_handler.py', + 'PYMODULE'), + ('_pyrepl.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\utils.py', + 'PYMODULE'), + ('_colorize', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_colorize.py', + 'PYMODULE'), + ('_pyrepl.console', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\console.py', + 'PYMODULE'), + ('code', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\code.py', + 'PYMODULE'), + ('codeop', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\codeop.py', + 'PYMODULE'), + ('_pyrepl.trace', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\trace.py', + 'PYMODULE'), + ('_pyrepl.simple_interact', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\simple_interact.py', + 'PYMODULE'), + ('_pyrepl.unix_console', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\unix_console.py', + 'PYMODULE'), + ('_pyrepl.unix_eventqueue', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\unix_eventqueue.py', + 'PYMODULE'), + ('_pyrepl.fancy_termios', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\fancy_termios.py', + 'PYMODULE'), + ('_pyrepl.windows_console', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\windows_console.py', + 'PYMODULE'), + ('ctypes.wintypes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\wintypes.py', + 'PYMODULE'), + ('_pyrepl.readline', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\readline.py', + 'PYMODULE'), + ('_pyrepl.completing_reader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\completing_reader.py', + 'PYMODULE'), + ('rlcompleter', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\rlcompleter.py', + 'PYMODULE'), + ('_sitebuiltins', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_sitebuiltins.py', + 'PYMODULE'), + ('pydoc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pydoc.py', + 'PYMODULE'), + ('webbrowser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\webbrowser.py', + 'PYMODULE'), + ('shlex', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\shlex.py', + 'PYMODULE'), + ('http.server', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\http\\server.py', + 'PYMODULE'), + ('socketserver', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\socketserver.py', + 'PYMODULE'), + ('html', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\html\\__init__.py', + 'PYMODULE'), + ('html.entities', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\html\\entities.py', + 'PYMODULE'), + ('pydoc_data.topics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pydoc_data\\topics.py', + 'PYMODULE'), + ('pydoc_data', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pydoc_data\\__init__.py', + 'PYMODULE'), + ('setuptools._distutils._log', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\_log.py', + 'PYMODULE'), + ('setuptools._distutils.errors', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\errors.py', + 'PYMODULE'), + ('setuptools._distutils.core', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\core.py', + 'PYMODULE'), + ('setuptools._distutils.dist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\dist.py', + 'PYMODULE'), + ('setuptools._distutils.versionpredicate', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\versionpredicate.py', + 'PYMODULE'), + ('configparser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\configparser.py', + 'PYMODULE'), + ('packaging.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\utils.py', + 'PYMODULE'), + ('packaging', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\__init__.py', + 'PYMODULE'), + ('pkg_resources', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pkg_resources\\__init__.py', + 'PYMODULE'), + ('packaging.metadata', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\metadata.py', + 'PYMODULE'), + ('packaging.licenses._spdx', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\licenses\\_spdx.py', + 'PYMODULE'), + ('packaging.licenses', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\licenses\\__init__.py', + 'PYMODULE'), + ('packaging._tokenizer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_tokenizer.py', + 'PYMODULE'), + ('packaging._structures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_structures.py', + 'PYMODULE'), + ('packaging._parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_parser.py', + 'PYMODULE'), + ('packaging._elffile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_elffile.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.android', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\android.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.unix', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\unix.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.macos', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\macos.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.windows', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\windows.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\version.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.api', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\api.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco.text', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\text\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco.context', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\context.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\backports\\tarfile\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.backports', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\backports\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile.compat.py38', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\backports\\tarfile\\compat\\py38.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile.compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\backports\\tarfile\\compat\\__init__.py', + 'PYMODULE'), + ('backports', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\backports\\__init__.py', + 'PYMODULE'), + ('packaging.specifiers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\specifiers.py', + 'PYMODULE'), + ('packaging.requirements', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\requirements.py', + 'PYMODULE'), + ('packaging.markers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\markers.py', + 'PYMODULE'), + ('plistlib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\plistlib.py', + 'PYMODULE'), + ('packaging._musllinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_musllinux.py', + 'PYMODULE'), + ('packaging._manylinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_manylinux.py', + 'PYMODULE'), + ('packaging.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\version.py', + 'PYMODULE'), + ('packaging.tags', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\tags.py', + 'PYMODULE'), + ('setuptools._distutils.cmd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\cmd.py', + 'PYMODULE'), + ('setuptools.warnings', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\warnings.py', + 'PYMODULE'), + ('setuptools.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\version.py', + 'PYMODULE'), + ('setuptools._importlib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_importlib.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._adapters', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_adapters.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._text', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_text.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._itertools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_itertools.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._functools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_functools.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_compat.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._collections', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_collections.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat.py311', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\compat\\py311.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat.py39', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\compat\\py39.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\compat\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._meta', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_meta.py', + 'PYMODULE'), + ('setuptools._vendor.zipp', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\zipp\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.glob', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\zipp\\glob.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.compat.py310', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\zipp\\compat\\py310.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\zipp\\compat\\__init__.py', + 'PYMODULE'), + ('setuptools.extension', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\extension.py', + 'PYMODULE'), + ('setuptools._path', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_path.py', + 'PYMODULE'), + ('setuptools.dist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\dist.py', + 'PYMODULE'), + ('setuptools.command.bdist_wheel', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\bdist_wheel.py', + 'PYMODULE'), + ('wheel.macosx_libfile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\macosx_libfile.py', + 'PYMODULE'), + ('wheel', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\__init__.py', + 'PYMODULE'), + ('setuptools.command.egg_info', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\egg_info.py', + 'PYMODULE'), + ('setuptools._distutils.filelist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\filelist.py', + 'PYMODULE'), + ('setuptools.command._requirestxt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\_requirestxt.py', + 'PYMODULE'), + ('setuptools.glob', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\glob.py', + 'PYMODULE'), + ('setuptools.command.setopt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\setopt.py', + 'PYMODULE'), + ('setuptools.command.sdist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\sdist.py', + 'PYMODULE'), + ('setuptools._distutils.command.sdist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\command\\sdist.py', + 'PYMODULE'), + ('setuptools.command.build', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\build.py', + 'PYMODULE'), + ('setuptools._distutils.command.build', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\command\\build.py', + 'PYMODULE'), + ('setuptools.command.bdist_egg', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\bdist_egg.py', + 'PYMODULE'), + ('setuptools.unicode_utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\unicode_utils.py', + 'PYMODULE'), + ('setuptools.compat.py39', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\compat\\py39.py', + 'PYMODULE'), + ('setuptools.compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\compat\\__init__.py', + 'PYMODULE'), + ('setuptools.compat.py311', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\compat\\py311.py', + 'PYMODULE'), + ('wheel.wheelfile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\wheelfile.py', + 'PYMODULE'), + ('wheel.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\util.py', + 'PYMODULE'), + ('wheel.cli', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\cli\\__init__.py', + 'PYMODULE'), + ('wheel.cli.tags', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\cli\\tags.py', + 'PYMODULE'), + ('wheel.cli.convert', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\cli\\convert.py', + 'PYMODULE'), + ('wheel.vendored.packaging.tags', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\tags.py', + 'PYMODULE'), + ('wheel.vendored.packaging._musllinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_musllinux.py', + 'PYMODULE'), + ('wheel.vendored.packaging._elffile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_elffile.py', + 'PYMODULE'), + ('wheel.vendored.packaging._manylinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_manylinux.py', + 'PYMODULE'), + ('wheel.vendored.packaging', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\__init__.py', + 'PYMODULE'), + ('wheel.vendored', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\__init__.py', + 'PYMODULE'), + ('wheel.metadata', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\metadata.py', + 'PYMODULE'), + ('wheel.vendored.packaging.requirements', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\requirements.py', + 'PYMODULE'), + ('wheel.vendored.packaging.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\utils.py', + 'PYMODULE'), + ('wheel.vendored.packaging.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\version.py', + 'PYMODULE'), + ('wheel.vendored.packaging._structures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_structures.py', + 'PYMODULE'), + ('wheel.vendored.packaging.specifiers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\specifiers.py', + 'PYMODULE'), + ('wheel.vendored.packaging.markers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\markers.py', + 'PYMODULE'), + ('wheel.vendored.packaging._tokenizer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_tokenizer.py', + 'PYMODULE'), + ('wheel.vendored.packaging._parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_parser.py', + 'PYMODULE'), + ('wheel.cli.pack', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\cli\\pack.py', + 'PYMODULE'), + ('wheel.cli.unpack', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\cli\\unpack.py', + 'PYMODULE'), + ('setuptools.installer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\installer.py', + 'PYMODULE'), + ('setuptools.wheel', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\wheel.py', + 'PYMODULE'), + ('setuptools.archive_util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\archive_util.py', + 'PYMODULE'), + ('setuptools._distutils.log', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\log.py', + 'PYMODULE'), + ('setuptools.config.setupcfg', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\setupcfg.py', + 'PYMODULE'), + ('setuptools.config.expand', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\expand.py', + 'PYMODULE'), + ('setuptools.errors', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\errors.py', + 'PYMODULE'), + ('setuptools.config.pyprojecttoml', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\pyprojecttoml.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\__init__.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.fastjsonschema_validations', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\fastjsonschema_validations.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.fastjsonschema_exceptions', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\fastjsonschema_exceptions.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.extra_validations', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\extra_validations.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.error_reporting', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\error_reporting.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.formats', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\formats.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.requirements', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\requirements.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\utils.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\version.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._structures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_structures.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.tags', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\tags.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._musllinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_musllinux.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._elffile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_elffile.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._manylinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_manylinux.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.specifiers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\specifiers.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.markers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\markers.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._tokenizer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_tokenizer.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_parser.py', + 'PYMODULE'), + ('setuptools._vendor.packaging', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\__init__.py', + 'PYMODULE'), + ('setuptools.compat.py310', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\compat\\py310.py', + 'PYMODULE'), + ('setuptools._vendor.tomli', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\tomli\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\tomli\\_parser.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._types', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\tomli\\_types.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._re', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\tomli\\_re.py', + 'PYMODULE'), + ('tomllib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tomllib\\__init__.py', + 'PYMODULE'), + ('tomllib._parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tomllib\\_parser.py', + 'PYMODULE'), + ('tomllib._types', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tomllib\\_types.py', + 'PYMODULE'), + ('tomllib._re', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tomllib\\_re.py', + 'PYMODULE'), + ('setuptools.config._apply_pyprojecttoml', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_apply_pyprojecttoml.py', + 'PYMODULE'), + ('setuptools.config', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\__init__.py', + 'PYMODULE'), + ('setuptools._shutil', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_shutil.py', + 'PYMODULE'), + ('setuptools.windows_support', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\windows_support.py', + 'PYMODULE'), + ('setuptools.command', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\__init__.py', + 'PYMODULE'), + ('setuptools._distutils.command.bdist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\command\\bdist.py', + 'PYMODULE'), + ('setuptools._entry_points', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_entry_points.py', + 'PYMODULE'), + ('setuptools._itertools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_itertools.py', + 'PYMODULE'), + ('setuptools.discovery', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\discovery.py', + 'PYMODULE'), + ('setuptools.depends', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\depends.py', + 'PYMODULE'), + ('setuptools._imp', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_imp.py', + 'PYMODULE'), + ('setuptools.logging', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\logging.py', + 'PYMODULE'), + ('setuptools.monkey', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\monkey.py', + 'PYMODULE'), + ('setuptools._core_metadata', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_core_metadata.py', + 'PYMODULE'), + ('setuptools._reqs', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_reqs.py', + 'PYMODULE'), + ('setuptools._normalization', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_normalization.py', + 'PYMODULE'), + ('_distutils_hack.override', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_distutils_hack\\override.py', + 'PYMODULE'), + ('cantools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\__init__.py', + 'PYMODULE'), + ('cantools.database', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\__init__.py', + 'PYMODULE'), + ('cantools.database.errors', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\errors.py', + 'PYMODULE'), + ('cantools.database.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\utils.py', + 'PYMODULE'), + ('bitstruct', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\bitstruct\\__init__.py', + 'PYMODULE'), + ('cantools.database.can.signal', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\signal.py', + 'PYMODULE'), + ('cantools.database.can.formats.dbc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\dbc.py', + 'PYMODULE'), + ('cantools.database.can.formats.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\utils.py', + 'PYMODULE'), + ('cantools.database.can.formats.dbc_specifics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\dbc_specifics.py', + 'PYMODULE'), + ('cantools.database.can.signal_group', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\signal_group.py', + 'PYMODULE'), + ('cantools.database.can.internal_database', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\internal_database.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.database_specifics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\database_specifics.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\__init__.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.system_loader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\system_loader.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\utils.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.secoc_properties', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\secoc_properties.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.node_specifics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\node_specifics.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.message_specifics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\message_specifics.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.end_to_end_properties', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\end_to_end_properties.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.ecu_extract_loader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\ecu_extract_loader.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.bus_specifics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\bus_specifics.py', + 'PYMODULE'), + ('xml.etree.ElementTree', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\etree\\ElementTree.py', + 'PYMODULE'), + ('xml.etree.cElementTree', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\etree\\cElementTree.py', + 'PYMODULE'), + ('xml.etree.ElementInclude', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\etree\\ElementInclude.py', + 'PYMODULE'), + ('xml.etree.ElementPath', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\etree\\ElementPath.py', + 'PYMODULE'), + ('xml.etree', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\etree\\__init__.py', + 'PYMODULE'), + ('cantools.database.can.formats', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\__init__.py', + 'PYMODULE'), + ('cantools.database.can.formats.sym', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\sym.py', + 'PYMODULE'), + ('cantools.database.can.formats.kcd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\kcd.py', + 'PYMODULE'), + ('cantools.database.can.environment_variable', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\environment_variable.py', + 'PYMODULE'), + ('cantools.database.can.bus', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\bus.py', + 'PYMODULE'), + ('cantools.database.can.attribute_definition', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\attribute_definition.py', + 'PYMODULE'), + ('textparser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\textparser.py', + 'PYMODULE'), + ('cantools.database.conversion', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\conversion.py', + 'PYMODULE'), + ('cantools.database.can.node', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\node.py', + 'PYMODULE'), + ('cantools.database.can.message', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\message.py', + 'PYMODULE'), + ('cantools.database.can.attribute', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\attribute.py', + 'PYMODULE'), + ('cantools.database.namedsignalvalue', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\namedsignalvalue.py', + 'PYMODULE'), + ('cantools.database.diagnostics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\__init__.py', + 'PYMODULE'), + ('cantools.database.diagnostics.did', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\did.py', + 'PYMODULE'), + ('cantools.database.diagnostics.database', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\database.py', + 'PYMODULE'), + ('cantools.database.diagnostics.formats.cdd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\formats\\cdd.py', + 'PYMODULE'), + ('cantools.database.diagnostics.internal_database', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\internal_database.py', + 'PYMODULE'), + ('cantools.database.diagnostics.formats', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\formats\\__init__.py', + 'PYMODULE'), + ('cantools.database.diagnostics.data', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\data.py', + 'PYMODULE'), + ('cantools.database.can', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\__init__.py', + 'PYMODULE'), + ('cantools.database.can.database', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\database.py', + 'PYMODULE'), + ('cantools.typechecking', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\typechecking.py', + 'PYMODULE'), + ('diskcache', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\__init__.py', + 'PYMODULE'), + ('diskcache.djangocache', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\djangocache.py', + 'PYMODULE'), + ('diskcache.recipes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\recipes.py', + 'PYMODULE'), + ('diskcache.persistent', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\persistent.py', + 'PYMODULE'), + ('diskcache.fanout', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\fanout.py', + 'PYMODULE'), + ('sqlite3', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\sqlite3\\__init__.py', + 'PYMODULE'), + ('sqlite3.dump', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\sqlite3\\dump.py', + 'PYMODULE'), + ('sqlite3.__main__', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\sqlite3\\__main__.py', + 'PYMODULE'), + ('sqlite3.dbapi2', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\sqlite3\\dbapi2.py', + 'PYMODULE'), + ('diskcache.core', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\core.py', + 'PYMODULE'), + ('pickletools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pickletools.py', + 'PYMODULE'), + ('doctest', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\doctest.py', + 'PYMODULE'), + ('pdb', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pdb.py', + 'PYMODULE'), + ('bdb', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\bdb.py', + 'PYMODULE'), + ('cmd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\cmd.py', + 'PYMODULE'), + ('cantools.errors', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\errors.py', + 'PYMODULE'), + ('cantools.tester', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\tester.py', + 'PYMODULE'), + ('can', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\__init__.py', + 'PYMODULE'), + ('can.thread_safe_bus', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\thread_safe_bus.py', + 'PYMODULE'), + ('wrapt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\__init__.py', + 'PYMODULE'), + ('wrapt.arguments', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\arguments.py', + 'PYMODULE'), + ('wrapt.importer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\importer.py', + 'PYMODULE'), + ('wrapt.decorators', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\decorators.py', + 'PYMODULE'), + ('wrapt.weakrefs', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\weakrefs.py', + 'PYMODULE'), + ('wrapt.patches', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\patches.py', + 'PYMODULE'), + ('wrapt.__wrapt__', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\__wrapt__.py', + 'PYMODULE'), + ('wrapt.wrappers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\wrappers.py', + 'PYMODULE'), + ('can.notifier', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\notifier.py', + 'PYMODULE'), + ('can.message', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\message.py', + 'PYMODULE'), + ('can.listener', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\listener.py', + 'PYMODULE'), + ('can.io', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\__init__.py', + 'PYMODULE'), + ('can.io.trc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\trc.py', + 'PYMODULE'), + ('can.io.generic', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\generic.py', + 'PYMODULE'), + ('can.io.sqlite', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\sqlite.py', + 'PYMODULE'), + ('can.io.printer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\printer.py', + 'PYMODULE'), + ('can.io.mf4', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\mf4.py', + 'PYMODULE'), + ('can.io.csv', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\csv.py', + 'PYMODULE'), + ('can.io.canutils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\canutils.py', + 'PYMODULE'), + ('can.io.blf', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\blf.py', + 'PYMODULE'), + ('can.io.asc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\asc.py', + 'PYMODULE'), + ('can.io.player', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\player.py', + 'PYMODULE'), + ('can._entry_points', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\_entry_points.py', + 'PYMODULE'), + ('can.io.logger', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\logger.py', + 'PYMODULE'), + ('can.interfaces', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\interfaces\\__init__.py', + 'PYMODULE'), + ('can.exceptions', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\exceptions.py', + 'PYMODULE'), + ('can.bus', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\bus.py', + 'PYMODULE'), + ('can.bit_timing', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\bit_timing.py', + 'PYMODULE'), + ('can.interface', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\interface.py', + 'PYMODULE'), + ('can.broadcastmanager', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\broadcastmanager.py', + 'PYMODULE'), + ('can.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\util.py', + 'PYMODULE'), + ('can.typechecking', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\typechecking.py', + 'PYMODULE'), + ('cantools.logreader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\logreader.py', + 'PYMODULE'), + ('cantools.j1939', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\j1939.py', + 'PYMODULE'), + ('tracemalloc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tracemalloc.py', + 'PYMODULE'), + ('stringprep', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\stringprep.py', + 'PYMODULE'), + ('_py_abc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_py_abc.py', + 'PYMODULE'), + ('shutil', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\shutil.py', + 'PYMODULE'), + ('subprocess', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\subprocess.py', 'PYMODULE'), ('json', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\json\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\json\\__init__.py', 'PYMODULE'), ('json.encoder', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\json\\encoder.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\json\\encoder.py', 'PYMODULE'), ('json.decoder', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\json\\decoder.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\json\\decoder.py', 'PYMODULE'), ('json.scanner', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\json\\scanner.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\json\\scanner.py', 'PYMODULE'), ('datetime', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\datetime.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\datetime.py', + 'PYMODULE'), + ('_pydatetime', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pydatetime.py', 'PYMODULE'), ('PyQt5', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\__init__.py', 'PYMODULE')], - [('python310.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python310.dll', + [('python313.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\python313.dll', 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', + ('PyQt5\\Qt5\\plugins\\bearer\\qgenericbearer.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\bearer\\qgenericbearer.dll', 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', + ('PyQt5\\Qt5\\bin\\libcrypto-1_1-x64.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libcrypto-1_1-x64.dll', 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', + ('PyQt5\\Qt5\\bin\\libssl-1_1-x64.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libssl-1_1-x64.dll', 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', + ('PyQt5\\Qt5\\plugins\\printsupport\\windowsprintersupport.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\printsupport\\windowsprintersupport.dll', 'BINARY'), ('PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', 'BINARY'), ('PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', 'BINARY'), ('PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', 'BINARY'), ('PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', 'BINARY'), ('PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\libGLESv2.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libGLESv2.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', 'BINARY'), ('PyQt5\\Qt5\\bin\\libEGL.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libEGL.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libEGL.dll', 'BINARY'), ('PyQt5\\Qt5\\bin\\opengl32sw.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\opengl32sw.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\opengl32sw.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\libGLESv2.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libGLESv2.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', 'BINARY'), ('_decimal.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_decimal.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_decimal.pyd', 'EXTENSION'), ('_hashlib.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_hashlib.pyd', - 'EXTENSION'), - ('_lzma.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_lzma.pyd', - 'EXTENSION'), - ('_bz2.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_bz2.pyd', - 'EXTENSION'), - ('unicodedata.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\unicodedata.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_hashlib.pyd', 'EXTENSION'), ('select.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\select.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\select.pyd', 'EXTENSION'), ('_socket.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_socket.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_socket.pyd', + 'EXTENSION'), + ('unicodedata.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\unicodedata.pyd', + 'EXTENSION'), + ('_lzma.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_lzma.pyd', + 'EXTENSION'), + ('_bz2.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_bz2.pyd', + 'EXTENSION'), + ('_queue.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_queue.pyd', + 'EXTENSION'), + ('_ctypes.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_ctypes.pyd', + 'EXTENSION'), + ('_wmi.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_wmi.pyd', + 'EXTENSION'), + ('_overlapped.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_overlapped.pyd', + 'EXTENSION'), + ('_ssl.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_ssl.pyd', + 'EXTENSION'), + ('_asyncio.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_asyncio.pyd', + 'EXTENSION'), + ('_multiprocessing.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_multiprocessing.pyd', + 'EXTENSION'), + ('pyexpat.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\pyexpat.pyd', + 'EXTENSION'), + ('bitstruct\\c.cp313-win_amd64.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\bitstruct\\c.cp313-win_amd64.pyd', + 'EXTENSION'), + ('_elementtree.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_elementtree.pyd', + 'EXTENSION'), + ('_sqlite3.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_sqlite3.pyd', + 'EXTENSION'), + ('wrapt\\_wrappers.cp313-win_amd64.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\_wrappers.cp313-win_amd64.pyd', + 'EXTENSION'), + ('PyQt5\\QtWebSockets.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtWebSockets.pyd', + 'EXTENSION'), + ('PyQt5\\QtWebChannel.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtWebChannel.pyd', + 'EXTENSION'), + ('PyQt5\\QtNetwork.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtNetwork.pyd', + 'EXTENSION'), + ('PyQt5\\QtSvg.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtSvg.pyd', + 'EXTENSION'), + ('PyQt5\\QtPrintSupport.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtPrintSupport.pyd', 'EXTENSION'), ('PyQt5\\QtCore.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtCore.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtCore.pyd', 'EXTENSION'), ('PyQt5\\QtGui.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtGui.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtGui.pyd', 'EXTENSION'), ('PyQt5\\QtWidgets.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtWidgets.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtWidgets.pyd', 'EXTENSION'), - ('PyQt5\\sip.cp310-win_amd64.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\sip.cp310-win_amd64.pyd', + ('PyQt5\\sip.cp313-win_amd64.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\sip.cp313-win_amd64.pyd', 'EXTENSION'), + ('api-ms-win-crt-heap-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-heap-l1-1-0.dll', + 'BINARY'), ('api-ms-win-crt-string-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-string-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-locale-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-locale-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-math-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-math-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-process-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-process-l1-1-0.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-string-l1-1-0.dll', 'BINARY'), ('api-ms-win-crt-convert-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-convert-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-convert-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-math-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-math-l1-1-0.dll', + 'BINARY'), + ('VCRUNTIME140.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\VCRUNTIME140.dll', 'BINARY'), ('api-ms-win-crt-runtime-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-runtime-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-runtime-l1-1-0.dll', 'BINARY'), ('api-ms-win-crt-stdio-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-stdio-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-stdio-l1-1-0.dll', 'BINARY'), - ('api-ms-win-crt-heap-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-heap-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-filesystem-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-filesystem-l1-1-0.dll', + ('api-ms-win-crt-locale-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-locale-l1-1-0.dll', 'BINARY'), ('api-ms-win-crt-time-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-time-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-time-l1-1-0.dll', 'BINARY'), - ('api-ms-win-crt-conio-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-conio-l1-1-0.dll', + ('api-ms-win-crt-filesystem-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-filesystem-l1-1-0.dll', 'BINARY'), ('api-ms-win-crt-environment-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-environment-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-environment-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-conio-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-conio-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-process-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-process-l1-1-0.dll', 'BINARY'), ('PyQt5\\Qt5\\bin\\Qt5Core.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Core.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Gui.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Gui.dll', - 'BINARY'), - ('api-ms-win-crt-utility-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-utility-l1-1-0.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5DBus.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5DBus.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Svg.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Svg.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Quick.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Quick.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Core.dll', 'BINARY'), ('PyQt5\\Qt5\\bin\\Qt5Network.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Network.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Network.dll', + 'BINARY'), + ('api-ms-win-crt-utility-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-utility-l1-1-0.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Gui.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Gui.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5PrintSupport.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5PrintSupport.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Svg.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Svg.dll', 'BINARY'), ('PyQt5\\Qt5\\bin\\MSVCP140.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140.dll', 'BINARY'), - ('PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', + ('PyQt5\\Qt5\\bin\\Qt5Quick.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Quick.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5DBus.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5DBus.dll', + 'BINARY'), + ('VCRUNTIME140_1.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\VCRUNTIME140_1.dll', 'BINARY'), ('PyQt5\\Qt5\\bin\\Qt5Widgets.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Widgets.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Widgets.dll', 'BINARY'), - ('libcrypto-1_1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\libcrypto-1_1.dll', + ('PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', + 'BINARY'), + ('libcrypto-3.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\libcrypto-3.dll', + 'BINARY'), + ('libffi-8.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\libffi-8.dll', + 'BINARY'), + ('libssl-3.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\libssl-3.dll', + 'BINARY'), + ('sqlite3.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\sqlite3.dll', 'BINARY'), ('python3.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python3.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\python3.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5WebChannel.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebChannel.dll', 'BINARY'), ('ucrtbase.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\ucrtbase.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\ucrtbase.dll', 'BINARY'), ('PyQt5\\Qt5\\bin\\MSVCP140_1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140_1.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140_1.dll', 'BINARY'), ('PyQt5\\Qt5\\bin\\Qt5Qml.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Qml.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Qml.dll', 'BINARY'), - ('api-ms-win-core-handle-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-handle-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-file-l1-2-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l1-2-0.dll', - 'BINARY'), - ('api-ms-win-core-heap-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-heap-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-namedpipe-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-namedpipe-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-util-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-util-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-localization-l1-2-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-localization-l1-2-0.dll', - 'BINARY'), - ('api-ms-win-core-debug-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-debug-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-memory-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-memory-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-interlocked-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-interlocked-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-profile-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-profile-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-errorhandling-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-errorhandling-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-sysinfo-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-sysinfo-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-processenvironment-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processenvironment-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-fibers-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-fibers-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-file-l2-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l2-1-0.dll', - 'BINARY'), - ('api-ms-win-core-synch-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-synch-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-libraryloader-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-libraryloader-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-datetime-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-datetime-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-processthreads-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processthreads-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-rtlsupport-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-rtlsupport-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-synch-l1-2-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-synch-l1-2-0.dll', - 'BINARY'), - ('api-ms-win-core-file-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l1-1-0.dll', + ('PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', 'BINARY'), ('api-ms-win-core-processthreads-l1-1-1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processthreads-l1-1-1.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-processthreads-l1-1-1.dll', 'BINARY'), - ('api-ms-win-core-console-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-console-l1-1-0.dll', + ('api-ms-win-core-localization-l1-2-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-localization-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-synch-l1-2-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-synch-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-heap-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-heap-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-util-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-util-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-rtlsupport-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-rtlsupport-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-debug-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-debug-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-memory-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-memory-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-handle-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-handle-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-datetime-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-datetime-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processenvironment-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-processenvironment-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l2-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-file-l2-1-0.dll', + 'BINARY'), + ('api-ms-win-core-libraryloader-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-libraryloader-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-namedpipe-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-namedpipe-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-sysinfo-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-sysinfo-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-interlocked-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-interlocked-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processthreads-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-processthreads-l1-1-0.dll', 'BINARY'), ('api-ms-win-core-timezone-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-timezone-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-timezone-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-profile-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-profile-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-errorhandling-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-errorhandling-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-synch-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-synch-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l1-2-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-file-l1-2-0.dll', 'BINARY'), ('api-ms-win-core-string-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-string-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-string-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-console-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-console-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-file-l1-1-0.dll', 'BINARY')], [], [], - [('base_library.zip', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\base_library.zip', + [('.icon\\icon(org).ico', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon(org).ico', 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ca.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ca.qm', + ('.icon\\icon(org).png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon(org).png', 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ru.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ru.qm', + ('.icon\\icon.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon.png', 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_fi.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fi.qm', + ('.icon\\icon.pptx', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon.pptx', 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_it.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_it.qm', + ('icon.ico', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon.ico', 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_pt.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pt.qm', + ('img\\add_file.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\add_file.png', 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_gd.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_gd.qm', + ('img\\add_folder.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\add_folder.png', 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_he.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_he.qm', + ('img\\convert.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\convert.png', 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ar.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ar.qm', + ('img\\delete_all.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_all.png', 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_es.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_es.qm', + ('img\\delete_description.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_description.png', 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_de.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_de.qm', + ('img\\delete_file.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_file.png', + 'DATA'), + ('base_library.zip', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\base_library.zip', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\top_level.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\top_level.txt', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\INSTALLER', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\INSTALLER', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\RECORD', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\RECORD', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\REQUESTED', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\REQUESTED', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\METADATA', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\METADATA', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\WHEEL', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\WHEEL', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\LICENSE', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\LICENSE', + 'DATA'), + ('setuptools\\_vendor\\jaraco\\text\\Lorem ipsum.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\text\\Lorem ' + 'ipsum.txt', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_ja.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_pl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_ru.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_fr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_es.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_de.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_en.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_ca.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_ko.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_uk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_uk.qm', 'DATA'), ('PyQt5\\Qt5\\translations\\qtbase_fi.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fi.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_gl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_cs.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_cs.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_bg.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_bg.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_cs.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_cs.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_es.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_es.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ru.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ru.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_tr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_tr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_sl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_zh_TW.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_TW.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ca.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ca.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_uk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_uk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_uk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_uk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_lv.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lv.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_fr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_fr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_fa.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fa.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ko.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ko.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ar.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ar.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_bg.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_bg.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_pl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_pl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_da.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_da.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_de.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_de.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_sv.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sv.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_it.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_it.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_en.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_en.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_sl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_fr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_sk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_hu.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_hu.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ar.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ar.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_lt.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lt.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_cs.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_cs.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_he.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_he.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_es.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_es.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_pl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_en.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_en.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ko.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ko.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_hu.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_hu.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_it.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_it.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_uk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_uk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_gl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_gl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_fr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_zh_CN.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_CN.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_pl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_pl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_de.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_de.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ko.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ko.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ru.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ru.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fi.qm', 'DATA'), ('PyQt5\\Qt5\\translations\\qtbase_tr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_tr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_tr.qm', 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_en.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_en.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_da.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_da.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ja.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ja.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ca.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ca.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_da.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_da.qm', + ('PyQt5\\Qt5\\translations\\qtbase_ca.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ca.qm', 'DATA'), ('PyQt5\\Qt5\\translations\\qtbase_sk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_sk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_sk.qm', 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_lv.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_lv.qm', + ('PyQt5\\Qt5\\translations\\qt_uk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_uk.qm', 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_hu.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_hu.qm', + ('PyQt5\\Qt5\\translations\\qt_help_hu.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_bg.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_da.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_da.qm', 'DATA'), ('PyQt5\\Qt5\\translations\\qt_gd.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gd.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gd.qm', 'DATA'), ('PyQt5\\Qt5\\translations\\qt_tr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_tr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_tr.qm', 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ja.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ja.qm', + ('PyQt5\\Qt5\\translations\\qt_it.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_it.qm', 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_bg.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_bg.qm', + ('PyQt5\\Qt5\\translations\\qtbase_en.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_it.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_gl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ru.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_de.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ar.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_sl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_da.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_pl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_hu.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ja.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ko.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_lv.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_lv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_cs.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_he.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_he.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_zh_CN.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_CN.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ru.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_hu.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_de.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_gd.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_gd.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_he.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_he.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ko.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ca.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_zh_TW.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_it.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ar.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ar.qm', 'DATA'), ('PyQt5\\Qt5\\translations\\qt_help_ja.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ja.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_pt.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pt.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_uk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_da.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_cs.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_es.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ja.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_lt.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lt.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_de.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fi.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fi.qm', 'DATA'), ('PyQt5\\Qt5\\translations\\qt_help_sk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_pl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fa.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fa.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_en.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_bg.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_gl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_gl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_es.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_lv.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_es.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_tr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_pl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_uk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_fr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sv.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_cs.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_bg.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_fr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ko.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ca.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ru.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_en.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ar.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ar.qm', + 'DATA'), + ('cantools-40.0.0.dist-info\\REQUESTED', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\REQUESTED', + 'DATA'), + ('cantools-40.0.0.dist-info\\METADATA', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\METADATA', + 'DATA'), + ('python_can-4.5.0.dist-info\\WHEEL', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\WHEEL', + 'DATA'), + ('wheel-0.45.1.dist-info\\REQUESTED', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\REQUESTED', + 'DATA'), + ('python_can-4.5.0.dist-info\\METADATA', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\METADATA', + 'DATA'), + ('cantools-40.0.0.dist-info\\WHEEL', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\WHEEL', + 'DATA'), + ('wheel-0.45.1.dist-info\\WHEEL', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\WHEEL', + 'DATA'), + ('python_can-4.5.0.dist-info\\entry_points.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\entry_points.txt', + 'DATA'), + ('cantools-40.0.0.dist-info\\RECORD', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\RECORD', + 'DATA'), + ('python_can-4.5.0.dist-info\\RECORD', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\RECORD', + 'DATA'), + ('cantools-40.0.0.dist-info\\top_level.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\top_level.txt', + 'DATA'), + ('python_can-4.5.0.dist-info\\LICENSE.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\LICENSE.txt', + 'DATA'), + ('cantools-40.0.0.dist-info\\entry_points.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\entry_points.txt', + 'DATA'), + ('cantools-40.0.0.dist-info\\INSTALLER', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\INSTALLER', + 'DATA'), + ('wheel-0.45.1.dist-info\\entry_points.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\entry_points.txt', + 'DATA'), + ('python_can-4.5.0.dist-info\\top_level.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\top_level.txt', + 'DATA'), + ('cantools-40.0.0.dist-info\\LICENSE', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\LICENSE', + 'DATA'), + ('wheel-0.45.1.dist-info\\INSTALLER', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\INSTALLER', + 'DATA'), + ('wheel-0.45.1.dist-info\\METADATA', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\METADATA', + 'DATA'), + ('wheel-0.45.1.dist-info\\LICENSE.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\LICENSE.txt', + 'DATA'), + ('python_can-4.5.0.dist-info\\INSTALLER', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\INSTALLER', + 'DATA'), + ('wheel-0.45.1.dist-info\\RECORD', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\RECORD', 'DATA')]) diff --git a/build/DBC_Converter/COLLECT-00.toc b/build/DBC_Converter/COLLECT-00.toc new file mode 100644 index 0000000..2167cb3 --- /dev/null +++ b/build/DBC_Converter/COLLECT-00.toc @@ -0,0 +1,773 @@ +([('DBC Converter.exe', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC ' + 'Converter.exe', + 'EXECUTABLE'), + ('python313.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\python313.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\bearer\\qgenericbearer.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\bearer\\qgenericbearer.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\libcrypto-1_1-x64.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libcrypto-1_1-x64.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\libssl-1_1-x64.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libssl-1_1-x64.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\printsupport\\windowsprintersupport.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\printsupport\\windowsprintersupport.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', + 'BINARY'), + ('PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\libEGL.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libEGL.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\opengl32sw.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\opengl32sw.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\libGLESv2.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libGLESv2.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', + 'BINARY'), + ('_decimal.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_decimal.pyd', + 'EXTENSION'), + ('_hashlib.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_hashlib.pyd', + 'EXTENSION'), + ('select.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\select.pyd', + 'EXTENSION'), + ('_socket.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_socket.pyd', + 'EXTENSION'), + ('unicodedata.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\unicodedata.pyd', + 'EXTENSION'), + ('_lzma.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_lzma.pyd', + 'EXTENSION'), + ('_bz2.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_bz2.pyd', + 'EXTENSION'), + ('_queue.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_queue.pyd', + 'EXTENSION'), + ('_ctypes.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_ctypes.pyd', + 'EXTENSION'), + ('_wmi.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_wmi.pyd', + 'EXTENSION'), + ('_overlapped.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_overlapped.pyd', + 'EXTENSION'), + ('_ssl.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_ssl.pyd', + 'EXTENSION'), + ('_asyncio.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_asyncio.pyd', + 'EXTENSION'), + ('_multiprocessing.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_multiprocessing.pyd', + 'EXTENSION'), + ('pyexpat.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\pyexpat.pyd', + 'EXTENSION'), + ('bitstruct\\c.cp313-win_amd64.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\bitstruct\\c.cp313-win_amd64.pyd', + 'EXTENSION'), + ('_elementtree.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_elementtree.pyd', + 'EXTENSION'), + ('_sqlite3.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\_sqlite3.pyd', + 'EXTENSION'), + ('wrapt\\_wrappers.cp313-win_amd64.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\_wrappers.cp313-win_amd64.pyd', + 'EXTENSION'), + ('PyQt5\\QtWebSockets.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtWebSockets.pyd', + 'EXTENSION'), + ('PyQt5\\QtWebChannel.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtWebChannel.pyd', + 'EXTENSION'), + ('PyQt5\\QtNetwork.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtNetwork.pyd', + 'EXTENSION'), + ('PyQt5\\QtSvg.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtSvg.pyd', + 'EXTENSION'), + ('PyQt5\\QtPrintSupport.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtPrintSupport.pyd', + 'EXTENSION'), + ('PyQt5\\QtCore.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtCore.pyd', + 'EXTENSION'), + ('PyQt5\\QtGui.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtGui.pyd', + 'EXTENSION'), + ('PyQt5\\QtWidgets.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\QtWidgets.pyd', + 'EXTENSION'), + ('PyQt5\\sip.cp313-win_amd64.pyd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\sip.cp313-win_amd64.pyd', + 'EXTENSION'), + ('api-ms-win-crt-heap-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-heap-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-string-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-string-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-convert-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-convert-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-math-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-math-l1-1-0.dll', + 'BINARY'), + ('VCRUNTIME140.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\VCRUNTIME140.dll', + 'BINARY'), + ('api-ms-win-crt-runtime-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-runtime-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-stdio-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-stdio-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-locale-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-locale-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-time-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-time-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-filesystem-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-filesystem-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-environment-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-environment-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-conio-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-conio-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-crt-process-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-process-l1-1-0.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Core.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Core.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Network.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Network.dll', + 'BINARY'), + ('api-ms-win-crt-utility-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-crt-utility-l1-1-0.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Gui.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Gui.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5PrintSupport.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5PrintSupport.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Svg.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Svg.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\MSVCP140.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Quick.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Quick.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5DBus.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5DBus.dll', + 'BINARY'), + ('VCRUNTIME140_1.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\VCRUNTIME140_1.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Widgets.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Widgets.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', + 'BINARY'), + ('libcrypto-3.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\libcrypto-3.dll', + 'BINARY'), + ('libffi-8.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\libffi-8.dll', + 'BINARY'), + ('libssl-3.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\libssl-3.dll', + 'BINARY'), + ('sqlite3.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\DLLs\\sqlite3.dll', + 'BINARY'), + ('python3.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\python3.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5WebChannel.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebChannel.dll', + 'BINARY'), + ('ucrtbase.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\ucrtbase.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\MSVCP140_1.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140_1.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5Qml.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Qml.dll', + 'BINARY'), + ('PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', + 'BINARY'), + ('api-ms-win-core-processthreads-l1-1-1.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-processthreads-l1-1-1.dll', + 'BINARY'), + ('api-ms-win-core-localization-l1-2-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-localization-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-synch-l1-2-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-synch-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-heap-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-heap-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-util-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-util-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-rtlsupport-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-rtlsupport-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-debug-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-debug-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-memory-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-memory-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-handle-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-handle-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-datetime-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-datetime-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processenvironment-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-processenvironment-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l2-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-file-l2-1-0.dll', + 'BINARY'), + ('api-ms-win-core-libraryloader-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-libraryloader-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-namedpipe-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-namedpipe-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-sysinfo-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-sysinfo-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-interlocked-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-interlocked-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-processthreads-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-processthreads-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-timezone-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-timezone-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-profile-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-profile-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-errorhandling-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-errorhandling-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-synch-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-synch-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l1-2-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-file-l1-2-0.dll', + 'BINARY'), + ('api-ms-win-core-string-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-string-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-console-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-console-l1-1-0.dll', + 'BINARY'), + ('api-ms-win-core-file-l1-1-0.dll', + 'C:\\Program Files (x86)\\Windows Kits\\10\\Windows Performance ' + 'Toolkit\\api-ms-win-core-file-l1-1-0.dll', + 'BINARY'), + ('.icon\\icon(org).ico', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon(org).ico', + 'DATA'), + ('.icon\\icon(org).png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon(org).png', + 'DATA'), + ('.icon\\icon.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon.png', + 'DATA'), + ('.icon\\icon.pptx', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon\\icon.pptx', + 'DATA'), + ('icon.ico', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\icon.ico', + 'DATA'), + ('img\\add_file.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\add_file.png', + 'DATA'), + ('img\\add_folder.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\add_folder.png', + 'DATA'), + ('img\\convert.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\convert.png', + 'DATA'), + ('img\\delete_all.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_all.png', + 'DATA'), + ('img\\delete_description.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_description.png', + 'DATA'), + ('img\\delete_file.png', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\img\\delete_file.png', + 'DATA'), + ('base_library.zip', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\base_library.zip', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\top_level.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\top_level.txt', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\INSTALLER', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\INSTALLER', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\RECORD', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\RECORD', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\REQUESTED', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\REQUESTED', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\METADATA', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\METADATA', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\WHEEL', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\WHEEL', + 'DATA'), + ('setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\LICENSE', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.0.0.dist-info\\LICENSE', + 'DATA'), + ('setuptools\\_vendor\\jaraco\\text\\Lorem ipsum.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\text\\Lorem ' + 'ipsum.txt', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_ja.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_pl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_ru.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_fr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_es.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_de.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_en.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_ca.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_ko.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtwebsockets_uk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtwebsockets_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_fi.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fi.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_tr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ca.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_sk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_uk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_hu.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_bg.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_da.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_gd.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gd.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_tr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_it.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_en.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_it.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_gl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ru.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_de.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ar.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_sl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_da.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_pl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_hu.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ja.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ko.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_lv.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_lv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_cs.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_he.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_he.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_zh_CN.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_CN.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ru.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_hu.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_hu.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_de.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_gd.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_gd.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_he.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_he.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ko.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ca.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_zh_TW.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_it.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_it.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_ar.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ar.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ja.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_pt.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pt.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_uk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_da.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_da.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_cs.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_es.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ja.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ja.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_lt.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lt.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_de.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_de.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fi.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fi.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_sk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_pl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_fa.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fa.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_en.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_bg.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_gl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_gl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_es.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_lv.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_es.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_es.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_tr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_tr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_pl.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_pl.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_uk.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_uk.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_fr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_sv.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sv.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_cs.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_cs.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_bg.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_bg.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qtbase_fr.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fr.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ko.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ko.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ca.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ca.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_ru.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ru.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_en.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_en.qm', + 'DATA'), + ('PyQt5\\Qt5\\translations\\qt_help_ar.qm', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ar.qm', + 'DATA'), + ('cantools-40.0.0.dist-info\\REQUESTED', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\REQUESTED', + 'DATA'), + ('cantools-40.0.0.dist-info\\METADATA', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\METADATA', + 'DATA'), + ('python_can-4.5.0.dist-info\\WHEEL', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\WHEEL', + 'DATA'), + ('wheel-0.45.1.dist-info\\REQUESTED', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\REQUESTED', + 'DATA'), + ('python_can-4.5.0.dist-info\\METADATA', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\METADATA', + 'DATA'), + ('cantools-40.0.0.dist-info\\WHEEL', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\WHEEL', + 'DATA'), + ('wheel-0.45.1.dist-info\\WHEEL', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\WHEEL', + 'DATA'), + ('python_can-4.5.0.dist-info\\entry_points.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\entry_points.txt', + 'DATA'), + ('cantools-40.0.0.dist-info\\RECORD', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\RECORD', + 'DATA'), + ('python_can-4.5.0.dist-info\\RECORD', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\RECORD', + 'DATA'), + ('cantools-40.0.0.dist-info\\top_level.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\top_level.txt', + 'DATA'), + ('python_can-4.5.0.dist-info\\LICENSE.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\LICENSE.txt', + 'DATA'), + ('cantools-40.0.0.dist-info\\entry_points.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\entry_points.txt', + 'DATA'), + ('cantools-40.0.0.dist-info\\INSTALLER', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\INSTALLER', + 'DATA'), + ('wheel-0.45.1.dist-info\\entry_points.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\entry_points.txt', + 'DATA'), + ('python_can-4.5.0.dist-info\\top_level.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\top_level.txt', + 'DATA'), + ('cantools-40.0.0.dist-info\\LICENSE', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools-40.0.0.dist-info\\LICENSE', + 'DATA'), + ('wheel-0.45.1.dist-info\\INSTALLER', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\INSTALLER', + 'DATA'), + ('wheel-0.45.1.dist-info\\METADATA', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\METADATA', + 'DATA'), + ('wheel-0.45.1.dist-info\\LICENSE.txt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\LICENSE.txt', + 'DATA'), + ('python_can-4.5.0.dist-info\\INSTALLER', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\python_can-4.5.0.dist-info\\INSTALLER', + 'DATA'), + ('wheel-0.45.1.dist-info\\RECORD', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel-0.45.1.dist-info\\RECORD', + 'DATA')],) diff --git a/build/DBC_Converter/DBC Converter.exe b/build/DBC_Converter/DBC Converter.exe new file mode 100644 index 0000000..b9205ae Binary files /dev/null and b/build/DBC_Converter/DBC Converter.exe differ diff --git a/build/DBC_Converter/DBC Converter.pkg b/build/DBC_Converter/DBC Converter.pkg new file mode 100644 index 0000000..44ce97b Binary files /dev/null and b/build/DBC_Converter/DBC Converter.pkg differ diff --git a/build/DBC_Converter/EXE-00.toc b/build/DBC_Converter/EXE-00.toc index 75ac832..19f46a0 100644 --- a/build/DBC_Converter/EXE-00.toc +++ b/build/DBC_Converter/EXE-00.toc @@ -1,8 +1,9 @@ -('C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.exe', +('C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC ' + 'Converter.exe', + False, + False, True, - False, - False, - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-console.ico', + ['C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\./icon.ico'], None, False, False, @@ -29,541 +30,56 @@ None, None, None, - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC_Converter.pkg', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC ' + 'Converter.pkg', [('pyi-contents-directory _internal', '', 'OPTION'), ('PYZ-00.pyz', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\PYZ-00.pyz', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\PYZ-00.pyz', 'PYZ'), ('struct', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\struct.pyc', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\struct.pyc', 'PYMODULE'), ('pyimod01_archive', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod01_archive.pyc', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod01_archive.pyc', 'PYMODULE'), ('pyimod02_importers', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod02_importers.pyc', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod02_importers.pyc', 'PYMODULE'), ('pyimod03_ctypes', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod03_ctypes.pyc', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod03_ctypes.pyc', 'PYMODULE'), ('pyimod04_pywin32', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod04_pywin32.pyc', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod04_pywin32.pyc', 'PYMODULE'), ('pyiboot01_bootstrap', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', - 'PYSOURCE'), - ('pyi_rth_inspect', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', - 'PYSOURCE'), - ('pyi_rth_pyqt5', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', 'PYSOURCE'), ('pyi_rth_pkgutil', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', + 'PYSOURCE'), + ('pyi_rth_multiprocessing', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py', + 'PYSOURCE'), + ('pyi_rth_inspect', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', + 'PYSOURCE'), + ('pyi_rth_pkgres', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgres.py', + 'PYSOURCE'), + ('pyi_rth_setuptools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_setuptools.py', + 'PYSOURCE'), + ('pyi_rth_pyqt5', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py', 'PYSOURCE'), ('DBC_Converter', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py', - 'PYSOURCE'), - ('python310.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python310.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\libGLESv2.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libGLESv2.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\libEGL.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libEGL.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\opengl32sw.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\opengl32sw.dll', - 'BINARY'), - ('_decimal.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_decimal.pyd', - 'EXTENSION'), - ('_hashlib.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_hashlib.pyd', - 'EXTENSION'), - ('_lzma.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_lzma.pyd', - 'EXTENSION'), - ('_bz2.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_bz2.pyd', - 'EXTENSION'), - ('unicodedata.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\unicodedata.pyd', - 'EXTENSION'), - ('select.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\select.pyd', - 'EXTENSION'), - ('_socket.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_socket.pyd', - 'EXTENSION'), - ('PyQt5\\QtCore.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtCore.pyd', - 'EXTENSION'), - ('PyQt5\\QtGui.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtGui.pyd', - 'EXTENSION'), - ('PyQt5\\QtWidgets.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtWidgets.pyd', - 'EXTENSION'), - ('PyQt5\\sip.cp310-win_amd64.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\sip.cp310-win_amd64.pyd', - 'EXTENSION'), - ('api-ms-win-crt-string-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-string-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-locale-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-locale-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-math-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-math-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-process-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-process-l1-1-0.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', - 'BINARY'), - ('api-ms-win-crt-convert-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-convert-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-runtime-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-runtime-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-stdio-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-stdio-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-heap-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-heap-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-filesystem-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-filesystem-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-time-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-time-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-conio-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-conio-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-environment-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-environment-l1-1-0.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Core.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Core.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Gui.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Gui.dll', - 'BINARY'), - ('api-ms-win-crt-utility-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-utility-l1-1-0.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5DBus.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5DBus.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Svg.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Svg.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Quick.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Quick.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Network.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Network.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\MSVCP140.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Widgets.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Widgets.dll', - 'BINARY'), - ('libcrypto-1_1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\libcrypto-1_1.dll', - 'BINARY'), - ('python3.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python3.dll', - 'BINARY'), - ('ucrtbase.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\ucrtbase.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\MSVCP140_1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140_1.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Qml.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Qml.dll', - 'BINARY'), - ('api-ms-win-core-handle-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-handle-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-file-l1-2-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l1-2-0.dll', - 'BINARY'), - ('api-ms-win-core-heap-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-heap-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-namedpipe-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-namedpipe-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-util-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-util-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-localization-l1-2-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-localization-l1-2-0.dll', - 'BINARY'), - ('api-ms-win-core-debug-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-debug-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-memory-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-memory-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-interlocked-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-interlocked-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-profile-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-profile-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-errorhandling-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-errorhandling-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-sysinfo-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-sysinfo-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-processenvironment-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processenvironment-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-fibers-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-fibers-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-file-l2-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l2-1-0.dll', - 'BINARY'), - ('api-ms-win-core-synch-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-synch-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-libraryloader-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-libraryloader-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-datetime-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-datetime-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-processthreads-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processthreads-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-rtlsupport-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-rtlsupport-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-synch-l1-2-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-synch-l1-2-0.dll', - 'BINARY'), - ('api-ms-win-core-file-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-processthreads-l1-1-1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processthreads-l1-1-1.dll', - 'BINARY'), - ('api-ms-win-core-console-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-console-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-timezone-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-timezone-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-string-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-string-l1-1-0.dll', - 'BINARY'), - ('base_library.zip', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\base_library.zip', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ca.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ca.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ru.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ru.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_fi.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fi.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_it.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_it.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_pt.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pt.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_gd.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_gd.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_he.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_he.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ar.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ar.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_es.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_es.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_de.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_de.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_fi.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fi.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_gl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_cs.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_cs.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_bg.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_bg.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_cs.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_cs.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_es.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_es.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ru.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ru.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_tr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_tr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_sl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_zh_TW.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_TW.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ca.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ca.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_uk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_uk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_uk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_uk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_lv.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lv.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_fr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_fr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_fa.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fa.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ko.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ko.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ar.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ar.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_bg.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_bg.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_pl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_pl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_da.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_da.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_de.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_de.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_sv.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sv.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_it.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_it.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_en.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_en.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_sl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_fr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_sk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_hu.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_hu.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ar.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ar.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_lt.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lt.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_cs.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_cs.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_he.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_he.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_es.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_es.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_pl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_en.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_en.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ko.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ko.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_hu.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_hu.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_it.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_it.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_uk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_uk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_gl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_gl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_fr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_zh_CN.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_CN.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_pl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_pl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_de.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_de.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ko.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ko.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ru.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ru.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_tr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_tr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_en.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_en.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_da.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_da.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ja.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ja.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ca.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ca.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_da.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_da.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_sk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_sk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_lv.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_lv.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_hu.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_hu.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_gd.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gd.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_tr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_tr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ja.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ja.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_bg.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_bg.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ja.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ja.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_sk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sk.qm', - 'DATA')], + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py', + 'PYSOURCE')], [], False, False, - 1736169528, - [('run.exe', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe', + 1736310056, + [('runw.exe', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\runw.exe', 'EXECUTABLE')], - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python310.dll') + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\python313.dll') diff --git a/build/DBC_Converter/PKG-00.toc b/build/DBC_Converter/PKG-00.toc index 00337cd..43f9039 100644 --- a/build/DBC_Converter/PKG-00.toc +++ b/build/DBC_Converter/PKG-00.toc @@ -1,4 +1,5 @@ -('C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC_Converter.pkg', +('C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\DBC ' + 'Converter.pkg', {'BINARY': True, 'DATA': True, 'EXECUTABLE': True, @@ -10,535 +11,49 @@ 'SYMLINK': False}, [('pyi-contents-directory _internal', '', 'OPTION'), ('PYZ-00.pyz', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\PYZ-00.pyz', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\PYZ-00.pyz', 'PYZ'), ('struct', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\struct.pyc', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\struct.pyc', 'PYMODULE'), ('pyimod01_archive', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod01_archive.pyc', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod01_archive.pyc', 'PYMODULE'), ('pyimod02_importers', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod02_importers.pyc', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod02_importers.pyc', 'PYMODULE'), ('pyimod03_ctypes', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod03_ctypes.pyc', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod03_ctypes.pyc', 'PYMODULE'), ('pyimod04_pywin32', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod04_pywin32.pyc', + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\localpycs\\pyimod04_pywin32.pyc', 'PYMODULE'), ('pyiboot01_bootstrap', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', - 'PYSOURCE'), - ('pyi_rth_inspect', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', - 'PYSOURCE'), - ('pyi_rth_pyqt5', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', 'PYSOURCE'), ('pyi_rth_pkgutil', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', + 'PYSOURCE'), + ('pyi_rth_multiprocessing', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py', + 'PYSOURCE'), + ('pyi_rth_inspect', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', + 'PYSOURCE'), + ('pyi_rth_pkgres', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgres.py', + 'PYSOURCE'), + ('pyi_rth_setuptools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_setuptools.py', + 'PYSOURCE'), + ('pyi_rth_pyqt5', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyqt5.py', 'PYSOURCE'), ('DBC_Converter', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py', - 'PYSOURCE'), - ('python310.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python310.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qicns.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qgif.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qminimal.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platformthemes\\qxdgdesktopportal.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\iconengines\\qsvgicon.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qsvg.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwebgl.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtiff.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\generic\\qtuiotouchplugin.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwbmp.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qico.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qwindows.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qwebp.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qjpeg.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\platforms\\qoffscreen.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\imageformats\\qtga.dll', - 'BINARY'), - ('PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\plugins\\styles\\qwindowsvistastyle.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\libGLESv2.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libGLESv2.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\libEGL.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\libEGL.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\d3dcompiler_47.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\opengl32sw.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\Lib\\site-packages\\PyQt5\\Qt5\\bin\\opengl32sw.dll', - 'BINARY'), - ('_decimal.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_decimal.pyd', - 'EXTENSION'), - ('_hashlib.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_hashlib.pyd', - 'EXTENSION'), - ('_lzma.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_lzma.pyd', - 'EXTENSION'), - ('_bz2.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_bz2.pyd', - 'EXTENSION'), - ('unicodedata.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\unicodedata.pyd', - 'EXTENSION'), - ('select.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\select.pyd', - 'EXTENSION'), - ('_socket.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\_socket.pyd', - 'EXTENSION'), - ('PyQt5\\QtCore.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtCore.pyd', - 'EXTENSION'), - ('PyQt5\\QtGui.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtGui.pyd', - 'EXTENSION'), - ('PyQt5\\QtWidgets.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\QtWidgets.pyd', - 'EXTENSION'), - ('PyQt5\\sip.cp310-win_amd64.pyd', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\sip.cp310-win_amd64.pyd', - 'EXTENSION'), - ('api-ms-win-crt-string-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-string-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-locale-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-locale-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-math-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-math-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-process-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-process-l1-1-0.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140.dll', - 'BINARY'), - ('api-ms-win-crt-convert-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-convert-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-runtime-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-runtime-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-stdio-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-stdio-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-heap-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-heap-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-filesystem-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-filesystem-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-time-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-time-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-conio-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-conio-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-crt-environment-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-environment-l1-1-0.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Core.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Core.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Gui.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Gui.dll', - 'BINARY'), - ('api-ms-win-crt-utility-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-crt-utility-l1-1-0.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5DBus.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5DBus.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Svg.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Svg.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Quick.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Quick.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5WebSockets.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Network.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Network.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\MSVCP140.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\VCRUNTIME140_1.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Widgets.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Widgets.dll', - 'BINARY'), - ('libcrypto-1_1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\DLLs\\libcrypto-1_1.dll', - 'BINARY'), - ('python3.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\python3.dll', - 'BINARY'), - ('ucrtbase.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\ucrtbase.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\MSVCP140_1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\MSVCP140_1.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5QmlModels.dll', - 'BINARY'), - ('PyQt5\\Qt5\\bin\\Qt5Qml.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\bin\\Qt5Qml.dll', - 'BINARY'), - ('api-ms-win-core-handle-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-handle-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-file-l1-2-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l1-2-0.dll', - 'BINARY'), - ('api-ms-win-core-heap-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-heap-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-namedpipe-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-namedpipe-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-util-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-util-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-localization-l1-2-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-localization-l1-2-0.dll', - 'BINARY'), - ('api-ms-win-core-debug-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-debug-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-memory-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-memory-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-interlocked-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-interlocked-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-profile-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-profile-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-errorhandling-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-errorhandling-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-sysinfo-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-sysinfo-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-processenvironment-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processenvironment-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-fibers-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-fibers-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-file-l2-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l2-1-0.dll', - 'BINARY'), - ('api-ms-win-core-synch-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-synch-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-libraryloader-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-libraryloader-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-datetime-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-datetime-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-processthreads-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processthreads-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-rtlsupport-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-rtlsupport-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-synch-l1-2-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-synch-l1-2-0.dll', - 'BINARY'), - ('api-ms-win-core-file-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-file-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-processthreads-l1-1-1.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-processthreads-l1-1-1.dll', - 'BINARY'), - ('api-ms-win-core-console-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-console-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-timezone-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-timezone-l1-1-0.dll', - 'BINARY'), - ('api-ms-win-core-string-l1-1-0.dll', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\MiKTeX\\miktex\\bin\\x64\\api-ms-win-core-string-l1-1-0.dll', - 'BINARY'), - ('base_library.zip', - 'C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\base_library.zip', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ca.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ca.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ru.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ru.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_fi.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fi.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_it.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_it.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_pt.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pt.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_gd.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_gd.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_he.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_he.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ar.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ar.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_es.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_es.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_de.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_de.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_fi.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fi.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_gl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_cs.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_cs.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_bg.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_bg.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_cs.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_cs.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_es.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_es.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ru.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ru.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_tr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_tr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_sl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_zh_TW.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_TW.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ca.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ca.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_uk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_uk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_uk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_uk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_zh_TW.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_lv.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lv.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_fr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_fr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_fa.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fa.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ko.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ko.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ar.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ar.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_bg.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_bg.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_pl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_pl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_da.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_da.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_de.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_de.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_sv.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sv.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_it.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_it.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_en.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_en.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_sl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_fr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_fr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_sk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_sk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_hu.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_hu.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ar.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ar.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_lt.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_lt.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_TW.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_cs.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_cs.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_he.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_he.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_es.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_es.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_pl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_pl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_en.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_en.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ko.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ko.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_hu.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_hu.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_it.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_it.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_uk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_uk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_gl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_gl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_fr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_fr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_zh_CN.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_zh_CN.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_pl.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_pl.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_de.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_de.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ko.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ko.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ru.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ru.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_tr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_tr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_en.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_en.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_da.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_da.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_ja.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_ja.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ca.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ca.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_da.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_da.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_sk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_sk.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qtbase_lv.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qtbase_lv.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_hu.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_hu.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_gd.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_gd.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_zh_CN.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_tr.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_tr.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_ja.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_ja.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_bg.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_bg.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_ja.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_ja.qm', - 'DATA'), - ('PyQt5\\Qt5\\translations\\qt_help_sk.qm', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\Qt5\\translations\\qt_help_sk.qm', - 'DATA')], - 'python310.dll', - False, + 'C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\DBC_Converter.py', + 'PYSOURCE')], + 'python313.dll', + True, False, False, [], diff --git a/build/DBC_Converter/PYZ-00.pyz b/build/DBC_Converter/PYZ-00.pyz index 1441c88..e009a73 100644 Binary files a/build/DBC_Converter/PYZ-00.pyz and b/build/DBC_Converter/PYZ-00.pyz differ diff --git a/build/DBC_Converter/PYZ-00.toc b/build/DBC_Converter/PYZ-00.toc index 25de90c..e5b7a20 100644 --- a/build/DBC_Converter/PYZ-00.toc +++ b/build/DBC_Converter/PYZ-00.toc @@ -1,304 +1,1654 @@ -('C:\\Users\\blueb\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\PYZ-00.pyz', +('C:\\Users\\MSI\\Documents\\WorkSpace\\git\\DBC_Converter\\build\\DBC_Converter\\PYZ-00.pyz', [('PyQt5', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyQt5\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyQt5\\__init__.py', + 'PYMODULE'), + ('__future__', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\__future__.py', + 'PYMODULE'), + ('_aix_support', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_aix_support.py', + 'PYMODULE'), + ('_colorize', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_colorize.py', 'PYMODULE'), ('_compat_pickle', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_compat_pickle.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_compat_pickle.py', 'PYMODULE'), ('_compression', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_compression.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_compression.py', + 'PYMODULE'), + ('_distutils_hack', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_distutils_hack\\__init__.py', + 'PYMODULE'), + ('_distutils_hack.override', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\_distutils_hack\\override.py', + 'PYMODULE'), + ('_ios_support', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_ios_support.py', + 'PYMODULE'), + ('_opcode_metadata', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_opcode_metadata.py', 'PYMODULE'), ('_py_abc', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_py_abc.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_py_abc.py', + 'PYMODULE'), + ('_pydatetime', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pydatetime.py', 'PYMODULE'), ('_pydecimal', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_pydecimal.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pydecimal.py', 'PYMODULE'), ('_pyi_rth_utils', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\__init__.py', 'PYMODULE'), ('_pyi_rth_utils.qt', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\qt.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\PyInstaller\\fake-modules\\_pyi_rth_utils\\qt.py', + 'PYMODULE'), + ('_pyrepl', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\__init__.py', + 'PYMODULE'), + ('_pyrepl._minimal_curses', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\_minimal_curses.py', + 'PYMODULE'), + ('_pyrepl._threading_handler', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\_threading_handler.py', + 'PYMODULE'), + ('_pyrepl.commands', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\commands.py', + 'PYMODULE'), + ('_pyrepl.completing_reader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\completing_reader.py', + 'PYMODULE'), + ('_pyrepl.console', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\console.py', + 'PYMODULE'), + ('_pyrepl.curses', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\curses.py', + 'PYMODULE'), + ('_pyrepl.fancy_termios', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\fancy_termios.py', + 'PYMODULE'), + ('_pyrepl.historical_reader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\historical_reader.py', + 'PYMODULE'), + ('_pyrepl.input', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\input.py', + 'PYMODULE'), + ('_pyrepl.keymap', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\keymap.py', + 'PYMODULE'), + ('_pyrepl.main', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\main.py', + 'PYMODULE'), + ('_pyrepl.pager', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\pager.py', + 'PYMODULE'), + ('_pyrepl.reader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\reader.py', + 'PYMODULE'), + ('_pyrepl.readline', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\readline.py', + 'PYMODULE'), + ('_pyrepl.simple_interact', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\simple_interact.py', + 'PYMODULE'), + ('_pyrepl.trace', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\trace.py', + 'PYMODULE'), + ('_pyrepl.types', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\types.py', + 'PYMODULE'), + ('_pyrepl.unix_console', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\unix_console.py', + 'PYMODULE'), + ('_pyrepl.unix_eventqueue', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\unix_eventqueue.py', + 'PYMODULE'), + ('_pyrepl.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\utils.py', + 'PYMODULE'), + ('_pyrepl.windows_console', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_pyrepl\\windows_console.py', + 'PYMODULE'), + ('_sitebuiltins', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_sitebuiltins.py', 'PYMODULE'), ('_strptime', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_strptime.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_strptime.py', 'PYMODULE'), ('_threading_local', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\_threading_local.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\_threading_local.py', 'PYMODULE'), ('argparse', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\argparse.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\argparse.py', 'PYMODULE'), ('ast', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\ast.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ast.py', + 'PYMODULE'), + ('asyncio', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\__init__.py', + 'PYMODULE'), + ('asyncio.base_events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\base_events.py', + 'PYMODULE'), + ('asyncio.base_futures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\base_futures.py', + 'PYMODULE'), + ('asyncio.base_subprocess', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\base_subprocess.py', + 'PYMODULE'), + ('asyncio.base_tasks', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\base_tasks.py', + 'PYMODULE'), + ('asyncio.constants', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\constants.py', + 'PYMODULE'), + ('asyncio.coroutines', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\coroutines.py', + 'PYMODULE'), + ('asyncio.events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\events.py', + 'PYMODULE'), + ('asyncio.exceptions', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\exceptions.py', + 'PYMODULE'), + ('asyncio.format_helpers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\format_helpers.py', + 'PYMODULE'), + ('asyncio.futures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\futures.py', + 'PYMODULE'), + ('asyncio.locks', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\locks.py', + 'PYMODULE'), + ('asyncio.log', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\log.py', + 'PYMODULE'), + ('asyncio.mixins', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\mixins.py', + 'PYMODULE'), + ('asyncio.proactor_events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\proactor_events.py', + 'PYMODULE'), + ('asyncio.protocols', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\protocols.py', + 'PYMODULE'), + ('asyncio.queues', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\queues.py', + 'PYMODULE'), + ('asyncio.runners', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\runners.py', + 'PYMODULE'), + ('asyncio.selector_events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\selector_events.py', + 'PYMODULE'), + ('asyncio.sslproto', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\sslproto.py', + 'PYMODULE'), + ('asyncio.staggered', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\staggered.py', + 'PYMODULE'), + ('asyncio.streams', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\streams.py', + 'PYMODULE'), + ('asyncio.subprocess', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\subprocess.py', + 'PYMODULE'), + ('asyncio.taskgroups', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\taskgroups.py', + 'PYMODULE'), + ('asyncio.tasks', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\tasks.py', + 'PYMODULE'), + ('asyncio.threads', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\threads.py', + 'PYMODULE'), + ('asyncio.timeouts', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\timeouts.py', + 'PYMODULE'), + ('asyncio.transports', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\transports.py', + 'PYMODULE'), + ('asyncio.trsock', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\trsock.py', + 'PYMODULE'), + ('asyncio.unix_events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\unix_events.py', + 'PYMODULE'), + ('asyncio.windows_events', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\windows_events.py', + 'PYMODULE'), + ('asyncio.windows_utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\asyncio\\windows_utils.py', + 'PYMODULE'), + ('backports', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\backports\\__init__.py', 'PYMODULE'), ('base64', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\base64.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\base64.py', + 'PYMODULE'), + ('bdb', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\bdb.py', 'PYMODULE'), ('bisect', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\bisect.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\bisect.py', + 'PYMODULE'), + ('bitstruct', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\bitstruct\\__init__.py', 'PYMODULE'), ('bz2', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\bz2.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\bz2.py', 'PYMODULE'), ('calendar', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\calendar.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\calendar.py', + 'PYMODULE'), + ('can', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\__init__.py', + 'PYMODULE'), + ('can._entry_points', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\_entry_points.py', + 'PYMODULE'), + ('can.bit_timing', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\bit_timing.py', + 'PYMODULE'), + ('can.broadcastmanager', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\broadcastmanager.py', + 'PYMODULE'), + ('can.bus', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\bus.py', + 'PYMODULE'), + ('can.exceptions', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\exceptions.py', + 'PYMODULE'), + ('can.interface', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\interface.py', + 'PYMODULE'), + ('can.interfaces', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\interfaces\\__init__.py', + 'PYMODULE'), + ('can.io', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\__init__.py', + 'PYMODULE'), + ('can.io.asc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\asc.py', + 'PYMODULE'), + ('can.io.blf', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\blf.py', + 'PYMODULE'), + ('can.io.canutils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\canutils.py', + 'PYMODULE'), + ('can.io.csv', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\csv.py', + 'PYMODULE'), + ('can.io.generic', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\generic.py', + 'PYMODULE'), + ('can.io.logger', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\logger.py', + 'PYMODULE'), + ('can.io.mf4', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\mf4.py', + 'PYMODULE'), + ('can.io.player', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\player.py', + 'PYMODULE'), + ('can.io.printer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\printer.py', + 'PYMODULE'), + ('can.io.sqlite', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\sqlite.py', + 'PYMODULE'), + ('can.io.trc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\io\\trc.py', + 'PYMODULE'), + ('can.listener', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\listener.py', + 'PYMODULE'), + ('can.message', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\message.py', + 'PYMODULE'), + ('can.notifier', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\notifier.py', + 'PYMODULE'), + ('can.thread_safe_bus', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\thread_safe_bus.py', + 'PYMODULE'), + ('can.typechecking', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\typechecking.py', + 'PYMODULE'), + ('can.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\can\\util.py', + 'PYMODULE'), + ('cantools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\__init__.py', + 'PYMODULE'), + ('cantools.database', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\__init__.py', + 'PYMODULE'), + ('cantools.database.can', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\__init__.py', + 'PYMODULE'), + ('cantools.database.can.attribute', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\attribute.py', + 'PYMODULE'), + ('cantools.database.can.attribute_definition', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\attribute_definition.py', + 'PYMODULE'), + ('cantools.database.can.bus', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\bus.py', + 'PYMODULE'), + ('cantools.database.can.database', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\database.py', + 'PYMODULE'), + ('cantools.database.can.environment_variable', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\environment_variable.py', + 'PYMODULE'), + ('cantools.database.can.formats', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\__init__.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\__init__.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.bus_specifics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\bus_specifics.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.database_specifics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\database_specifics.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.ecu_extract_loader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\ecu_extract_loader.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.end_to_end_properties', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\end_to_end_properties.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.message_specifics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\message_specifics.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.node_specifics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\node_specifics.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.secoc_properties', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\secoc_properties.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.system_loader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\system_loader.py', + 'PYMODULE'), + ('cantools.database.can.formats.arxml.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\arxml\\utils.py', + 'PYMODULE'), + ('cantools.database.can.formats.dbc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\dbc.py', + 'PYMODULE'), + ('cantools.database.can.formats.dbc_specifics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\dbc_specifics.py', + 'PYMODULE'), + ('cantools.database.can.formats.kcd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\kcd.py', + 'PYMODULE'), + ('cantools.database.can.formats.sym', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\sym.py', + 'PYMODULE'), + ('cantools.database.can.formats.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\formats\\utils.py', + 'PYMODULE'), + ('cantools.database.can.internal_database', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\internal_database.py', + 'PYMODULE'), + ('cantools.database.can.message', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\message.py', + 'PYMODULE'), + ('cantools.database.can.node', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\node.py', + 'PYMODULE'), + ('cantools.database.can.signal', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\signal.py', + 'PYMODULE'), + ('cantools.database.can.signal_group', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\can\\signal_group.py', + 'PYMODULE'), + ('cantools.database.conversion', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\conversion.py', + 'PYMODULE'), + ('cantools.database.diagnostics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\__init__.py', + 'PYMODULE'), + ('cantools.database.diagnostics.data', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\data.py', + 'PYMODULE'), + ('cantools.database.diagnostics.database', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\database.py', + 'PYMODULE'), + ('cantools.database.diagnostics.did', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\did.py', + 'PYMODULE'), + ('cantools.database.diagnostics.formats', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\formats\\__init__.py', + 'PYMODULE'), + ('cantools.database.diagnostics.formats.cdd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\formats\\cdd.py', + 'PYMODULE'), + ('cantools.database.diagnostics.internal_database', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\diagnostics\\internal_database.py', + 'PYMODULE'), + ('cantools.database.errors', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\errors.py', + 'PYMODULE'), + ('cantools.database.namedsignalvalue', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\namedsignalvalue.py', + 'PYMODULE'), + ('cantools.database.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\database\\utils.py', + 'PYMODULE'), + ('cantools.errors', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\errors.py', + 'PYMODULE'), + ('cantools.j1939', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\j1939.py', + 'PYMODULE'), + ('cantools.logreader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\logreader.py', + 'PYMODULE'), + ('cantools.tester', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\tester.py', + 'PYMODULE'), + ('cantools.typechecking', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\cantools\\typechecking.py', + 'PYMODULE'), + ('cmd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\cmd.py', + 'PYMODULE'), + ('code', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\code.py', + 'PYMODULE'), + ('codeop', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\codeop.py', + 'PYMODULE'), + ('concurrent', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\concurrent\\__init__.py', + 'PYMODULE'), + ('concurrent.futures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\concurrent\\futures\\__init__.py', + 'PYMODULE'), + ('concurrent.futures._base', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\concurrent\\futures\\_base.py', + 'PYMODULE'), + ('concurrent.futures.process', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\concurrent\\futures\\process.py', + 'PYMODULE'), + ('concurrent.futures.thread', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\concurrent\\futures\\thread.py', + 'PYMODULE'), + ('configparser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\configparser.py', 'PYMODULE'), ('contextlib', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\contextlib.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\contextlib.py', 'PYMODULE'), ('contextvars', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\contextvars.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\contextvars.py', 'PYMODULE'), ('copy', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\copy.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\copy.py', 'PYMODULE'), ('csv', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\csv.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\csv.py', + 'PYMODULE'), + ('ctypes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\__init__.py', + 'PYMODULE'), + ('ctypes._aix', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\_aix.py', + 'PYMODULE'), + ('ctypes._endian', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\_endian.py', + 'PYMODULE'), + ('ctypes.macholib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\macholib\\__init__.py', + 'PYMODULE'), + ('ctypes.macholib.dyld', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\macholib\\dyld.py', + 'PYMODULE'), + ('ctypes.macholib.dylib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\macholib\\dylib.py', + 'PYMODULE'), + ('ctypes.macholib.framework', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\macholib\\framework.py', + 'PYMODULE'), + ('ctypes.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\util.py', + 'PYMODULE'), + ('ctypes.wintypes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ctypes\\wintypes.py', + 'PYMODULE'), + ('curses', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\curses\\__init__.py', + 'PYMODULE'), + ('curses.has_key', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\curses\\has_key.py', 'PYMODULE'), ('dataclasses', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\dataclasses.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\dataclasses.py', 'PYMODULE'), ('datetime', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\datetime.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\datetime.py', 'PYMODULE'), ('decimal', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\decimal.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\decimal.py', + 'PYMODULE'), + ('difflib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\difflib.py', 'PYMODULE'), ('dis', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\dis.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\dis.py', + 'PYMODULE'), + ('diskcache', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\__init__.py', + 'PYMODULE'), + ('diskcache.core', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\core.py', + 'PYMODULE'), + ('diskcache.djangocache', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\djangocache.py', + 'PYMODULE'), + ('diskcache.fanout', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\fanout.py', + 'PYMODULE'), + ('diskcache.persistent', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\persistent.py', + 'PYMODULE'), + ('diskcache.recipes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\diskcache\\recipes.py', + 'PYMODULE'), + ('doctest', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\doctest.py', 'PYMODULE'), ('email', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\__init__.py', 'PYMODULE'), ('email._encoded_words', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\_encoded_words.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\_encoded_words.py', 'PYMODULE'), ('email._header_value_parser', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\_header_value_parser.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\_header_value_parser.py', 'PYMODULE'), ('email._parseaddr', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\_parseaddr.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\_parseaddr.py', 'PYMODULE'), ('email._policybase', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\_policybase.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\_policybase.py', 'PYMODULE'), ('email.base64mime', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\base64mime.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\base64mime.py', 'PYMODULE'), ('email.charset', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\charset.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\charset.py', 'PYMODULE'), ('email.contentmanager', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\contentmanager.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\contentmanager.py', 'PYMODULE'), ('email.encoders', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\encoders.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\encoders.py', 'PYMODULE'), ('email.errors', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\errors.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\errors.py', 'PYMODULE'), ('email.feedparser', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\feedparser.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\feedparser.py', 'PYMODULE'), ('email.generator', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\generator.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\generator.py', 'PYMODULE'), ('email.header', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\header.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\header.py', 'PYMODULE'), ('email.headerregistry', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\headerregistry.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\headerregistry.py', 'PYMODULE'), ('email.iterators', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\iterators.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\iterators.py', 'PYMODULE'), ('email.message', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\message.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\message.py', 'PYMODULE'), ('email.parser', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\parser.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\parser.py', 'PYMODULE'), ('email.policy', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\policy.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\policy.py', 'PYMODULE'), ('email.quoprimime', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\quoprimime.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\quoprimime.py', 'PYMODULE'), ('email.utils', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\email\\utils.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\email\\utils.py', 'PYMODULE'), ('fnmatch', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\fnmatch.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\fnmatch.py', 'PYMODULE'), ('fractions', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\fractions.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\fractions.py', + 'PYMODULE'), + ('ftplib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ftplib.py', 'PYMODULE'), ('getopt', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\getopt.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\getopt.py', + 'PYMODULE'), + ('getpass', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\getpass.py', 'PYMODULE'), ('gettext', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\gettext.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\gettext.py', + 'PYMODULE'), + ('glob', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\glob.py', 'PYMODULE'), ('gzip', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\gzip.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\gzip.py', 'PYMODULE'), ('hashlib', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\hashlib.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\hashlib.py', + 'PYMODULE'), + ('hmac', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\hmac.py', + 'PYMODULE'), + ('html', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\html\\__init__.py', + 'PYMODULE'), + ('html.entities', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\html\\entities.py', + 'PYMODULE'), + ('http', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\http\\__init__.py', + 'PYMODULE'), + ('http.client', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\http\\client.py', + 'PYMODULE'), + ('http.cookiejar', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\http\\cookiejar.py', + 'PYMODULE'), + ('http.server', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\http\\server.py', 'PYMODULE'), ('importlib', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\__init__.py', 'PYMODULE'), ('importlib._abc', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\_abc.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\_abc.py', 'PYMODULE'), ('importlib._bootstrap', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\_bootstrap.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\_bootstrap.py', 'PYMODULE'), ('importlib._bootstrap_external', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\_bootstrap_external.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\_bootstrap_external.py', 'PYMODULE'), ('importlib.abc', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\abc.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\abc.py', 'PYMODULE'), ('importlib.machinery', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\machinery.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\machinery.py', 'PYMODULE'), ('importlib.metadata', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\__init__.py', 'PYMODULE'), ('importlib.metadata._adapters', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_adapters.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_adapters.py', 'PYMODULE'), ('importlib.metadata._collections', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_collections.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_collections.py', 'PYMODULE'), ('importlib.metadata._functools', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_functools.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_functools.py', 'PYMODULE'), ('importlib.metadata._itertools', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_itertools.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_itertools.py', 'PYMODULE'), ('importlib.metadata._meta', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_meta.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_meta.py', 'PYMODULE'), ('importlib.metadata._text', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\metadata\\_text.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\metadata\\_text.py', 'PYMODULE'), ('importlib.readers', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\readers.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\readers.py', + 'PYMODULE'), + ('importlib.resources', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\__init__.py', + 'PYMODULE'), + ('importlib.resources._adapters', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\_adapters.py', + 'PYMODULE'), + ('importlib.resources._common', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\_common.py', + 'PYMODULE'), + ('importlib.resources._functional', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\_functional.py', + 'PYMODULE'), + ('importlib.resources._itertools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\_itertools.py', + 'PYMODULE'), + ('importlib.resources.abc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\abc.py', + 'PYMODULE'), + ('importlib.resources.readers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\resources\\readers.py', 'PYMODULE'), ('importlib.util', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\importlib\\util.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\importlib\\util.py', 'PYMODULE'), ('inspect', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\inspect.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\inspect.py', 'PYMODULE'), + ('ipaddress', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ipaddress.py', + 'PYMODULE'), + ('jaraco', '-', 'PYMODULE'), ('json', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\json\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\json\\__init__.py', 'PYMODULE'), ('json.decoder', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\json\\decoder.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\json\\decoder.py', 'PYMODULE'), ('json.encoder', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\json\\encoder.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\json\\encoder.py', 'PYMODULE'), ('json.scanner', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\json\\scanner.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\json\\scanner.py', 'PYMODULE'), ('logging', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\logging\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\logging\\__init__.py', 'PYMODULE'), ('lzma', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\lzma.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\lzma.py', + 'PYMODULE'), + ('mimetypes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\mimetypes.py', + 'PYMODULE'), + ('multiprocessing', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\__init__.py', + 'PYMODULE'), + ('multiprocessing.connection', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\connection.py', + 'PYMODULE'), + ('multiprocessing.context', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\context.py', + 'PYMODULE'), + ('multiprocessing.dummy', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\dummy\\__init__.py', + 'PYMODULE'), + ('multiprocessing.dummy.connection', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\dummy\\connection.py', + 'PYMODULE'), + ('multiprocessing.forkserver', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\forkserver.py', + 'PYMODULE'), + ('multiprocessing.heap', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\heap.py', + 'PYMODULE'), + ('multiprocessing.managers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\managers.py', + 'PYMODULE'), + ('multiprocessing.pool', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\pool.py', + 'PYMODULE'), + ('multiprocessing.popen_fork', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\popen_fork.py', + 'PYMODULE'), + ('multiprocessing.popen_forkserver', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\popen_forkserver.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_posix', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\popen_spawn_posix.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_win32', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\popen_spawn_win32.py', + 'PYMODULE'), + ('multiprocessing.process', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\process.py', + 'PYMODULE'), + ('multiprocessing.queues', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\queues.py', + 'PYMODULE'), + ('multiprocessing.reduction', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\reduction.py', + 'PYMODULE'), + ('multiprocessing.resource_sharer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\resource_sharer.py', + 'PYMODULE'), + ('multiprocessing.resource_tracker', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\resource_tracker.py', + 'PYMODULE'), + ('multiprocessing.shared_memory', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\shared_memory.py', + 'PYMODULE'), + ('multiprocessing.sharedctypes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\sharedctypes.py', + 'PYMODULE'), + ('multiprocessing.spawn', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\spawn.py', + 'PYMODULE'), + ('multiprocessing.synchronize', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\synchronize.py', + 'PYMODULE'), + ('multiprocessing.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\multiprocessing\\util.py', + 'PYMODULE'), + ('netrc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\netrc.py', + 'PYMODULE'), + ('nturl2path', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\nturl2path.py', 'PYMODULE'), ('numbers', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\numbers.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\numbers.py', 'PYMODULE'), ('opcode', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\opcode.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\opcode.py', 'PYMODULE'), - ('optparse', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\optparse.py', + ('packaging', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\__init__.py', + 'PYMODULE'), + ('packaging._elffile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_elffile.py', + 'PYMODULE'), + ('packaging._manylinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_manylinux.py', + 'PYMODULE'), + ('packaging._musllinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_musllinux.py', + 'PYMODULE'), + ('packaging._parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_parser.py', + 'PYMODULE'), + ('packaging._structures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_structures.py', + 'PYMODULE'), + ('packaging._tokenizer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\_tokenizer.py', + 'PYMODULE'), + ('packaging.licenses', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\licenses\\__init__.py', + 'PYMODULE'), + ('packaging.licenses._spdx', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\licenses\\_spdx.py', + 'PYMODULE'), + ('packaging.markers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\markers.py', + 'PYMODULE'), + ('packaging.metadata', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\metadata.py', + 'PYMODULE'), + ('packaging.requirements', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\requirements.py', + 'PYMODULE'), + ('packaging.specifiers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\specifiers.py', + 'PYMODULE'), + ('packaging.tags', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\tags.py', + 'PYMODULE'), + ('packaging.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\utils.py', + 'PYMODULE'), + ('packaging.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\packaging\\version.py', 'PYMODULE'), ('pathlib', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\pathlib.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pathlib\\__init__.py', + 'PYMODULE'), + ('pathlib._abc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pathlib\\_abc.py', + 'PYMODULE'), + ('pathlib._local', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pathlib\\_local.py', + 'PYMODULE'), + ('pdb', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pdb.py', 'PYMODULE'), ('pickle', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\pickle.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pickle.py', + 'PYMODULE'), + ('pickletools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pickletools.py', + 'PYMODULE'), + ('pkg_resources', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\pkg_resources\\__init__.py', 'PYMODULE'), ('pkgutil', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\pkgutil.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pkgutil.py', + 'PYMODULE'), + ('platform', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\platform.py', + 'PYMODULE'), + ('plistlib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\plistlib.py', 'PYMODULE'), ('pprint', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\pprint.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pprint.py', 'PYMODULE'), ('py_compile', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\py_compile.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\py_compile.py', + 'PYMODULE'), + ('pydoc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pydoc.py', + 'PYMODULE'), + ('pydoc_data', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pydoc_data\\__init__.py', + 'PYMODULE'), + ('pydoc_data.topics', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\pydoc_data\\topics.py', + 'PYMODULE'), + ('queue', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\queue.py', 'PYMODULE'), ('quopri', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\quopri.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\quopri.py', 'PYMODULE'), ('random', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\random.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\random.py', + 'PYMODULE'), + ('rlcompleter', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\rlcompleter.py', + 'PYMODULE'), + ('runpy', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\runpy.py', + 'PYMODULE'), + ('secrets', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\secrets.py', 'PYMODULE'), ('selectors', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\selectors.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\selectors.py', + 'PYMODULE'), + ('setuptools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\__init__.py', + 'PYMODULE'), + ('setuptools._core_metadata', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_core_metadata.py', + 'PYMODULE'), + ('setuptools._distutils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\__init__.py', + 'PYMODULE'), + ('setuptools._distutils._log', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\_log.py', + 'PYMODULE'), + ('setuptools._distutils._modified', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\_modified.py', + 'PYMODULE'), + ('setuptools._distutils._msvccompiler', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\_msvccompiler.py', + 'PYMODULE'), + ('setuptools._distutils.archive_util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\archive_util.py', + 'PYMODULE'), + ('setuptools._distutils.ccompiler', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\ccompiler.py', + 'PYMODULE'), + ('setuptools._distutils.cmd', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\cmd.py', + 'PYMODULE'), + ('setuptools._distutils.command', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\command\\__init__.py', + 'PYMODULE'), + ('setuptools._distutils.command.bdist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\command\\bdist.py', + 'PYMODULE'), + ('setuptools._distutils.command.build', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\command\\build.py', + 'PYMODULE'), + ('setuptools._distutils.command.build_ext', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\command\\build_ext.py', + 'PYMODULE'), + ('setuptools._distutils.command.sdist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\command\\sdist.py', + 'PYMODULE'), + ('setuptools._distutils.compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\compat\\__init__.py', + 'PYMODULE'), + ('setuptools._distutils.compat.py38', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\compat\\py38.py', + 'PYMODULE'), + ('setuptools._distutils.compat.py39', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\compat\\py39.py', + 'PYMODULE'), + ('setuptools._distutils.core', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\core.py', + 'PYMODULE'), + ('setuptools._distutils.debug', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\debug.py', + 'PYMODULE'), + ('setuptools._distutils.dir_util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\dir_util.py', + 'PYMODULE'), + ('setuptools._distutils.dist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\dist.py', + 'PYMODULE'), + ('setuptools._distutils.errors', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\errors.py', + 'PYMODULE'), + ('setuptools._distutils.extension', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\extension.py', + 'PYMODULE'), + ('setuptools._distutils.fancy_getopt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\fancy_getopt.py', + 'PYMODULE'), + ('setuptools._distutils.file_util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\file_util.py', + 'PYMODULE'), + ('setuptools._distutils.filelist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\filelist.py', + 'PYMODULE'), + ('setuptools._distutils.log', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\log.py', + 'PYMODULE'), + ('setuptools._distutils.spawn', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\spawn.py', + 'PYMODULE'), + ('setuptools._distutils.sysconfig', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\sysconfig.py', + 'PYMODULE'), + ('setuptools._distutils.text_file', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\text_file.py', + 'PYMODULE'), + ('setuptools._distutils.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\util.py', + 'PYMODULE'), + ('setuptools._distutils.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\version.py', + 'PYMODULE'), + ('setuptools._distutils.versionpredicate', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_distutils\\versionpredicate.py', + 'PYMODULE'), + ('setuptools._entry_points', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_entry_points.py', + 'PYMODULE'), + ('setuptools._imp', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_imp.py', + 'PYMODULE'), + ('setuptools._importlib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_importlib.py', + 'PYMODULE'), + ('setuptools._itertools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_itertools.py', + 'PYMODULE'), + ('setuptools._normalization', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_normalization.py', + 'PYMODULE'), + ('setuptools._path', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_path.py', + 'PYMODULE'), + ('setuptools._reqs', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_reqs.py', + 'PYMODULE'), + ('setuptools._shutil', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_shutil.py', + 'PYMODULE'), + ('setuptools._vendor', '-', 'PYMODULE'), + ('setuptools._vendor.backports', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\backports\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\backports\\tarfile\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile.compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\backports\\tarfile\\compat\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile.compat.py38', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\backports\\tarfile\\compat\\py38.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._adapters', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_adapters.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._collections', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_collections.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_compat.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._functools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_functools.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._itertools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_itertools.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._meta', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_meta.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._text', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\_text.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\compat\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat.py311', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\compat\\py311.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat.py39', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata\\compat\\py39.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco', '-', 'PYMODULE'), + ('setuptools._vendor.jaraco.context', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\context.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco.functools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\functools\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco.text', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\text\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.more_itertools', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\more_itertools\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.more_itertools.more', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\more_itertools\\more.py', + 'PYMODULE'), + ('setuptools._vendor.more_itertools.recipes', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\more_itertools\\recipes.py', + 'PYMODULE'), + ('setuptools._vendor.packaging', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._elffile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_elffile.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._manylinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_manylinux.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._musllinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_musllinux.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_parser.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._structures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_structures.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._tokenizer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\_tokenizer.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.markers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\markers.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.requirements', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\requirements.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.specifiers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\specifiers.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.tags', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\tags.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\utils.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\packaging\\version.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.android', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\android.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.api', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\api.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.macos', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\macos.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.unix', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\unix.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\version.py', + 'PYMODULE'), + ('setuptools._vendor.platformdirs.windows', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\platformdirs\\windows.py', + 'PYMODULE'), + ('setuptools._vendor.tomli', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\tomli\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\tomli\\_parser.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._re', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\tomli\\_re.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._types', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\tomli\\_types.py', + 'PYMODULE'), + ('setuptools._vendor.zipp', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\zipp\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\zipp\\compat\\__init__.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.compat.py310', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\zipp\\compat\\py310.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.glob', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\_vendor\\zipp\\glob.py', + 'PYMODULE'), + ('setuptools.archive_util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\archive_util.py', + 'PYMODULE'), + ('setuptools.command', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\__init__.py', + 'PYMODULE'), + ('setuptools.command._requirestxt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\_requirestxt.py', + 'PYMODULE'), + ('setuptools.command.bdist_egg', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\bdist_egg.py', + 'PYMODULE'), + ('setuptools.command.bdist_wheel', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\bdist_wheel.py', + 'PYMODULE'), + ('setuptools.command.build', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\build.py', + 'PYMODULE'), + ('setuptools.command.egg_info', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\egg_info.py', + 'PYMODULE'), + ('setuptools.command.sdist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\sdist.py', + 'PYMODULE'), + ('setuptools.command.setopt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\command\\setopt.py', + 'PYMODULE'), + ('setuptools.compat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\compat\\__init__.py', + 'PYMODULE'), + ('setuptools.compat.py310', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\compat\\py310.py', + 'PYMODULE'), + ('setuptools.compat.py311', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\compat\\py311.py', + 'PYMODULE'), + ('setuptools.compat.py39', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\compat\\py39.py', + 'PYMODULE'), + ('setuptools.config', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\__init__.py', + 'PYMODULE'), + ('setuptools.config._apply_pyprojecttoml', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_apply_pyprojecttoml.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\__init__.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.error_reporting', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\error_reporting.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.extra_validations', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\extra_validations.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.fastjsonschema_exceptions', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\fastjsonschema_exceptions.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.fastjsonschema_validations', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\fastjsonschema_validations.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.formats', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\_validate_pyproject\\formats.py', + 'PYMODULE'), + ('setuptools.config.expand', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\expand.py', + 'PYMODULE'), + ('setuptools.config.pyprojecttoml', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\pyprojecttoml.py', + 'PYMODULE'), + ('setuptools.config.setupcfg', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\config\\setupcfg.py', + 'PYMODULE'), + ('setuptools.depends', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\depends.py', + 'PYMODULE'), + ('setuptools.discovery', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\discovery.py', + 'PYMODULE'), + ('setuptools.dist', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\dist.py', + 'PYMODULE'), + ('setuptools.errors', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\errors.py', + 'PYMODULE'), + ('setuptools.extension', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\extension.py', + 'PYMODULE'), + ('setuptools.glob', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\glob.py', + 'PYMODULE'), + ('setuptools.installer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\installer.py', + 'PYMODULE'), + ('setuptools.logging', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\logging.py', + 'PYMODULE'), + ('setuptools.monkey', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\monkey.py', + 'PYMODULE'), + ('setuptools.msvc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\msvc.py', + 'PYMODULE'), + ('setuptools.unicode_utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\unicode_utils.py', + 'PYMODULE'), + ('setuptools.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\version.py', + 'PYMODULE'), + ('setuptools.warnings', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\warnings.py', + 'PYMODULE'), + ('setuptools.wheel', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\wheel.py', + 'PYMODULE'), + ('setuptools.windows_support', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\setuptools\\windows_support.py', + 'PYMODULE'), + ('shlex', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\shlex.py', 'PYMODULE'), ('shutil', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\shutil.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\shutil.py', 'PYMODULE'), ('signal', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\signal.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\signal.py', + 'PYMODULE'), + ('site', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site.py', 'PYMODULE'), ('socket', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\socket.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\socket.py', + 'PYMODULE'), + ('socketserver', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\socketserver.py', + 'PYMODULE'), + ('sqlite3', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\sqlite3\\__init__.py', + 'PYMODULE'), + ('sqlite3.__main__', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\sqlite3\\__main__.py', + 'PYMODULE'), + ('sqlite3.dbapi2', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\sqlite3\\dbapi2.py', + 'PYMODULE'), + ('sqlite3.dump', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\sqlite3\\dump.py', + 'PYMODULE'), + ('ssl', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\ssl.py', 'PYMODULE'), ('statistics', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\statistics.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\statistics.py', 'PYMODULE'), ('string', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\string.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\string.py', 'PYMODULE'), ('stringprep', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\stringprep.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\stringprep.py', 'PYMODULE'), ('subprocess', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\subprocess.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\subprocess.py', + 'PYMODULE'), + ('sysconfig', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\sysconfig\\__init__.py', 'PYMODULE'), ('tarfile', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\tarfile.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tarfile.py', + 'PYMODULE'), + ('tempfile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tempfile.py', + 'PYMODULE'), + ('textparser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\textparser.py', 'PYMODULE'), ('textwrap', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\textwrap.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\textwrap.py', 'PYMODULE'), ('threading', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\threading.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\threading.py', 'PYMODULE'), ('token', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\token.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\token.py', 'PYMODULE'), ('tokenize', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\tokenize.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tokenize.py', + 'PYMODULE'), + ('tomllib', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tomllib\\__init__.py', + 'PYMODULE'), + ('tomllib._parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tomllib\\_parser.py', + 'PYMODULE'), + ('tomllib._re', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tomllib\\_re.py', + 'PYMODULE'), + ('tomllib._types', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tomllib\\_types.py', 'PYMODULE'), ('tracemalloc', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\tracemalloc.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tracemalloc.py', + 'PYMODULE'), + ('tty', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\tty.py', 'PYMODULE'), ('typing', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\typing.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\typing.py', + 'PYMODULE'), + ('typing_extensions', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\typing_extensions.py', + 'PYMODULE'), + ('unittest', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\__init__.py', + 'PYMODULE'), + ('unittest._log', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\_log.py', + 'PYMODULE'), + ('unittest.async_case', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\async_case.py', + 'PYMODULE'), + ('unittest.case', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\case.py', + 'PYMODULE'), + ('unittest.loader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\loader.py', + 'PYMODULE'), + ('unittest.main', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\main.py', + 'PYMODULE'), + ('unittest.mock', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\mock.py', + 'PYMODULE'), + ('unittest.result', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\result.py', + 'PYMODULE'), + ('unittest.runner', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\runner.py', + 'PYMODULE'), + ('unittest.signals', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\signals.py', + 'PYMODULE'), + ('unittest.suite', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\suite.py', + 'PYMODULE'), + ('unittest.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\unittest\\util.py', 'PYMODULE'), ('urllib', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\urllib\\__init__.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\urllib\\__init__.py', + 'PYMODULE'), + ('urllib.error', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\urllib\\error.py', 'PYMODULE'), ('urllib.parse', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\urllib\\parse.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\urllib\\parse.py', 'PYMODULE'), - ('uu', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\uu.py', + ('urllib.request', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\urllib\\request.py', + 'PYMODULE'), + ('urllib.response', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\urllib\\response.py', + 'PYMODULE'), + ('webbrowser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\webbrowser.py', + 'PYMODULE'), + ('wheel', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\__init__.py', + 'PYMODULE'), + ('wheel.cli', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\cli\\__init__.py', + 'PYMODULE'), + ('wheel.cli.convert', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\cli\\convert.py', + 'PYMODULE'), + ('wheel.cli.pack', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\cli\\pack.py', + 'PYMODULE'), + ('wheel.cli.tags', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\cli\\tags.py', + 'PYMODULE'), + ('wheel.cli.unpack', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\cli\\unpack.py', + 'PYMODULE'), + ('wheel.macosx_libfile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\macosx_libfile.py', + 'PYMODULE'), + ('wheel.metadata', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\metadata.py', + 'PYMODULE'), + ('wheel.util', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\util.py', + 'PYMODULE'), + ('wheel.vendored', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\__init__.py', + 'PYMODULE'), + ('wheel.vendored.packaging', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\__init__.py', + 'PYMODULE'), + ('wheel.vendored.packaging._elffile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_elffile.py', + 'PYMODULE'), + ('wheel.vendored.packaging._manylinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_manylinux.py', + 'PYMODULE'), + ('wheel.vendored.packaging._musllinux', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_musllinux.py', + 'PYMODULE'), + ('wheel.vendored.packaging._parser', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_parser.py', + 'PYMODULE'), + ('wheel.vendored.packaging._structures', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_structures.py', + 'PYMODULE'), + ('wheel.vendored.packaging._tokenizer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\_tokenizer.py', + 'PYMODULE'), + ('wheel.vendored.packaging.markers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\markers.py', + 'PYMODULE'), + ('wheel.vendored.packaging.requirements', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\requirements.py', + 'PYMODULE'), + ('wheel.vendored.packaging.specifiers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\specifiers.py', + 'PYMODULE'), + ('wheel.vendored.packaging.tags', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\tags.py', + 'PYMODULE'), + ('wheel.vendored.packaging.utils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\utils.py', + 'PYMODULE'), + ('wheel.vendored.packaging.version', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\vendored\\packaging\\version.py', + 'PYMODULE'), + ('wheel.wheelfile', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wheel\\wheelfile.py', + 'PYMODULE'), + ('wrapt', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\__init__.py', + 'PYMODULE'), + ('wrapt.__wrapt__', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\__wrapt__.py', + 'PYMODULE'), + ('wrapt.arguments', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\arguments.py', + 'PYMODULE'), + ('wrapt.decorators', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\decorators.py', + 'PYMODULE'), + ('wrapt.importer', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\importer.py', + 'PYMODULE'), + ('wrapt.patches', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\patches.py', + 'PYMODULE'), + ('wrapt.weakrefs', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\weakrefs.py', + 'PYMODULE'), + ('wrapt.wrappers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\site-packages\\wrapt\\wrappers.py', + 'PYMODULE'), + ('xml', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\__init__.py', + 'PYMODULE'), + ('xml.etree', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\etree\\__init__.py', + 'PYMODULE'), + ('xml.etree.ElementInclude', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\etree\\ElementInclude.py', + 'PYMODULE'), + ('xml.etree.ElementPath', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\etree\\ElementPath.py', + 'PYMODULE'), + ('xml.etree.ElementTree', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\etree\\ElementTree.py', + 'PYMODULE'), + ('xml.etree.cElementTree', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\etree\\cElementTree.py', + 'PYMODULE'), + ('xml.parsers', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\parsers\\__init__.py', + 'PYMODULE'), + ('xml.parsers.expat', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\parsers\\expat.py', + 'PYMODULE'), + ('xml.sax', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\__init__.py', + 'PYMODULE'), + ('xml.sax._exceptions', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\_exceptions.py', + 'PYMODULE'), + ('xml.sax.expatreader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\expatreader.py', + 'PYMODULE'), + ('xml.sax.handler', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\handler.py', + 'PYMODULE'), + ('xml.sax.saxutils', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\saxutils.py', + 'PYMODULE'), + ('xml.sax.xmlreader', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xml\\sax\\xmlreader.py', + 'PYMODULE'), + ('xmlrpc', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xmlrpc\\__init__.py', + 'PYMODULE'), + ('xmlrpc.client', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\xmlrpc\\client.py', 'PYMODULE'), ('zipfile', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\zipfile.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\zipfile\\__init__.py', + 'PYMODULE'), + ('zipfile._path', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\zipfile\\_path\\__init__.py', + 'PYMODULE'), + ('zipfile._path.glob', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\zipfile\\_path\\glob.py', 'PYMODULE'), ('zipimport', - 'C:\\Users\\blueb\\AppData\\Local\\Programs\\Python\\Python310\\lib\\zipimport.py', + 'C:\\Users\\MSI\\AppData\\Local\\Programs\\Python\\Python313\\Lib\\zipimport.py', 'PYMODULE')]) diff --git a/build/DBC_Converter/base_library.zip b/build/DBC_Converter/base_library.zip index 0387615..9f7fb3d 100644 Binary files a/build/DBC_Converter/base_library.zip and b/build/DBC_Converter/base_library.zip differ diff --git a/build/DBC_Converter/localpycs/pyimod01_archive.pyc b/build/DBC_Converter/localpycs/pyimod01_archive.pyc index 1aec7c5..c521e18 100644 Binary files a/build/DBC_Converter/localpycs/pyimod01_archive.pyc and b/build/DBC_Converter/localpycs/pyimod01_archive.pyc differ diff --git a/build/DBC_Converter/localpycs/pyimod02_importers.pyc b/build/DBC_Converter/localpycs/pyimod02_importers.pyc index 6c32ac3..d340e76 100644 Binary files a/build/DBC_Converter/localpycs/pyimod02_importers.pyc and b/build/DBC_Converter/localpycs/pyimod02_importers.pyc differ diff --git a/build/DBC_Converter/localpycs/pyimod03_ctypes.pyc b/build/DBC_Converter/localpycs/pyimod03_ctypes.pyc index d64ffd9..1997e5a 100644 Binary files a/build/DBC_Converter/localpycs/pyimod03_ctypes.pyc and b/build/DBC_Converter/localpycs/pyimod03_ctypes.pyc differ diff --git a/build/DBC_Converter/localpycs/pyimod04_pywin32.pyc b/build/DBC_Converter/localpycs/pyimod04_pywin32.pyc index 3d37384..cab1f6a 100644 Binary files a/build/DBC_Converter/localpycs/pyimod04_pywin32.pyc and b/build/DBC_Converter/localpycs/pyimod04_pywin32.pyc differ diff --git a/build/DBC_Converter/localpycs/struct.pyc b/build/DBC_Converter/localpycs/struct.pyc index 9251ff0..bfcba93 100644 Binary files a/build/DBC_Converter/localpycs/struct.pyc and b/build/DBC_Converter/localpycs/struct.pyc differ diff --git a/build/DBC_Converter/warn-DBC_Converter.txt b/build/DBC_Converter/warn-DBC_Converter.txt index 6ba5d25..94758da 100644 --- a/build/DBC_Converter/warn-DBC_Converter.txt +++ b/build/DBC_Converter/warn-DBC_Converter.txt @@ -14,15 +14,50 @@ Types if import: IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for tracking down the missing module yourself. Thanks! -missing module named pyimod02_importers - imported by C:\Users\blueb\AppData\Local\Programs\Python\Python310\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed) -missing module named pep517 - imported by importlib.metadata (delayed) -missing module named 'org.python' - imported by copy (optional) -missing module named org - imported by pickle (optional) -missing module named pwd - imported by posixpath (delayed, conditional), shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional) -missing module named grp - imported by shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional) -missing module named posix - imported by shutil (conditional), importlib._bootstrap_external (conditional), os (conditional, optional) +missing module named 'collections.abc' - imported by traceback (top-level), inspect (top-level), logging (top-level), typing (top-level), selectors (top-level), tracemalloc (top-level), cantools.tester (top-level), typing_extensions (top-level), configparser (top-level), can.exceptions (conditional), asyncio.base_events (top-level), http.client (top-level), asyncio.coroutines (top-level), sqlite3.dbapi2 (top-level), pkg_resources (top-level), setuptools (top-level), setuptools._vendor.jaraco.functools (top-level), setuptools._vendor.more_itertools.more (top-level), setuptools._vendor.more_itertools.recipes (top-level), setuptools._reqs (top-level), setuptools.discovery (top-level), setuptools.dist (top-level), setuptools._distutils.dist (top-level), setuptools.config.setupcfg (top-level), setuptools.config.expand (top-level), setuptools.config.pyprojecttoml (top-level), setuptools.config._apply_pyprojecttoml (top-level), tomllib._parser (top-level), setuptools._vendor.tomli._parser (top-level), setuptools.command.egg_info (top-level), setuptools.glob (top-level), setuptools.command._requirestxt (top-level), setuptools.command.bdist_wheel (top-level), wheel.cli.convert (top-level), wheel.cli.tags (top-level), setuptools._vendor.platformdirs.windows (conditional), diskcache.persistent (top-level), cantools.typechecking (top-level), cantools.database.utils (top-level), xml.etree.ElementTree (top-level), cantools.database.can.formats.sym (conditional), _pyrepl.types (top-level), _pyrepl.readline (top-level) +missing module named grp - imported by shutil (delayed, optional), tarfile (optional), pathlib._local (optional), subprocess (delayed, conditional, optional), setuptools._distutils.archive_util (optional), setuptools._vendor.backports.tarfile (optional) +missing module named pwd - imported by posixpath (delayed, conditional, optional), shutil (delayed, optional), tarfile (optional), pathlib._local (optional), subprocess (delayed, conditional, optional), setuptools._distutils.util (delayed, conditional, optional), setuptools._distutils.archive_util (optional), netrc (delayed, conditional), getpass (delayed, optional), setuptools._vendor.backports.tarfile (optional), http.server (delayed, optional) +missing module named posix - imported by os (conditional, optional), posixpath (optional), shutil (conditional), importlib._bootstrap_external (conditional), _pyrepl.unix_console (delayed, optional) missing module named resource - imported by posix (top-level) -excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level) missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level) -missing module named _posixsubprocess - imported by subprocess (optional) -missing module named fcntl - imported by subprocess (optional) +excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level) +missing module named vms_lib - imported by platform (delayed, optional) +missing module named 'java.lang' - imported by platform (delayed, optional) +missing module named java - imported by platform (delayed) +missing module named asyncio.DefaultEventLoopPolicy - imported by asyncio (delayed, conditional), asyncio.events (delayed, conditional) +missing module named _posixshmem - imported by multiprocessing.resource_tracker (conditional), multiprocessing.shared_memory (conditional) +missing module named multiprocessing.set_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level) +missing module named multiprocessing.get_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level) +missing module named _posixsubprocess - imported by subprocess (conditional), multiprocessing.util (delayed) +missing module named multiprocessing.get_context - imported by multiprocessing (top-level), multiprocessing.pool (top-level), multiprocessing.managers (top-level), multiprocessing.sharedctypes (top-level) +missing module named multiprocessing.TimeoutError - imported by multiprocessing (top-level), multiprocessing.pool (top-level) +missing module named _scproxy - imported by urllib.request (conditional) +missing module named termios - imported by getpass (optional), tty (top-level), _pyrepl.pager (delayed, optional), _pyrepl.unix_console (top-level), _pyrepl.fancy_termios (top-level), _pyrepl.unix_eventqueue (top-level) +missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level) +missing module named multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.connection (top-level) +missing module named usercustomize - imported by site (delayed, optional) +missing module named sitecustomize - imported by site (delayed, optional) +missing module named _curses - imported by curses (top-level), curses.has_key (top-level), _pyrepl.curses (optional) +missing module named fcntl - imported by subprocess (optional), _pyrepl.unix_console (top-level) +missing module named readline - imported by cmd (delayed, conditional, optional), code (delayed, conditional, optional), rlcompleter (optional), pdb (delayed, optional), site (delayed, optional), sqlite3.__main__ (delayed, conditional, optional) +missing module named '_typeshed.importlib' - imported by pkg_resources (conditional) +missing module named _typeshed - imported by setuptools.glob (conditional), setuptools.compat.py311 (conditional), pkg_resources (conditional) +missing module named jnius - imported by setuptools._vendor.platformdirs.android (delayed, conditional, optional) +missing module named android - imported by setuptools._vendor.platformdirs.android (delayed, conditional, optional) +missing module named importlib_resources - imported by setuptools._vendor.jaraco.text (optional) +missing module named jaraco.text.yield_lines - imported by setuptools._vendor.jaraco.text (top-level), setuptools._entry_points (top-level), setuptools.command._requirestxt (top-level) +missing module named _manylinux - imported by packaging._manylinux (delayed, optional), setuptools._vendor.packaging._manylinux (delayed, optional), wheel.vendored.packaging._manylinux (delayed, optional) +missing module named trove_classifiers - imported by setuptools.config._validate_pyproject.formats (optional) +missing module named pyimod02_importers - imported by C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed), C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgres.py (delayed) +missing module named cantools.database.Database - imported by cantools.database (conditional), cantools.database.utils (conditional) +missing module named cantools.database.Signal - imported by cantools.database (conditional), cantools.typechecking (conditional) +missing module named cantools.database.Message - imported by cantools.database (conditional), cantools.typechecking (conditional) +missing module named 'django.core' - imported by diskcache.djangocache (optional) +missing module named django - imported by diskcache.djangocache (top-level) +missing module named 'asammdf.mdf' - imported by can.io.mf4 (optional) +missing module named 'asammdf.blocks' - imported by can.io.mf4 (optional) +missing module named numpy - imported by can.io.mf4 (optional) +missing module named asammdf - imported by can.io.mf4 (optional) +missing module named win32event - imported by can.broadcastmanager (delayed) +missing module named pywintypes - imported by can.broadcastmanager (delayed) +missing module named _suggestions - imported by traceback (delayed, optional) diff --git a/build/DBC_Converter/xref-DBC_Converter.html b/build/DBC_Converter/xref-DBC_Converter.html index 3808a18..3bab3b4 100644 --- a/build/DBC_Converter/xref-DBC_Converter.html +++ b/build/DBC_Converter/xref-DBC_Converter.html @@ -2,7 +2,7 @@ - modulegraph cross reference for DBC_Converter.py, pyi_rth_inspect.py, pyi_rth_pkgutil.py, pyi_rth_pyqt5.py + modulegraph cross reference for DBC_Converter.py, pyi_rth_inspect.py, pyi_rth_multiprocessing.py, pyi_rth_pkgres.py, pyi_rth_pkgutil.py, pyi_rth_pyqt5.py, pyi_rth_setuptools.py -

modulegraph cross reference for DBC_Converter.py, pyi_rth_inspect.py, pyi_rth_pkgutil.py, pyi_rth_pyqt5.py

+

modulegraph cross reference for DBC_Converter.py, pyi_rth_inspect.py, pyi_rth_multiprocessing.py, pyi_rth_pkgres.py, pyi_rth_pkgutil.py, pyi_rth_pyqt5.py, pyi_rth_setuptools.py

- DBC_Converter.py + DBC_Converter.py Script
imports: PyQt5PyQt5.QtCorePyQt5.QtGui + • PyQt5.QtNetwork + • PyQt5.QtPrintSupport + • PyQt5.QtSvg + • PyQt5.QtWebChannel + • PyQt5.QtWebSocketsPyQt5.QtWidgets_collections_abc_weakrefsetabc + • cantoolscodecscollections - • collections.abccopyregdatetimeencodings @@ -166,10 +171,18 @@ imports: • osposixpathpyi_rth_inspect.py + • pyi_rth_multiprocessing.py + • pyi_rth_pkgres.pypyi_rth_pkgutil.pypyi_rth_pyqt5.py + • pyi_rth_setuptools.pyre + • re._casefix + • re._compiler + • re._constants + • re._parserreprlib + • shutilsre_compilesre_constantssre_parse @@ -187,7 +200,7 @@ imports:
- pyi_rth_inspect.py + pyi_rth_inspect.py Script
imports: inspect @@ -203,9 +216,48 @@ imported by:
+
+ + pyi_rth_multiprocessing.py +Script
+imports: + multiprocessing + • multiprocessing.spawn + • subprocess + • sys + +
+
+imported by: + DBC_Converter.py + +
+ +
+ +
+ + pyi_rth_pkgres.py +Script
+imports: + os + • pathlib + • pkg_resources + • pyimod02_importers + • sys + +
+
+imported by: + DBC_Converter.py + +
+ +
+
- pyi_rth_pkgutil.py + pyi_rth_pkgutil.py Script
imports: pkgutil @@ -222,7 +274,7 @@ imported by:
- pyi_rth_pyqt5.py + pyi_rth_pyqt5.py Script
imports: _pyi_rth_utils @@ -240,11 +292,126 @@ imported by:
- - 'org.python' + + pyi_rth_setuptools.py +Script
+imports: + _distutils_hack + • os + • setuptools + +
+
+imported by: + DBC_Converter.py + +
+ +
+ +
+ + '_typeshed.importlib' MissingModule
imported by: - copy + pkg_resources + +
+ +
+ +
+ + 'asammdf.blocks' +MissingModule
+imported by: + can.io.mf4 + +
+ +
+ +
+ + 'asammdf.mdf' +MissingModule
+imported by: + can.io.mf4 + +
+ +
+ + + +
+ + 'django.core' +MissingModule
+imported by: + diskcache.djangocache + +
+ +
+ +
+ + 'java.lang' +MissingModule
+imported by: + platform
@@ -252,7 +419,7 @@ imported by:
- PyQt5 + PyQt5 Package
imports: PyQt5.QtCore @@ -269,6 +436,11 @@ imported by: DBC_Converter.pyPyQt5.QtCorePyQt5.QtGui + • PyQt5.QtNetwork + • PyQt5.QtPrintSupport + • PyQt5.QtSvg + • PyQt5.QtWebChannel + • PyQt5.QtWebSocketsPyQt5.QtWidgetsPyQt5.sip @@ -278,7 +450,7 @@ imported by:
- PyQt5.QtCore C:\Users\blueb\AppData\Local\Programs\Python\Python310\lib\site-packages\PyQt5\QtCore.pyd
+ PyQt5.QtCore C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyQt5\QtCore.pyd
imports: PyQt5 @@ -288,6 +460,11 @@ imported by: DBC_Converter.pyPyQt5PyQt5.QtGui + • PyQt5.QtNetwork + • PyQt5.QtPrintSupport + • PyQt5.QtSvg + • PyQt5.QtWebChannel + • PyQt5.QtWebSocketsPyQt5.QtWidgets
@@ -296,7 +473,7 @@ imported by:
- PyQt5.QtGui C:\Users\blueb\AppData\Local\Programs\Python\Python310\lib\site-packages\PyQt5\QtGui.pyd
+ PyQt5.QtGui C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyQt5\QtGui.pyd
imports: PyQt5PyQt5.QtCore @@ -306,15 +483,103 @@ imports: imported by: DBC_Converter.pyPyQt5 + • PyQt5.QtPrintSupport + • PyQt5.QtSvgPyQt5.QtWidgets
+
+ + PyQt5.QtNetwork C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyQt5\QtNetwork.pyd
+imports: + PyQt5 + • PyQt5.QtCore + +
+
+imported by: + DBC_Converter.py + • PyQt5.QtWebSockets + +
+ +
+ +
+ + PyQt5.QtPrintSupport C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyQt5\QtPrintSupport.pyd
+imports: + PyQt5 + • PyQt5.QtCore + • PyQt5.QtGui + • PyQt5.QtWidgets + +
+
+imported by: + DBC_Converter.py + +
+ +
+ +
+ + PyQt5.QtSvg C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyQt5\QtSvg.pyd
+imports: + PyQt5 + • PyQt5.QtCore + • PyQt5.QtGui + • PyQt5.QtWidgets + +
+
+imported by: + DBC_Converter.py + +
+ +
+ +
+ + PyQt5.QtWebChannel C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyQt5\QtWebChannel.pyd
+imports: + PyQt5 + • PyQt5.QtCore + +
+
+imported by: + DBC_Converter.py + +
+ +
+ +
+ + PyQt5.QtWebSockets C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyQt5\QtWebSockets.pyd
+imports: + PyQt5 + • PyQt5.QtCore + • PyQt5.QtNetwork + +
+
+imported by: + DBC_Converter.py + +
+ +
+
- PyQt5.QtWidgets C:\Users\blueb\AppData\Local\Programs\Python\Python310\lib\site-packages\PyQt5\QtWidgets.pyd
+ PyQt5.QtWidgets C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyQt5\QtWidgets.pyd
imports: PyQt5PyQt5.QtCore @@ -325,6 +590,8 @@ imports: imported by: DBC_Converter.pyPyQt5 + • PyQt5.QtPrintSupport + • PyQt5.QtSvg
@@ -332,7 +599,7 @@ imported by:
- PyQt5.sip C:\Users\blueb\AppData\Local\Programs\Python\Python310\lib\site-packages\PyQt5\sip.cp310-win_amd64.pyd
+ PyQt5.sip C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\PyQt5\sip.cp313-win_amd64.pyd
imports: PyQt5 @@ -345,6 +612,110 @@ imported by:
+
+ + __future__ +SourceModule
+imported by: + _pyrepl._threading_handler + • _pyrepl.commands + • _pyrepl.completing_reader + • _pyrepl.console + • _pyrepl.historical_reader + • _pyrepl.input + • _pyrepl.pager + • _pyrepl.reader + • _pyrepl.readline + • _pyrepl.simple_interact + • _pyrepl.trace + • _pyrepl.unix_console + • _pyrepl.windows_console + • codeop + • doctest + • importlib.metadata + • importlib.metadata._meta + • packaging._elffile + • packaging._manylinux + • packaging._musllinux + • packaging._parser + • packaging._tokenizer + • packaging.licenses + • packaging.licenses._spdx + • packaging.markers + • packaging.metadata + • packaging.requirements + • packaging.specifiers + • packaging.tags + • packaging.utils + • packaging.version + • pkg_resources + • pydoc + • setuptools + • setuptools._core_metadata + • setuptools._distutils.compat + • setuptools._distutils.spawn + • setuptools._distutils.util + • setuptools._path + • setuptools._reqs + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._meta + • setuptools._vendor.jaraco.context + • setuptools._vendor.packaging._elffile + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._musllinux + • setuptools._vendor.packaging._parser + • setuptools._vendor.packaging._tokenizer + • setuptools._vendor.packaging.markers + • setuptools._vendor.packaging.requirements + • setuptools._vendor.packaging.specifiers + • setuptools._vendor.packaging.tags + • setuptools._vendor.packaging.utils + • setuptools._vendor.packaging.version + • setuptools._vendor.platformdirs + • setuptools._vendor.platformdirs.android + • setuptools._vendor.platformdirs.api + • setuptools._vendor.platformdirs.macos + • setuptools._vendor.platformdirs.unix + • setuptools._vendor.platformdirs.windows + • setuptools._vendor.tomli._parser + • setuptools._vendor.tomli._re + • setuptools.command._requirestxt + • setuptools.command.bdist_egg + • setuptools.command.bdist_wheel + • setuptools.command.build + • setuptools.command.sdist + • setuptools.compat.py311 + • setuptools.config._apply_pyprojecttoml + • setuptools.config.expand + • setuptools.config.pyprojecttoml + • setuptools.config.setupcfg + • setuptools.depends + • setuptools.discovery + • setuptools.dist + • setuptools.errors + • setuptools.extension + • setuptools.glob + • setuptools.installer + • setuptools.monkey + • setuptools.msvc + • setuptools.warnings + • tomllib._parser + • tomllib._re + • wheel + • wheel.cli + • wheel.cli.convert + • wheel.cli.pack + • wheel.cli.tags + • wheel.cli.unpack + • wheel.macosx_libfile + • wheel.metadata + • wheel.util + • wheel.wheelfile + +
+ +
+
_abc (builtin module)
@@ -355,6 +726,27 @@ imported by:
+
+ + _aix_support +SourceModule
+imports: + contextlib + • os + • subprocess + • sys + • sysconfig + +
+
+imported by: + setuptools._distutils.compat.py38 + • sysconfig + +
+ +
+
_ast (builtin module)
@@ -365,6 +757,18 @@ imported by:
+
+ + _asyncio C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_asyncio.pyd
+imported by: + asyncio.events + • asyncio.futures + • asyncio.tasks + +
+ +
+
_bisect (builtin module)
@@ -387,7 +791,7 @@ imported by:
- _bz2 C:\Users\blueb\AppData\Local\Programs\Python\Python310\DLLs\_bz2.pyd
+ _bz2 C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_bz2.pyd
imported by: bz2 @@ -496,22 +900,22 @@ imported by:
- _collections_abc + _collections_abc SourceModule
imports: abcsys + • warnings
imported by: DBC_Converter.pycollections - • collections.abccontextliblocaleos - • pathlib + • pathlib._localrandomtypesweakref @@ -520,9 +924,32 @@ imported by:
+
+ + _colorize +SourceModule
+imports: + io + • nt + • os + • sys + +
+
+imported by: + _pyrepl.console + • _pyrepl.reader + • doctest + • pdb + • traceback + +
+ +
+
- _compat_pickle + _compat_pickle SourceModule
imported by: _pickle @@ -534,7 +961,7 @@ imported by:
- _compression + _compression SourceModule
imports: io @@ -571,6 +998,35 @@ imported by:
+
+ + _ctypes C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_ctypes.pyd
+imported by: + ctypes + • ctypes.macholib.dyld + +
+ +
+ +
+ + _curses +MissingModule
+imports: + curses + +
+
+imported by: + _pyrepl.curses + • curses + • curses.has_key + +
+ +
+
_datetime (builtin module)
@@ -589,7 +1045,7 @@ imported by:
- _decimal C:\Users\blueb\AppData\Local\Programs\Python\Python310\DLLs\_decimal.pyd
+ _decimal C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_decimal.pyd
imported by: decimal @@ -597,6 +1053,65 @@ imported by:
+
+ + _distutils_hack +Package
+imports: + importlib + • importlib.abc + • importlib.util + • os + • sys + • traceback + • warnings + +
+ + +
+ +
+ + _distutils_hack.override +SourceModule
+imports: + _distutils_hack + +
+
+imported by: + setuptools + • setuptools.discovery + +
+ +
+ +
+ + _elementtree C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_elementtree.pyd +
+imported by: + xml.etree.ElementTree + +
+ +
+
_frozen_importlib @@ -636,9 +1151,10 @@ imported by:
- _hashlib C:\Users\blueb\AppData\Local\Programs\Python\Python310\DLLs\_hashlib.pyd
+ _hashlib C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_hashlib.pyd
imported by: hashlib + • hmac
@@ -661,6 +1177,8 @@ imported by: importlibimportlib._bootstrap_externalimportlib.util + • pkg_resources + • setuptools._distutils.compat.py39zipimport
@@ -673,12 +1191,32 @@ imported by: imported by: importlib._bootstrap_externalio + • unittest.mockzipimport
+
+ + _ios_support +SourceModule
+imports: + ctypes + • ctypes.util + • sys + +
+
+imported by: + platform + • webbrowser + +
+ +
+
_json (builtin module)
@@ -701,7 +1239,6 @@ imported by: _locale (builtin module)
imported by: locale - • re
@@ -709,7 +1246,7 @@ imported by:
- _lzma C:\Users\blueb\AppData\Local\Programs\Python\Python310\DLLs\_lzma.pyd
+ _lzma C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_lzma.pyd
imported by: lzma @@ -717,6 +1254,19 @@ imported by:
+ +
_md5 (builtin module)
@@ -760,9 +1310,33 @@ imported by:
+
+ + _multiprocessing C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_multiprocessing.pyd + +
+
_opcode (builtin module)
+imported by: + dis + • opcode + +
+ +
+ +
+ + _opcode_metadata +SourceModule
imported by: opcode @@ -774,7 +1348,18 @@ imported by: _operator (builtin module)
imported by: - operator + hmac + • operator + +
+ +
+ +
+ + _overlapped C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_overlapped.pyd
+imported by: + asyncio.windows_events
@@ -797,6 +1382,18 @@ imported by:
+
+ + _posixshmem +MissingModule + +
+
_posixsubprocess @@ -807,7 +1404,8 @@ imports:
imported by: - subprocess + multiprocessing.util + • subprocess
@@ -815,7 +1413,7 @@ imported by:
- _py_abc + _py_abc SourceModule
imports: _weakrefset @@ -829,9 +1427,30 @@ imported by:
+
+ + _pydatetime +SourceModule
+imports: + _strptime + • math + • operator + • sys + • time + • warnings + +
+
+imported by: + datetime + +
+ +
+
- _pydecimal + _pydecimal SourceModule
imports: collections @@ -854,7 +1473,7 @@ imported by:
- _pyi_rth_utils + _pyi_rth_utils Package
imports: _pyi_rth_utils.qt @@ -873,7 +1492,7 @@ imported by:
- _pyi_rth_utils.qt + _pyi_rth_utils.qt SourceModule
imports: _pyi_rth_utils @@ -891,6 +1510,585 @@ imported by:
+ + +
+ + _pyrepl._minimal_curses +SourceModule
+imports: + _pyrepl + • ctypes + • ctypes.util + +
+
+imported by: + _pyrepl + • _pyrepl.curses + +
+ +
+ +
+ + _pyrepl._threading_handler +SourceModule
+imports: + __future__ + • _pyrepl + • _pyrepl.reader + • dataclasses + • threading + • traceback + • types + • typing + +
+
+imported by: + _pyrepl.reader + +
+ +
+ +
+ + _pyrepl.commands +SourceModule
+imports: + __future__ + • _pyrepl + • _pyrepl.historical_reader + • _pyrepl.pager + • _sitebuiltins + • os + • signal + • site + +
+ + +
+ +
+ + _pyrepl.completing_reader +SourceModule
+imports: + __future__ + • _pyrepl + • _pyrepl.commands + • _pyrepl.console + • _pyrepl.reader + • _pyrepl.types + • dataclasses + • re + +
+
+imported by: + _pyrepl.readline + +
+ +
+ +
+ + _pyrepl.console +SourceModule
+imports: + __future__ + • _colorize + • _pyrepl + • abc + • ast + • code + • dataclasses + • os.path + • sys + • traceback + • typing + +
+ + +
+ +
+ + _pyrepl.curses +SourceModule
+imports: + _curses + • _pyrepl + • _pyrepl._minimal_curses + • curses + +
+
+imported by: + _pyrepl + • _pyrepl.unix_console + • _pyrepl.unix_eventqueue + +
+ +
+ +
+ + _pyrepl.fancy_termios +SourceModule
+imports: + _pyrepl + • termios + +
+
+imported by: + _pyrepl.unix_console + +
+ +
+ +
+ + _pyrepl.historical_reader +SourceModule
+imports: + __future__ + • _pyrepl + • _pyrepl.commands + • _pyrepl.input + • _pyrepl.reader + • _pyrepl.types + • contextlib + • dataclasses + +
+
+imported by: + _pyrepl.commands + • _pyrepl.readline + +
+ +
+ +
+ + _pyrepl.input +SourceModule
+imports: + __future__ + • _pyrepl + • _pyrepl.keymap + • _pyrepl.types + • abc + • collections + • unicodedata + +
+
+imported by: + _pyrepl + • _pyrepl.historical_reader + • _pyrepl.reader + +
+ +
+ +
+ + _pyrepl.keymap +SourceModule
+imports: + _pyrepl + +
+
+imported by: + _pyrepl.input + • _pyrepl.unix_eventqueue + +
+ +
+ +
+ + _pyrepl.main +SourceModule
+imports: + _pyrepl + • _pyrepl.console + • _pyrepl.simple_interact + • _pyrepl.trace + • errno + • os + • sys + • tokenize + +
+
+imported by: + site + +
+ +
+ +
+ + _pyrepl.pager +SourceModule
+imports: + __future__ + • _pyrepl + • io + • os + • re + • subprocess + • sys + • tempfile + • termios + • tty + • typing + +
+
+imported by: + _pyrepl.commands + • pydoc + +
+ +
+ + + +
+ + _pyrepl.readline +SourceModule +
+imported by: + _pyrepl.simple_interact + • site + +
+ +
+ +
+ + _pyrepl.simple_interact +SourceModule
+imports: + __future__ + • _pyrepl + • _pyrepl.readline + • _pyrepl.unix_console + • _pyrepl.windows_console + • _sitebuiltins + • code + • functools + • linecache + • os + • sys + • typing + +
+
+imported by: + _pyrepl.main + +
+ +
+ +
+ + _pyrepl.trace +SourceModule
+imports: + __future__ + • _pyrepl + • os + • typing + +
+ + +
+ +
+ + _pyrepl.types +SourceModule
+imports: + 'collections.abc' + • _pyrepl + +
+ + +
+ +
+ + _pyrepl.unix_console +SourceModule
+imports: + __future__ + • _pyrepl + • _pyrepl.console + • _pyrepl.curses + • _pyrepl.fancy_termios + • _pyrepl.trace + • _pyrepl.unix_eventqueue + • _pyrepl.utils + • errno + • fcntl + • os + • platform + • posix + • re + • select + • signal + • struct + • termios + • time + • typing + +
+
+imported by: + _pyrepl.readline + • _pyrepl.simple_interact + • site + +
+ +
+ +
+ + _pyrepl.unix_eventqueue +SourceModule
+imports: + _pyrepl + • _pyrepl.console + • _pyrepl.curses + • _pyrepl.keymap + • _pyrepl.trace + • collections + • os + • termios + +
+
+imported by: + _pyrepl.unix_console + +
+ +
+ +
+ + _pyrepl.utils +SourceModule
+imports: + _pyrepl + • functools + • re + • unicodedata + +
+ + +
+ +
+ + _pyrepl.windows_console +SourceModule
+imports: + __future__ + • _pyrepl + • _pyrepl.console + • _pyrepl.trace + • _pyrepl.utils + • collections + • ctypes + • ctypes.wintypes + • io + • msvcrt + • nt + • os + • sys + • time + • typing + +
+
+imported by: + _pyrepl.readline + • _pyrepl.simple_interact + • site + +
+ +
+ +
+ + _queue C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_queue.pyd
+imported by: + queue + +
+ +
+
_random (builtin module)
@@ -901,6 +2099,17 @@ imported by:
+
+ + _scproxy +MissingModule
+imported by: + urllib.request + +
+ +
+
_sha1 (builtin module)
@@ -912,10 +2121,11 @@ imported by:
- - _sha256 (builtin module)
+ + _sha2 (builtin module)
imported by: hashlib + • random
@@ -931,17 +2141,6 @@ imported by:
-
- - _sha512 (builtin module)
-imported by: - hashlib - • random - -
- -
-
_signal (builtin module)
@@ -952,11 +2151,43 @@ imported by:
+
+ + _sitebuiltins +SourceModule
+imports: + os + • pydoc + • sys + +
+
+imported by: + _pyrepl.commands + • _pyrepl.simple_interact + • site + +
+ +
+
- _socket C:\Users\blueb\AppData\Local\Programs\Python\Python310\DLLs\_socket.pyd
+ _socket C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_socket.pyd
imported by: socket + • types + • typing_extensions + +
+ +
+ +
+ + _sqlite3 C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_sqlite3.pyd
+imported by: + sqlite3.dbapi2
@@ -972,8 +2203,24 @@ imports:
imported by: - sre_compile - • sre_constants + re + • re._compiler + • re._constants + +
+ +
+ +
+ + _ssl C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_ssl.pyd
+imports: + socket + +
+
+imported by: + ssl
@@ -1011,21 +2258,23 @@ imported by:
- _strptime + _strptime SourceModule
imports: _threadcalendardatetimelocale + • osretime + • warnings
imported by: _datetime - • datetime + • _pydatetimetime
@@ -1042,14 +2291,35 @@ imported by:
+
+ + _suggestions +MissingModule
+imported by: + traceback + +
+ +
+ +
+ + _sysconfig (builtin module)
+imported by: + sysconfig + +
+ +
+
_thread (builtin module)
imported by: _strptime - • dataclassesfunctoolsreprlib + • tempfilethreading
@@ -1058,7 +2328,7 @@ imported by:
- _threading_local + _threading_local SourceModule
imports: contextlib @@ -1074,6 +2344,16 @@ imported by:
+
+ + _tokenize (builtin module)
+imported by: + tokenize + +
+ +
+
_tracemalloc (builtin module)
@@ -1084,6 +2364,29 @@ imported by:
+
+ + _typeshed +MissingModule
+imported by: + pkg_resources + • setuptools.compat.py311 + • setuptools.glob + +
+ +
+ +
+ + _typing (builtin module)
+imported by: + typing + +
+ +
+
_warnings (builtin module)
@@ -1103,6 +2406,7 @@ imported by: _weakrefsetcollectionsweakref + • xml.sax.expatreader
@@ -1110,7 +2414,7 @@ imported by:
- _weakrefset + _weakrefset SourceModule
imports: _weakref @@ -1121,6 +2425,7 @@ imports: imported by: DBC_Converter.py_py_abc + • multiprocessing.processthreadingweakref @@ -1132,9 +2437,30 @@ imported by: _winapi (builtin module) + +
+ +
+ + _wmi C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\_wmi.pyd
+imported by: + platform
@@ -1142,7 +2468,7 @@ imported by: + +
+ + android +MissingModule @@ -1173,7 +2529,7 @@ imported by:
- argparse + argparse SourceModule
imports: copy @@ -1190,12 +2546,24 @@ imports: imported by: astcalendar + • cantools + • codedis + • doctestgzip + • http.serverinspect + • pdb + • pickletoolspy_compile + • random + • setuptools._vendor.backports.tarfile + • sqlite3.__main__tarfiletokenize + • unittest.main + • webbrowser + • wheel.clizipfile
@@ -1206,7 +2574,21 @@ imported by: array (builtin module) + +
+ +
+ + asammdf +MissingModule
+imported by: + can.io.mf4
@@ -1214,7 +2596,7 @@ imported by:
- ast + ast SourceModule
imports: _ast @@ -1223,13 +2605,966 @@ imports: • contextlibenuminspect + • resyswarnings
+ +
+ +
+ + asyncio +Package + + +
+ +
+ + asyncio.DefaultEventLoopPolicy +MissingModule
+imported by: + asyncio + • asyncio.events + +
+ +
+ +
+ + asyncio.base_events +SourceModule
+imports: + 'collections.abc' + • asyncio + • asyncio.constants + • asyncio.coroutines + • asyncio.events + • asyncio.exceptions + • asyncio.futures + • asyncio.log + • asyncio.protocols + • asyncio.sslproto + • asyncio.staggered + • asyncio.tasks + • asyncio.timeouts + • asyncio.transports + • asyncio.trsock + • collections + • concurrent.futures + • errno + • heapq + • itertools + • os + • socket + • ssl + • stat + • subprocess + • sys + • threading + • time + • traceback + • warnings + • weakref + +
+ + +
+ +
+ + asyncio.base_futures +SourceModule
+imports: + asyncio + • asyncio.format_helpers + • reprlib + +
+
+imported by: + asyncio + • asyncio.base_tasks + • asyncio.futures + +
+ +
+ +
+ + asyncio.base_subprocess +SourceModule
+imports: + asyncio + • asyncio.log + • asyncio.protocols + • asyncio.transports + • collections + • os + • signal + • subprocess + • sys + • warnings + +
+
+imported by: + asyncio + • asyncio.unix_events + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.base_tasks +SourceModule
+imports: + asyncio + • asyncio.base_futures + • asyncio.coroutines + • linecache + • reprlib + • traceback + +
+
+imported by: + asyncio + • asyncio.tasks + +
+ +
+ +
+ + asyncio.constants +SourceModule
+imports: + asyncio + • enum + +
+ + +
+ +
+ + asyncio.coroutines +SourceModule
+imports: + 'collections.abc' + • asyncio + • inspect + • os + • sys + • types + +
+ + +
+ + + + + +
+ + asyncio.format_helpers +SourceModule
+imports: + asyncio + • asyncio.constants + • functools + • inspect + • reprlib + • sys + • traceback + +
+
+imported by: + asyncio + • asyncio.base_futures + • asyncio.events + • asyncio.futures + • asyncio.streams + +
+ +
+ + + +
+ + asyncio.locks +SourceModule
+imports: + asyncio + • asyncio.exceptions + • asyncio.mixins + • collections + • enum + +
+
+imported by: + asyncio + • asyncio.queues + • asyncio.staggered + +
+ +
+ + + +
+ + asyncio.mixins +SourceModule
+imports: + asyncio + • asyncio.events + • threading + +
+
+imported by: + asyncio + • asyncio.locks + • asyncio.queues + +
+ +
+ +
+ + asyncio.proactor_events +SourceModule +
+imported by: + asyncio + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.protocols +SourceModule
+imports: + asyncio + +
+ + +
+ +
+ + asyncio.queues +SourceModule
+imports: + asyncio + • asyncio.locks + • asyncio.mixins + • collections + • heapq + • types + +
+
+imported by: + asyncio + • asyncio.tasks + +
+ +
+ +
+ + asyncio.runners +SourceModule
+imports: + asyncio + • asyncio.constants + • asyncio.coroutines + • asyncio.events + • asyncio.exceptions + • asyncio.tasks + • contextvars + • enum + • functools + • signal + • threading + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.selector_events +SourceModule
+imports: + asyncio + • asyncio.base_events + • asyncio.constants + • asyncio.events + • asyncio.futures + • asyncio.log + • asyncio.protocols + • asyncio.sslproto + • asyncio.transports + • asyncio.trsock + • collections + • errno + • functools + • itertools + • os + • selectors + • socket + • ssl + • warnings + • weakref + +
+
+imported by: + asyncio + • asyncio.unix_events + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.sslproto +SourceModule
+imports: + asyncio + • asyncio.constants + • asyncio.exceptions + • asyncio.log + • asyncio.protocols + • asyncio.transports + • collections + • enum + • ssl + • warnings + +
+ + +
+ +
+ + asyncio.staggered +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.exceptions + • asyncio.locks + • asyncio.tasks + • contextlib + +
+
+imported by: + asyncio + • asyncio.base_events + +
+ +
+ +
+ + asyncio.streams +SourceModule +
+imported by: + asyncio + • asyncio.subprocess + +
+ +
+ +
+ + asyncio.subprocess +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.log + • asyncio.protocols + • asyncio.streams + • asyncio.tasks + • subprocess + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.taskgroups +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.exceptions + • asyncio.tasks + +
+
+imported by: + asyncio + +
+ +
+ + + +
+ + asyncio.threads +SourceModule
+imports: + asyncio + • asyncio.events + • contextvars + • functools + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.timeouts +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.exceptions + • asyncio.tasks + • enum + • types + • typing + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.tasks + +
+ +
+ +
+ + asyncio.transports +SourceModule
+imports: + asyncio + +
+ + +
+ +
+ + asyncio.trsock +SourceModule
+imports: + asyncio + • socket + +
+ + +
+ +
+ + asyncio.unix_events +SourceModule +
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.windows_events +SourceModule
+imports: + _overlapped + • _winapi + • asyncio + • asyncio.base_subprocess + • asyncio.events + • asyncio.exceptions + • asyncio.futures + • asyncio.log + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.tasks + • asyncio.windows_utils + • errno + • functools + • math + • msvcrt + • socket + • struct + • sys + • time + • weakref + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.windows_utils +SourceModule
+imports: + _winapi + • asyncio + • itertools + • msvcrt + • os + • subprocess + • sys + • tempfile + • warnings + +
+
+imported by: + asyncio + • asyncio.windows_events
@@ -1241,15 +3576,56 @@ imported by: imported by: _pyi_rth_utils.qtlogging + • multiprocessing.forkserver + • multiprocessing.popen_fork + • multiprocessing.util + • rlcompleter + • siteweakref
+
+ + backports +Package
+imports: + backports.tarfile + • pkgutil + +
+ + +
+ +
+ + backports.tarfile +AliasNode +
+imported by: + backports + • setuptools._vendor.jaraco.context + +
+ +
+
- base64 + base64 SourceModule
imports: binascii @@ -1261,10 +3637,38 @@ imports:
+ +
+ +
+ + bdb +SourceModule
+imports: + fnmatch + • inspect + • linecache + • os + • reprlib + • sys + +
+
+imported by: + pdb
@@ -1275,14 +3679,19 @@ imported by: binascii (builtin module) @@ -1291,7 +3700,7 @@ imported by:
- bisect + bisect SourceModule
imports: _bisect @@ -1299,8 +3708,47 @@ imports:
imported by: - random + multiprocessing.heap + • randomstatistics + • urllib.request + +
+ +
+ +
+ + bitstruct +Package
+imports: + binascii + • io + • re + • struct + +
+ + +
+ +
+ + bitstruct.c C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\bitstruct\c.cp313-win_amd64.pyd
+imports: + bitstruct + +
+
+imported by: + cantools.database.utils
@@ -1310,20 +3758,30 @@ imported by: builtins (builtin module) @@ -1331,7 +3789,7 @@ imported by:
- bz2 + bz2 SourceModule
imports: _bz2 @@ -1344,6 +3802,7 @@ imports:
imported by: encodings.bz2_codec + • setuptools._vendor.backports.tarfileshutiltarfilezipfile @@ -1354,20 +3813,1963 @@ imported by:
- calendar + calendar SourceModule
imports: argparsedatetime + • enumitertoolslocalesys + • warnings
imported by: _strptimeemail._parseaddr + • http.cookiejar + • ssl + +
+ +
+ +
+ + can +Package + + +
+ +
+ + can._entry_points +SourceModule
+imports: + can + • dataclasses + • importlib + • importlib.metadata + • sys + • typing + +
+
+imported by: + can.interfaces + • can.io.logger + • can.io.player + +
+ +
+ +
+ + can.bit_timing +SourceModule
+imports: + can + • can.typechecking + • math + • typing + +
+
+imported by: + can + • can.util + +
+ +
+ +
+ + can.broadcastmanager +SourceModule
+imports: + abc + • can + • can.bus + • can.message + • can.typechecking + • logging + • platform + • pywintypes + • sys + • threading + • time + • typing + • warnings + • win32event + +
+
+imported by: + can + • can.bus + +
+ +
+ +
+ + can.bus +SourceModule
+imports: + abc + • can + • can.broadcastmanager + • can.message + • can.typechecking + • contextlib + • enum + • logging + • threading + • time + • types + • typing + • typing_extensions + +
+
+imported by: + can + • can.broadcastmanager + • can.interface + • can.listener + • can.notifier + +
+ +
+ +
+ + can.exceptions +SourceModule
+imports: + 'collections.abc' + • can + • contextlib + • sys + • typing + +
+
+imported by: + can + • can.interface + • can.util + +
+ +
+ +
+ + can.interface +SourceModule
+imports: + can + • can.bus + • can.exceptions + • can.interfaces + • can.typechecking + • can.util + • importlib + • logging + • typing + +
+
+imported by: + can + • can.thread_safe_bus + +
+ +
+ +
+ + can.interfaces +Package
+imports: + can + • can._entry_points + • typing + +
+
+imported by: + can + • can.interface + • can.util + +
+ +
+ +
+ + can.io +Package
+imports: + can + • can.io.asc + • can.io.blf + • can.io.canutils + • can.io.csv + • can.io.logger + • can.io.mf4 + • can.io.player + • can.io.printer + • can.io.sqlite + • can.io.trc + +
+
+imported by: + can + • can.io.asc + • can.io.blf + • can.io.canutils + • can.io.csv + • can.io.generic + • can.io.logger + • can.io.mf4 + • can.io.player + • can.io.printer + • can.io.sqlite + • can.io.trc + +
+ +
+ +
+ + can.io.asc +SourceModule
+imports: + can.io + • can.io.generic + • can.message + • can.typechecking + • can.util + • datetime + • logging + • re + • typing + +
+
+imported by: + can.io + • can.io.logger + • can.io.player + +
+ +
+ +
+ + can.io.blf +SourceModule
+imports: + can.io + • can.io.generic + • can.message + • can.typechecking + • can.util + • datetime + • logging + • struct + • time + • typing + • zlib + +
+
+imported by: + can.io + • can.io.logger + • can.io.player + +
+ +
+ +
+ + can.io.canutils +SourceModule
+imports: + can.io + • can.io.generic + • can.message + • can.typechecking + • logging + • typing + +
+
+imported by: + can.io + • can.io.logger + • can.io.player + +
+ +
+ +
+ + can.io.csv +SourceModule
+imports: + base64 + • can.io + • can.io.generic + • can.message + • can.typechecking + • typing + +
+
+imported by: + can.io + • can.io.logger + • can.io.player + +
+ +
+ +
+ + can.io.generic +SourceModule
+imports: + abc + • can + • can.io + • can.listener + • can.message + • can.typechecking + • gzip + • locale + • types + • typing + • typing_extensions + +
+
+imported by: + can.io.asc + • can.io.blf + • can.io.canutils + • can.io.csv + • can.io.logger + • can.io.mf4 + • can.io.player + • can.io.printer + • can.io.sqlite + • can.io.trc + +
+ +
+ +
+ + can.io.logger +SourceModule
+imports: + abc + • can._entry_points + • can.io + • can.io.asc + • can.io.blf + • can.io.canutils + • can.io.csv + • can.io.generic + • can.io.mf4 + • can.io.printer + • can.io.sqlite + • can.io.trc + • can.message + • can.typechecking + • datetime + • gzip + • os + • pathlib + • types + • typing + • typing_extensions + +
+
+imported by: + can.io + +
+ +
+ +
+ + can.io.mf4 +SourceModule
+imports: + 'asammdf.blocks' + • 'asammdf.mdf' + • abc + • asammdf + • can.io + • can.io.generic + • can.message + • can.typechecking + • can.util + • datetime + • hashlib + • heapq + • io + • logging + • numpy + • pathlib + • typing + +
+
+imported by: + can.io + • can.io.logger + • can.io.player + +
+ +
+ +
+ + can.io.player +SourceModule
+imports: + can._entry_points + • can.io + • can.io.asc + • can.io.blf + • can.io.canutils + • can.io.csv + • can.io.generic + • can.io.mf4 + • can.io.sqlite + • can.io.trc + • can.message + • can.typechecking + • gzip + • pathlib + • time + • typing + +
+
+imported by: + can.io + +
+ +
+ +
+ + can.io.printer +SourceModule
+imports: + can.io + • can.io.generic + • can.message + • can.typechecking + • logging + • typing + +
+
+imported by: + can.io + • can.io.logger + +
+ +
+ +
+ + can.io.sqlite +SourceModule
+imports: + can.io + • can.io.generic + • can.listener + • can.message + • can.typechecking + • logging + • sqlite3 + • threading + • time + • typing + +
+
+imported by: + can.io + • can.io.logger + • can.io.player + +
+ +
+ +
+ + can.io.trc +SourceModule
+imports: + can.io + • can.io.generic + • can.message + • can.typechecking + • can.util + • datetime + • enum + • logging + • os + • typing + +
+
+imported by: + can.io + • can.io.logger + • can.io.player + +
+ +
+ +
+ + can.listener +SourceModule
+imports: + abc + • asyncio + • can + • can.bus + • can.message + • queue + • sys + • typing + • warnings + +
+
+imported by: + can + • can.io.generic + • can.io.sqlite + • can.notifier + +
+ +
+ +
+ + can.message +SourceModule
+imports: + can + • can.typechecking + • copy + • math + • typing + +
+
+imported by: + can + • can.broadcastmanager + • can.bus + • can.io.asc + • can.io.blf + • can.io.canutils + • can.io.csv + • can.io.generic + • can.io.logger + • can.io.mf4 + • can.io.player + • can.io.printer + • can.io.sqlite + • can.io.trc + • can.listener + • can.notifier + +
+ +
+ +
+ + can.notifier +SourceModule
+imports: + asyncio + • can + • can.bus + • can.listener + • can.message + • functools + • logging + • threading + • time + • typing + +
+
+imported by: + can + +
+ +
+ +
+ + can.thread_safe_bus +SourceModule
+imports: + can + • can.interface + • contextlib + • threading + • wrapt + +
+
+imported by: + can + +
+ +
+ +
+ + can.typechecking +SourceModule
+imports: + can + • gzip + • os + • struct + • sys + • typing + • typing_extensions + +
+
+imported by: + can + • can.bit_timing + • can.broadcastmanager + • can.bus + • can.interface + • can.io.asc + • can.io.blf + • can.io.canutils + • can.io.csv + • can.io.generic + • can.io.logger + • can.io.mf4 + • can.io.player + • can.io.printer + • can.io.sqlite + • can.io.trc + • can.message + • can.util + +
+ +
+ +
+ + can.util +SourceModule
+imports: + can + • can.bit_timing + • can.exceptions + • can.interfaces + • can.typechecking + • configparser + • contextlib + • copy + • functools + • json + • logging + • os + • os.path + • platform + • re + • time + • typing + • typing_extensions + • warnings + +
+
+imported by: + can + • can.interface + • can.io.asc + • can.io.blf + • can.io.mf4 + • can.io.trc + +
+ +
+ +
+ + cantools +Package
+imports: + argparse + • cantools + • cantools.database + • cantools.errors + • cantools.j1939 + • cantools.logreader + • cantools.tester + • importlib + • importlib.metadata + • logging + • os + • pathlib + • sys + +
+ + +
+ + + +
+ + cantools.database.Database +MissingModule
+imported by: + cantools.database + • cantools.database.utils + +
+ +
+ +
+ + cantools.database.Message +MissingModule
+imported by: + cantools.database + • cantools.typechecking + +
+ +
+ +
+ + cantools.database.Signal +MissingModule
+imported by: + cantools.database + • cantools.typechecking + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + cantools.errors +SourceModule
+imports: + cantools + +
+
+imported by: + cantools + • cantools.database.errors + • cantools.j1939 + • cantools.tester + +
+ +
+ +
+ + cantools.j1939 +SourceModule
+imports: + bitstruct + • cantools + • cantools.errors + • collections + +
+
+imported by: + cantools + +
+ +
+ +
+ + cantools.logreader +SourceModule
+imports: + binascii + • cantools + • datetime + • enum + • re + +
+
+imported by: + cantools + +
+ +
+ +
+ + cantools.tester +SourceModule
+imports: + 'collections.abc' + • can + • cantools + • cantools.errors + • collections + • queue + • time + • typing + +
+
+imported by: + cantools + +
+ +
+ + + +
+ + cmd +SourceModule
+imports: + inspect + • readline + • string + • sys + +
+
+imported by: + pdb + +
+ +
+ +
+ + code +SourceModule
+imports: + argparse + • builtins + • codeop + • readline + • sys + • traceback + +
+
+imported by: + _pyrepl.console + • _pyrepl.simple_interact + • pdb + • sqlite3.__main__
@@ -1375,7 +5777,7 @@ imported by:
- codecs + codecs SourceModule
imports: _codecs @@ -1388,6 +5790,7 @@ imports: imported by: DBC_Converter.py_pickle + • diskcache.coreencodingsencodings.asciiencodings.base64_codec @@ -1511,7 +5914,28 @@ imported by: • encodings.zlib_codecjsonpickle + • pickletools + • plistlibtokenize + • xml.sax.saxutils + +
+ +
+ +
+ + codeop +SourceModule
+imports: + __future__ + • warnings + +
+
+imported by: + code + • pdb
@@ -1519,7 +5943,7 @@ imported by:
- collections + collections Package
imports: _collections @@ -1538,49 +5962,218 @@ imports: imported by: DBC_Converter.py_pydecimal + • _pyrepl.input + • _pyrepl.unix_eventqueue + • _pyrepl.windows_consoleast - • collections.abc + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.locks + • asyncio.proactor_events + • asyncio.queues + • asyncio.selector_events + • asyncio.sslproto + • asyncio.streams + • cantools.database.can.database + • cantools.database.can.formats.arxml.system_loader + • cantools.database.can.formats.dbc + • cantools.database.can.formats.dbc_specifics + • cantools.database.can.formats.kcd + • cantools.database.can.formats.sym + • cantools.database.utils + • cantools.j1939 + • cantools.tester + • cantools.typechecking + • concurrent.futures._base + • configparsercontextlib + • difflibdis + • diskcache.persistent + • doctestemail.feedparserfunctoolsimportlib.metadataimportlib.metadata._collections - • importlib.readers + • importlib.resources.readersinspect + • multiprocessing.heap + • multiprocessing.pool + • multiprocessing.queues + • packaging._manylinux + • pkg_resourcespkgutil + • platformpprint + • pydoc + • queueselectors + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._collections + • setuptools._vendor.more_itertools.more + • setuptools._vendor.more_itertools.recipes + • setuptools._vendor.packaging._manylinux + • setuptools.command._requirestxt + • setuptools.config.setupcfg + • shlexshutil + • sslstatisticsstring + • textparserthreadingtokenize - • tracebacktyping + • typing_extensions + • unittest._log + • unittest.case + • unittest.utilurllib.parse + • wheel.cli.convert + • wheel.vendored.packaging._manylinux + • xml.etree.ElementTree
- - collections.abc -SourceModule
+ + concurrent +Package
+imported by: + concurrent.futures + +
+ +
+ + + +
+ + concurrent.futures._base +SourceModule
+imports: + collections + • concurrent.futureslogging - • selectors - • tracemalloc - • typing + • threading + • time + • types + +
+ + +
+ +
+ + concurrent.futures.process +SourceModule +
+imported by: + concurrent.futures + +
+ +
+ +
+ + concurrent.futures.thread +SourceModule
+imports: + concurrent.futures + • concurrent.futures._base + • itertools + • os + • queue + • threading + • types + • weakref + +
+
+imported by: + concurrent.futures + +
+ +
+ +
+ + configparser +SourceModule
+imports: + 'collections.abc' + • collections + • contextlib + • functools + • io + • itertools + • os + • re + • sys + • types + +
+ @@ -1588,26 +6181,76 @@ imported by:
- contextlib + contextlib SourceModule
imports: _collections_abcabccollectionsfunctools + • ossystypes
imported by: - _threading_local + _aix_support + • _pyrepl.historical_reader + • _pyrepl.reader + • _threading_localast + • asyncio.staggered + • can + • can.bus + • can.exceptions + • can.thread_safe_bus + • can.util + • cantools.database + • configparser + • diskcache.core + • diskcache.fanout + • diskcache.persistent + • getpass + • glob + • http.serverimportlib.metadata - • importlib.util + • importlib.resources._adapters + • importlib.resources._common + • importlib.resources.readers + • packaging._manylinux + • packaging._tokenizer + • pdb + • setuptools._distutils._msvccompiler + • setuptools._distutils.command.build_ext + • setuptools._distutils.command.check + • setuptools._distutils.dist + • setuptools._distutils.version + • setuptools._path + • setuptools._vendor.importlib_metadata + • setuptools._vendor.jaraco.context + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._tokenizer + • setuptools._vendor.zipp + • setuptools.archive_util + • setuptools.command.sdist + • setuptools.config._validate_pyproject.error_reporting + • setuptools.config.pyprojecttoml + • setuptools.config.setupcfg + • setuptools.depends + • setuptools.msvc + • setuptools.wheelsubprocess + • tracebacktyping - • zipfile + • typing_extensions + • unittest.case + • unittest.mock + • urllib.request + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging._tokenizer + • xml.etree.ElementTree + • zipfile._path
@@ -1615,7 +6258,7 @@ imported by:
- contextvars + contextvars SourceModule
imports: _contextvars @@ -1624,6 +6267,12 @@ imports: @@ -1631,11 +6280,10 @@ imported by:
- copy + copy SourceModule @@ -1657,7 +6315,7 @@ imported by:
- copyreg + copyreg SourceModule
imports: functools @@ -1669,8 +6327,10 @@ imported by: DBC_Converter.py_picklecopy + • multiprocessing.reductionpicklere + • typing
@@ -1678,17 +6338,255 @@ imported by:
- csv + csv SourceModule
imports: _csviore + • types
+ +
+ + + +
+ + ctypes._aix +SourceModule
+imports: + ctypes + • os + • re + • subprocess + • sys + +
+
+imported by: + ctypes.util + +
+ +
+ +
+ + ctypes._endian +SourceModule
+imports: + ctypes + • sys + +
+
+imported by: + ctypes + +
+ +
+ +
+ + ctypes.macholib +Package
+imports: + ctypes + +
+ + +
+ +
+ + ctypes.macholib.dyld +SourceModule
+imports: + _ctypes + • ctypes.macholib + • ctypes.macholib.dylib + • ctypes.macholib.framework + • itertools + • os + +
+
+imported by: + ctypes.util + +
+ +
+ +
+ + ctypes.macholib.dylib +SourceModule
+imports: + ctypes.macholib + • re + +
+
+imported by: + ctypes.macholib.dyld + +
+ +
+ +
+ + ctypes.macholib.framework +SourceModule
+imports: + ctypes.macholib + • re + +
+
+imported by: + ctypes.macholib.dyld + +
+ +
+ +
+ + ctypes.util +SourceModule
+imports: + ctypes + • ctypes._aix + • ctypes.macholib.dyld + • importlib.machinery + • os + • re + • shutil + • struct + • subprocess + • sys + • tempfile + +
+
+imported by: + _ios_support + • _pyrepl._minimal_curses + • ctypes + +
+ +
+ +
+ + ctypes.wintypes +SourceModule
+imports: + ctypes + +
+ + +
+ +
+ + curses +Package
+imports: + _curses + • curses + • curses.has_key + • os + • sys + +
+
+imported by: + _curses + • _pyrepl.curses + • curses + • curses.has_key + +
+ +
+ +
+ + curses.has_key +SourceModule
+imports: + _curses + • curses + +
+
+imported by: + curses
@@ -1696,24 +6594,33 @@ imported by:
- dataclasses + dataclasses SourceModule
imports: - _thread - • abc - • builtins + abccopy - • functoolsinspect + • itertoolskeywordre + • reprlibsystypes
@@ -1721,14 +6628,11 @@ imported by:
- datetime + datetime SourceModule
imports: _datetime - • _strptime - • math - • operator - • sys + • _pydatetimetime
@@ -1737,7 +6641,21 @@ imported by: DBC_Converter.py_strptimecalendar + • can.io.asc + • can.io.blf + • can.io.logger + • can.io.mf4 + • can.io.trc + • cantools.logreaderemail.utils + • http.cookiejar + • http.server + • plistlib + • setuptools._vendor.tomli._re + • setuptools.warnings + • sqlite3.dbapi2 + • tomllib._re + • xmlrpc.client
@@ -1745,17 +6663,43 @@ imported by: + +
+ + difflib +SourceModule
+imports: + collections + • difflib + • heapq + • re + • types + +
+
+imported by: + difflib + • doctest + • unittest.case
@@ -1763,10 +6707,11 @@ imported by:
- dis + dis SourceModule
imports: - argparse + _opcode + • argparsecollectionsioopcode @@ -1777,6 +6722,251 @@ imports:
imported by: inspect + • pdb + • setuptools.depends + +
+ +
+ + + +
+ + diskcache.core +SourceModule
+imports: + codecs + • contextlib + • diskcache + • errno + • functools + • io + • json + • os + • os.path + • pickle + • pickletools + • sqlite3 + • struct + • tempfile + • threading + • time + • warnings + • zlib + +
+ + +
+ +
+ + diskcache.djangocache +SourceModule
+imports: + 'django.core' + • diskcache + • diskcache.core + • diskcache.fanout + • django + • functools + +
+
+imported by: + diskcache + +
+ +
+ +
+ + diskcache.fanout +SourceModule
+imports: + contextlib + • diskcache + • diskcache.core + • diskcache.persistent + • functools + • itertools + • operator + • os.path + • sqlite3 + • tempfile + • time + +
+
+imported by: + diskcache + • diskcache.djangocache + +
+ +
+ +
+ + diskcache.persistent +SourceModule
+imports: + 'collections.abc' + • collections + • contextlib + • diskcache + • diskcache.core + • operator + • shutil + +
+
+imported by: + diskcache + • diskcache.fanout + +
+ +
+ +
+ + diskcache.recipes +SourceModule
+imports: + diskcache + • diskcache.core + • functools + • math + • os + • random + • threading + • time + +
+
+imported by: + diskcache + +
+ +
+ + + +
+ + django +MissingModule
+imported by: + diskcache.djangocache + +
+ +
+ +
+ + doctest +SourceModule
+imports: + __future__ + • _colorize + • argparse + • builtins + • collections + • difflib + • inspect + • io + • linecache + • os + • pdb + • re + • sys + • traceback + • unittest + +
+
+imported by: + pickletools
@@ -1784,7 +6974,7 @@ imported by:
- email + email Package @@ -1823,7 +7018,7 @@ imported by:
- email._encoded_words + email._encoded_words SourceModule
imports: base64 @@ -1846,7 +7041,7 @@ imported by:
- email._header_value_parser + email._header_value_parser SourceModule
imports: email @@ -1871,7 +7066,7 @@ imported by:
- email._parseaddr + email._parseaddr SourceModule
imports: calendar @@ -1889,7 +7084,7 @@ imported by:
- email._policybase + email._policybase SourceModule
imports: abc @@ -1912,7 +7107,7 @@ imported by:
- email.base64mime + email.base64mime SourceModule
imports: base64 @@ -1931,7 +7126,7 @@ imported by:
- email.charset + email.charset SourceModule
imports: email @@ -1957,7 +7152,7 @@ imported by:
- email.contentmanager + email.contentmanager SourceModule
imports: binascii @@ -1978,7 +7173,7 @@ imported by:
- email.encoders + email.encoders SourceModule
imports: base64 @@ -1996,7 +7191,7 @@ imported by:
- email.errors + email.errors SourceModule
imports: email @@ -2010,6 +7205,7 @@ imported by: • email.charsetemail.contentmanageremail.feedparser + • email.generatoremail.headeremail.headerregistryemail.message @@ -2020,7 +7216,7 @@ imported by:
- email.feedparser + email.feedparser SourceModule
imports: collections @@ -2035,6 +7231,7 @@ imports:
imported by: email.parser + • packaging.metadata
@@ -2042,11 +7239,12 @@ imported by:
- email.generator + email.generator SourceModule
imports: copyemail + • email.errorsemail.utilsiorandom @@ -2058,6 +7256,8 @@ imports: @@ -2065,7 +7265,7 @@ imported by:
- email.header + email.header SourceModule
imports: binascii @@ -2081,6 +7281,7 @@ imports: imported by: emailemail._policybase + • packaging.metadata
@@ -2088,7 +7289,7 @@ imported by:
- email.headerregistry + email.headerregistry SourceModule
imports: email @@ -2101,6 +7302,7 @@ imports: @@ -2108,7 +7310,7 @@ imported by:
- email.iterators + email.iterators SourceModule
imports: email @@ -2126,10 +7328,11 @@ imported by:
- email.message + email.message SourceModule
imports: - email + binascii + • emailemail._encoded_wordsemail._policybaseemail.charset @@ -2141,7 +7344,6 @@ imports: • ioquoprire - • uu
@@ -2157,7 +7368,7 @@ imported by:
- email.parser + email.parser SourceModule
imports: email @@ -2169,6 +7380,13 @@ imports: @@ -2176,7 +7394,7 @@ imported by:
- email.policy + email.policy SourceModule
imports: email @@ -2192,6 +7410,10 @@ imports: @@ -2199,7 +7421,7 @@ imported by:
- email.quoprimime + email.quoprimime SourceModule
imports: email @@ -2219,7 +7441,7 @@ imported by:
- email.utils + email.utils SourceModule
imports: datetime @@ -2232,6 +7454,7 @@ imports: • sockettimeurllib.parse + • warnings
@@ -2242,6 +7465,8 @@ imported by: • email.headerregistryemail.messageemail.policy + • http.server + • urllib.request
@@ -2249,7 +7474,7 @@ imported by:
- encodings + encodings Package
imports: _winapi @@ -2513,7 +7738,7 @@ imported by:
- encodings.aliases + encodings.aliases SourceModule
imports: encodings @@ -2531,7 +7756,7 @@ imported by:
- encodings.ascii + encodings.ascii SourceModule
imports: codecs @@ -2549,7 +7774,7 @@ imported by:
- encodings.base64_codec + encodings.base64_codec SourceModule
imports: base64 @@ -2568,7 +7793,7 @@ imported by:
- encodings.big5 + encodings.big5 SourceModule
imports: _codecs_tw @@ -2588,7 +7813,7 @@ imported by:
- encodings.big5hkscs + encodings.big5hkscs SourceModule
imports: _codecs_hk @@ -2608,7 +7833,7 @@ imported by:
- encodings.bz2_codec + encodings.bz2_codec SourceModule
imports: bz2 @@ -2627,7 +7852,7 @@ imported by:
- encodings.charmap + encodings.charmap SourceModule
imports: codecs @@ -2645,7 +7870,7 @@ imported by:
- encodings.cp037 + encodings.cp037 SourceModule
imports: codecs @@ -2663,7 +7888,7 @@ imported by:
- encodings.cp1006 + encodings.cp1006 SourceModule
imports: codecs @@ -2681,7 +7906,7 @@ imported by:
- encodings.cp1026 + encodings.cp1026 SourceModule
imports: codecs @@ -2699,7 +7924,7 @@ imported by:
- encodings.cp1125 + encodings.cp1125 SourceModule
imports: codecs @@ -2717,7 +7942,7 @@ imported by:
- encodings.cp1140 + encodings.cp1140 SourceModule
imports: codecs @@ -2735,7 +7960,7 @@ imported by:
- encodings.cp1250 + encodings.cp1250 SourceModule
imports: codecs @@ -2753,7 +7978,7 @@ imported by:
- encodings.cp1251 + encodings.cp1251 SourceModule
imports: codecs @@ -2771,7 +7996,7 @@ imported by:
- encodings.cp1252 + encodings.cp1252 SourceModule
imports: codecs @@ -2789,7 +8014,7 @@ imported by:
- encodings.cp1253 + encodings.cp1253 SourceModule
imports: codecs @@ -2807,7 +8032,7 @@ imported by:
- encodings.cp1254 + encodings.cp1254 SourceModule
imports: codecs @@ -2825,7 +8050,7 @@ imported by:
- encodings.cp1255 + encodings.cp1255 SourceModule
imports: codecs @@ -2843,7 +8068,7 @@ imported by:
- encodings.cp1256 + encodings.cp1256 SourceModule
imports: codecs @@ -2861,7 +8086,7 @@ imported by:
- encodings.cp1257 + encodings.cp1257 SourceModule
imports: codecs @@ -2879,7 +8104,7 @@ imported by:
- encodings.cp1258 + encodings.cp1258 SourceModule
imports: codecs @@ -2897,7 +8122,7 @@ imported by:
- encodings.cp273 + encodings.cp273 SourceModule
imports: codecs @@ -2915,7 +8140,7 @@ imported by:
- encodings.cp424 + encodings.cp424 SourceModule
imports: codecs @@ -2933,7 +8158,7 @@ imported by:
- encodings.cp437 + encodings.cp437 SourceModule
imports: codecs @@ -2951,7 +8176,7 @@ imported by:
- encodings.cp500 + encodings.cp500 SourceModule
imports: codecs @@ -2969,7 +8194,7 @@ imported by:
- encodings.cp720 + encodings.cp720 SourceModule
imports: codecs @@ -2987,7 +8212,7 @@ imported by:
- encodings.cp737 + encodings.cp737 SourceModule
imports: codecs @@ -3005,7 +8230,7 @@ imported by:
- encodings.cp775 + encodings.cp775 SourceModule
imports: codecs @@ -3023,7 +8248,7 @@ imported by:
- encodings.cp850 + encodings.cp850 SourceModule
imports: codecs @@ -3041,7 +8266,7 @@ imported by:
- encodings.cp852 + encodings.cp852 SourceModule
imports: codecs @@ -3059,7 +8284,7 @@ imported by:
- encodings.cp855 + encodings.cp855 SourceModule
imports: codecs @@ -3077,7 +8302,7 @@ imported by:
- encodings.cp856 + encodings.cp856 SourceModule
imports: codecs @@ -3095,7 +8320,7 @@ imported by:
- encodings.cp857 + encodings.cp857 SourceModule
imports: codecs @@ -3113,7 +8338,7 @@ imported by:
- encodings.cp858 + encodings.cp858 SourceModule
imports: codecs @@ -3131,7 +8356,7 @@ imported by:
- encodings.cp860 + encodings.cp860 SourceModule
imports: codecs @@ -3149,7 +8374,7 @@ imported by:
- encodings.cp861 + encodings.cp861 SourceModule
imports: codecs @@ -3167,7 +8392,7 @@ imported by:
- encodings.cp862 + encodings.cp862 SourceModule
imports: codecs @@ -3185,7 +8410,7 @@ imported by:
- encodings.cp863 + encodings.cp863 SourceModule
imports: codecs @@ -3203,7 +8428,7 @@ imported by:
- encodings.cp864 + encodings.cp864 SourceModule
imports: codecs @@ -3221,7 +8446,7 @@ imported by:
- encodings.cp865 + encodings.cp865 SourceModule
imports: codecs @@ -3239,7 +8464,7 @@ imported by:
- encodings.cp866 + encodings.cp866 SourceModule
imports: codecs @@ -3257,7 +8482,7 @@ imported by:
- encodings.cp869 + encodings.cp869 SourceModule
imports: codecs @@ -3275,7 +8500,7 @@ imported by:
- encodings.cp874 + encodings.cp874 SourceModule
imports: codecs @@ -3293,7 +8518,7 @@ imported by:
- encodings.cp875 + encodings.cp875 SourceModule
imports: codecs @@ -3311,7 +8536,7 @@ imported by:
- encodings.cp932 + encodings.cp932 SourceModule
imports: _codecs_jp @@ -3331,7 +8556,7 @@ imported by:
- encodings.cp949 + encodings.cp949 SourceModule
imports: _codecs_kr @@ -3351,7 +8576,7 @@ imported by:
- encodings.cp950 + encodings.cp950 SourceModule
imports: _codecs_tw @@ -3371,7 +8596,7 @@ imported by:
- encodings.euc_jis_2004 + encodings.euc_jis_2004 SourceModule
imports: _codecs_jp @@ -3391,7 +8616,7 @@ imported by:
- encodings.euc_jisx0213 + encodings.euc_jisx0213 SourceModule
imports: _codecs_jp @@ -3411,7 +8636,7 @@ imported by:
- encodings.euc_jp + encodings.euc_jp SourceModule
imports: _codecs_jp @@ -3431,7 +8656,7 @@ imported by:
- encodings.euc_kr + encodings.euc_kr SourceModule
imports: _codecs_kr @@ -3451,7 +8676,7 @@ imported by:
- encodings.gb18030 + encodings.gb18030 SourceModule
imports: _codecs_cn @@ -3471,7 +8696,7 @@ imported by:
- encodings.gb2312 + encodings.gb2312 SourceModule
imports: _codecs_cn @@ -3491,7 +8716,7 @@ imported by:
- encodings.gbk + encodings.gbk SourceModule
imports: _codecs_cn @@ -3511,7 +8736,7 @@ imported by:
- encodings.hex_codec + encodings.hex_codec SourceModule
imports: binascii @@ -3530,7 +8755,7 @@ imported by:
- encodings.hp_roman8 + encodings.hp_roman8 SourceModule
imports: codecs @@ -3548,7 +8773,7 @@ imported by:
- encodings.hz + encodings.hz SourceModule
imports: _codecs_cn @@ -3568,7 +8793,7 @@ imported by:
- encodings.idna + encodings.idna SourceModule
imports: codecs @@ -3589,7 +8814,7 @@ imported by:
- encodings.iso2022_jp + encodings.iso2022_jp SourceModule
imports: _codecs_iso2022 @@ -3609,7 +8834,7 @@ imported by:
- encodings.iso2022_jp_1 + encodings.iso2022_jp_1 SourceModule
imports: _codecs_iso2022 @@ -3629,7 +8854,7 @@ imported by:
- encodings.iso2022_jp_2 + encodings.iso2022_jp_2 SourceModule
imports: _codecs_iso2022 @@ -3649,7 +8874,7 @@ imported by:
- encodings.iso2022_jp_2004 + encodings.iso2022_jp_2004 SourceModule
imports: _codecs_iso2022 @@ -3669,7 +8894,7 @@ imported by:
- encodings.iso2022_jp_3 + encodings.iso2022_jp_3 SourceModule
imports: _codecs_iso2022 @@ -3689,7 +8914,7 @@ imported by:
- encodings.iso2022_jp_ext + encodings.iso2022_jp_ext SourceModule
imports: _codecs_iso2022 @@ -3709,7 +8934,7 @@ imported by:
- encodings.iso2022_kr + encodings.iso2022_kr SourceModule
imports: _codecs_iso2022 @@ -3729,7 +8954,7 @@ imported by:
- encodings.iso8859_1 + encodings.iso8859_1 SourceModule
imports: codecs @@ -3747,7 +8972,7 @@ imported by:
- encodings.iso8859_10 + encodings.iso8859_10 SourceModule
imports: codecs @@ -3765,7 +8990,7 @@ imported by:
- encodings.iso8859_11 + encodings.iso8859_11 SourceModule
imports: codecs @@ -3783,7 +9008,7 @@ imported by:
- encodings.iso8859_13 + encodings.iso8859_13 SourceModule
imports: codecs @@ -3801,7 +9026,7 @@ imported by:
- encodings.iso8859_14 + encodings.iso8859_14 SourceModule
imports: codecs @@ -3819,7 +9044,7 @@ imported by:
- encodings.iso8859_15 + encodings.iso8859_15 SourceModule
imports: codecs @@ -3837,7 +9062,7 @@ imported by:
- encodings.iso8859_16 + encodings.iso8859_16 SourceModule
imports: codecs @@ -3855,7 +9080,7 @@ imported by:
- encodings.iso8859_2 + encodings.iso8859_2 SourceModule
imports: codecs @@ -3873,7 +9098,7 @@ imported by:
- encodings.iso8859_3 + encodings.iso8859_3 SourceModule
imports: codecs @@ -3891,7 +9116,7 @@ imported by:
- encodings.iso8859_4 + encodings.iso8859_4 SourceModule
imports: codecs @@ -3909,7 +9134,7 @@ imported by:
- encodings.iso8859_5 + encodings.iso8859_5 SourceModule
imports: codecs @@ -3927,7 +9152,7 @@ imported by:
- encodings.iso8859_6 + encodings.iso8859_6 SourceModule
imports: codecs @@ -3945,7 +9170,7 @@ imported by:
- encodings.iso8859_7 + encodings.iso8859_7 SourceModule
imports: codecs @@ -3963,7 +9188,7 @@ imported by:
- encodings.iso8859_8 + encodings.iso8859_8 SourceModule
imports: codecs @@ -3981,7 +9206,7 @@ imported by:
- encodings.iso8859_9 + encodings.iso8859_9 SourceModule
imports: codecs @@ -3999,7 +9224,7 @@ imported by:
- encodings.johab + encodings.johab SourceModule
imports: _codecs_kr @@ -4019,7 +9244,7 @@ imported by:
- encodings.koi8_r + encodings.koi8_r SourceModule
imports: codecs @@ -4037,7 +9262,7 @@ imported by:
- encodings.koi8_t + encodings.koi8_t SourceModule
imports: codecs @@ -4055,7 +9280,7 @@ imported by:
- encodings.koi8_u + encodings.koi8_u SourceModule
imports: codecs @@ -4073,7 +9298,7 @@ imported by:
- encodings.kz1048 + encodings.kz1048 SourceModule
imports: codecs @@ -4091,7 +9316,7 @@ imported by:
- encodings.latin_1 + encodings.latin_1 SourceModule
imports: codecs @@ -4109,7 +9334,7 @@ imported by:
- encodings.mac_arabic + encodings.mac_arabic SourceModule
imports: codecs @@ -4127,7 +9352,7 @@ imported by:
- encodings.mac_croatian + encodings.mac_croatian SourceModule
imports: codecs @@ -4145,7 +9370,7 @@ imported by:
- encodings.mac_cyrillic + encodings.mac_cyrillic SourceModule
imports: codecs @@ -4163,7 +9388,7 @@ imported by:
- encodings.mac_farsi + encodings.mac_farsi SourceModule
imports: codecs @@ -4181,7 +9406,7 @@ imported by:
- encodings.mac_greek + encodings.mac_greek SourceModule
imports: codecs @@ -4199,7 +9424,7 @@ imported by:
- encodings.mac_iceland + encodings.mac_iceland SourceModule
imports: codecs @@ -4217,7 +9442,7 @@ imported by:
- encodings.mac_latin2 + encodings.mac_latin2 SourceModule
imports: codecs @@ -4235,7 +9460,7 @@ imported by:
- encodings.mac_roman + encodings.mac_roman SourceModule
imports: codecs @@ -4253,7 +9478,7 @@ imported by:
- encodings.mac_romanian + encodings.mac_romanian SourceModule
imports: codecs @@ -4271,7 +9496,7 @@ imported by:
- encodings.mac_turkish + encodings.mac_turkish SourceModule
imports: codecs @@ -4289,7 +9514,7 @@ imported by:
- encodings.mbcs + encodings.mbcs SourceModule
imports: codecs @@ -4307,7 +9532,7 @@ imported by:
- encodings.oem + encodings.oem SourceModule
imports: codecs @@ -4325,7 +9550,7 @@ imported by:
- encodings.palmos + encodings.palmos SourceModule
imports: codecs @@ -4343,7 +9568,7 @@ imported by:
- encodings.ptcp154 + encodings.ptcp154 SourceModule
imports: codecs @@ -4361,7 +9586,7 @@ imported by:
- encodings.punycode + encodings.punycode SourceModule
imports: codecs @@ -4379,7 +9604,7 @@ imported by:
- encodings.quopri_codec + encodings.quopri_codec SourceModule
imports: codecs @@ -4399,7 +9624,7 @@ imported by:
- encodings.raw_unicode_escape + encodings.raw_unicode_escape SourceModule
imports: codecs @@ -4417,7 +9642,7 @@ imported by:
- encodings.rot_13 + encodings.rot_13 SourceModule
imports: codecs @@ -4436,7 +9661,7 @@ imported by:
- encodings.shift_jis + encodings.shift_jis SourceModule
imports: _codecs_jp @@ -4456,7 +9681,7 @@ imported by:
- encodings.shift_jis_2004 + encodings.shift_jis_2004 SourceModule
imports: _codecs_jp @@ -4476,7 +9701,7 @@ imported by:
- encodings.shift_jisx0213 + encodings.shift_jisx0213 SourceModule
imports: _codecs_jp @@ -4496,7 +9721,7 @@ imported by:
- encodings.tis_620 + encodings.tis_620 SourceModule
imports: codecs @@ -4514,7 +9739,7 @@ imported by:
- encodings.undefined + encodings.undefined SourceModule
imports: codecs @@ -4532,7 +9757,7 @@ imported by:
- encodings.unicode_escape + encodings.unicode_escape SourceModule
imports: codecs @@ -4550,7 +9775,7 @@ imported by:
- encodings.utf_16 + encodings.utf_16 SourceModule
imports: codecs @@ -4569,7 +9794,7 @@ imported by:
- encodings.utf_16_be + encodings.utf_16_be SourceModule
imports: codecs @@ -4587,7 +9812,7 @@ imported by:
- encodings.utf_16_le + encodings.utf_16_le SourceModule
imports: codecs @@ -4605,7 +9830,7 @@ imported by:
- encodings.utf_32 + encodings.utf_32 SourceModule
imports: codecs @@ -4624,7 +9849,7 @@ imported by:
- encodings.utf_32_be + encodings.utf_32_be SourceModule
imports: codecs @@ -4642,7 +9867,7 @@ imported by:
- encodings.utf_32_le + encodings.utf_32_le SourceModule
imports: codecs @@ -4660,7 +9885,7 @@ imported by:
- encodings.utf_7 + encodings.utf_7 SourceModule
imports: codecs @@ -4678,7 +9903,7 @@ imported by:
- encodings.utf_8 + encodings.utf_8 SourceModule
imports: codecs @@ -4696,7 +9921,7 @@ imported by:
- encodings.utf_8_sig + encodings.utf_8_sig SourceModule
imports: codecs @@ -4714,7 +9939,7 @@ imported by:
- encodings.uu_codec + encodings.uu_codec SourceModule
imports: binascii @@ -4734,7 +9959,7 @@ imported by:
- encodings.zlib_codec + encodings.zlib_codec SourceModule
imports: codecs @@ -4753,10 +9978,12 @@ imported by:
- enum + enum SourceModule
imports: - sys + builtins + • functools + • systypeswarnings @@ -4765,11 +9992,26 @@ imports: imported by: DBC_Converter.pyast + • asyncio.constants + • asyncio.locks + • asyncio.runners + • asyncio.sslproto + • asyncio.timeouts + • calendar + • can.bus + • can.io.trc + • cantools.logreader + • httpinspect + • packaging._elffile + • plistlibpy_compilere + • setuptools._vendor.packaging._elffilesignalsocket + • ssl + • wheel.vendored.packaging._elffile
@@ -4779,12 +10021,30 @@ imported by: errno (builtin module) @@ -4795,7 +10055,8 @@ imported by: fcntl MissingModule
imported by: - subprocess + _pyrepl.unix_console + • subprocess
@@ -4803,11 +10064,10 @@ imported by:
- fnmatch + fnmatch SourceModule
imports: functools - • itertoolsosposixpathre @@ -4815,9 +10075,15 @@ imports:
@@ -4825,10 +10091,11 @@ imported by:
- fractions + fractions SourceModule
imports: decimal + • functoolsmathnumbersoperator @@ -4844,9 +10111,29 @@ imported by:
+
+ + ftplib +SourceModule
+imports: + netrc + • re + • socket + • ssl + • sys + +
+
+imported by: + urllib.request + +
+ +
+
- functools + functools SourceModule
imports: _functools @@ -4856,34 +10143,107 @@ imports: • reprlibtypestyping + • warningsweakref
imported by: DBC_Converter.py + • _pyrepl.simple_interact + • _pyrepl.utils + • asyncio.format_helpers + • asyncio.runners + • asyncio.selector_events + • asyncio.tasks + • asyncio.threads + • asyncio.windows_events + • can.notifier + • can.util + • concurrent.futures.process + • configparsercontextlibcopyreg - • dataclasses + • diskcache.core + • diskcache.djangocache + • diskcache.fanout + • diskcache.recipesemail._encoded_wordsemail.charset + • enumfnmatch + • fractions + • globimportlib.metadata + • importlib.metadata._adaptersimportlib.metadata._functools - • importlib.util + • importlib.resources._commoninspect - • linecache + • ipaddresslocale + • multiprocessing.reduction + • multiprocessing.shared_memoryoperator - • pathlib + • packaging._manylinux + • packaging._musllinux + • packaging.utils + • pathlib._abcpickle + • pkg_resourcespkgutil + • platformre - • threading + • setuptools + • setuptools._distutils._modified + • setuptools._distutils.compat.py39 + • setuptools._distutils.dir_util + • setuptools._distutils.filelist + • setuptools._distutils.sysconfig + • setuptools._distutils.util + • setuptools._entry_points + • setuptools._reqs + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._functools + • setuptools._vendor.jaraco.context + • setuptools._vendor.jaraco.functools + • setuptools._vendor.jaraco.text + • setuptools._vendor.more_itertools.more + • setuptools._vendor.more_itertools.recipes + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._musllinux + • setuptools._vendor.packaging.utils + • setuptools._vendor.platformdirs.android + • setuptools._vendor.platformdirs.windows + • setuptools._vendor.tomli._re + • setuptools.command.egg_info + • setuptools.config + • setuptools.config._apply_pyprojecttoml + • setuptools.config._validate_pyproject + • setuptools.config.pyprojecttoml + • setuptools.config.setupcfg + • setuptools.extension + • setuptools.installer + • setuptools.wheel + • statistics + • tempfiletokenize + • tomllib._retracemalloctypestyping + • typing_extensions + • unittest.case + • unittest.loader + • unittest.mock + • unittest.result + • unittest.signals + • urllib.parse + • warnings + • wheel.metadata + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging._musllinux + • wrapt.decorators + • wrapt.weakrefs
@@ -4907,7 +10267,7 @@ imported by:
- genericpath + genericpath SourceModule
imports: os @@ -4926,7 +10286,7 @@ imported by:
- getopt + getopt SourceModule
imports: gettext @@ -4937,7 +10297,33 @@ imports:
imported by: base64 + • mimetypes + • pydocquopri + • setuptools._distutils.fancy_getopt + +
+ +
+ +
+ + getpass +SourceModule
+imports: + contextlib + • io + • msvcrt + • os + • pwd + • sys + • termios + • warnings + +
+
+imported by: + urllib.request
@@ -4945,13 +10331,14 @@ imported by:
- gettext + gettext SourceModule
imports: builtinscopyerrnolocale + • operatorosrestruct @@ -4963,7 +10350,40 @@ imports: imported by: argparsegetopt - • optparse + +
+ +
+ +
+ + glob +SourceModule
+imports: + contextlib + • fnmatch + • functools + • itertools + • operator + • os + • re + • stat + • sys + • warnings + +
+ @@ -4974,7 +10394,9 @@ imported by: grp MissingModule
imported by: - pathlib + pathlib._local + • setuptools._distutils.archive_util + • setuptools._vendor.backports.tarfileshutilsubprocesstarfile @@ -4985,7 +10407,7 @@ imported by:
- gzip + gzip SourceModule
imports: _compression @@ -5003,7 +10425,13 @@ imports:
@@ -5011,23 +10439,25 @@ imported by:
- hashlib + hashlib SourceModule
imports: _blake2_hashlib_md5_sha1 - • _sha256 + • _sha2_sha3 - • _sha512logging - • warnings
imported by: - random + can.io.mf4 + • hmac + • random + • urllib.request + • wheel.wheelfile
@@ -5035,7 +10465,7 @@ imported by:
- heapq + heapq SourceModule
imports: _heapq @@ -5044,7 +10474,184 @@ imports: + +
+ +
+ + hmac +SourceModule
+imports: + _hashlib + • _operator + • hashlib + • warnings + +
+
+imported by: + multiprocessing.connection + • secrets + +
+ +
+ +
+ + html +Package
+imports: + html.entities + • re + +
+
+imported by: + html.entities + • http.server + +
+ +
+ +
+ + html.entities +SourceModule
+imports: + html + +
+
+imported by: + html + +
+ +
+ +
+ + http +Package
+imports: + enum + +
+
+imported by: + http.client + • http.cookiejar + • http.server + +
+ +
+ +
+ + http.client +SourceModule
+imports: + 'collections.abc' + • email.message + • email.parser + • errno + • http + • io + • re + • socket + • ssl + • sys + • urllib.parse + +
+
+imported by: + http.cookiejar + • http.server + • urllib.request + • xmlrpc.client + +
+ +
+ +
+ + http.cookiejar +SourceModule
+imports: + calendar + • copy + • datetime + • http + • http.client + • io + • logging + • os + • re + • threading + • time + • traceback + • urllib.parse + • urllib.request + • warnings + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + http.server +SourceModule
+imports: + argparse + • base64 + • binascii + • contextlib + • copy + • datetime + • email.utils + • html + • http + • http.client + • io + • itertools + • mimetypes + • os + • posixpath + • pwd + • select + • shutil + • socket + • socketserver + • subprocess + • sys + • time + • urllib.parse + • warnings + +
+
+imported by: + pydoc
@@ -5052,7 +10659,7 @@ imported by:
- importlib + importlib Package
imports: _frozen_importlib @@ -5061,15 +10668,16 @@ imports: • importlibimportlib._bootstrapimportlib._bootstrap_external - • importlib.abc - • importlib.machinerysys - • warnings
@@ -5088,13 +10702,12 @@ imported by:
- importlib._abc + importlib._abc SourceModule
imports: abcimportlibimportlib._bootstrap - • warnings
@@ -5108,7 +10721,7 @@ imported by:
- importlib._bootstrap + importlib._bootstrap SourceModule
imports: _frozen_importlib_external @@ -5121,6 +10734,7 @@ imported by: • importlib._abcimportlib.machineryimportlib.util + • pydoc
@@ -5128,7 +10742,7 @@ imported by:
- importlib._bootstrap_external + importlib._bootstrap_external SourceModule
imports: _imp @@ -5152,6 +10766,7 @@ imported by: • importlib.machineryimportlib.utilpy_compile + • pydoc
@@ -5159,7 +10774,7 @@ imported by:
- importlib.abc + importlib.abc SourceModule @@ -5185,7 +10802,7 @@ imported by:
- importlib.machinery + importlib.machinery SourceModule
imports: importlib @@ -5195,11 +10812,20 @@ imports:
@@ -5207,10 +10833,11 @@ imported by:
- importlib.metadata + importlib.metadata Package
imports: - abc + __future__ + • abccollectionscontextlibcsv @@ -5224,15 +10851,17 @@ imports: • importlib.metadata._functoolsimportlib.metadata._itertoolsimportlib.metadata._meta + • inspectitertools + • jsonoperatorospathlib - • pep517posixpathresystextwrap + • typestypingwarningszipfile @@ -5240,7 +10869,10 @@ imports:
@@ -5255,14 +10888,16 @@ imported by:
- importlib.metadata._adapters + importlib.metadata._adapters SourceModule
@@ -5275,7 +10910,7 @@ imported by:
- importlib.metadata._collections + importlib.metadata._collections SourceModule
imports: collections @@ -5292,7 +10927,7 @@ imported by:
- importlib.metadata._functools + importlib.metadata._functools SourceModule
imports: functools @@ -5311,7 +10946,7 @@ imported by:
- importlib.metadata._itertools + importlib.metadata._itertools SourceModule
imports: importlib.metadata @@ -5328,10 +10963,12 @@ imported by:
- importlib.metadata._meta + importlib.metadata._meta SourceModule @@ -5345,7 +10982,7 @@ imported by:
- importlib.metadata._text + importlib.metadata._text SourceModule
imports: importlib.metadata @@ -5363,14 +11000,11 @@ imported by:
- importlib.readers + importlib.readers SourceModule
@@ -5383,49 +11017,246 @@ imported by:
+ +
+ + importlib.resources._adapters SourceModule
imports: - _imp - • contextlib + contextlib + • importlib.resources + • importlib.resources.abc + • io + +
+
+imported by: + importlib.resources._common + +
+ +
+ + + +
+ + importlib.resources._functional +SourceModule +
+imported by: + importlib.resources + +
+ +
+ +
+ + importlib.resources._itertools +SourceModule
+imports: + importlib.resources + +
+
+imported by: + importlib.resources.readers + +
+ +
+ +
+ + importlib.resources.abc +SourceModule
+imports: + abc + • importlib.resources + • io + • itertools + • os + • pathlib + • typing + +
+ + +
+ +
+ + importlib.resources.readers +SourceModule +
+imported by: + importlib.readers + +
+ +
+ +
+ + importlib.util +SourceModule
+imports: + _imp + • importlib + • importlib._abc + • importlib._bootstrap + • importlib._bootstrap_external + • sys + • threading + • types + +
+
+imported by: + _distutils_hack + • pkgutilpy_compile + • pydoc + • runpy + • setuptools._distutils.util + • setuptools._imp + • sysconfig + • wrapt.importerzipfile
+
+ + importlib_metadata +AliasNode +
+imported by: + setuptools._importlib + +
+ +
+ +
+ + importlib_resources +MissingModule
+imported by: + setuptools._vendor.jaraco.text + +
+ +
+
- inspect + inspect SourceModule
imports: - abc + 'collections.abc' + • abcargparseastbuiltinscollections - • collections.abcdisenumfunctoolsimportlibimportlib.machineryitertools + • keywordlinecacheoperatoros @@ -5434,15 +11265,45 @@ imports: • tokentokenizetypes - • warnings + • weakref
@@ -5450,21 +11311,30 @@ imported by:
- io + io SourceModule
imports: _ioabc - • warnings
imported by: DBC_Converter.py + • _colorize_compression + • _pyrepl.pager + • _pyrepl.windows_console + • asyncio.proactor_events + • asyncio.unix_events + • bitstructbz2 + • can.io.mf4 + • configparsercsvdis + • diskcache.core + • doctestemail.feedparseremail.generatoremail.iterators @@ -5472,19 +11342,74 @@ imported by: • email.parserencodings.quopri_codecencodings.uu_codec + • getpassgzip + • http.client + • http.cookiejar + • http.server + • importlib.resources._adapters + • importlib.resources.abclogginglzma + • multiprocessing.connection + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.reductionos - • pathlib + • pathlib._local + • pdbpickle + • pickletools + • pkg_resources + • plistlibpprint + • pydocquopri + • runpy + • setuptools._vendor.backports.tarfile + • setuptools._vendor.zipp + • setuptools._vendor.zipp.compat.py310 + • setuptools.command._requirestxt + • setuptools.config._validate_pyproject.error_reporting + • setuptools.dist + • shlex + • sitesocket + • socketserversubprocesstarfile + • tempfiletokenize + • unittest.mock + • unittest.result + • urllib.error + • urllib.request + • wheel.macosx_libfile + • wheel.wheelfile + • xml.etree.ElementTree + • xml.sax + • xml.sax.saxutils + • xmlrpc.clientzipfile + • zipfile._path + +
+ +
+ +
+ + ipaddress +SourceModule
+imports: + functools + • re + +
+
+imported by: + urllib.parse + • urllib.request
@@ -5495,21 +11420,181 @@ imported by: itertools (builtin module)
imported by: _pydecimal + • asyncio.base_events + • asyncio.selector_events + • asyncio.tasks + • asyncio.unix_events + • asyncio.windows_utilscalendar + • cantools.database.can.formats.symcollections - • fnmatch + • concurrent.futures.process + • concurrent.futures.thread + • configparser + • ctypes.macholib.dyld + • dataclasses + • diskcache.fanout + • glob + • http.serverimportlib.metadataimportlib.metadata._itertools + • importlib.resources._common + • importlib.resources.abc + • importlib.resources.readersinspect + • multiprocessing.connection + • multiprocessing.pool + • multiprocessing.process + • multiprocessing.util + • packaging.specifiers + • packaging.version + • pathlib._local + • pdbpickle + • platform + • plistlibrandomreprlib + • setuptools._distutils._msvccompiler + • setuptools._distutils.command.sdist + • setuptools._distutils.compat.py39 + • setuptools._distutils.dir_util + • setuptools._entry_points + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._itertools + • setuptools._vendor.jaraco.functools + • setuptools._vendor.jaraco.text + • setuptools._vendor.more_itertools.more + • setuptools._vendor.more_itertools.recipes + • setuptools._vendor.packaging.specifiers + • setuptools._vendor.packaging.version + • setuptools._vendor.zipp + • setuptools.command._requirestxt + • setuptools.command.sdist + • setuptools.config._apply_pyprojecttoml + • setuptools.config._validate_pyproject.formats + • setuptools.config.expand + • setuptools.discovery + • setuptools.dist + • setuptools.msvc + • setuptools.wheelstatisticsthreadingtokenizetracebackweakref - • zipfile + • wheel.cli.tags + • wheel.metadata + • wheel.vendored.packaging.specifiers + • wheel.vendored.packaging.version + • zipfile._path + +
+ +
+ +
+ + jaraco +NamespacePackage
+imported by: + jaraco.context + • jaraco.functools + • jaraco.text + +
+ +
+ +
+ + jaraco.context +AliasNode +
+imported by: + setuptools._vendor.jaraco.text + +
+ +
+ + + + + + + +
+ + java +MissingModule
+imported by: + platform + +
+ +
+ +
+ + jnius +MissingModule @@ -5517,7 +11602,7 @@ imported by:
- json + json Package
imports: codecs @@ -5529,9 +11614,15 @@ imports: @@ -5539,7 +11630,7 @@ imported by:
- json.decoder + json.decoder SourceModule
imports: _json @@ -5559,7 +11650,7 @@ imported by:
- json.encoder + json.encoder SourceModule
imports: _json @@ -5577,7 +11668,7 @@ imported by:
- json.scanner + json.scanner SourceModule
imports: _json @@ -5596,12 +11687,14 @@ imported by:
- keyword + keyword SourceModule
imported by: DBC_Converter.pycollectionsdataclasses + • inspect + • rlcompleter
@@ -5609,11 +11702,10 @@ imported by:
- linecache + linecache SourceModule
imports: - functools - • os + ossystokenize @@ -5621,7 +11713,13 @@ imports:
imported by: DBC_Converter.py + • _pyrepl.simple_interact + • asyncio.base_tasks + • bdb + • doctestinspect + • pdb + • pkg_resourcestracebacktracemallocwarnings @@ -5632,7 +11730,7 @@ imported by:
- locale + locale SourceModule
imports: _collections_abc @@ -5653,7 +11751,10 @@ imported by: • _pydecimal_strptimecalendar + • can.io.genericgettext + • site + • subprocess
@@ -5661,11 +11762,11 @@ imported by:
- logging + logging Package
imports: - atexit - • collections.abc + 'collections.abc' + • atexitioospickle @@ -5675,13 +11776,55 @@ imports: • threadingtimetraceback + • typeswarningsweakref
@@ -5689,7 +11832,7 @@ imported by:
- lzma + lzma SourceModule
imports: _compression @@ -5701,7 +11844,8 @@ imports:
imported by: - shutil + setuptools._vendor.backports.tarfile + • shutiltarfilezipfile @@ -5715,6 +11859,8 @@ imported by: imported by: importlib._bootstrap_externalpkgutil + • setuptools.command.bdist_egg + • setuptools.dependszipimport
@@ -5725,12 +11871,78 @@ imported by: math (builtin module) + +
+ +
+ + mimetypes +SourceModule
+imports: + _winapi + • getopt + • os + • posixpath + • sys + • urllib.parse + • winreg + +
+
+imported by: + http.server + • urllib.request + +
+ +
+ +
+ + mmap (builtin module) + +
+ + + + + +
+ + multiprocessing.AuthenticationError +MissingModule
+imported by: + multiprocessing + • multiprocessing.connection + +
+ +
+ +
+ + multiprocessing.BufferTooShort +MissingModule
+imported by: + multiprocessing + • multiprocessing.connection + +
+ +
+ +
+ + multiprocessing.TimeoutError +MissingModule
+imported by: + multiprocessing + • multiprocessing.pool + +
+ +
+ + + + + +
+ + multiprocessing.dummy +Package
+imports: + array + • multiprocessing + • multiprocessing.dummy.connection + • multiprocessing.pool + • queue + • sys + • threading + • weakref + +
+ + +
+ +
+ + multiprocessing.dummy.connection +SourceModule
+imports: + multiprocessing.dummy + • queue + +
+
+imported by: + multiprocessing.dummy + +
+ +
+ + + + + +
+ + multiprocessing.get_start_method +MissingModule
+imported by: + multiprocessing + • multiprocessing.spawn + +
+ +
+ +
+ + multiprocessing.heap +SourceModule
+imports: + _winapi + • bisect + • collections + • mmap + • multiprocessing + • multiprocessing.context + • multiprocessing.util + • os + • sys + • tempfile + • threading + +
+ + +
+ + + + + + + + + + + +
+ + multiprocessing.popen_spawn_win32 +SourceModule
+imports: + _winapi + • msvcrt + • multiprocessing + • multiprocessing.context + • multiprocessing.spawn + • multiprocessing.util + • os + • signal + • subprocess + • sys + +
+
+imported by: + multiprocessing.context + +
+ +
+ + + +
+ + multiprocessing.queues +SourceModule
+imports: + collections + • errno + • multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.synchronize + • multiprocessing.util + • os + • queue + • sys + • threading + • time + • traceback + • types + • weakref + +
+ + +
+ +
+ + multiprocessing.reduction +SourceModule
+imports: + _winapi + • abc + • array + • copyreg + • functools + • io + • multiprocessing + • multiprocessing.context + • multiprocessing.resource_sharer + • os + • pickle + • socket + • sys + +
+
+imported by: + multiprocessing + • multiprocessing.context + +
+ +
+ + + + + +
+ + multiprocessing.set_start_method +MissingModule
+imported by: + multiprocessing + • multiprocessing.spawn + +
+ +
+ +
+ + multiprocessing.shared_memory +SourceModule
+imports: + _posixshmem + • _winapi + • errno + • functools + • mmap + • multiprocessing + • multiprocessing.resource_tracker + • os + • secrets + • struct + • types + +
+
+imported by: + multiprocessing + • multiprocessing.managers + +
+ +
+ + + + + + + + + +
+ + netrc +SourceModule
+imports: + os + • pwd + • stat + +
+
+imported by: + ftplib
@@ -5750,7 +12785,10 @@ imported by: nt (builtin module)
imported by: - importlib._bootstrap_external + _colorize + • _pyrepl.windows_console + • ctypes + • importlib._bootstrap_externalntpathosshutil @@ -5761,14 +12799,13 @@ imported by:
- ntpath + ntpath SourceModule
imports: _winapigenericpathntos - • statstringsys @@ -5778,7 +12815,25 @@ imported by: DBC_Converter.pyosos.path - • pathlib + • pathlib._local + • pkg_resources + +
+ +
+ +
+ + nturl2path +SourceModule
+imports: + string + • urllib.parse + +
+
+imported by: + urllib.request
@@ -5786,7 +12841,7 @@ imported by:
- numbers + numbers SourceModule
imports: abc @@ -5796,18 +12851,31 @@ imports: imported by: _pydecimalfractions + • setuptools.diststatistics
+
+ + numpy +MissingModule
+imported by: + can.io.mf4 + +
+ +
+
- opcode + opcode SourceModule
imports: _opcode + • _opcode_metadata
@@ -5820,7 +12888,7 @@ imported by:
- operator + operator SourceModule - -
- - optparse -SourceModule
-imports: - gettext - • os - • sys - • textwrap - -
-
-imported by: - uu - -
- -
- -
- - org -MissingModule @@ -5879,7 +12936,7 @@ imported by:
- os + os SourceModule
imports: _collections_abc @@ -5900,40 +12957,193 @@ imports: imported by: DBC_Converter.pyPyQt5 + • _aix_support + • _colorize + • _distutils_hack_pyi_rth_utils_pyi_rth_utils.qt + • _pyrepl.commands + • _pyrepl.main + • _pyrepl.pager + • _pyrepl.readline + • _pyrepl.simple_interact + • _pyrepl.trace + • _pyrepl.unix_console + • _pyrepl.unix_eventqueue + • _pyrepl.windows_console + • _sitebuiltins + • _strptimeargparse + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.coroutines + • asyncio.events + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.unix_events + • asyncio.windows_utils + • bdbbz2 + • can.io.logger + • can.io.trc + • can.typechecking + • can.util + • cantools + • cantools.database + • cantools.typechecking + • concurrent.futures.process + • concurrent.futures.thread + • configparser + • contextlib + • ctypes + • ctypes._aix + • ctypes.macholib.dyld + • ctypes.util + • curses + • diskcache.core + • diskcache.recipes + • doctestemail.utilsfnmatchgenericpathgetopt + • getpassgettext + • globgzip + • http.cookiejar + • http.serverimportlib.metadata + • importlib.metadata._meta + • importlib.resources._common + • importlib.resources.abcinspectlinecachelocalelogginglzma + • mimetypes + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.forkserver + • multiprocessing.heap + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.popen_fork + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.popen_spawn_win32 + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.reduction + • multiprocessing.resource_sharer + • multiprocessing.resource_tracker + • multiprocessing.shared_memory + • multiprocessing.spawn + • multiprocessing.util + • netrcntpath - • optparseos.path - • pathlib + • packaging._elffile + • packaging._manylinux + • packaging.markers + • pathlib._local + • pdb + • pkg_resourcespkgutil + • platform + • plistlibposixpathpy_compile + • pydocpyi_rth_inspect.py + • pyi_rth_pkgres.pypyi_rth_pyqt5.py + • pyi_rth_setuptools.pyrandom + • runpy + • setuptools + • setuptools._core_metadata + • setuptools._distutils._msvccompiler + • setuptools._distutils.archive_util + • setuptools._distutils.ccompiler + • setuptools._distutils.cmd + • setuptools._distutils.command.bdist + • setuptools._distutils.command.build + • setuptools._distutils.command.build_ext + • setuptools._distutils.command.sdist + • setuptools._distutils.core + • setuptools._distutils.debug + • setuptools._distutils.dir_util + • setuptools._distutils.dist + • setuptools._distutils.extension + • setuptools._distutils.file_util + • setuptools._distutils.filelist + • setuptools._distutils.spawn + • setuptools._distutils.sysconfig + • setuptools._distutils.util + • setuptools._imp + • setuptools._path + • setuptools._shutil + • setuptools._vendor.backports.tarfile + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._meta + • setuptools._vendor.importlib_metadata.compat.py311 + • setuptools._vendor.jaraco.context + • setuptools._vendor.packaging._elffile + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging.markers + • setuptools._vendor.platformdirs + • setuptools._vendor.platformdirs.android + • setuptools._vendor.platformdirs.api + • setuptools._vendor.platformdirs.unix + • setuptools._vendor.platformdirs.windows + • setuptools._vendor.zipp.glob + • setuptools.archive_util + • setuptools.command.bdist_egg + • setuptools.command.bdist_wheel + • setuptools.command.egg_info + • setuptools.command.sdist + • setuptools.command.setopt + • setuptools.config._apply_pyprojecttoml + • setuptools.config._validate_pyproject.error_reporting + • setuptools.config._validate_pyproject.formats + • setuptools.config.expand + • setuptools.config.pyprojecttoml + • setuptools.config.setupcfg + • setuptools.discovery + • setuptools.dist + • setuptools.glob + • setuptools.installer + • setuptools.msvc + • setuptools.warnings + • setuptools.wheel + • shlexshutil + • sitesocket + • socketserver + • sslsubprocess + • sysconfigtarfile + • tempfilethreading - • uu + • unittest.loader + • unittest.main + • urllib.request + • webbrowser + • wheel.cli + • wheel.cli.tags + • wheel.macosx_libfile + • wheel.vendored.packaging._elffile + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging.markers + • wrapt.__wrapt__ + • xml.sax + • xml.sax.saxutilszipfile - • zipimport + • zipfile._path.glob
@@ -5950,10 +13160,459 @@ imports:
+ +
+ + + +
+ + packaging._elffile +SourceModule
+imports: + __future__ + • enum + • os + • packaging + • struct + • typing + +
+
+imported by: + packaging._manylinux + • packaging._musllinux + • pkg_resources + +
+ +
+ +
+ + packaging._manylinux +SourceModule
+imports: + __future__ + • _manylinux + • collections + • contextlib + • ctypes + • functools + • os + • packaging + • packaging._elffile + • re + • sys + • typing + • warnings + +
+
+imported by: + packaging + • packaging.tags + • pkg_resources + +
+ +
+ +
+ + packaging._musllinux +SourceModule
+imports: + __future__ + • functools + • packaging + • packaging._elffile + • re + • subprocess + • sys + • sysconfig + • typing + +
+
+imported by: + packaging + • packaging.tags + • pkg_resources + +
+ +
+ +
+ + packaging._parser +SourceModule
+imports: + __future__ + • ast + • packaging + • packaging._tokenizer + • typing + +
+
+imported by: + packaging.markers + • packaging.requirements + • pkg_resources + +
+ +
+ +
+ + packaging._structures +SourceModule
+imports: + packaging + +
+
+imported by: + packaging.version + • pkg_resources + +
+ +
+ +
+ + packaging._tokenizer +SourceModule
+imports: + __future__ + • contextlib + • dataclasses + • packaging + • packaging.specifiers + • re + • typing + +
+ + +
+ +
+ + packaging.licenses +Package
+imports: + __future__ + • packaging + • packaging.licenses._spdx + • re + • typing + +
+ + +
+ +
+ + packaging.licenses._spdx +SourceModule
+imports: + __future__ + • packaging.licenses + • typing + +
+
+imported by: + packaging.licenses + • pkg_resources + +
+ +
+ +
+ + packaging.markers +SourceModule
+imports: + __future__ + • operator + • os + • packaging + • packaging._parser + • packaging._tokenizer + • packaging.specifiers + • packaging.utils + • platform + • sys + • typing + +
+ + +
+ +
+ + packaging.metadata +SourceModule +
+imported by: + pkg_resources + +
+ +
+ + + + + +
+ + packaging.tags +SourceModule
+imports: + __future__ + • importlib.machinery + • logging + • packaging + • packaging._manylinux + • packaging._musllinux + • platform + • re + • struct + • subprocess + • sys + • sysconfig + • typing + +
+ + +
+ + + +
+ + packaging.version +SourceModule
+imports: + __future__ + • itertools + • packaging + • packaging._structures + • re + • typing + +
+ @@ -5961,22 +13620,86 @@ imported by: + +
+ + pathlib._abc +SourceModule
+imports: + errno + • functools + • glob + • pathlib + • stat + +
+
+imported by: + pathlib + • pathlib._local + +
+ +
+ +
+ + pathlib._local SourceModule
imports: _collections_abc - • errno - • fnmatch - • functools + • globgrpio + • itertoolsntpathoperatoros + • pathlib + • pathlib._abcposixpathpwd - • re - • statsysurllib.parsewarnings @@ -5984,20 +13707,52 @@ imports:
imported by: - importlib.metadata - • importlib.readers - • zipfile + pathlib
- - pep517 -MissingModule
+ + pdb +SourceModule
+imports: + _colorize + • argparse + • bdb + • cmd + • code + • codeop + • contextlib + • dis + • glob + • inspect + • io + • itertools + • linecache + • os + • pdb + • pprint + • pydoc + • re + • readline + • rlcompleter + • runpy + • shlex + • signal + • sys + • textwrap + • token + • tokenize + • traceback + • types + +
+
imported by: - importlib.metadata + doctest + • pdb
@@ -6005,7 +13760,7 @@ imported by:
- pickle + pickle SourceModule
imports: _compat_pickle @@ -6015,7 +13770,6 @@ imports: • functoolsioitertools - • orgpprintrestruct @@ -6025,16 +13779,117 @@ imports:
+
+ + pickletools +SourceModule
+imports: + argparse + • codecs + • doctest + • io + • pickle + • re + • struct + • sys + +
+
+imported by: + diskcache.core + +
+ +
+ + +
- pkgutil + pkgutil SourceModule
imports: collections @@ -6056,7 +13911,173 @@ imports:
imported by: PyQt5 + • backports + • pkg_resources + • pydocpyi_rth_pkgutil.py + • runpy + • unittest.mock + +
+ +
+ + + +
+ + platformdirs +AliasNode + + +
+ + + +
+ + platformdirs.macos +AliasNode +
+imported by: + setuptools._vendor.platformdirs + +
+ +
+ +
+ + platformdirs.unix +AliasNode +
+imported by: + setuptools._vendor.platformdirs + +
+ +
+ + + +
+ + plistlib +SourceModule
+imports: + binascii + • codecs + • datetime + • enum + • io + • itertools + • os + • re + • struct + • xml.parsers.expat + +
+
+imported by: + pkg_resources
@@ -6072,8 +14093,10 @@ imports:
@@ -6082,11 +14105,13 @@ imported by:
- posixpath + posixpath SourceModule
imports: - genericpath + errno + • genericpathos + • posixpwdrestat @@ -6097,10 +14122,17 @@ imports: imported by: DBC_Converter.pyfnmatch + • http.serverimportlib.metadata + • mimetypesos - • pathlib - • zipfile + • pathlib._local + • pkg_resources + • setuptools._vendor.importlib_metadata + • setuptools._vendor.zipp + • setuptools.archive_util + • setuptools.wheel + • zipfile._path
@@ -6108,7 +14140,7 @@ imported by:
- pprint + pprint SourceModule
imports: collections @@ -6116,13 +14148,16 @@ imports: • ioresys - • timetypes
imported by: - pickle + pdb + • pickle + • setuptools._distutils.dist + • unittest.case + • unittest.mock
@@ -6133,8 +14168,14 @@ imported by: pwd MissingModule
imported by: - pathlib + getpass + • http.server + • netrc + • pathlib._localposixpath + • setuptools._distutils.archive_util + • setuptools._distutils.util + • setuptools._vendor.backports.tarfileshutilsubprocesstarfile @@ -6145,7 +14186,7 @@ imported by:
- py_compile + py_compile SourceModule
imports: argparse @@ -6161,7 +14202,93 @@ imports:
imported by: - zipfile + setuptools._distutils.util + • zipfile + +
+ +
+ +
+ + pydoc +SourceModule
+imports: + __future__ + • _pyrepl.pager + • builtins + • collections + • email.message + • getopt + • http.server + • importlib._bootstrap + • importlib._bootstrap_external + • importlib.machinery + • importlib.util + • inspect + • io + • os + • pkgutil + • platform + • pydoc_data.topics + • re + • reprlib + • select + • sys + • sysconfig + • textwrap + • threading + • time + • tokenize + • traceback + • urllib.parse + • warnings + • webbrowser + +
+
+imported by: + _sitebuiltins + • pdb + +
+ +
+ +
+ + pydoc_data +Package
+imported by: + pydoc_data.topics + +
+ +
+ +
+ + pydoc_data.topics +SourceModule
+imports: + pydoc_data + +
+
+imported by: + pydoc + +
+ +
+ +
+ + pyexpat C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\pyexpat.pyd @@ -6172,7 +14299,49 @@ imported by: pyimod02_importers MissingModule + +
+ +
+ + pywintypes +MissingModule
+imported by: + can.broadcastmanager + +
+ +
+ +
+ + queue +SourceModule
+imports: + _queue + • collections + • heapq + • threading + • time + • types + +
+ @@ -6180,7 +14349,7 @@ imported by:
- quopri + quopri SourceModule
imports: binascii @@ -6201,12 +14370,13 @@ imported by:
- random + random SourceModule
imports: _collections_abc_random - • _sha512 + • _sha2 + • argparsebisecthashlibitertools @@ -6220,9 +14390,14 @@ imports:
@@ -6230,28 +14405,51 @@ imported by:
- re -SourceModule
+ re +Package
imports: - _locale + _srecopyregenumfunctools - • sre_compile - • sre_constants - • sre_parse + • re + • re._compiler + • re._constants + • re._parser + • warnings
imported by: DBC_Converter.py_pydecimal + • _pyrepl.completing_reader + • _pyrepl.pager + • _pyrepl.unix_console + • _pyrepl.utils_sre_strptimeargparse + • astbase64 + • bitstruct + • can.io.asc + • can.util + • cantools.database.can.formats.arxml + • cantools.database.can.formats.arxml.system_loader + • cantools.database.can.formats.dbc + • cantools.database.can.formats.sym + • cantools.database.utils + • cantools.logreader + • configparsercsv + • ctypes._aix + • ctypes.macholib.dylib + • ctypes.macholib.framework + • ctypes.utildataclasses + • difflib + • doctestemail._encoded_wordsemail._header_value_parseremail.feedparser @@ -6264,28 +14462,218 @@ imported by: • encodings.idnafnmatchfractions + • ftplibgettext + • glob + • html + • http.client + • http.cookiejarimportlib.metadataimportlib.metadata._adaptersimportlib.metadata._text + • importlib.resources.readersinspect + • ipaddressjson.decoderjson.encoderjson.scannerlocalelogging - • pathlib + • packaging._manylinux + • packaging._musllinux + • packaging._tokenizer + • packaging.licenses + • packaging.specifiers + • packaging.tags + • packaging.utils + • packaging.version + • pdbpickle + • pickletools + • pkg_resourcespkgutil + • platform + • plistlibposixpathpprint + • pydoc + • re + • re._casefix + • re._compiler + • re._constants + • re._parser + • rlcompleter + • setuptools + • setuptools._distutils.ccompiler + • setuptools._distutils.cmd + • setuptools._distutils.command.build_ext + • setuptools._distutils.dist + • setuptools._distutils.fancy_getopt + • setuptools._distutils.filelist + • setuptools._distutils.sysconfig + • setuptools._distutils.util + • setuptools._distutils.version + • setuptools._distutils.versionpredicate + • setuptools._normalization + • setuptools._vendor.backports.tarfile + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._adapters + • setuptools._vendor.importlib_metadata._text + • setuptools._vendor.jaraco.text + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._musllinux + • setuptools._vendor.packaging._tokenizer + • setuptools._vendor.packaging.specifiers + • setuptools._vendor.packaging.tags + • setuptools._vendor.packaging.utils + • setuptools._vendor.packaging.version + • setuptools._vendor.platformdirs.android + • setuptools._vendor.tomli._re + • setuptools._vendor.zipp + • setuptools._vendor.zipp.glob + • setuptools.command.bdist_egg + • setuptools.command.bdist_wheel + • setuptools.command.egg_info + • setuptools.command.sdist + • setuptools.config._validate_pyproject.error_reporting + • setuptools.config._validate_pyproject.fastjsonschema_exceptions + • setuptools.config._validate_pyproject.fastjsonschema_validations + • setuptools.config._validate_pyproject.formats + • setuptools.dist + • setuptools.extension + • setuptools.glob + • setuptools.wheel + • shlex + • sre_compile + • sre_constants + • sre_parsestring + • sysconfigtarfile + • textparsertextwraptokenize + • tomllib._retyping + • unittest.case + • unittest.loaderurllib.parse + • urllib.requestwarnings + • wheel.cli.convert + • wheel.cli.pack + • wheel.metadata + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging._musllinux + • wheel.vendored.packaging._tokenizer + • wheel.vendored.packaging.specifiers + • wheel.vendored.packaging.tags + • wheel.vendored.packaging.utils + • wheel.vendored.packaging.version + • wheel.wheelfile + • xml.etree.ElementPath + • xml.etree.ElementTree + • zipfile._path + • zipfile._path.glob + +
+ +
+ +
+ + re._casefix +SourceModule
+imports: + re + +
+
+imported by: + DBC_Converter.py + • re._compiler + +
+ +
+ +
+ + re._compiler +SourceModule
+imports: + _sre + • re + • re._casefix + • re._constants + • re._parser + • sys + +
+
+imported by: + DBC_Converter.py + • re + • sre_compile + +
+ +
+ +
+ + re._constants +SourceModule
+imports: + _sre + • re + +
+
+imported by: + DBC_Converter.py + • re + • re._compiler + • re._parser + • sre_constants + +
+ +
+ +
+ + re._parser +SourceModule
+imports: + re + • re._constants + • unicodedata + • warnings + +
+
+imported by: + DBC_Converter.py + • re + • re._compiler + • sre_parse + +
+ +
+ +
+ + readline +MissingModule
+imported by: + cmd + • code + • pdb + • rlcompleter + • site + • sqlite3.__main__
@@ -6293,7 +14681,7 @@ imported by:
- reprlib + reprlib SourceModule
imports: _thread @@ -6304,8 +14692,14 @@ imports: @@ -6323,10 +14717,78 @@ imported by:
- - select C:\Users\blueb\AppData\Local\Programs\Python\Python310\DLLs\select.pyd
+ + rlcompleter +SourceModule
+imports: + atexit + • builtins + • inspect + • keyword + • re + • readline + • warnings + +
+
imported by: - selectors + _pyrepl.readline + • pdb + • site + +
+ +
+ +
+ + runpy +SourceModule
+imports: + importlib.machinery + • importlib.util + • io + • os + • pkgutil + • sys + • warnings + +
+
+imported by: + multiprocessing.spawn + • pdb + +
+ +
+ +
+ + secrets +SourceModule
+imports: + base64 + • hmac + • random + +
+
+imported by: + multiprocessing.shared_memory + +
+ +
+ +
+ + select C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\select.pyd
+imported by: + _pyrepl.unix_console + • http.server + • pydoc + • selectorssubprocess
@@ -6335,12 +14797,12 @@ imported by:
- selectors + selectors SourceModule
imports: - abc + 'collections.abc' + • abccollections - • collections.abcmathselectsys @@ -6348,7 +14810,12 @@ imports:
@@ -6356,11 +14823,3549 @@ imported by:
- - shutil + + setuptools +Package + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + setuptools._distutils.compat.py39 +SourceModule
+imports: + _imp + • functools + • itertools + • platform + • setuptools._distutils.compat + • sys + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + setuptools._distutils.version +SourceModule
+imports: + contextlib + • re + • setuptools._distutils + • warnings + +
+ + +
+ +
+ + setuptools._distutils.versionpredicate +SourceModule
+imports: + distutils + • operator + • re + • setuptools._distutils + • setuptools._distutils.version + +
+
+imported by: + setuptools._distutils.dist + +
+ +
+ + + +
+ + setuptools._imp +SourceModule
+imports: + importlib.machinery + • importlib.util + • os + • setuptools + • tokenize + +
+
+imported by: + setuptools + • setuptools.depends + +
+ +
+ + + +
+ + setuptools._itertools +SourceModule
+imports: + more_itertools + • setuptools + +
+
+imported by: + setuptools._entry_points + +
+ +
+ +
+ + setuptools._normalization +SourceModule
+imports: + packaging + • re + • setuptools + +
+ + +
+ + + + + +
+ + setuptools._shutil +SourceModule
+imports: + distutils + • os + • setuptools + • setuptools._distutils.log + • setuptools.compat + • setuptools.compat.py311 + • stat + • typing + +
+
+imported by: + setuptools + • setuptools.command.bdist_wheel + +
+ +
+ + + +
+ + setuptools._vendor.backports +Package
+imports: + setuptools._vendor + +
+ + +
+ +
+ + setuptools._vendor.backports.tarfile +Package
+imports: + argparse + • builtins + • bz2 + • copy + • grp + • gzip + • io + • lzma + • os + • pwd + • re + • setuptools._vendor.backports + • setuptools._vendor.backports.tarfile.compat.py38 + • shutil + • stat + • struct + • sys + • time + • warnings + • zlib + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + setuptools._vendor.jaraco.context +SourceModule
+imports: + __future__ + • backports + • backports.tarfile + • contextlib + • functools + • operator + • os + • setuptools._vendor.jaraco + • shutil + • subprocess + • sys + • tarfile + • tempfile + • typing + • urllib.request + • warnings + +
+
+imported by: + jaraco.context + +
+ +
+ +
+ + setuptools._vendor.jaraco.functools +Package
+imports: + 'collections.abc' + • functools + • inspect + • itertools + • more_itertools + • operator + • setuptools._vendor.jaraco + • time + • types + • warnings + +
+
+imported by: + jaraco.functools + +
+ +
+ +
+ + setuptools._vendor.jaraco.text +Package +
+imported by: + jaraco.text + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + setuptools._vendor.platformdirs.android +SourceModule
+imports: + __future__ + • android + • functools + • jnius + • os + • re + • setuptools._vendor.platformdirs + • setuptools._vendor.platformdirs.api + • sys + • typing + +
+
+imported by: + platformdirs.android + +
+ +
+ + + + + +
+ + setuptools._vendor.platformdirs.unix +SourceModule +
+imported by: + platformdirs.unix + +
+ +
+ + + +
+ + setuptools._vendor.platformdirs.windows +SourceModule +
+imported by: + platformdirs.windows + +
+ +
+ + + + + +
+ + setuptools._vendor.tomli._re +SourceModule
+imports: + __future__ + • datetime + • functools + • re + • setuptools._vendor.tomli + • setuptools._vendor.tomli._types + • typing + +
+
+imported by: + setuptools._vendor.tomli._parser + +
+ +
+ + + +
+ + setuptools._vendor.zipp +Package
+imports: + contextlib + • io + • itertools + • pathlib + • posixpath + • re + • setuptools._vendor + • setuptools._vendor.zipp.compat.py310 + • setuptools._vendor.zipp.glob + • stat + • sys + • zipfile + +
+ + +
+ + + +
+ + setuptools._vendor.zipp.compat.py310 +SourceModule
+imports: + io + • setuptools._vendor.zipp.compat + • sys + +
+
+imported by: + setuptools._vendor.zipp + +
+ +
+ +
+ + setuptools._vendor.zipp.glob +SourceModule
+imports: + os + • re + • setuptools._vendor.zipp + +
+
+imported by: + setuptools._vendor.zipp + +
+ +
+ +
+ + setuptools.archive_util +SourceModule
+imports: + contextlib + • os + • posixpath + • setuptools + • setuptools._distutils.errors + • setuptools._path + • shutil + • tarfile + • zipfile + +
+
+imported by: + setuptools.wheel + +
+ +
+ + + + + +
+ + setuptools.command.bdist_egg +SourceModule + + +
+ +
+ + setuptools.command.bdist_wheel +SourceModule +
+imported by: + setuptools.dist + +
+ +
+ +
+ + setuptools.command.build +SourceModule +
+imported by: + setuptools.command.sdist + +
+ +
+ + + + + + + + + +
+ + setuptools.compat.py310 +SourceModule
+imports: + setuptools.compat + • sys + • tomli + • tomllib + +
+
+imported by: + setuptools.config.pyprojecttoml + +
+ +
+ +
+ + setuptools.compat.py311 +SourceModule
+imports: + __future__ + • _typeshed + • setuptools.compat + • shutil + • sys + • typing + • typing_extensions + +
+
+imported by: + setuptools._shutil + • setuptools.compat + +
+ +
+ +
+ + setuptools.compat.py39 +SourceModule
+imports: + setuptools.compat + • sys + +
+
+imported by: + setuptools.compat + • setuptools.unicode_utils + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
+ + setuptools.depends +SourceModule
+imports: + __future__ + • contextlib + • dis + • marshal + • packaging.version + • setuptools + • setuptools._imp + • sys + • types + • typing + +
+
+imported by: + setuptools + +
+ +
+ +
+ + setuptools.discovery +SourceModule +
+imported by: + setuptools + • setuptools.config.expand + • setuptools.dist + +
+ +
+ + + + + + + +
+ + setuptools.glob +SourceModule
+imports: + 'collections.abc' + • __future__ + • _typeshed + • fnmatch + • os + • re + • setuptools + • typing + +
+
+imported by: + setuptools.command.egg_info + +
+ +
+ +
+ + setuptools.installer +SourceModule +
+imported by: + setuptools.dist + +
+ +
+ +
+ + setuptools.logging +SourceModule
+imports: + inspect + • logging + • setuptools + • setuptools._distutils.log + • setuptools.monkey + • sys + +
+
+imported by: + setuptools + +
+ +
+ +
+ + setuptools.monkey +SourceModule
+imports: + __future__ + • inspect + • platform + • setuptools + • setuptools._core_metadata + • setuptools._distutils.filelist + • sys + • types + • typing + +
+
+imported by: + setuptools + • setuptools.dist + • setuptools.extension + • setuptools.logging + +
+ +
+ +
+ + setuptools.msvc +SourceModule
+imports: + __future__ + • contextlib + • itertools + • json + • more_itertools + • os + • os.path + • platform + • setuptools + • setuptools._distutils.errors + • typing + • typing_extensions + • winreg + +
+
+imported by: + setuptools + +
+ +
+ + + +
+ + setuptools.version +SourceModule
+imports: + setuptools + • setuptools._importlib + +
+
+imported by: + setuptools + +
+ +
+ + + + + +
+ + setuptools.windows_support +SourceModule
+imports: + ctypes + • ctypes.wintypes + • platform + • setuptools + +
+
+imported by: + setuptools + • setuptools.dist + +
+ +
+ +
+ + shlex +SourceModule
+imports: + collections + • io + • os + • re + • sys + +
+
+imported by: + pdb + • setuptools.dist + • webbrowser + +
+ +
+ +
+ + shutil +SourceModule
+imports: + _winapi + • bz2collectionserrnofnmatch @@ -6379,8 +18384,21 @@ imports:
@@ -6389,7 +18407,7 @@ imported by: + +
+ + site +SourceModule
+imports: + _pyrepl.main + • _pyrepl.readline + • _pyrepl.unix_console + • _pyrepl.windows_console + • _sitebuiltins + • atexit + • builtins + • io + • locale + • os + • readline + • rlcompleter + • sitecustomize + • stat + • sys + • textwrap + • traceback + • usercustomize + +
+ + +
+ +
+ + sitecustomize +MissingModule
+imported by: + site
@@ -6406,7 +18486,7 @@ imported by: + +
+ + socketserver +SourceModule
+imports: + io + • os + • selectors + • socket + • sys + • threading + • time + • traceback + +
+
+imported by: + http.server + +
+ +
+ +
+ + sqlite3 +Package
+imports: + sqlite3 + • sqlite3.__main__ + • sqlite3.dbapi2 + • sqlite3.dump + • warnings + +
+
+imported by: + can.io.sqlite + • diskcache.core + • diskcache.fanout + • sqlite3 + • sqlite3.__main__ + • sqlite3.dbapi2 + • sqlite3.dump + +
+ +
+ +
+ + sqlite3.__main__ +SourceModule
+imports: + argparse + • code + • readline + • sqlite3 + • sys + • textwrap + +
+
+imported by: + sqlite3 + +
+ +
+ +
+ + sqlite3.dbapi2 +SourceModule
+imports: + 'collections.abc' + • _sqlite3 + • datetime + • sqlite3 + • time + • warnings + +
+
+imported by: + sqlite3 + +
+ +
+ +
+ + sqlite3.dump +SourceModule
+imports: + sqlite3 + +
+
+imported by: + sqlite3
@@ -6429,19 +18636,17 @@ imported by:
- sre_compile + sre_compile SourceModule
imports: - _sre - • sre_constants - • sre_parse - • sys + re + • re._compiler + • warnings
imported by: DBC_Converter.py - • re
@@ -6449,18 +18654,17 @@ imported by:
- sre_constants + sre_constants SourceModule
imports: - _sre + re + • re._constants + • warnings
imported by: DBC_Converter.py - • re - • sre_compile - • sre_parse
@@ -6468,19 +18672,49 @@ imported by:
- sre_parse + sre_parse SourceModule
imports: - sre_constants - • unicodedata + re + • re._parserwarnings
imported by: DBC_Converter.py - • re - • sre_compile + +
+ +
+ +
+ + ssl +SourceModule
+imports: + _ssl + • base64 + • calendar + • collections + • enum + • errno + • os + • socket + • sys + • time + • warnings + +
+ @@ -6488,7 +18722,7 @@ imported by:
- stat + stat SourceModule
imports: _stat @@ -6497,14 +18731,26 @@ imports: @@ -6512,7 +18758,7 @@ imported by:
- statistics + statistics SourceModule
imports: _statistics @@ -6520,11 +18766,13 @@ imports: • collectionsdecimalfractions + • functoolsitertoolsmathnumbersoperatorrandom + • sys
@@ -6537,7 +18785,7 @@ imported by:
- string + string SourceModule
imports: _string @@ -6547,11 +18795,19 @@ imports:
@@ -6559,7 +18815,7 @@ imported by:
- stringprep + stringprep SourceModule
imports: unicodedata @@ -6575,7 +18831,7 @@ imported by:
- struct + struct SourceModule
imports: _struct @@ -6583,12 +18839,36 @@ imports:
@@ -6596,7 +18876,7 @@ imported by:
- subprocess + subprocess SourceModule
imports: _posixsubprocess @@ -6607,6 +18887,7 @@ imports: • fcntlgrpio + • localemsvcrtospwd @@ -6623,7 +18904,34 @@ imports: @@ -6635,20 +18943,61 @@ imported by: imported by: DBC_Converter.pyPyQt5 + • _aix_support_collections_abc + • _colorize_compression + • _distutils_hack + • _ios_support + • _pydatetime_pydecimal_pyi_rth_utils + • _pyrepl.console + • _pyrepl.main + • _pyrepl.pager + • _pyrepl.reader + • _pyrepl.readline + • _pyrepl.simple_interact + • _pyrepl.windows_console + • _sitebuiltinsargparseast + • asyncio + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.coroutines + • asyncio.events + • asyncio.format_helpers + • asyncio.futures + • asyncio.streams + • asyncio.unix_events + • asyncio.windows_events + • asyncio.windows_utilsbase64 + • bdbcalendar + • can._entry_points + • can.broadcastmanager + • can.exceptions + • can.listener + • can.typechecking + • cantools + • cmd + • codecodecscollections + • concurrent.futures.process + • configparsercontextlib + • ctypes + • ctypes._aix + • ctypes._endian + • ctypes.util + • cursesdataclasses - • datetime + • decimaldis + • doctestemail._header_value_parseremail.generatoremail.iterators @@ -6659,9 +19008,14 @@ imported by: • encodings.utf_32enumfractions + • ftplibgetopt + • getpassgettext + • globgzip + • http.client + • http.serverimportlibimportlib._bootstrap_externalimportlib.metadata @@ -6670,43 +19024,195 @@ imported by: • linecachelocalelogging + • mimetypes + • multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.dummy + • multiprocessing.forkserver + • multiprocessing.heap + • multiprocessing.managers + • multiprocessing.popen_spawn_win32 + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.reduction + • multiprocessing.resource_sharer + • multiprocessing.resource_tracker + • multiprocessing.spawn + • multiprocessing.synchronize + • multiprocessing.utilntpath - • optparseos - • pathlib + • packaging._manylinux + • packaging._musllinux + • packaging.markers + • packaging.metadata + • packaging.tags + • pathlib._local + • pdbpickle + • pickletools + • pkg_resourcespkgutil + • platformposixpathpprintpy_compile + • pydocpyi_rth_inspect.py + • pyi_rth_multiprocessing.py + • pyi_rth_pkgres.pypyi_rth_pyqt5.pyquopri + • re._compiler + • runpyselectors + • setuptools + • setuptools._distutils + • setuptools._distutils.ccompiler + • setuptools._distutils.cmd + • setuptools._distutils.command.build + • setuptools._distutils.command.build_ext + • setuptools._distutils.command.sdist + • setuptools._distutils.compat.py38 + • setuptools._distutils.compat.py39 + • setuptools._distutils.core + • setuptools._distutils.dist + • setuptools._distutils.fancy_getopt + • setuptools._distutils.spawn + • setuptools._distutils.sysconfig + • setuptools._distutils.text_file + • setuptools._distutils.util + • setuptools._importlib + • setuptools._path + • setuptools._vendor.backports.tarfile + • setuptools._vendor.backports.tarfile.compat.py38 + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._compat + • setuptools._vendor.importlib_metadata.compat.py311 + • setuptools._vendor.jaraco.context + • setuptools._vendor.more_itertools.more + • setuptools._vendor.more_itertools.recipes + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._musllinux + • setuptools._vendor.packaging.markers + • setuptools._vendor.packaging.tags + • setuptools._vendor.platformdirs + • setuptools._vendor.platformdirs.android + • setuptools._vendor.platformdirs.macos + • setuptools._vendor.platformdirs.unix + • setuptools._vendor.platformdirs.windows + • setuptools._vendor.zipp + • setuptools._vendor.zipp.compat.py310 + • setuptools.command + • setuptools.command.bdist_egg + • setuptools.command.bdist_wheel + • setuptools.command.egg_info + • setuptools.compat.py310 + • setuptools.compat.py311 + • setuptools.compat.py39 + • setuptools.config._validate_pyproject.error_reporting + • setuptools.config.expand + • setuptools.depends + • setuptools.dist + • setuptools.installer + • setuptools.logging + • setuptools.monkey + • setuptools.unicode_utils + • shlexshutil + • sitesocket - • sre_compile + • socketserver + • sqlite3.__main__ + • ssl + • statisticssubprocess + • sysconfigtarfile + • tempfilethreadingtokenizetracebacktypestyping - • urllib.parse - • uu + • typing_extensions + • unittest.case + • unittest.loader + • unittest.main + • unittest.mock + • unittest.result + • unittest.runner + • unittest.suite + • urllib.requestwarningsweakref + • webbrowser + • wheel.cli + • wheel.macosx_libfile + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging._musllinux + • wheel.vendored.packaging.markers + • wheel.vendored.packaging.tags + • wrapt.decorators + • wrapt.importer + • wrapt.patches + • wrapt.wrappers + • xml.etree.ElementTree + • xml.parsers.expat + • xml.sax + • xml.sax.saxutils + • xmlrpc.clientzipfile + • zipfile._pathzipimport
+ +
- tarfile + tarfile SourceModule
imports: argparse @@ -6725,12 +19231,94 @@ imports: • structsystime + • warningszlib
+ +
+ + + +
+ + termios +MissingModule + +
+ +
+ + textparser +SourceModule
+imports: + collections + • operator + • re + +
+ @@ -6738,7 +19326,7 @@ imported by:
- textwrap + textwrap SourceModule @@ -6757,7 +19359,7 @@ imported by:
- threading + threading SourceModule
imports: _collections @@ -6765,7 +19367,6 @@ imports: • _threading_local_weakrefsetcollections - • functoolsitertoolsossys @@ -6776,9 +19377,48 @@ imports:
@@ -6795,19 +19435,57 @@ imports:
imported by: _datetime + • _pydatetime + • _pyrepl.unix_console + • _pyrepl.windows_console_strptime + • asyncio.base_events + • asyncio.windows_events + • can.broadcastmanager + • can.bus + • can.io.blf + • can.io.player + • can.io.sqlite + • can.notifier + • can.util + • cantools.tester + • concurrent.futures._basedatetime + • diskcache.core + • diskcache.fanout + • diskcache.recipesemail._parseaddremail.generatoremail.utilsgcgzip + • http.cookiejar + • http.serverlogging - • pprint + • multiprocessing.connection + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.queues + • multiprocessing.synchronize + • pkg_resources + • pydoc + • queuerandom + • setuptools._vendor.backports.tarfile + • setuptools._vendor.jaraco.functools + • setuptools._vendor.more_itertools.more + • setuptools.command.egg_info + • socketserver + • sqlite3.dbapi2 + • sslsubprocesstarfilethreading + • unittest.case + • unittest.runner + • urllib.request + • wheel.wheelfile + • xmlrpc.clientzipfilezipimport @@ -6817,10 +19495,11 @@ imported by:
- token + token SourceModule
imported by: inspect + • pdbtokenize
@@ -6829,10 +19508,11 @@ imported by:
- tokenize + tokenize SourceModule
imports: - argparse + _tokenize + • argparsebuiltinscodecscollections @@ -6846,9 +19526,112 @@ imports:
+ +
+ +
+ + tomli +AliasNode
+imports: + setuptools._vendor.tomli + +
+
+imported by: + setuptools.compat.py310 + +
+ +
+ +
+ + tomllib +Package
+imports: + tomllib._parser + +
+
+imported by: + setuptools.compat.py310 + • tomllib._parser + • tomllib._re + • tomllib._types + +
+ +
+ +
+ + tomllib._parser +SourceModule
+imports: + 'collections.abc' + • __future__ + • string + • tomllib + • tomllib._re + • tomllib._types + • types + • typing + +
+
+imported by: + tomllib + +
+ +
+ +
+ + tomllib._re +SourceModule
+imports: + __future__ + • datetime + • functools + • re + • tomllib + • tomllib._types + • typing + +
+
+imported by: + tomllib._parser + +
+ +
+ +
+ + tomllib._types +SourceModule
+imports: + tomllib + • typing + +
+
+imported by: + tomllib._parser + • tomllib._re
@@ -6856,21 +19639,50 @@ imported by:
- traceback + traceback SourceModule
imports: - collections + 'collections.abc' + • _colorize + • _suggestions + • ast + • contextlibitertoolslinecachesys + • textwrap + • unicodedata + • warnings
@@ -6879,11 +19691,11 @@ imported by:
- tracemalloc + tracemalloc SourceModule
imports: - _tracemalloc - • collections.abc + 'collections.abc' + • _tracemallocfnmatchfunctoolslinecache @@ -6899,12 +19711,40 @@ imported by:
+
+ + trove_classifiers +MissingModule + +
+ +
+ + tty +SourceModule
+imports: + termios + +
+
+imported by: + _pyrepl.pager + +
+ +
+
- types + types SourceModule
imports: _collections_abc + • _socketfunctoolssys @@ -6912,23 +19752,68 @@ imports: @@ -6936,26 +19821,219 @@ imported by:
- typing + typing SourceModule
imports: - abc + 'collections.abc' + • _typing + • abccollections - • collections.abccontextlib + • copyregfunctools + • inspectoperatorresystypes + • warnings
imported by: - functools - • importlib.abc + _pyrepl._threading_handler + • _pyrepl.console + • _pyrepl.pager + • _pyrepl.readline + • _pyrepl.simple_interact + • _pyrepl.trace + • _pyrepl.unix_console + • _pyrepl.windows_console + • asyncio.timeouts + • can + • can._entry_points + • can.bit_timing + • can.broadcastmanager + • can.bus + • can.exceptions + • can.interface + • can.interfaces + • can.io.asc + • can.io.blf + • can.io.canutils + • can.io.csv + • can.io.generic + • can.io.logger + • can.io.mf4 + • can.io.player + • can.io.printer + • can.io.sqlite + • can.io.trc + • can.listener + • can.message + • can.notifier + • can.typechecking + • can.util + • cantools.database + • cantools.database.can.database + • cantools.database.can.formats.arxml + • cantools.database.can.formats.arxml.ecu_extract_loader + • cantools.database.can.formats.arxml.end_to_end_properties + • cantools.database.can.formats.arxml.message_specifics + • cantools.database.can.formats.arxml.secoc_properties + • cantools.database.can.formats.arxml.system_loader + • cantools.database.can.formats.arxml.utils + • cantools.database.can.formats.dbc + • cantools.database.can.formats.sym + • cantools.database.can.formats.utils + • cantools.database.can.internal_database + • cantools.database.can.message + • cantools.database.can.node + • cantools.database.can.signal + • cantools.database.can.signal_group + • cantools.database.conversion + • cantools.database.diagnostics.data + • cantools.database.namedsignalvalue + • cantools.database.utils + • cantools.tester + • cantools.typechecking + • functoolsimportlib.metadataimportlib.metadata._meta + • importlib.resources._common + • importlib.resources.abc + • packaging._elffile + • packaging._manylinux + • packaging._musllinux + • packaging._parser + • packaging._tokenizer + • packaging.licenses + • packaging.licenses._spdx + • packaging.markers + • packaging.metadata + • packaging.requirements + • packaging.specifiers + • packaging.tags + • packaging.utils + • packaging.version + • pkg_resources + • setuptools + • setuptools._distutils.fancy_getopt + • setuptools._distutils.spawn + • setuptools._path + • setuptools._reqs + • setuptools._shutil + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._meta + • setuptools._vendor.importlib_metadata.compat.py39 + • setuptools._vendor.jaraco.context + • setuptools._vendor.packaging._elffile + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._musllinux + • setuptools._vendor.packaging._parser + • setuptools._vendor.packaging._tokenizer + • setuptools._vendor.packaging.markers + • setuptools._vendor.packaging.requirements + • setuptools._vendor.packaging.specifiers + • setuptools._vendor.packaging.tags + • setuptools._vendor.packaging.utils + • setuptools._vendor.packaging.version + • setuptools._vendor.platformdirs + • setuptools._vendor.platformdirs.android + • setuptools._vendor.platformdirs.api + • setuptools._vendor.platformdirs.unix + • setuptools._vendor.platformdirs.version + • setuptools._vendor.platformdirs.windows + • setuptools._vendor.tomli._parser + • setuptools._vendor.tomli._re + • setuptools._vendor.tomli._types + • setuptools.command._requirestxt + • setuptools.command.bdist_egg + • setuptools.command.bdist_wheel + • setuptools.command.build + • setuptools.command.sdist + • setuptools.compat.py311 + • setuptools.config + • setuptools.config._apply_pyprojecttoml + • setuptools.config._validate_pyproject + • setuptools.config._validate_pyproject.error_reporting + • setuptools.config._validate_pyproject.extra_validations + • setuptools.config._validate_pyproject.formats + • setuptools.config.expand + • setuptools.config.pyprojecttoml + • setuptools.config.setupcfg + • setuptools.depends + • setuptools.discovery + • setuptools.dist + • setuptools.extension + • setuptools.glob + • setuptools.monkey + • setuptools.msvc + • setuptools.warnings + • tomllib._parser + • tomllib._re + • tomllib._types + • typing_extensions + • wheel.macosx_libfile + • wheel.metadata + • wheel.vendored.packaging._elffile + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging._musllinux + • wheel.vendored.packaging._parser + • wheel.vendored.packaging._tokenizer + • wheel.vendored.packaging.markers + • wheel.vendored.packaging.requirements + • wheel.vendored.packaging.specifiers + • wheel.vendored.packaging.tags + • wheel.vendored.packaging.utils + • wheel.vendored.packaging.version + • wheel.wheelfile + +
+ +
+ +
+ + typing_extensions +SourceModule
+imports: + 'collections.abc' + • _socket + • abc + • collections + • contextlib + • functools + • inspect + • operator + • sys + • types + • typing + • warnings + +
+ @@ -6963,24 +20041,350 @@ imported by:
- unicodedata C:\Users\blueb\AppData\Local\Programs\Python\Python310\DLLs\unicodedata.pyd
+ unicodedata C:\Users\MSI\AppData\Local\Programs\Python\Python313\DLLs\unicodedata.pyd
+ + +
+ + unittest._log +SourceModule
+imports: + collections + • logging + • unittest + • unittest.case + +
+
+imported by: + unittest.case + +
+ +
+ +
+ + unittest.async_case +SourceModule
+imports: + asyncio + • contextvars + • inspect + • unittest + • unittest.case + • warnings + +
+
+imported by: + unittest + +
+ +
+ +
+ + unittest.case +SourceModule
+imports: + collections + • contextlib + • difflib + • functools + • pprint + • re + • sys + • time + • traceback + • types + • unittest + • unittest._log + • unittest.result + • unittest.util + • warnings + +
+
+imported by: + unittest + • unittest._log + • unittest.async_case + • unittest.loader + • unittest.runner + • unittest.suite + +
+ +
+ +
+ + unittest.loader +SourceModule
+imports: + fnmatch + • functools + • os + • re + • sys + • traceback + • types + • unittest + • unittest.case + • unittest.suite + • unittest.util + +
+
+imported by: + unittest + • unittest.main + +
+ +
+ +
+ + unittest.main +SourceModule
+imports: + argparse + • os + • sys + • unittest + • unittest.loader + • unittest.runner + • unittest.signals + +
+
+imported by: + unittest + +
+ +
+ +
+ + unittest.mock +SourceModule
+imports: + _io + • asyncio + • builtins + • contextlib + • functools + • inspect + • io + • pkgutil + • pprint + • sys + • threading + • types + • unittest + • unittest.util + +
+ + +
+ +
+ + unittest.result +SourceModule
+imports: + functools + • io + • sys + • traceback + • unittest + • unittest.util + +
+
+imported by: + unittest + • unittest.case + • unittest.runner + +
+ +
+ +
+ + unittest.runner +SourceModule
+imports: + sys + • time + • unittest + • unittest.case + • unittest.result + • unittest.signals + • warnings + +
+
+imported by: + unittest + • unittest.main + +
+ +
+ +
+ + unittest.signals +SourceModule
+imports: + functools + • signal + • unittest + • weakref + +
+
+imported by: + unittest + • unittest.main + • unittest.runner + +
+ +
+ +
+ + unittest.suite +SourceModule
+imports: + sys + • unittest + • unittest.case + • unittest.util + +
+
+imported by: + unittest + • unittest.loader + +
+ +
+ +
+ + unittest.util +SourceModule
+imports: + collections + • os.path + • unittest + +
+
+imported by: + unittest + • unittest.case + • unittest.loader + • unittest.mock + • unittest.result + • unittest.suite + +
+ +
+
- urllib + urllib Package + +
+ +
+ + urllib.error +SourceModule
+imports: + io + • urllib + • urllib.response + +
+
+imported by: + urllib.request
@@ -6988,12 +20392,14 @@ imported by:
- urllib.parse + urllib.parse SourceModule
imports: collections + • functools + • ipaddress + • mathre - • systypesunicodedataurllib @@ -7003,26 +20409,106 @@ imports:
- - uu + + urllib.request SourceModule
imports: - binascii - • optparse + _scproxy + • base64 + • bisect + • contextlib + • email + • email.utils + • fnmatch + • ftplib + • getpass + • hashlib + • http.client + • http.cookiejar + • io + • ipaddress + • mimetypes + • nturl2pathos + • re + • socket + • ssl + • stringsys + • tempfile + • time + • urllib + • urllib.error + • urllib.parse + • urllib.response + • warnings + • winreg
+ +
+ +
+ + urllib.response +SourceModule
+imports: + tempfile + • urllib + +
+
+imported by: + urllib.error + • urllib.request + +
+ +
+ +
+ + usercustomize +MissingModule
+imported by: + site + +
+ +
+ +
+ + vms_lib +MissingModule
+imported by: + platform
@@ -7030,44 +20516,118 @@ imported by:
- warnings + warnings SourceModule
imports: _warningsbuiltins + • functools + • inspectlinecacheresystracebacktracemalloc + • types
imported by: DBC_Converter.py + • _collections_abc + • _distutils_hack + • _pydatetime + • _pyrepl.readline + • _strptimeargparseast + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.events + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.sslproto + • asyncio.streams + • asyncio.unix_events + • asyncio.windows_utils + • calendar + • can.broadcastmanager + • can.listener + • can.util + • codeop + • ctypes + • diskcache.core + • email.utilsenum + • functools + • getpassgettext + • globgzip - • hashlib - • importlib - • importlib._abc + • hmac + • http.cookiejar + • http.serverimportlib.abcimportlib.metadata - • importlib.util - • inspect - • io + • importlib.metadata._adapters + • importlib.resources._common + • importlib.resources._functional + • importlib.resources.readerslocalelogging + • multiprocessing.forkserver + • multiprocessing.pool + • multiprocessing.resource_trackeros - • pathlib + • packaging._manylinux + • pathlib._local + • pkg_resourcespkgutil + • platform + • pydocrandom + • re + • re._parser + • rlcompleter + • runpy + • setuptools._distutils._msvccompiler + • setuptools._distutils.ccompiler + • setuptools._distutils.command.bdist + • setuptools._distutils.dist + • setuptools._distutils.extension + • setuptools._distutils.log + • setuptools._distutils.spawn + • setuptools._distutils.sysconfig + • setuptools._distutils.util + • setuptools._distutils.version + • setuptools._vendor.backports.tarfile + • setuptools._vendor.jaraco.context + • setuptools._vendor.jaraco.functools + • setuptools._vendor.more_itertools.more + • setuptools._vendor.packaging._manylinux + • setuptools.command.bdist_wheel + • setuptools.warnings + • sqlite3 + • sqlite3.dbapi2 + • sre_compile + • sre_constantssre_parse + • sslsubprocess + • sysconfig + • tarfile + • tempfilethreading + • traceback + • typing + • typing_extensions + • unittest.async_case + • unittest.case + • unittest.runnerurllib.parse + • urllib.request + • wheel.vendored.packaging._manylinux + • xml.etree.ElementTreezipfile
@@ -7076,7 +20636,7 @@ imported by: + +
+ + webbrowser +SourceModule
+imports: + _ios_support + • argparse + • copy + • ctypes + • os + • shlex + • shutil + • subprocess + • sys + • threading + +
+
+imported by: + pydoc + +
+ +
+ +
+ + wheel +Package
+imports: + __future__ + • wheel + +
+
+imported by: + wheel + • wheel.cli + • wheel.cli.convert + • wheel.macosx_libfile + • wheel.metadata + • wheel.util + • wheel.vendored + • wheel.wheelfile + +
+ +
+ +
+ + wheel.cli +Package
+imports: + __future__ + • argparse + • os + • sys + • wheel + • wheel.cli.convert + • wheel.cli.pack + • wheel.cli.tags + • wheel.cli.unpack + +
+ + +
+ +
+ + wheel.cli.convert +SourceModule
+imports: + 'collections.abc' + • __future__ + • abc + • collections + • email.message + • email.parser + • email.policy + • glob + • os.path + • pathlib + • re + • textwrap + • wheel + • wheel.cli + • wheel.metadata + • wheel.vendored.packaging.tags + • wheel.wheelfile + • zipfile + +
+
+imported by: + wheel.cli + +
+ +
+ +
+ + wheel.cli.pack +SourceModule
+imports: + __future__ + • email.generator + • email.parser + • email.policy + • os.path + • re + • wheel.cli + • wheel.wheelfile + +
+
+imported by: + wheel.cli + +
+ +
+ +
+ + wheel.cli.tags +SourceModule
+imports: + 'collections.abc' + • __future__ + • email.parser + • email.policy + • itertools + • os + • wheel.cli + • wheel.wheelfile + +
+
+imported by: + wheel.cli + +
+ +
+ +
+ + wheel.cli.unpack +SourceModule
+imports: + __future__ + • pathlib + • wheel.cli + • wheel.wheelfile + +
+
+imported by: + wheel.cli + +
+ +
+ +
+ + wheel.macosx_libfile +SourceModule
+imports: + __future__ + • ctypes + • io + • os + • sys + • typing + • wheel + +
+
+imported by: + setuptools.command.bdist_wheel + +
+ +
+ +
+ + wheel.metadata +SourceModule
+imports: + __future__ + • email.message + • email.parser + • functools + • itertools + • os.path + • re + • textwrap + • typing + • wheel + • wheel.vendored.packaging.requirements + +
+
+imported by: + wheel.cli.convert + +
+ +
+ +
+ + wheel.util +SourceModule
+imports: + __future__ + • base64 + • logging + • wheel + +
+
+imported by: + wheel.wheelfile + +
+ +
+ +
+ + wheel.vendored +Package
+imports: + wheel + +
+
+imported by: + wheel.vendored.packaging + +
+ +
+ + + +
+ + wheel.vendored.packaging._elffile +SourceModule
+imports: + enum + • os + • struct + • typing + • wheel.vendored.packaging + +
+ + +
+ +
+ + wheel.vendored.packaging._manylinux +SourceModule
+imports: + _manylinux + • collections + • contextlib + • ctypes + • functools + • os + • re + • sys + • typing + • warnings + • wheel.vendored.packaging + • wheel.vendored.packaging._elffile + +
+ + +
+ + + + + +
+ + wheel.vendored.packaging._structures +SourceModule
+imports: + wheel.vendored.packaging + +
+
+imported by: + wheel.vendored.packaging.version + +
+ +
+ + + + + + + + + + + + + + + +
+ + wheel.wheelfile +SourceModule
+imports: + __future__ + • csv + • hashlib + • io + • os.path + • re + • stat + • time + • typing + • typing_extensions + • wheel + • wheel.cli + • wheel.util + • zipfile + +
+ + +
+ +
+ + win32event +MissingModule
+imported by: + can.broadcastmanager
@@ -7106,6 +21290,555 @@ imported by: winreg (builtin module) + +
+ +
+ + wrapt +Package + + +
+ +
+ + wrapt.__wrapt__ +SourceModule
+imports: + os + • wrapt + • wrapt._wrappers + • wrapt.wrappers + +
+
+imported by: + wrapt + • wrapt.decorators + • wrapt.importer + • wrapt.patches + • wrapt.weakrefs + +
+ +
+ +
+ + wrapt._wrappers C:\Users\MSI\AppData\Local\Programs\Python\Python313\Lib\site-packages\wrapt\_wrappers.cp313-win_amd64.pyd
+imports: + wrapt + +
+
+imported by: + wrapt.__wrapt__ + +
+ +
+ +
+ + wrapt.arguments +SourceModule
+imports: + inspect + • wrapt + +
+
+imported by: + wrapt + • wrapt.decorators + +
+ +
+ +
+ + wrapt.decorators +SourceModule
+imports: + builtins + • functools + • inspect + • sys + • threading + • wrapt + • wrapt.__wrapt__ + • wrapt.arguments + +
+
+imported by: + wrapt + +
+ +
+ +
+ + wrapt.importer +SourceModule
+imports: + importlib.util + • pkg_resources + • sys + • threading + • wrapt + • wrapt.__wrapt__ + +
+
+imported by: + wrapt + +
+ +
+ +
+ + wrapt.patches +SourceModule
+imports: + inspect + • sys + • wrapt + • wrapt.__wrapt__ + +
+
+imported by: + wrapt + +
+ +
+ +
+ + wrapt.weakrefs +SourceModule
+imports: + functools + • weakref + • wrapt + • wrapt.__wrapt__ + +
+
+imported by: + wrapt + +
+ +
+ +
+ + wrapt.wrappers +SourceModule
+imports: + inspect + • operator + • sys + • wrapt + +
+
+imported by: + wrapt.__wrapt__ + +
+ +
+ +
+ + xml +Package
+imports: + xml.sax.expatreader + • xml.sax.xmlreader + +
+
+imported by: + xml.etree + • xml.parsers + • xml.sax + +
+ +
+ + + +
+ + xml.etree.ElementInclude +SourceModule
+imports: + copy + • urllib.parse + • xml.etree + • xml.etree.ElementTree + +
+
+imported by: + _elementtree + +
+ +
+ +
+ + xml.etree.ElementPath +SourceModule
+imports: + re + • xml.etree + +
+
+imported by: + _elementtree + • xml.etree + • xml.etree.ElementTree + +
+ +
+ + + +
+ + xml.etree.cElementTree +SourceModule
+imports: + xml.etree + • xml.etree.ElementTree + +
+
+imported by: + _elementtree + +
+ +
+ +
+ + xml.parsers +Package
+imports: + xml + • xml.parsers.expat + +
+ + +
+ +
+ + xml.parsers.expat +SourceModule
+imports: + pyexpat + • sys + • xml.parsers + +
+
+imported by: + plistlib + • xml.etree.ElementTree + • xml.parsers + • xml.sax.expatreader + • xmlrpc.client + +
+ +
+ +
+ + xml.sax +Package
+imports: + io + • os + • sys + • xml + • xml.sax + • xml.sax._exceptions + • xml.sax.expatreader + • xml.sax.handler + • xml.sax.saxutils + • xml.sax.xmlreader + +
+ + +
+ +
+ + xml.sax._exceptions +SourceModule
+imports: + xml.sax + +
+
+imported by: + xml.sax + • xml.sax.expatreader + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.expatreader +SourceModule +
+imported by: + xml + • xml.sax + +
+ +
+ +
+ + xml.sax.handler +SourceModule
+imports: + xml.sax + +
+
+imported by: + xml.sax + • xml.sax.expatreader + • xml.sax.saxutils + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.saxutils +SourceModule
+imports: + codecs + • io + • os + • sys + • urllib.parse + • urllib.request + • xml.sax + • xml.sax.handler + • xml.sax.xmlreader + +
+
+imported by: + xml.sax + • xml.sax.expatreader + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.xmlreader +SourceModule
+imports: + xml.sax + • xml.sax._exceptions + • xml.sax.handler + • xml.sax.saxutils + +
+
+imported by: + xml + • xml.sax + • xml.sax.expatreader + • xml.sax.saxutils + +
+ +
+ +
+ + xmlrpc +Package
+imported by: + xmlrpc.client + +
+ +
+ +
+ + xmlrpc.client +SourceModule
+imports: + base64 + • datetime + • decimal + • errno + • gzip + • http.client + • io + • sys + • time + • urllib.parse + • xml.parsers + • xml.parsers.expat + • xmlrpc + +
+
+imported by: + multiprocessing.connection
@@ -7113,20 +21846,16 @@ imported by:
- zipfile -SourceModule + +
+ + zipfile._path +Package
+imports: + contextlib + • io + • itertools + • pathlib + • posixpath + • re + • stat + • sys + • zipfile + • zipfile._path.glob + +
+
+imported by: + zipfile + • zipfile._path.glob + +
+ +
+ +
+ + zipfile._path.glob +SourceModule
+imports: + os + • re + • zipfile._path + +
+
+imported by: + zipfile._path
@@ -7150,7 +21934,7 @@ imported by:
- zipimport + zipimport SourceModule
imports: _frozen_importlib @@ -7160,7 +21944,7 @@ imports: • _warningsimportlib.readersmarshal - • os + • structsystimezlib @@ -7168,7 +21952,24 @@ imports:
imported by: - pkgutil + pkg_resources + • pkgutil + +
+ +
+ +
+ + zipp +AliasNode
+imports: + setuptools._vendor.zipp + +
+ @@ -7178,8 +21979,11 @@ imported by: zlib (builtin module)
imported by: - encodings.zlib_codec + can.io.blf + • diskcache.core + • encodings.zlib_codecgzip + • setuptools._vendor.backports.tarfileshutiltarfilezipfile diff --git a/dist/DBC Converter/DBC Converter.exe b/dist/DBC Converter/DBC Converter.exe new file mode 100644 index 0000000..b9205ae Binary files /dev/null and b/dist/DBC Converter/DBC Converter.exe differ diff --git a/dist/DBC Converter/_internal/.icon/icon(org).ico b/dist/DBC Converter/_internal/.icon/icon(org).ico new file mode 100644 index 0000000..c4a2756 Binary files /dev/null and b/dist/DBC Converter/_internal/.icon/icon(org).ico differ diff --git a/dist/DBC Converter/_internal/.icon/icon(org).png b/dist/DBC Converter/_internal/.icon/icon(org).png new file mode 100644 index 0000000..c80b342 Binary files /dev/null and b/dist/DBC Converter/_internal/.icon/icon(org).png differ diff --git a/dist/DBC Converter/_internal/.icon/icon.png b/dist/DBC Converter/_internal/.icon/icon.png new file mode 100644 index 0000000..6a69e07 Binary files /dev/null and b/dist/DBC Converter/_internal/.icon/icon.png differ diff --git a/dist/DBC Converter/_internal/.icon/icon.pptx b/dist/DBC Converter/_internal/.icon/icon.pptx new file mode 100644 index 0000000..1e616b2 Binary files /dev/null and b/dist/DBC Converter/_internal/.icon/icon.pptx differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/MSVCP140.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/MSVCP140.dll new file mode 100644 index 0000000..4fec76d Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/MSVCP140.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/MSVCP140_1.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/MSVCP140_1.dll new file mode 100644 index 0000000..a4cae47 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/MSVCP140_1.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Core.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Core.dll new file mode 100644 index 0000000..40e8de1 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Core.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5DBus.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5DBus.dll new file mode 100644 index 0000000..e06ebf3 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5DBus.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Gui.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Gui.dll new file mode 100644 index 0000000..bf38dda Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Gui.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Network.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Network.dll new file mode 100644 index 0000000..d32644d Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Network.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5PrintSupport.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5PrintSupport.dll new file mode 100644 index 0000000..de4c30b Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5PrintSupport.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Qml.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Qml.dll new file mode 100644 index 0000000..7c2e538 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Qml.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5QmlModels.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5QmlModels.dll new file mode 100644 index 0000000..a0497d3 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5QmlModels.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Quick.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Quick.dll new file mode 100644 index 0000000..4ff0bc6 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Quick.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Svg.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Svg.dll new file mode 100644 index 0000000..edfbf4a Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Svg.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5WebChannel.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5WebChannel.dll new file mode 100644 index 0000000..a14cff6 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5WebChannel.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5WebSockets.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5WebSockets.dll new file mode 100644 index 0000000..1b21504 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5WebSockets.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Widgets.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Widgets.dll new file mode 100644 index 0000000..80ae4e3 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/Qt5Widgets.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/VCRUNTIME140.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/VCRUNTIME140.dll new file mode 100644 index 0000000..459166d Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/VCRUNTIME140.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/VCRUNTIME140_1.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/VCRUNTIME140_1.dll new file mode 100644 index 0000000..fc7bad4 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/VCRUNTIME140_1.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/d3dcompiler_47.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/d3dcompiler_47.dll new file mode 100644 index 0000000..56512f5 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/d3dcompiler_47.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libEGL.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libEGL.dll new file mode 100644 index 0000000..e910cc9 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libEGL.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libGLESv2.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libGLESv2.dll new file mode 100644 index 0000000..d357182 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libGLESv2.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libcrypto-1_1-x64.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libcrypto-1_1-x64.dll new file mode 100644 index 0000000..eb3dfea Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libcrypto-1_1-x64.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libssl-1_1-x64.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libssl-1_1-x64.dll new file mode 100644 index 0000000..e81c5cc Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/libssl-1_1-x64.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/bin/opengl32sw.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/opengl32sw.dll new file mode 100644 index 0000000..475e82a Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/bin/opengl32sw.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/bearer/qgenericbearer.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/bearer/qgenericbearer.dll new file mode 100644 index 0000000..5630514 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/bearer/qgenericbearer.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/generic/qtuiotouchplugin.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/generic/qtuiotouchplugin.dll new file mode 100644 index 0000000..67275c5 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/generic/qtuiotouchplugin.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/iconengines/qsvgicon.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/iconengines/qsvgicon.dll new file mode 100644 index 0000000..cbca63c Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/iconengines/qsvgicon.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qgif.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qgif.dll new file mode 100644 index 0000000..b6e5658 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qgif.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qicns.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qicns.dll new file mode 100644 index 0000000..5b4365f Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qicns.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qico.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qico.dll new file mode 100644 index 0000000..d89a637 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qico.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qjpeg.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qjpeg.dll new file mode 100644 index 0000000..98cdf95 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qjpeg.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qsvg.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qsvg.dll new file mode 100644 index 0000000..c6b732b Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qsvg.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qtga.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qtga.dll new file mode 100644 index 0000000..d4f77f8 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qtga.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qtiff.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qtiff.dll new file mode 100644 index 0000000..43cbc0c Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qtiff.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qwbmp.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qwbmp.dll new file mode 100644 index 0000000..e1dc12c Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qwbmp.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qwebp.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qwebp.dll new file mode 100644 index 0000000..3c49ed8 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/imageformats/qwebp.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qminimal.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qminimal.dll new file mode 100644 index 0000000..c4bcfd8 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qminimal.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qoffscreen.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qoffscreen.dll new file mode 100644 index 0000000..ad29783 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qoffscreen.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qwebgl.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qwebgl.dll new file mode 100644 index 0000000..5f317e5 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qwebgl.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qwindows.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qwindows.dll new file mode 100644 index 0000000..e9c319d Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platforms/qwindows.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platformthemes/qxdgdesktopportal.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platformthemes/qxdgdesktopportal.dll new file mode 100644 index 0000000..34c0231 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/platformthemes/qxdgdesktopportal.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/printsupport/windowsprintersupport.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/printsupport/windowsprintersupport.dll new file mode 100644 index 0000000..2e50171 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/printsupport/windowsprintersupport.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/styles/qwindowsvistastyle.dll b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/styles/qwindowsvistastyle.dll new file mode 100644 index 0000000..c97acd6 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/plugins/styles/qwindowsvistastyle.dll differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_ar.qm b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_ar.qm new file mode 100644 index 0000000..33eda48 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_ar.qm differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_bg.qm b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_bg.qm new file mode 100644 index 0000000..ad48af7 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_bg.qm differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_ca.qm b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_ca.qm new file mode 100644 index 0000000..ae86465 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_ca.qm differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_cs.qm b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_cs.qm new file mode 100644 index 0000000..40aec71 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_cs.qm differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_da.qm b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_da.qm new file mode 100644 index 0000000..eefbe64 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_da.qm differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_de.qm b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_de.qm new file mode 100644 index 0000000..2e94a25 Binary files /dev/null and b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_de.qm differ diff --git a/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_en.qm b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_en.qm new file mode 100644 index 0000000..be651ee --- /dev/null +++ b/dist/DBC Converter/_internal/PyQt5/Qt5/translations/qt_en.qm @@ -0,0 +1 @@ + +License: MIT +Project-URL: homepage, https://github.com/cantools/cantools +Project-URL: documentation, https://cantools.readthedocs.io/ +Project-URL: repository, https://github.com/cantools/cantools +Keywords: can,can bus,arxml,dbc,kcd,automotive +Classifier: License :: OSI Approved :: MIT License +Requires-Python: >=3.9 +Description-Content-Type: text/x-rst +License-File: LICENSE +Requires-Dist: bitstruct>=8.16.1 +Requires-Dist: python-can>=3.3.4 +Requires-Dist: textparser>=0.21.1 +Requires-Dist: diskcache +Requires-Dist: argparse_addons +Requires-Dist: crccheck +Provides-Extra: dev +Requires-Dist: mypy; extra == "dev" +Requires-Dist: pipx; extra == "dev" +Requires-Dist: ruff; extra == "dev" +Requires-Dist: tox; extra == "dev" +Provides-Extra: plot +Requires-Dist: matplotlib; extra == "plot" +Provides-Extra: windows-all +Requires-Dist: windows-curses; (platform_system == "Windows" and platform_python_implementation == "CPython") and extra == "windows-all" + +|github-actions| |coverage| + +About +===== + +CAN BUS tools in Python 3. + +- `DBC`_, `KCD`_, SYM, ARXML 3&4 and CDD file parsing. + +- CAN message encoding and decoding. + +- Simple and extended signal multiplexing. + +- Diagnostic DID encoding and decoding. + +- ``candump`` output decoder. + +- Node `tester`_. + +- `C` source code generator. + +- CAN bus monitor. + +- Graphical plots of signals. + +Project homepage: https://github.com/cantools/cantools + +Documentation: https://cantools.readthedocs.io + +Installation +============ + +.. code-block:: bash + + python3 -m pip install cantools + +Example usage +============= + +Scripting +--------- + +The example starts by parsing a `small DBC-file`_ and printing its +messages and signals. + +.. code-block:: python + + >>> import cantools + >>> from pprint import pprint + >>> db = cantools.database.load_file('tests/files/dbc/motohawk.dbc') + >>> db.messages + [message('ExampleMessage', 0x1f0, False, 8, 'Example message used as template in MotoHawk models.')] + >>> example_message = db.get_message_by_name('ExampleMessage') + >>> pprint(example_message.signals) + [signal('Enable', 7, 1, 'big_endian', False, 1.0, 0, 0.0, 0.0, '-', False, None, {0: 'Disabled', 1: 'Enabled'}, None), + signal('AverageRadius', 6, 6, 'big_endian', False, 0.1, 0, 0.0, 5.0, 'm', False, None, None, ''), + signal('Temperature', 0, 12, 'big_endian', True, 0.01, 250, 229.53, 270.47, 'degK', False, None, None, None)] + +The example continues `encoding`_ a message and sending it on a CAN +bus using the `python-can`_ package. + +.. code-block:: python + + >>> import can + >>> can_bus = can.interface.Bus('vcan0', bustype='socketcan') + >>> data = example_message.encode({'Temperature': 250.1, 'AverageRadius': 3.2, 'Enable': 1}) + >>> message = can.Message(arbitration_id=example_message.frame_id, data=data) + >>> can_bus.send(message) + +Alternatively, a message can be encoded using the `encode_message()`_ +method on the database object. + +The last part of the example receives and `decodes`_ a CAN message. + +.. code-block:: python + + >>> message = can_bus.recv() + >>> db.decode_message(message.arbitration_id, message.data) + {'AverageRadius': 3.2, 'Enable': 'Enabled', 'Temperature': 250.09} + +See `examples`_ for additional examples. + +Command line tool +----------------- + +The decode subcommand +^^^^^^^^^^^^^^^^^^^^^ + +Decode CAN frames captured with the Linux program ``candump``. + +.. code-block:: text + + $ candump vcan0 | python3 -m cantools decode tests/files/dbc/motohawk.dbc + vcan0 1F0 [8] 80 4A 0F 00 00 00 00 00 :: + ExampleMessage( + Enable: 'Enabled' -, + AverageRadius: 0.0 m, + Temperature: 255.92 degK + ) + vcan0 1F0 [8] 80 4A 0F 00 00 00 00 00 :: + ExampleMessage( + Enable: 'Enabled' -, + AverageRadius: 0.0 m, + Temperature: 255.92 degK + ) + vcan0 1F0 [8] 80 4A 0F 00 00 00 00 00 :: + ExampleMessage( + Enable: 'Enabled' -, + AverageRadius: 0.0 m, + Temperature: 255.92 degK + ) + +Alternatively, the decoded message can be printed on a single line: + +.. code-block:: text + + $ candump vcan0 | python3 -m cantools decode --single-line tests/files/dbc/motohawk.dbc + vcan0 1F0 [8] 80 4A 0F 00 00 00 00 00 :: ExampleMessage(Enable: 'Enabled' -, AverageRadius: 0.0 m, Temperature: 255.92 degK) + vcan0 1F0 [8] 80 4A 0F 00 00 00 00 00 :: ExampleMessage(Enable: 'Enabled' -, AverageRadius: 0.0 m, Temperature: 255.92 degK) + vcan0 1F0 [8] 80 4A 0F 00 00 00 00 00 :: ExampleMessage(Enable: 'Enabled' -, AverageRadius: 0.0 m, Temperature: 255.92 degK) + +The plot subcommand +^^^^^^^^^^^^^^^^^^^ + +The plot subcommand is similar to the decode subcommand but messages are visualized using `matplotlib`_ instead of being printed to stdout. + +.. code-block:: bash + + $ candump -l vcan0 + $ cat candump-2021-01-04_180521.log + (1609779922.655421) vcan0 00000343#B204B9049C049C04 + (1609779922.655735) vcan0 0000024A#120527052E051905 + (1609779923.657524) vcan0 00000343#C404C404CB04C404 + (1609779923.658086) vcan0 0000024A#8B058B058B059205 + (1609779924.659912) vcan0 00000343#5C04790479045504 + (1609779924.660471) vcan0 0000024A#44064B0659064406 + (1609779925.662277) vcan0 00000343#15040704F203F203 + (1609779925.662837) vcan0 0000024A#8B069906A706A706 + (1609779926.664191) vcan0 00000343#BC03B503A703BC03 + (1609779926.664751) vcan0 0000024A#A006A706C406C406 + + $ cat candump-2021-01-04_180521.log | python3 -m cantools plot tests/files/dbc/abs.dbc + +.. image:: https://github.com/cantools/cantools/raw/master/docs/plot-1.png + +If you don't want to show all signals you can select the desired signals with command line arguments. +A ``*`` can stand for any number of any character, a ``?`` for exactly one arbitrary character. +Signals separated by a ``-`` are displayed in separate subplots. +Optionally a format can be specified after a signal, separated by a colon. + +.. code-block:: bash + + $ cat candump-2021-01-04_180521.log | python3 -m cantools plot tests/files/dbc/abs.dbc '*33.*fl:-<' '*33.*fr:->' - '*33.*rl:-<' '*33.*rr:->' + +.. image:: https://github.com/cantools/cantools/raw/master/docs/plot-2-subplots.png + +Signals with a different range of values can be displayed in the same subplot on different vertical axes by separating them with a comma. + +.. code-block:: bash + + $ cat candump-2021-01-04_180521.log | cantools plot --auto-color tests/files/dbc/abs.dbc -- \ + --ylabel 'Bremse 33' '*_33.*fl*:-<' '*_33.*fr*:>' '*_33.*rl*:3' '*_33.*rr*:4' , \ + --ylabel 'Bremse 2' '*_2.*fl*:-<' '*_2.*fr*:>' '*_2.*rl*:3' '*_2.*rr*:4' + +.. image:: https://github.com/cantools/cantools/raw/master/docs/plot-2-axes.png + +Matplotlib comes with different preinstalled styles that you can use: + +.. code-block:: bash + + $ cat candump-2021-01-04_180521.log | cantools plot tests/files/dbc/abs.dbc --style seaborn + +.. image:: https://github.com/cantools/cantools/raw/master/docs/plot-seaborn.png + +You can try all available styles with + +.. code-block:: bash + + $ cantools plot --list-styles . | sed -n '/^- /s/^- //p' | while IFS= read -r style; do + cat candump-2021-01-04_180521.log | cantools plot tests/files/dbc/abs.dbc --style "$style" --title "--style '$style'" + done + +For more information see + +.. code-block:: bash + + $ python3 -m cantools plot --help + +Note that by default matplotlib is not installed with cantools. But it can be by specifying an extra +at installation: + +.. code-block:: bash + + $ python3 -m pip install cantools[plot] + +The dump subcommand +^^^^^^^^^^^^^^^^^^^ + +Dump given database in a human readable format: + +.. code-block:: text + + $ python3 -m cantools dump tests/files/dbc/motohawk.dbc + ================================= Messages ================================= + + ------------------------------------------------------------------------ + + Name: ExampleMessage + Id: 0x1f0 + Length: 8 bytes + Cycle time: - ms + Senders: PCM1 + Layout: + + Bit + + 7 6 5 4 3 2 1 0 + +---+---+---+---+---+---+---+---+ + 0 |<-x|<---------------------x|<--| + +---+---+---+---+---+---+---+---+ + | +-- AverageRadius + +-- Enable + +---+---+---+---+---+---+---+---+ + 1 |-------------------------------| + +---+---+---+---+---+---+---+---+ + 2 |----------x| | | | | | + B +---+---+---+---+---+---+---+---+ + y +-- Temperature + t +---+---+---+---+---+---+---+---+ + e 3 | | | | | | | | | + +---+---+---+---+---+---+---+---+ + 4 | | | | | | | | | + +---+---+---+---+---+---+---+---+ + 5 | | | | | | | | | + +---+---+---+---+---+---+---+---+ + 6 | | | | | | | | | + +---+---+---+---+---+---+---+---+ + 7 | | | | | | | | | + +---+---+---+---+---+---+---+---+ + + Signal tree: + + -- {root} + +-- Enable + +-- AverageRadius + +-- Temperature + + Signal choices: + + Enable + 0 Disabled + 1 Enabled + + ------------------------------------------------------------------------ + +The list subcommand +^^^^^^^^^^^^^^^^^^^ + +Print all information of a given database in a human readable +format. This is very similar to the "dump" subcommand, but the output +is less pretty, slightly more comprehensive and easier to parse by +shell scripts: + +.. code-block:: bash + + $ python3 -m cantools list -a tests/files/dbc/motohawk.dbc + ExampleMessage: + Comment[None]: Example message used as template in MotoHawk models. + Frame ID: 0x1f0 (496) + Size: 8 bytes + Is extended frame: False + Signals: + Enable: + Type: Integer + Start bit: 7 + Length: 1 bits + Unit: - + Is signed: False + Named values: + 0: Disabled + +The generate C source subcommand +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Generate `C` source code from given database. + +The generated code contains: + +- Message `structs`_. + +- Message `pack`_ and `unpack`_ functions. + +- Signal `encode`_ and `decode`_ functions. + +- Frame id, length, type, cycle time and signal choices `defines`_. + +Known limitations: + +- The maximum signal size is 64 bits, which in practice is never + exceeded. + +Below is an example of how to generate C source code from a +database. The database is ``tests/files/dbc/motohawk.dbc``. + +.. code-block:: text + + $ python3 -m cantools generate_c_source tests/files/dbc/motohawk.dbc + Successfully generated motohawk.h and motohawk.c. + +See `motohawk.h`_ and `motohawk.c`_ for the contents of the generated +files. + +In this example we use ``--use-float`` so floating point numbers in the generated +code are single precision (``float``) instead of double precision (``double``). + +.. code-block:: text + + $ python3 -m cantools generate_c_source --use-float tests/files/dbc/motohawk.dbc + Successfully generated motohawk.h and motohawk.c. + +In the next example we use ``--database-name`` to set a custom +namespace for all generated types, defines and functions. The output +file names are also changed by this option. + +.. code-block:: text + + $ python3 -m cantools generate_c_source --database-name my_database_name tests/files/dbc/motohawk.dbc + Successfully generated my_database_name.h and my_database_name.c. + +See `my_database_name.h`_ and `my_database_name.c`_ for the contents +of the generated files. + +In the next example we use ``--no-floating-point-numbers`` to generate +code without floating point types, i.e. ``float`` and ``double``. + +.. code-block:: text + + $ python3 -m cantools generate_c_source --no-floating-point-numbers tests/files/dbc/motohawk.dbc + Successfully generated motohawk.h and motohawk.c. + +See `motohawk_no_floating_point_numbers.h`_ and +`motohawk_no_floating_point_numbers.c`_ for the contents of the +generated files. + +In the last example ``--node`` is used to generate +message pack functions only for messages sent by the specified node and unpack +functions only for messages with its signal receivers belonging to that node. + +.. code-block:: text + + $ cantools generate_c_source tests/files/dbc/motohawk.dbc --node PCM1 + Successfully generated motohawk.h and motohawk.c. + +See `motohawk_sender_node.h`_ and +`motohawk_sender_node.c`_ for the contents of the +generated files. + +Other C code generators: + +- http://www.coderdbc.com + +- https://github.com/howerj/dbcc + +- https://github.com/lonkamikaze/hsk-libs/blob/master/scripts/dbc2c.awk + +- https://sourceforge.net/projects/comframe/ + +The monitor subcommand +^^^^^^^^^^^^^^^^^^^^^^ + +Monitor CAN bus traffic in a text based user interface. + +.. code-block:: text + + $ python3 -m cantools monitor tests/files/dbc/motohawk.dbc + +.. image:: https://github.com/cantools/cantools/raw/master/docs/monitor.png + +The menu at the bottom of the monitor shows the available commands. + +- Quit: Quit the monitor. Ctrl-C can be used as well. + +- Filter: Only display messages matching given regular + expression. Press to return to the menu from the filter + input line. + +- Play/Pause: Toggle between playing and paused (or running and freezed). + +- Reset: Reset the monitor to its initial state. + +Contributing +============ + +#. Fork the repository. + +#. Install prerequisites. + + .. code-block:: text + + python3 -m pip install -e .[dev] + +#. Implement the new feature or bug fix. + +#. Implement test case(s) to ensure that future changes do not break + legacy. + +#. Run the linters + + .. code-block:: text + + ruff check src + mypy src + +#. Run the tests. + + .. code-block:: text + + tox -e py + +#. Create a pull request. + +.. |github-actions| image:: https://github.com/cantools/cantools/actions/workflows/pythonpackage.yml/badge.svg?branch=master + :target: https://github.com/cantools/cantools/actions/workflows/pythonpackage.yml + :alt: Github Actions workflow status + +.. |coverage| image:: https://coveralls.io/repos/github/cantools/cantools/badge.svg?branch=master + :target: https://coveralls.io/github/cantoolscantools?branch=master + :alt: Test coverage reports on Coveralls.io + + +.. _small DBC-file: https://github.com/cantools/cantools/blob/master/tests/files/dbc/motohawk.dbc + +.. _motohawk.dbc: https://github.com/cantools/cantools/blob/master/tests/files/dbc/motohawk.dbc + +.. _python-can: https://python-can.readthedocs.io/en/master/ + +.. _DBC: http://www.socialledge.com/sjsu/index.php?title=DBC_Format + +.. _KCD: https://github.com/julietkilo/kcd + +.. _tester: http://cantools.readthedocs.io/en/latest/#cantools.tester.Tester + +.. _encoding: http://cantools.readthedocs.io/en/latest/#cantools.database.can.Message.encode + +.. _encode_message(): http://cantools.readthedocs.io/en/latest/#cantools.database.can.Database.encode_message + +.. _decodes: http://cantools.readthedocs.io/en/latest/#cantools.database.can.Database.decode_message + +.. _examples: https://github.com/cantools/cantools/blob/master/examples + +.. _structs: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk.h#L58 + +.. _pack: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk.h#L88 + +.. _unpack: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk.h#L102 + +.. _encode: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk.h#L116 + +.. _decode: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk.h#L125 + +.. _defines: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk.h#L42 + +.. _motohawk.h: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk.h + +.. _motohawk.c: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk.c + +.. _my_database_name.h: https://github.com/cantools/cantools/blob/master/tests/files/c_source/my_database_name.h + +.. _my_database_name.c: https://github.com/cantools/cantools/blob/master/tests/files/c_source/my_database_name.c + +.. _motohawk_no_floating_point_numbers.h: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk_no_floating_point_numbers.h + +.. _motohawk_no_floating_point_numbers.c: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk_no_floating_point_numbers.c + +.. _motohawk_sender_node.h: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk_sender_node.h + +.. _motohawk_sender_node.c: https://github.com/cantools/cantools/blob/master/tests/files/c_source/motohawk_sender_node.c + +.. _matplotlib: https://matplotlib.org/ diff --git a/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/RECORD b/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/RECORD new file mode 100644 index 0000000..a4d054b --- /dev/null +++ b/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/RECORD @@ -0,0 +1,132 @@ +../../Scripts/cantools.exe,sha256=Sb1EuGixzTWJ0RcO3RGGevfvMH5KLodtAH0Lg-EIiF4,108417 +cantools-40.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +cantools-40.0.0.dist-info/LICENSE,sha256=7T2TtOL_oh75b3QyWjeJu-6qMOQpJXmIW0hddxJ1L-k,1085 +cantools-40.0.0.dist-info/METADATA,sha256=eaorpFjqlfQ_y2BQEUWOkVRxVEyGn7NS0ihugoG98tc,16805 +cantools-40.0.0.dist-info/RECORD,, +cantools-40.0.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +cantools-40.0.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91 +cantools-40.0.0.dist-info/entry_points.txt,sha256=p5cKpHKEUgX0e8zmetd96BEVi4WNq1wn_dIciA2Dx50,53 +cantools-40.0.0.dist-info/top_level.txt,sha256=Tl_rJpBXgVrhgmBrKozbrcQrKnOIX89JqFF7aF_4EbA,9 +cantools/__init__.py,sha256=dShD_0LbGClNr5kVJq87hHForHdbzRWimfeHFF-MFW0,3199 +cantools/__main__.py,sha256=V5nadWmxSTd8D7vRUsqjlHBswGCFUy3EX7yGNSsqBuM,71 +cantools/__pycache__/__init__.cpython-313.pyc,, +cantools/__pycache__/__main__.cpython-313.pyc,, +cantools/__pycache__/errors.cpython-313.pyc,, +cantools/__pycache__/j1939.cpython-313.pyc,, +cantools/__pycache__/logreader.cpython-313.pyc,, +cantools/__pycache__/tester.cpython-313.pyc,, +cantools/__pycache__/typechecking.cpython-313.pyc,, +cantools/autosar/__init__.py,sha256=KwuJfKbaKOyBXmCbj_b3l3JSyCd6B-9jm7vBInPGLuU,125 +cantools/autosar/__pycache__/__init__.cpython-313.pyc,, +cantools/autosar/__pycache__/end_to_end.cpython-313.pyc,, +cantools/autosar/__pycache__/secoc.cpython-313.pyc,, +cantools/autosar/__pycache__/snakeauth.cpython-313.pyc,, +cantools/autosar/end_to_end.py,sha256=Wgoi_YbKGW_NDZjFrgRafR-JYi0v7zDiu0ulUiX0nMM,5679 +cantools/autosar/secoc.py,sha256=zaSISt45oFBIbFe2cj7x6sac54nrLg0Tk2dv1RKtuYA,3771 +cantools/autosar/snakeauth.py,sha256=Fv-IjzXdBF2M7rIpEB7So-i238e_MyuhGnYYQe0bDVg,1204 +cantools/database/__init__.py,sha256=MjqwEd8a0qwA3N5xtwvad9Su38UrpdqTqI7fyEJTNHI,13980 +cantools/database/__pycache__/__init__.cpython-313.pyc,, +cantools/database/__pycache__/conversion.cpython-313.pyc,, +cantools/database/__pycache__/errors.cpython-313.pyc,, +cantools/database/__pycache__/namedsignalvalue.cpython-313.pyc,, +cantools/database/__pycache__/utils.cpython-313.pyc,, +cantools/database/can/__init__.py,sha256=1qeDi4SCYQ350zImodvQ52GKRRo3fRMoLxQ8pkVOnvI,157 +cantools/database/can/__pycache__/__init__.cpython-313.pyc,, +cantools/database/can/__pycache__/attribute.cpython-313.pyc,, +cantools/database/can/__pycache__/attribute_definition.cpython-313.pyc,, +cantools/database/can/__pycache__/bus.cpython-313.pyc,, +cantools/database/can/__pycache__/c_source.cpython-313.pyc,, +cantools/database/can/__pycache__/database.cpython-313.pyc,, +cantools/database/can/__pycache__/environment_variable.cpython-313.pyc,, +cantools/database/can/__pycache__/internal_database.cpython-313.pyc,, +cantools/database/can/__pycache__/message.cpython-313.pyc,, +cantools/database/can/__pycache__/node.cpython-313.pyc,, +cantools/database/can/__pycache__/signal.cpython-313.pyc,, +cantools/database/can/__pycache__/signal_group.cpython-313.pyc,, +cantools/database/can/attribute.py,sha256=VAKQU3jGcxv4gLByEd7UDkiOPkKdmyBurM2RBQ8EUts,775 +cantools/database/can/attribute_definition.py,sha256=jh5OAR2wBOBeOA8cWKQt84FtVGMhGw0Tyh8a3tnNnvw,2190 +cantools/database/can/bus.py,sha256=2E6AS0JeXycYH9MkRPIGrvi9cVLa8lUasJYbYFfHYbQ,2496 +cantools/database/can/c_source.py,sha256=a2vHyAM9OBDcL13WMcvAiKzFuYCnm3UONN-vfezU2Ts,59837 +cantools/database/can/database.py,sha256=JQPgn-se8857z9QkE9yEnEinMRpOlhcDydwpqkqfAIM,21416 +cantools/database/can/environment_variable.py,sha256=lzr7ipETkSe-4MBJgiDHghZJNXmiQUzUyZH2c5bGM7I,3342 +cantools/database/can/formats/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +cantools/database/can/formats/__pycache__/__init__.cpython-313.pyc,, +cantools/database/can/formats/__pycache__/dbc.cpython-313.pyc,, +cantools/database/can/formats/__pycache__/dbc_specifics.cpython-313.pyc,, +cantools/database/can/formats/__pycache__/kcd.cpython-313.pyc,, +cantools/database/can/formats/__pycache__/sym.cpython-313.pyc,, +cantools/database/can/formats/__pycache__/utils.cpython-313.pyc,, +cantools/database/can/formats/arxml/__init__.py,sha256=QIrXBHtivZk38P6VPwdOFYobByLABe-W7zw6rvwJUKc,2658 +cantools/database/can/formats/arxml/__pycache__/__init__.cpython-313.pyc,, +cantools/database/can/formats/arxml/__pycache__/bus_specifics.cpython-313.pyc,, +cantools/database/can/formats/arxml/__pycache__/database_specifics.cpython-313.pyc,, +cantools/database/can/formats/arxml/__pycache__/ecu_extract_loader.cpython-313.pyc,, +cantools/database/can/formats/arxml/__pycache__/end_to_end_properties.cpython-313.pyc,, +cantools/database/can/formats/arxml/__pycache__/message_specifics.cpython-313.pyc,, +cantools/database/can/formats/arxml/__pycache__/node_specifics.cpython-313.pyc,, +cantools/database/can/formats/arxml/__pycache__/secoc_properties.cpython-313.pyc,, +cantools/database/can/formats/arxml/__pycache__/system_loader.cpython-313.pyc,, +cantools/database/can/formats/arxml/__pycache__/utils.cpython-313.pyc,, +cantools/database/can/formats/arxml/bus_specifics.py,sha256=RsfMykp-KeyBvwqQCRxqU6Ll9Yj-spAYeBn-E3AC9Og,146 +cantools/database/can/formats/arxml/database_specifics.py,sha256=pqhu-npNpduae3LRwxbjE51TkVNYTAvCE_n6qnKNswM,455 +cantools/database/can/formats/arxml/ecu_extract_loader.py,sha256=1EpMAkpn1-H2Df1Yd19YyDa2_3-_Zr17hj6aoy_YPX4,12913 +cantools/database/can/formats/arxml/end_to_end_properties.py,sha256=uXcO3HvMyIn7jJ20ulkd6COl6VTg9a2zkUcjcxVUq_g,1427 +cantools/database/can/formats/arxml/message_specifics.py,sha256=zpRxcsD7Nxx5RjYQNHHHKLVmmVKag_RPz2H2dGdoXHU,2087 +cantools/database/can/formats/arxml/node_specifics.py,sha256=ctWaS90gfXVqM-14_6Y1o39uRhWYpliROtO9udwXP-c,224 +cantools/database/can/formats/arxml/secoc_properties.py,sha256=tQkA3L2h_2IR1I-Cq3DIVbiebwNpOH5MxAfgz4kalqc,3282 +cantools/database/can/formats/arxml/system_loader.py,sha256=5hmobxU_-L_RO-1Egp7TYlZJUfE1UEEVrJ2eKqzBS4w,97943 +cantools/database/can/formats/arxml/utils.py,sha256=8KPdCXqiabNY6pkJVu0i4NNDGlW4dDb4EaYD7GngCmA,2624 +cantools/database/can/formats/dbc.py,sha256=9UmBZLaGdUaRCDB95l8ebDPOl_dNGrN5UXPh7fTJN8Q,67680 +cantools/database/can/formats/dbc_specifics.py,sha256=d_ucv7Bu2zuHx_SLUIFN9NtZJcT7qXtjd188stNqcM8,2453 +cantools/database/can/formats/kcd.py,sha256=Dwu4n6QMaG5ftz-8mCLogvmnfDZcnz6al3AZVhaVliw,15247 +cantools/database/can/formats/sym.py,sha256=puVKeHI6GLqId9T32ynjnYAieDThjGDyFrCqhiuPwD0,35269 +cantools/database/can/formats/utils.py,sha256=1w1z3N18cEpD-EDCAWA9d3zKMQZx8WPM049arLDoPBU,355 +cantools/database/can/internal_database.py,sha256=JR-y8sItyu09HP8qahW_l3woFto55VSVYOZ3KSAnh60,826 +cantools/database/can/message.py,sha256=FFLeeFwxEb0beP8kmh_LnCPdHPPpbxvjXw5kxg-KMNg,49085 +cantools/database/can/node.py,sha256=Gj2TDAxgDqlyPE1zmfLMr9kGAdu0g_UMhY81pMgeIDo,2980 +cantools/database/can/signal.py,sha256=XWinJCBPfeS1H7BcaKhlVe75cFUZVSDGwc0Wbh8TE6k,10792 +cantools/database/can/signal_group.py,sha256=CkbHppcrCP6ESvu8x4qIbULIyb4s2jNc2GtCZOLl7eY,1293 +cantools/database/conversion.py,sha256=2CoykOApx8UtfXlk4pAXDCTUetohb2fqDPWsdlH_9Sc,9842 +cantools/database/diagnostics/__init__.py,sha256=vqZ2N40Vpr37GlcIwnONuVFRenVh5Scmfc40KTReFJE,75 +cantools/database/diagnostics/__pycache__/__init__.cpython-313.pyc,, +cantools/database/diagnostics/__pycache__/data.cpython-313.pyc,, +cantools/database/diagnostics/__pycache__/database.cpython-313.pyc,, +cantools/database/diagnostics/__pycache__/did.cpython-313.pyc,, +cantools/database/diagnostics/__pycache__/internal_database.cpython-313.pyc,, +cantools/database/diagnostics/data.py,sha256=AAF2fSwS_24j-_pk1bAyQm29StqXfAuxPtilxUPbOt8,5195 +cantools/database/diagnostics/database.py,sha256=3MCSskJpDirWRnNK3tryWbKxq-O6vIAAxCrNJkn5IZA,3170 +cantools/database/diagnostics/did.py,sha256=WO1kkqqWtG_ygtH9Lk3lvuAsm06DVz36RC6tiS9y59E,3352 +cantools/database/diagnostics/formats/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +cantools/database/diagnostics/formats/__pycache__/__init__.cpython-313.pyc,, +cantools/database/diagnostics/formats/__pycache__/cdd.cpython-313.pyc,, +cantools/database/diagnostics/formats/cdd.py,sha256=OGgHeL4hg_gbWG8orEbdi88kCMS8vRCorn1gX5BJPew,6754 +cantools/database/diagnostics/internal_database.py,sha256=E90ThC42YoB0okiQ3zOjMSMISAdbel6UKkE_5cv0KqM,161 +cantools/database/errors.py,sha256=F-y-Oagw39fYnLWTV-Vu-ysNPVFH4QWd4KnE8L5i4jY,179 +cantools/database/namedsignalvalue.py,sha256=2-McjdG9--gq3sv4ctbc54TOlqThAZorqFaF1VY3_g8,1593 +cantools/database/utils.py,sha256=xrN4g8CsGAL4V8zAcVWzdPlXQ0f0cdqU61vhkeEQKhQ,15980 +cantools/errors.py,sha256=0AdPszq7kkayF5OtHciuT3B1FQRHxM8C1mcKgJVyfwE,89 +cantools/j1939.py,sha256=_3uWp8p9uf3GdZDYHtMBCPeOSkqDw3bWIVGCFekaRBs,4484 +cantools/logreader.py,sha256=_MgDs-MoPX_W0HX3TJ5N5mwZWqsekREvc2f5LxOAja4,14963 +cantools/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +cantools/subparsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +cantools/subparsers/__pycache__/__init__.cpython-313.pyc,, +cantools/subparsers/__pycache__/__utils__.cpython-313.pyc,, +cantools/subparsers/__pycache__/convert.cpython-313.pyc,, +cantools/subparsers/__pycache__/decode.cpython-313.pyc,, +cantools/subparsers/__pycache__/generate_c_source.cpython-313.pyc,, +cantools/subparsers/__pycache__/list.cpython-313.pyc,, +cantools/subparsers/__pycache__/monitor.cpython-313.pyc,, +cantools/subparsers/__pycache__/plot.cpython-313.pyc,, +cantools/subparsers/__utils__.py,sha256=7hV150FTaiPegd_WDMyJPC9pl5XsbzN0XTyBCmvwdxE,8780 +cantools/subparsers/convert.py,sha256=ajxpdvl3DLxwBfoSx_XaIA_V2dLjzfv-4ySuSyKxigQ,1493 +cantools/subparsers/decode.py,sha256=vuxOBS3E0XcMFogr9OMNLqnvD1qecjOiUooGGXfmIKI,2947 +cantools/subparsers/dump/__init__.py,sha256=fJTBEqjq29K9Wt39gP6_ZgnXbG6p7SJScmlJvR8qvgU,5816 +cantools/subparsers/dump/__pycache__/__init__.cpython-313.pyc,, +cantools/subparsers/dump/__pycache__/formatting.cpython-313.pyc,, +cantools/subparsers/dump/formatting.py,sha256=ljROsdSrsxgJtckZi0SvhRmd__L31A4SS3eoJ6BJofQ,11841 +cantools/subparsers/generate_c_source.py,sha256=ifB44lGD_HnVaDvunz0caS6zrJ8LcnUHVbN5Aj9fXvw,4091 +cantools/subparsers/list.py,sha256=SDnjwC1_RKm02jqwVEuqofCfNZl_rNJwUE3xYYHxVng,14391 +cantools/subparsers/monitor.py,sha256=at_ggsrV0bZqL6On_3C-4D3J1yTX0w_4XxvUNAe478M,20071 +cantools/subparsers/plot.py,sha256=OpNzyEN5cynBBPDAJgbu_Kzr6-n7--iORvlpuqaT7ow,34633 +cantools/tester.py,sha256=1Vll_TKqzApfZ-nXBesqancawrIZ3ub5MksYTPPqaRQ,15370 +cantools/typechecking.py,sha256=U1B-6NV-IGx9vtozvOJZ2BMREv-BdWbpcKWrH9LHa2o,1957 diff --git a/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/REQUESTED b/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/WHEEL b/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/WHEEL new file mode 100644 index 0000000..ae527e7 --- /dev/null +++ b/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (75.6.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/entry_points.txt b/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/entry_points.txt new file mode 100644 index 0000000..eac4cfe --- /dev/null +++ b/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/entry_points.txt @@ -0,0 +1,2 @@ +[console_scripts] +cantools = cantools.__init__:_main diff --git a/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/top_level.txt b/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/top_level.txt new file mode 100644 index 0000000..990071a --- /dev/null +++ b/dist/DBC Converter/_internal/cantools-40.0.0.dist-info/top_level.txt @@ -0,0 +1 @@ +cantools diff --git a/icon/icon.ico b/dist/DBC Converter/_internal/icon.ico similarity index 100% rename from icon/icon.ico rename to dist/DBC Converter/_internal/icon.ico diff --git a/dist/DBC Converter/_internal/img/add_file.png b/dist/DBC Converter/_internal/img/add_file.png new file mode 100644 index 0000000..954b12f Binary files /dev/null and b/dist/DBC Converter/_internal/img/add_file.png differ diff --git a/dist/DBC Converter/_internal/img/add_folder.png b/dist/DBC Converter/_internal/img/add_folder.png new file mode 100644 index 0000000..9aed871 Binary files /dev/null and b/dist/DBC Converter/_internal/img/add_folder.png differ diff --git a/dist/DBC Converter/_internal/img/convert.png b/dist/DBC Converter/_internal/img/convert.png new file mode 100644 index 0000000..6017c65 Binary files /dev/null and b/dist/DBC Converter/_internal/img/convert.png differ diff --git a/dist/DBC Converter/_internal/img/delete_all.png b/dist/DBC Converter/_internal/img/delete_all.png new file mode 100644 index 0000000..481a6b7 Binary files /dev/null and b/dist/DBC Converter/_internal/img/delete_all.png differ diff --git a/dist/DBC Converter/_internal/img/delete_description.png b/dist/DBC Converter/_internal/img/delete_description.png new file mode 100644 index 0000000..7049bc1 Binary files /dev/null and b/dist/DBC Converter/_internal/img/delete_description.png differ diff --git a/dist/DBC Converter/_internal/img/delete_file.png b/dist/DBC Converter/_internal/img/delete_file.png new file mode 100644 index 0000000..cbe3abe Binary files /dev/null and b/dist/DBC Converter/_internal/img/delete_file.png differ diff --git a/dist/DBC Converter/_internal/libcrypto-3.dll b/dist/DBC Converter/_internal/libcrypto-3.dll new file mode 100644 index 0000000..778f4ed Binary files /dev/null and b/dist/DBC Converter/_internal/libcrypto-3.dll differ diff --git a/dist/DBC Converter/_internal/libffi-8.dll b/dist/DBC Converter/_internal/libffi-8.dll new file mode 100644 index 0000000..8ebbbe8 Binary files /dev/null and b/dist/DBC Converter/_internal/libffi-8.dll differ diff --git a/dist/DBC Converter/_internal/libssl-3.dll b/dist/DBC Converter/_internal/libssl-3.dll new file mode 100644 index 0000000..569658b Binary files /dev/null and b/dist/DBC Converter/_internal/libssl-3.dll differ diff --git a/dist/DBC Converter/_internal/pyexpat.pyd b/dist/DBC Converter/_internal/pyexpat.pyd new file mode 100644 index 0000000..b9586ba Binary files /dev/null and b/dist/DBC Converter/_internal/pyexpat.pyd differ diff --git a/dist/DBC Converter/_internal/python3.dll b/dist/DBC Converter/_internal/python3.dll new file mode 100644 index 0000000..6b9a7fa Binary files /dev/null and b/dist/DBC Converter/_internal/python3.dll differ diff --git a/dist/DBC Converter/_internal/python313.dll b/dist/DBC Converter/_internal/python313.dll new file mode 100644 index 0000000..b04d70f Binary files /dev/null and b/dist/DBC Converter/_internal/python313.dll differ diff --git a/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/INSTALLER b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/LICENSE.txt b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/LICENSE.txt new file mode 100644 index 0000000..65c5ca8 --- /dev/null +++ b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/LICENSE.txt @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. diff --git a/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/METADATA b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/METADATA new file mode 100644 index 0000000..289756b --- /dev/null +++ b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/METADATA @@ -0,0 +1,218 @@ +Metadata-Version: 2.1 +Name: python-can +Version: 4.5.0 +Summary: Controller Area Network interface module for Python +Author: python-can contributors +License: LGPL v3 +Project-URL: homepage, https://github.com/hardbyte/python-can +Project-URL: documentation, https://python-can.readthedocs.io +Project-URL: repository, https://github.com/hardbyte/python-can +Project-URL: changelog, https://github.com/hardbyte/python-can/blob/develop/CHANGELOG.md +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Console +Classifier: Intended Audience :: Developers +Classifier: Intended Audience :: Education +Classifier: Intended Audience :: Information Technology +Classifier: Intended Audience :: Manufacturing +Classifier: Intended Audience :: Telecommunications Industry +Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3) +Classifier: Natural Language :: English +Classifier: Operating System :: MacOS +Classifier: Operating System :: Microsoft :: Windows +Classifier: Operating System :: POSIX :: Linux +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Software Development :: Embedded Systems +Classifier: Topic :: Software Development :: Embedded Systems :: Controller Area Network (CAN) +Classifier: Topic :: System :: Hardware :: Hardware Drivers +Classifier: Topic :: System :: Logging +Classifier: Topic :: System :: Monitoring +Classifier: Topic :: System :: Networking +Classifier: Topic :: Utilities +Requires-Python: >=3.8 +Description-Content-Type: text/x-rst +License-File: LICENSE.txt +Requires-Dist: wrapt~=1.10 +Requires-Dist: packaging>=23.1 +Requires-Dist: typing_extensions>=3.10.0.0 +Requires-Dist: msgpack~=1.1.0; platform_system != "Windows" +Provides-Extra: lint +Requires-Dist: pylint==3.2.*; extra == "lint" +Requires-Dist: ruff==0.7.0; extra == "lint" +Requires-Dist: black==24.10.*; extra == "lint" +Requires-Dist: mypy==1.12.*; extra == "lint" +Provides-Extra: pywin32 +Requires-Dist: pywin32>=305; extra == "pywin32" +Provides-Extra: seeedstudio +Requires-Dist: pyserial>=3.0; extra == "seeedstudio" +Provides-Extra: serial +Requires-Dist: pyserial~=3.0; extra == "serial" +Provides-Extra: neovi +Requires-Dist: filelock; extra == "neovi" +Requires-Dist: python-ics>=2.12; extra == "neovi" +Provides-Extra: canalystii +Requires-Dist: canalystii>=0.1.0; extra == "canalystii" +Provides-Extra: cantact +Requires-Dist: cantact>=0.0.7; extra == "cantact" +Provides-Extra: cvector +Requires-Dist: python-can-cvector; extra == "cvector" +Provides-Extra: gs-usb +Requires-Dist: gs_usb>=0.2.1; extra == "gs-usb" +Provides-Extra: nixnet +Requires-Dist: nixnet>=0.3.2; extra == "nixnet" +Provides-Extra: pcan +Requires-Dist: uptime~=3.0.1; extra == "pcan" +Provides-Extra: remote +Requires-Dist: python-can-remote; extra == "remote" +Provides-Extra: sontheim +Requires-Dist: python-can-sontheim>=0.1.2; extra == "sontheim" +Provides-Extra: canine +Requires-Dist: python-can-canine>=0.2.2; extra == "canine" +Provides-Extra: zlgcan +Requires-Dist: zlgcan-driver-py; extra == "zlgcan" +Provides-Extra: viewer +Requires-Dist: windows-curses; (platform_system == "Windows" and platform_python_implementation == "CPython") and extra == "viewer" +Provides-Extra: mf4 +Requires-Dist: asammdf>=6.0.0; extra == "mf4" + +python-can +========== + +|pypi| |conda| |python_implementation| |downloads| |downloads_monthly| + +|docs| |github-actions| |coverage| |mergify| |formatter| + +.. |pypi| image:: https://img.shields.io/pypi/v/python-can.svg + :target: https://pypi.python.org/pypi/python-can/ + :alt: Latest Version on PyPi + +.. |conda| image:: https://img.shields.io/conda/v/conda-forge/python-can + :target: https://github.com/conda-forge/python-can-feedstock + :alt: Latest Version on conda-forge + +.. |python_implementation| image:: https://img.shields.io/pypi/implementation/python-can + :target: https://pypi.python.org/pypi/python-can/ + :alt: Supported Python implementations + +.. |downloads| image:: https://static.pepy.tech/badge/python-can + :target: https://pepy.tech/project/python-can + :alt: Downloads on PePy + +.. |downloads_monthly| image:: https://static.pepy.tech/badge/python-can/month + :target: https://pepy.tech/project/python-can + :alt: Monthly downloads on PePy + +.. |formatter| image:: https://img.shields.io/badge/code%20style-black-000000.svg + :target: https://github.com/python/black + :alt: This project uses the black formatter. + +.. |docs| image:: https://readthedocs.org/projects/python-can/badge/?version=stable + :target: https://python-can.readthedocs.io/en/stable/ + :alt: Documentation + +.. |github-actions| image:: https://github.com/hardbyte/python-can/actions/workflows/ci.yml/badge.svg + :target: https://github.com/hardbyte/python-can/actions/workflows/ci.yml + :alt: Github Actions workflow status + +.. |coverage| image:: https://coveralls.io/repos/github/hardbyte/python-can/badge.svg?branch=develop + :target: https://coveralls.io/github/hardbyte/python-can?branch=develop + :alt: Test coverage reports on Coveralls.io + +.. |mergify| image:: https://img.shields.io/endpoint.svg?url=https://api.mergify.com/v1/badges/hardbyte/python-can&style=flat + :target: https://mergify.io + :alt: Mergify Status + +The **C**\ ontroller **A**\ rea **N**\ etwork is a bus standard designed +to allow microcontrollers and devices to communicate with each other. It +has priority based bus arbitration and reliable deterministic +communication. It is used in cars, trucks, boats, wheelchairs and more. + +The ``can`` package provides controller area network support for +Python developers; providing common abstractions to +different hardware devices, and a suite of utilities for sending and receiving +messages on a can bus. + +The library currently supports CPython as well as PyPy and runs on Mac, Linux and Windows. + +============================== =========== +Library Version Python +------------------------------ ----------- + 2.x 2.6+, 3.4+ + 3.x 2.7+, 3.5+ + 4.0+ 3.7+ + 4.3+ 3.8+ +============================== =========== + + +Features +-------- + +- common abstractions for CAN communication +- support for many different backends (see the `docs `__) +- receiving, sending, and periodically sending messages +- normal and extended arbitration IDs +- `CAN FD `__ support +- many different loggers and readers supporting playback: ASC (CANalyzer format), BLF (Binary Logging Format by Vector), MF4 (Measurement Data Format v4 by ASAM), TRC, CSV, SQLite, and Canutils log +- efficient in-kernel or in-hardware filtering of messages on supported interfaces +- bus configuration reading from a file or from environment variables +- command line tools for working with CAN buses (see the `docs `__) +- more + + +Example usage +------------- + +``pip install python-can`` + +.. code:: python + + # import the library + import can + + # create a bus instance using 'with' statement, + # this will cause bus.shutdown() to be called on the block exit; + # many other interfaces are supported as well (see documentation) + with can.Bus(interface='socketcan', + channel='vcan0', + receive_own_messages=True) as bus: + + # send a message + message = can.Message(arbitration_id=123, is_extended_id=True, + data=[0x11, 0x22, 0x33]) + bus.send(message, timeout=0.2) + + # iterate over received messages + for msg in bus: + print(f"{msg.arbitration_id:X}: {msg.data}") + + # or use an asynchronous notifier + notifier = can.Notifier(bus, [can.Logger("recorded.log"), can.Printer()]) + +You can find more information in the documentation, online at +`python-can.readthedocs.org `__. + + +Discussion +---------- + +If you run into bugs, you can file them in our +`issue tracker `__ on GitHub. + +`Stackoverflow `__ has several +questions and answers tagged with ``python+can``. + +Wherever we interact, we strive to follow the +`Python Community Code of Conduct `__. + + +Contributing +------------ + +See `doc/development.rst `__ for getting started. diff --git a/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/RECORD b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/RECORD new file mode 100644 index 0000000..62971e2 --- /dev/null +++ b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/RECORD @@ -0,0 +1,190 @@ +../../Scripts/can_logconvert.exe,sha256=4OLlyHsi4OUi_soiBmhtaUC_seuJ1e3Alu-yqLLLnqE,108412 +../../Scripts/can_logger.exe,sha256=ybhXzwGvkCnwJcWCHzKa6qSxHVTi80X9sPsNeiC1PAI,108408 +../../Scripts/can_player.exe,sha256=kSsqUd_DlQ6S15yAgSvUc7a_eI4ZCUAzS1gM3z-V-UA,108408 +../../Scripts/can_viewer.exe,sha256=sUX1h5GPslijbiSwAAuDSpomM2Zt9DvxXaXvLygv0pE,108408 +can/__init__.py,sha256=R0FbX-rk4vfp1reupjJcYGAYhu1OO_0Rsarymtx-H1A,2957 +can/__pycache__/__init__.cpython-313.pyc,, +can/__pycache__/_entry_points.cpython-313.pyc,, +can/__pycache__/bit_timing.cpython-313.pyc,, +can/__pycache__/broadcastmanager.cpython-313.pyc,, +can/__pycache__/bus.cpython-313.pyc,, +can/__pycache__/ctypesutil.cpython-313.pyc,, +can/__pycache__/exceptions.cpython-313.pyc,, +can/__pycache__/interface.cpython-313.pyc,, +can/__pycache__/listener.cpython-313.pyc,, +can/__pycache__/logconvert.cpython-313.pyc,, +can/__pycache__/logger.cpython-313.pyc,, +can/__pycache__/message.cpython-313.pyc,, +can/__pycache__/notifier.cpython-313.pyc,, +can/__pycache__/player.cpython-313.pyc,, +can/__pycache__/thread_safe_bus.cpython-313.pyc,, +can/__pycache__/typechecking.cpython-313.pyc,, +can/__pycache__/util.cpython-313.pyc,, +can/__pycache__/viewer.cpython-313.pyc,, +can/_entry_points.py,sha256=h3NcPDarBMlHFggGVlcHYSY80nutagzkbd7zvkBVVq0,883 +can/bit_timing.py,sha256=pWjJw0Vd52XBJ7qsdgDg4ZRYpXhi-vfwaK1T22wMtZ0,42518 +can/broadcastmanager.py,sha256=F-9NF_twn7xdwd0wE0F7XuHExoPzgojbDlrOFGwVkYI,13234 +can/bus.py,sha256=UyhNzcAw0y1MY2Gj1OjSVF2Bt5z3isXIvBVllnmiUSc,19552 +can/ctypesutil.py,sha256=6mUNOW2tbzA92e8lR7gZ3j_Lin0sBT5zs6ivnMA-Vyw,2463 +can/exceptions.py,sha256=b-iOjhfOEGGJ3XRokdUfMQ5u7mCs3CW2nvqrKnDmnq0,4097 +can/interface.py,sha256=rp_DEk34gcz5oifBZ631p0mULVFLNcnGCBMMd-7JxPc,6911 +can/interfaces/__init__.py,sha256=oUH47iDy8dD5PwsZTf5_TEcZaijOeidtmRHXQofjyA0,2190 +can/interfaces/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/__pycache__/canalystii.cpython-313.pyc,, +can/interfaces/__pycache__/cantact.cpython-313.pyc,, +can/interfaces/__pycache__/gs_usb.cpython-313.pyc,, +can/interfaces/__pycache__/iscan.cpython-313.pyc,, +can/interfaces/__pycache__/nican.cpython-313.pyc,, +can/interfaces/__pycache__/nixnet.cpython-313.pyc,, +can/interfaces/__pycache__/robotell.cpython-313.pyc,, +can/interfaces/__pycache__/slcan.cpython-313.pyc,, +can/interfaces/__pycache__/virtual.cpython-313.pyc,, +can/interfaces/canalystii.py,sha256=GedKF34FG7zuXvtNPqEDkBlZjEi0K9fjYB8X6HbBtW0,8065 +can/interfaces/cantact.py,sha256=b1HIeTnXkL3REzmSWJSw3XbavqTMJTZvYVsn3GrEb-g,5972 +can/interfaces/etas/__init__.py,sha256=yzYQ_j00VX4if_WzGsM6EdDTJbrfuqhVwoF0X0fFfh0,12093 +can/interfaces/etas/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/etas/__pycache__/boa.cpython-313.pyc,, +can/interfaces/etas/boa.py,sha256=d0P66wr-vC5HxTg4_lGFdoasIfyUdo6GrnVL7HPJxOs,20644 +can/interfaces/gs_usb.py,sha256=c4AIipb_yYsNsY-zew2OSSzzFaXZ5QxvoRQ0LlkThHQ,6112 +can/interfaces/ics_neovi/__init__.py,sha256=ZrIW0OnnhdUSSotJ2NQpTPGsNyXLVMFQh33Nm4oQYNE,219 +can/interfaces/ics_neovi/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/ics_neovi/__pycache__/neovi_bus.cpython-313.pyc,, +can/interfaces/ics_neovi/neovi_bus.py,sha256=bKIb8HhvijjCaAr8zjWOun6YLawxJDe64HR-4-_5n5s,17873 +can/interfaces/iscan.py,sha256=5rah_TybSfibuVX8AxcOR3CFbA7Py_-4yU7Kk1gS644,6348 +can/interfaces/ixxat/__init__.py,sha256=xRymShxicj--2CzuAFkTKUEHZKRfX1KFsniWGAWl_SQ,508 +can/interfaces/ixxat/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/ixxat/__pycache__/canlib.cpython-313.pyc,, +can/interfaces/ixxat/__pycache__/canlib_vcinpl.cpython-313.pyc,, +can/interfaces/ixxat/__pycache__/canlib_vcinpl2.cpython-313.pyc,, +can/interfaces/ixxat/__pycache__/constants.cpython-313.pyc,, +can/interfaces/ixxat/__pycache__/exceptions.cpython-313.pyc,, +can/interfaces/ixxat/__pycache__/structures.cpython-313.pyc,, +can/interfaces/ixxat/canlib.py,sha256=6mhDGO1_uOV3IVedVujS0jXe6DGNqSsXt4gmFmZdl5U,5844 +can/interfaces/ixxat/canlib_vcinpl.py,sha256=SbpTlW1GEY5ESMq1kbpuF1cy-nkzpM6CGvyg3G9ZkDQ,38085 +can/interfaces/ixxat/canlib_vcinpl2.py,sha256=c99Se3NBQH3jJPJwiB_xdo2KiR2ESKYp17quI5QnMR0,39652 +can/interfaces/ixxat/constants.py,sha256=N-YrqhKmezwBnygBI4BQk-9_BQyyLVo3CFg_SZmKIdg,9102 +can/interfaces/ixxat/exceptions.py,sha256=DLtBDPG522pcNbaxemwUwKNHmozgYQGfSCfXDOqefpQ,978 +can/interfaces/ixxat/structures.py,sha256=WjA2pgenCAmclQqfVlRShL7nrnQl62PjEkt5oN0PSYM,10540 +can/interfaces/kvaser/__init__.py,sha256=v8tcm4xo73lCZ6z2hfMUv73jb5bW7Y3OB6XrNm37-z0,218 +can/interfaces/kvaser/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/kvaser/__pycache__/canlib.cpython-313.pyc,, +can/interfaces/kvaser/__pycache__/constants.cpython-313.pyc,, +can/interfaces/kvaser/__pycache__/structures.cpython-313.pyc,, +can/interfaces/kvaser/canlib.py,sha256=csAl9rMb0KiXztpnF-21pLu-QWG74tekF782er8MCvo,28087 +can/interfaces/kvaser/constants.py,sha256=_iFCp9ppS8X0byvk_lWm3YnSWaZXU-xYupetDoy1FnI,6965 +can/interfaces/kvaser/structures.py,sha256=0rdDBApNDl_wpG8MDJ0xW3XU4bGn-XRoHuyOL_VYYq0,1971 +can/interfaces/neousys/__init__.py,sha256=fVs-zoPY6J44kvYa8yH-GI-uzBH6j9yDxcC7ErW-GAM,134 +can/interfaces/neousys/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/neousys/__pycache__/neousys.cpython-313.pyc,, +can/interfaces/neousys/neousys.py,sha256=nOSLeSLQVpF_COQ-L3eFM4Jk9OGAXxZgTkYMlTT8Cwc,7693 +can/interfaces/nican.py,sha256=1bsV3h1pc_UxvGU6Kv4KgTE00nWzwuwK3DMaK73WaUU,11552 +can/interfaces/nixnet.py,sha256=fMtFQT7fvhqzCeqOc-v4zrXNG8nOqSU4G9yZx57h7pw,13179 +can/interfaces/pcan/__init__.py,sha256=D0sfeL2tk2xVKLtxkAUvJjXddwP3y0n4vC1PDoa8i-Y,137 +can/interfaces/pcan/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/pcan/__pycache__/basic.cpython-313.pyc,, +can/interfaces/pcan/__pycache__/pcan.cpython-313.pyc,, +can/interfaces/pcan/basic.py,sha256=Iv_pNzkHWw9Qq8JZ95I1o5dnrktaPbtrrQOQrJL53sQ,41286 +can/interfaces/pcan/pcan.py,sha256=JRTw6lxanH7WU4ZJze7SwM4gBOomh-qWfTjc_yDX56g,28445 +can/interfaces/robotell.py,sha256=OlLqvnuWKDu7cnRCP0n36WnQAmTLJzZ97eHhBdIzD_0,15756 +can/interfaces/seeedstudio/__init__.py,sha256=hRTBWKIPxob_nPLZq4quPDu6YwZO_AZmZpthjBROjkE,119 +can/interfaces/seeedstudio/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/seeedstudio/__pycache__/seeedstudio.cpython-313.pyc,, +can/interfaces/seeedstudio/seeedstudio.py,sha256=Pl8LHeghz-Jk8ukdS1CkrSCZKW0sL9UmKYFMlC-hgKc,9610 +can/interfaces/serial/__init__.py,sha256=rpPrM68xhR0D6eIol1oyEvyw__CBCtBUAiZnfgL3k60,114 +can/interfaces/serial/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/serial/__pycache__/serial_can.cpython-313.pyc,, +can/interfaces/serial/serial_can.py,sha256=dyQexSnUC0DrHvlw_lkHsFKLioiVo5pRFLUilu38aqI,7384 +can/interfaces/slcan.py,sha256=fGJgOdoMgGetSL2toYAn-TbGYpS4GeXzdpFfjO-7Lt0,11976 +can/interfaces/socketcan/__init__.py,sha256=VV3-1FlheR-Km27B2r7nTtlEIli07aYGN188bcrUfK0,286 +can/interfaces/socketcan/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/socketcan/__pycache__/constants.cpython-313.pyc,, +can/interfaces/socketcan/__pycache__/socketcan.cpython-313.pyc,, +can/interfaces/socketcan/__pycache__/utils.cpython-313.pyc,, +can/interfaces/socketcan/constants.py,sha256=7DfAcYCokY9np63SyH39W7iP9wAUktxyH_1PKN3Wu2s,1130 +can/interfaces/socketcan/socketcan.py,sha256=jQ8XHHCrDSDbWa8Zka5U3dOivYkk2-DJE3OJeI3mraA,32431 +can/interfaces/socketcan/utils.py,sha256=I7tyAM_GqjQbvf36XIyruUdOkhm3NdKf7gqba7KoFFw,2833 +can/interfaces/socketcand/__init__.py,sha256=4rUdnZlPmSmdfIpF8rvLxjHZ5w-xfLTiHL5XMCyg4c0,275 +can/interfaces/socketcand/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/socketcand/__pycache__/socketcand.cpython-313.pyc,, +can/interfaces/socketcand/socketcand.py,sha256=EFGWConsRpnPp1mViqw-GcA1XZU4UwgwRhPwXEa5Jaw,12912 +can/interfaces/systec/__init__.py,sha256=omi-SgqBEAOKne1SrmNLj1p1BMPBCHbJOhQ9QOKlgms,160 +can/interfaces/systec/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/systec/__pycache__/constants.cpython-313.pyc,, +can/interfaces/systec/__pycache__/exceptions.cpython-313.pyc,, +can/interfaces/systec/__pycache__/structures.cpython-313.pyc,, +can/interfaces/systec/__pycache__/ucan.cpython-313.pyc,, +can/interfaces/systec/__pycache__/ucanbus.cpython-313.pyc,, +can/interfaces/systec/constants.py,sha256=1AupgsozCjoN8ENyx4B2LNNYtAj9YPEUeZgS9rJmBhg,22700 +can/interfaces/systec/exceptions.py,sha256=jG-XitcteyN-db4AMWlIUNeSih0Lp6TXaQN-DBGyKYc,4839 +can/interfaces/systec/structures.py,sha256=gj1doSJuOBIAsjGI8i2vVub7Zv5Ot-26PSGY7jeQAAk,12986 +can/interfaces/systec/ucan.py,sha256=eFfhItZWkYb0ZnI_dQNJBDMLjorV_c3GZCggzP0Xmo8,46738 +can/interfaces/systec/ucanbus.py,sha256=ysQDywiVMkgUhVGAFPAzCzb5VzekoXWtbJJ93whyr7w,11354 +can/interfaces/udp_multicast/__init__.py,sha256=aGLFDeB2Mr0qjFHGpvvWiod-gwr8r6HWgc6HQJc326Y,157 +can/interfaces/udp_multicast/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/udp_multicast/__pycache__/bus.cpython-313.pyc,, +can/interfaces/udp_multicast/__pycache__/utils.cpython-313.pyc,, +can/interfaces/udp_multicast/bus.py,sha256=pSXCf4CvRFPaE1daQltg94eS7RxUainHG_y-8gQRSiM,17199 +can/interfaces/udp_multicast/utils.py,sha256=s9rnXmk-MtMk-m2Iu-jn4qKcd6tAvMAykDPgPLr-LXc,2161 +can/interfaces/usb2can/__init__.py,sha256=5Nz3w5APrNDpVmRNTjHuSJzeq9QfesdoJVNkgHtAzyI,253 +can/interfaces/usb2can/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/usb2can/__pycache__/serial_selector.cpython-313.pyc,, +can/interfaces/usb2can/__pycache__/usb2canInterface.cpython-313.pyc,, +can/interfaces/usb2can/__pycache__/usb2canabstractionlayer.cpython-313.pyc,, +can/interfaces/usb2can/serial_selector.py,sha256=FqVnUsPsfcX2o9CecXCEO14v_cK29AVNGUyqQLx8drU,1669 +can/interfaces/usb2can/usb2canInterface.py,sha256=UFBttq2yefCMhA850DQaVQysDCKPRB6AAi24hr6A2wA,6648 +can/interfaces/usb2can/usb2canabstractionlayer.py,sha256=tx1xnRvFIJ2A0P_GvRLfaxWamkAPHE83asm5KHgx6xQ,6100 +can/interfaces/vector/__init__.py,sha256=c1CPg3ra6Dx33w9-w57FORMgKpvS5QCTlNEPbqtvhMs,564 +can/interfaces/vector/__pycache__/__init__.cpython-313.pyc,, +can/interfaces/vector/__pycache__/canlib.cpython-313.pyc,, +can/interfaces/vector/__pycache__/exceptions.cpython-313.pyc,, +can/interfaces/vector/__pycache__/xlclass.cpython-313.pyc,, +can/interfaces/vector/__pycache__/xldefine.cpython-313.pyc,, +can/interfaces/vector/__pycache__/xldriver.cpython-313.pyc,, +can/interfaces/vector/canlib.py,sha256=AnAHpc1Jk9cngKaa-RQ_rdlcxAcIj_FfBFYA0nnFLU0,49407 +can/interfaces/vector/exceptions.py,sha256=_4ThvHUUuSymWTnrGaiikoFevpxXlDl4j_86LvtuWEU,926 +can/interfaces/vector/xlclass.py,sha256=vPoptlI7c8fAXmsFNya7MoH7E03OA8ZK2kCLWEhOxZk,8461 +can/interfaces/vector/xldefine.py,sha256=XgAgUQ20vxn0bgI9FmLpBtJocQSB0GEN99zblc_j-K8,9572 +can/interfaces/vector/xldriver.py,sha256=dhwldW1QtwpO9mk_OgPCbEyPR969wp7R6wsXuGExOuQ,9893 +can/interfaces/virtual.py,sha256=ifFu38lt6ivI66_1mcculOntQbb4TafQHZxIIReMqjQ,7229 +can/io/__init__.py,sha256=w60ODfi9bPYF6ckFloPuixKweSusDbOii5X8r1BqBTg,1243 +can/io/__pycache__/__init__.cpython-313.pyc,, +can/io/__pycache__/asc.cpython-313.pyc,, +can/io/__pycache__/blf.cpython-313.pyc,, +can/io/__pycache__/canutils.cpython-313.pyc,, +can/io/__pycache__/csv.cpython-313.pyc,, +can/io/__pycache__/generic.cpython-313.pyc,, +can/io/__pycache__/logger.cpython-313.pyc,, +can/io/__pycache__/mf4.cpython-313.pyc,, +can/io/__pycache__/player.cpython-313.pyc,, +can/io/__pycache__/printer.cpython-313.pyc,, +can/io/__pycache__/sqlite.cpython-313.pyc,, +can/io/__pycache__/trc.cpython-313.pyc,, +can/io/asc.py,sha256=b4cQDbpznyllzNKd3dEYj-_FywOS9IdbUyYc1rN1Om4,17475 +can/io/blf.py,sha256=jL3y6PHMTjBVUsTTKaRWVG_n-7GRkyJRkKDBHibvI0Q,21933 +can/io/canutils.py,sha256=mKs-CxnlcMhfA8qYKMc7v1t6m2TyQulh8roKuRBQUDw,6313 +can/io/csv.py,sha256=VhP0i8SmpAQpJgcTWGhUfoR3O7pZeBaEIIcmBjSRdUQ,4384 +can/io/generic.py,sha256=3_YecJlNXMlSGKhrSjJGVHExd-IZGCrp0-DTvJrfpdw,3738 +can/io/logger.py,sha256=jSe_YBIE3Et3lALP0n9ebB_3mV_c4NwQ5nl0FCd3nxA,13648 +can/io/mf4.py,sha256=uwAWxixN9XrAiS9gzM1BUDXfTzMnSuHYW-G8-9C9SYw,20574 +can/io/player.py,sha256=mrWV2fOb2hkFGg3XeiJFTH_u18-gqkZi-wAB4l7LY_E,6067 +can/io/printer.py,sha256=RaztAPdrDzBuA0st8xaduB5m83jeXbQstjJ38eeaDxA,1810 +can/io/sqlite.py,sha256=mgExkCe3dg7EIjlWaHwdP7zfgbPuYPHyoVYlS8xNzPY,9124 +can/io/trc.py,sha256=vNXrjstRTY-AY7mUaKeVDr7Al35XSTFrvKcB3TsAn-Q,16142 +can/listener.py,sha256=u4OhBB85cfGOExSpJh4_woAcTxabyzvbnJDn2fdZx5Q,5533 +can/logconvert.py,sha256=r-mUzbaz0bouSzSV2rOBCuaRy0sI288N68QNHSOF_bQ,1541 +can/logger.py,sha256=Bh3iTj37cTYrJgkG8ik6w2wHSMfZAsvxQULk-o5Deu8,10422 +can/message.py,sha256=L8X6hbL5rRyPz3gIRKc0imanfjuuUAL1NPUUkZJETaE,12061 +can/notifier.py,sha256=NTtbGeOg6NoiL57de8JLGT5Qd-rK-q3_sAUOKjtWKGw,6609 +can/player.py,sha256=wTtnlbq--fNbTCDs4xwPvQte0Lf7LYoa32A0VmHkB18,2966 +can/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +can/thread_safe_bus.py,sha256=mA2ZUS11AWlmfDG62H9LycYItkX3BBsACYH7GrHdZFg,3113 +can/typechecking.py,sha256=w_-IWbaYcIIaZ2z2HxIJcu8ZTHDlbuQK-qY5T_ylhmo,2031 +can/util.py,sha256=gVHFdDdGyT_dHKB-ox3ixQYhRRItfeOoh3Z9_nh_0QY,16394 +can/viewer.py,sha256=kIuEiTSoBiPOnE7nclc2O98qJaqFSYqRclSPjAdN8BE,22300 +python_can-4.5.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +python_can-4.5.0.dist-info/LICENSE.txt,sha256=2n6rt7r999OuXp8iOqW9we7ORaxWncIbOwN1ILRGR2g,7651 +python_can-4.5.0.dist-info/METADATA,sha256=0Ndae35X7mV4kUP88bSjWklqXyPhQRzxwXVXwNOZMFU,8884 +python_can-4.5.0.dist-info/RECORD,, +python_can-4.5.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91 +python_can-4.5.0.dist-info/entry_points.txt,sha256=k0xFGWlRv838DScY-7B604jlqkQ2SEbPSNGYoCTmTJI,142 +python_can-4.5.0.dist-info/top_level.txt,sha256=D3m3layW1dpiXBpZ6ESNxVgsfJEBWPE9VTefMMmI1HY,4 diff --git a/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/WHEEL b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/WHEEL new file mode 100644 index 0000000..ae527e7 --- /dev/null +++ b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (75.6.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/entry_points.txt b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/entry_points.txt new file mode 100644 index 0000000..25bc5c4 --- /dev/null +++ b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/entry_points.txt @@ -0,0 +1,5 @@ +[console_scripts] +can_logconvert = can.logconvert:main +can_logger = can.logger:main +can_player = can.player:main +can_viewer = can.viewer:main diff --git a/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/top_level.txt b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/top_level.txt new file mode 100644 index 0000000..b2db265 --- /dev/null +++ b/dist/DBC Converter/_internal/python_can-4.5.0.dist-info/top_level.txt @@ -0,0 +1 @@ +can diff --git a/dist/DBC Converter/_internal/select.pyd b/dist/DBC Converter/_internal/select.pyd new file mode 100644 index 0000000..cf0fac4 Binary files /dev/null and b/dist/DBC Converter/_internal/select.pyd differ diff --git a/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA new file mode 100644 index 0000000..85513e8 --- /dev/null +++ b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA @@ -0,0 +1,129 @@ +Metadata-Version: 2.1 +Name: importlib_metadata +Version: 8.0.0 +Summary: Read metadata from Python packages +Author-email: "Jason R. Coombs" +Project-URL: Source, https://github.com/python/importlib_metadata +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: Apache Software License +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Requires-Python: >=3.8 +Description-Content-Type: text/x-rst +License-File: LICENSE +Requires-Dist: zipp >=0.5 +Requires-Dist: typing-extensions >=3.6.4 ; python_version < "3.8" +Provides-Extra: doc +Requires-Dist: sphinx >=3.5 ; extra == 'doc' +Requires-Dist: jaraco.packaging >=9.3 ; extra == 'doc' +Requires-Dist: rst.linker >=1.9 ; extra == 'doc' +Requires-Dist: furo ; extra == 'doc' +Requires-Dist: sphinx-lint ; extra == 'doc' +Requires-Dist: jaraco.tidelift >=1.4 ; extra == 'doc' +Provides-Extra: perf +Requires-Dist: ipython ; extra == 'perf' +Provides-Extra: test +Requires-Dist: pytest !=8.1.*,>=6 ; extra == 'test' +Requires-Dist: pytest-checkdocs >=2.4 ; extra == 'test' +Requires-Dist: pytest-cov ; extra == 'test' +Requires-Dist: pytest-mypy ; extra == 'test' +Requires-Dist: pytest-enabler >=2.2 ; extra == 'test' +Requires-Dist: pytest-ruff >=0.2.1 ; extra == 'test' +Requires-Dist: packaging ; extra == 'test' +Requires-Dist: pyfakefs ; extra == 'test' +Requires-Dist: flufl.flake8 ; extra == 'test' +Requires-Dist: pytest-perf >=0.9.2 ; extra == 'test' +Requires-Dist: jaraco.test >=5.4 ; extra == 'test' +Requires-Dist: importlib-resources >=1.3 ; (python_version < "3.9") and extra == 'test' + +.. image:: https://img.shields.io/pypi/v/importlib_metadata.svg + :target: https://pypi.org/project/importlib_metadata + +.. image:: https://img.shields.io/pypi/pyversions/importlib_metadata.svg + +.. image:: https://github.com/python/importlib_metadata/actions/workflows/main.yml/badge.svg + :target: https://github.com/python/importlib_metadata/actions?query=workflow%3A%22tests%22 + :alt: tests + +.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json + :target: https://github.com/astral-sh/ruff + :alt: Ruff + +.. image:: https://readthedocs.org/projects/importlib-metadata/badge/?version=latest + :target: https://importlib-metadata.readthedocs.io/en/latest/?badge=latest + +.. image:: https://img.shields.io/badge/skeleton-2024-informational + :target: https://blog.jaraco.com/skeleton + +.. image:: https://tidelift.com/badges/package/pypi/importlib-metadata + :target: https://tidelift.com/subscription/pkg/pypi-importlib-metadata?utm_source=pypi-importlib-metadata&utm_medium=readme + +Library to access the metadata for a Python package. + +This package supplies third-party access to the functionality of +`importlib.metadata `_ +including improvements added to subsequent Python versions. + + +Compatibility +============= + +New features are introduced in this third-party library and later merged +into CPython. The following table indicates which versions of this library +were contributed to different versions in the standard library: + +.. list-table:: + :header-rows: 1 + + * - importlib_metadata + - stdlib + * - 7.0 + - 3.13 + * - 6.5 + - 3.12 + * - 4.13 + - 3.11 + * - 4.6 + - 3.10 + * - 1.4 + - 3.8 + + +Usage +===== + +See the `online documentation `_ +for usage details. + +`Finder authors +`_ can +also add support for custom package installers. See the above documentation +for details. + + +Caveats +======= + +This project primarily supports third-party packages installed by PyPA +tools (or other conforming packages). It does not support: + +- Packages in the stdlib. +- Packages installed without metadata. + +Project details +=============== + + * Project home: https://github.com/python/importlib_metadata + * Report bugs at: https://github.com/python/importlib_metadata/issues + * Code hosting: https://github.com/python/importlib_metadata + * Documentation: https://importlib-metadata.readthedocs.io/ + +For Enterprise +============== + +Available as part of the Tidelift Subscription. + +This project and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use. + +`Learn more `_. diff --git a/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD new file mode 100644 index 0000000..17296a8 --- /dev/null +++ b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD @@ -0,0 +1,32 @@ +importlib_metadata-8.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +importlib_metadata-8.0.0.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358 +importlib_metadata-8.0.0.dist-info/METADATA,sha256=anuQ7_7h4J1bSEzfcjIBakPi2cyVQ7y7jklLHsBeH1k,4648 +importlib_metadata-8.0.0.dist-info/RECORD,, +importlib_metadata-8.0.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +importlib_metadata-8.0.0.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91 +importlib_metadata-8.0.0.dist-info/top_level.txt,sha256=CO3fD9yylANiXkrMo4qHLV_mqXL2sC5JFKgt1yWAT-A,19 +importlib_metadata/__init__.py,sha256=tZNB-23h8Bixi9uCrQqj9Yf0aeC--Josdy3IZRIQeB0,33798 +importlib_metadata/__pycache__/__init__.cpython-312.pyc,, +importlib_metadata/__pycache__/_adapters.cpython-312.pyc,, +importlib_metadata/__pycache__/_collections.cpython-312.pyc,, +importlib_metadata/__pycache__/_compat.cpython-312.pyc,, +importlib_metadata/__pycache__/_functools.cpython-312.pyc,, +importlib_metadata/__pycache__/_itertools.cpython-312.pyc,, +importlib_metadata/__pycache__/_meta.cpython-312.pyc,, +importlib_metadata/__pycache__/_text.cpython-312.pyc,, +importlib_metadata/__pycache__/diagnose.cpython-312.pyc,, +importlib_metadata/_adapters.py,sha256=rIhWTwBvYA1bV7i-5FfVX38qEXDTXFeS5cb5xJtP3ks,2317 +importlib_metadata/_collections.py,sha256=CJ0OTCHIjWA0ZIVS4voORAsn2R4R2cQBEtPsZEJpASY,743 +importlib_metadata/_compat.py,sha256=73QKrN9KNoaZzhbX5yPCCZa-FaALwXe8TPlDR72JgBU,1314 +importlib_metadata/_functools.py,sha256=PsY2-4rrKX4RVeRC1oGp1lB1pmC9eKN88_f-bD9uOoA,2895 +importlib_metadata/_itertools.py,sha256=cvr_2v8BRbxcIl5x5ldfqdHjhI8Yi8s8yk50G_nm6jQ,2068 +importlib_metadata/_meta.py,sha256=nxZ7C8GVlcBFAKWyVOn_dn7ot_twBcbm1NmvjIetBHI,1801 +importlib_metadata/_text.py,sha256=HCsFksZpJLeTP3NEk_ngrAeXVRRtTrtyh9eOABoRP4A,2166 +importlib_metadata/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc,, +importlib_metadata/compat/__pycache__/py311.cpython-312.pyc,, +importlib_metadata/compat/__pycache__/py39.cpython-312.pyc,, +importlib_metadata/compat/py311.py,sha256=uqm-K-uohyj1042TH4a9Er_I5o7667DvulcD-gC_fSA,608 +importlib_metadata/compat/py39.py,sha256=cPkMv6-0ilK-0Jw_Tkn0xYbOKJZc4WJKQHow0c2T44w,1102 +importlib_metadata/diagnose.py,sha256=nkSRMiowlmkhLYhKhvCg9glmt_11Cox-EmLzEbqYTa8,379 +importlib_metadata/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 diff --git a/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL new file mode 100644 index 0000000..edf4ec7 --- /dev/null +++ b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: setuptools (70.1.1) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt new file mode 100644 index 0000000..bbb0754 --- /dev/null +++ b/dist/DBC Converter/_internal/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt @@ -0,0 +1 @@ +importlib_metadata diff --git a/dist/DBC Converter/_internal/setuptools/_vendor/jaraco/text/Lorem ipsum.txt b/dist/DBC Converter/_internal/setuptools/_vendor/jaraco/text/Lorem ipsum.txt new file mode 100644 index 0000000..986f944 --- /dev/null +++ b/dist/DBC Converter/_internal/setuptools/_vendor/jaraco/text/Lorem ipsum.txt @@ -0,0 +1,2 @@ +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. +Curabitur pretium tincidunt lacus. Nulla gravida orci a odio. Nullam varius, turpis et commodo pharetra, est eros bibendum elit, nec luctus magna felis sollicitudin mauris. Integer in mauris eu nibh euismod gravida. Duis ac tellus et risus vulputate vehicula. Donec lobortis risus a elit. Etiam tempor. Ut ullamcorper, ligula eu tempor congue, eros est euismod turpis, id tincidunt sapien risus a quam. Maecenas fermentum consequat mi. Donec fermentum. Pellentesque malesuada nulla a mi. Duis sapien sem, aliquet nec, commodo eget, consequat quis, neque. Aliquam faucibus, elit ut dictum aliquet, felis nisl adipiscing sapien, sed malesuada diam lacus eget erat. Cras mollis scelerisque nunc. Nullam arcu. Aliquam consequat. Curabitur augue lorem, dapibus quis, laoreet et, pretium ac, nisi. Aenean magna nisl, mollis quis, molestie eu, feugiat in, orci. In hac habitasse platea dictumst. diff --git a/dist/DBC Converter/_internal/sqlite3.dll b/dist/DBC Converter/_internal/sqlite3.dll new file mode 100644 index 0000000..e86d34d Binary files /dev/null and b/dist/DBC Converter/_internal/sqlite3.dll differ diff --git a/dist/DBC Converter/_internal/ucrtbase.dll b/dist/DBC Converter/_internal/ucrtbase.dll new file mode 100644 index 0000000..90bd467 Binary files /dev/null and b/dist/DBC Converter/_internal/ucrtbase.dll differ diff --git a/dist/DBC Converter/_internal/unicodedata.pyd b/dist/DBC Converter/_internal/unicodedata.pyd new file mode 100644 index 0000000..6eadb85 Binary files /dev/null and b/dist/DBC Converter/_internal/unicodedata.pyd differ diff --git a/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/INSTALLER b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/LICENSE.txt b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/LICENSE.txt new file mode 100644 index 0000000..a31470f --- /dev/null +++ b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2012 Daniel Holth and contributors + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. diff --git a/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/METADATA b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/METADATA new file mode 100644 index 0000000..f645dcb --- /dev/null +++ b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/METADATA @@ -0,0 +1,66 @@ +Metadata-Version: 2.3 +Name: wheel +Version: 0.45.1 +Summary: A built-package format for Python +Keywords: wheel,packaging +Author-email: Daniel Holth +Maintainer-email: Alex Grönholm +Requires-Python: >=3.8 +Description-Content-Type: text/x-rst +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: Topic :: System :: Archiving :: Packaging +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Requires-Dist: pytest >= 6.0.0 ; extra == "test" +Requires-Dist: setuptools >= 65 ; extra == "test" +Project-URL: Changelog, https://wheel.readthedocs.io/en/stable/news.html +Project-URL: Documentation, https://wheel.readthedocs.io/ +Project-URL: Issue Tracker, https://github.com/pypa/wheel/issues +Project-URL: Source, https://github.com/pypa/wheel +Provides-Extra: test + +wheel +===== + +This is a command line tool for manipulating Python wheel files, as defined in +`PEP 427`_. It contains the following functionality: + +* Convert ``.egg`` archives into ``.whl`` +* Unpack wheel archives +* Repack wheel archives +* Add or remove tags in existing wheel archives + +.. _PEP 427: https://www.python.org/dev/peps/pep-0427/ + +Historical note +--------------- + +This project used to contain the implementation of the setuptools_ ``bdist_wheel`` +command, but as of setuptools v70.1, it no longer needs ``wheel`` installed for that to +work. Thus, you should install this **only** if you intend to use the ``wheel`` command +line tool! + +.. _setuptools: https://pypi.org/project/setuptools/ + +Documentation +------------- + +The documentation_ can be found on Read The Docs. + +.. _documentation: https://wheel.readthedocs.io/ + +Code of Conduct +--------------- + +Everyone interacting in the wheel project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. + +.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md + diff --git a/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/RECORD b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/RECORD new file mode 100644 index 0000000..f0babe5 --- /dev/null +++ b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/RECORD @@ -0,0 +1,68 @@ +../../Scripts/wheel.exe,sha256=-G3ngeOxk4bN2s9A8LHzAP3dH0v2YTzKotxQTcY-36M,108407 +wheel-0.45.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +wheel-0.45.1.dist-info/LICENSE.txt,sha256=MMI2GGeRCPPo6h0qZYx8pBe9_IkcmO8aifpP8MmChlQ,1107 +wheel-0.45.1.dist-info/METADATA,sha256=mKz84H7m7jsxJyzeIcTVORiTb0NPMV39KvOIYhGgmjA,2313 +wheel-0.45.1.dist-info/RECORD,, +wheel-0.45.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +wheel-0.45.1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82 +wheel-0.45.1.dist-info/entry_points.txt,sha256=rTY1BbkPHhkGMm4Q3F0pIzJBzW2kMxoG1oriffvGdA0,104 +wheel/__init__.py,sha256=mrxMnvdXACur_LWegbUfh5g5ysWZrd63UJn890wvGNk,59 +wheel/__main__.py,sha256=NkMUnuTCGcOkgY0IBLgBCVC_BGGcWORx2K8jYGS12UE,455 +wheel/__pycache__/__init__.cpython-313.pyc,, +wheel/__pycache__/__main__.cpython-313.pyc,, +wheel/__pycache__/_bdist_wheel.cpython-313.pyc,, +wheel/__pycache__/_setuptools_logging.cpython-313.pyc,, +wheel/__pycache__/bdist_wheel.cpython-313.pyc,, +wheel/__pycache__/macosx_libfile.cpython-313.pyc,, +wheel/__pycache__/metadata.cpython-313.pyc,, +wheel/__pycache__/util.cpython-313.pyc,, +wheel/__pycache__/wheelfile.cpython-313.pyc,, +wheel/_bdist_wheel.py,sha256=UghCQjSH_pVfcZh6oRjzSw_TQhcf3anSx1OkiLSL82M,21694 +wheel/_setuptools_logging.py,sha256=-5KC-lne0ilOUWIDfOkqapUWGMFZhuKYDIavIZiB5kM,781 +wheel/bdist_wheel.py,sha256=tpf9WufiSO1RuEMg5oPhIfSG8DMziCZ_4muCKF69Cqo,1107 +wheel/cli/__init__.py,sha256=Npq6_jKi03dhIcRnmbuFhwviVJxwO0tYEnEhWMv9cJo,4402 +wheel/cli/__pycache__/__init__.cpython-313.pyc,, +wheel/cli/__pycache__/convert.cpython-313.pyc,, +wheel/cli/__pycache__/pack.cpython-313.pyc,, +wheel/cli/__pycache__/tags.cpython-313.pyc,, +wheel/cli/__pycache__/unpack.cpython-313.pyc,, +wheel/cli/convert.py,sha256=Bi0ntEXb9nTllCxWeTRQ4j-nPs3szWSEKipG_GgnMkQ,12634 +wheel/cli/pack.py,sha256=CAFcHdBVulvsHYJlndKVO7KMI9JqBTZz5ii0PKxxCOs,3103 +wheel/cli/tags.py,sha256=lHw-LaWrkS5Jy_qWcw-6pSjeNM6yAjDnqKI3E5JTTCU,4760 +wheel/cli/unpack.py,sha256=Y_J7ynxPSoFFTT7H0fMgbBlVErwyDGcObgme5MBuz58,1021 +wheel/macosx_libfile.py,sha256=k1x7CE3LPtOVGqj6NXQ1nTGYVPaeRrhVzUG_KPq3zDs,16572 +wheel/metadata.py,sha256=JC4p7jlQZu2bUTAQ2fevkqLjg_X6gnNyRhLn6OUO1tc,6171 +wheel/util.py,sha256=aL7aibHwYUgfc8WlolL5tXdkV4DatbJxZHb1kwHFJAU,423 +wheel/vendored/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +wheel/vendored/__pycache__/__init__.cpython-313.pyc,, +wheel/vendored/packaging/LICENSE,sha256=ytHvW9NA1z4HS6YU0m996spceUDD2MNIUuZcSQlobEg,197 +wheel/vendored/packaging/LICENSE.APACHE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174 +wheel/vendored/packaging/LICENSE.BSD,sha256=tw5-m3QvHMb5SLNMFqo5_-zpQZY2S8iP8NIYDwAo-sU,1344 +wheel/vendored/packaging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +wheel/vendored/packaging/__pycache__/__init__.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/_elffile.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/_manylinux.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/_musllinux.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/_parser.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/_structures.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/_tokenizer.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/markers.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/requirements.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/specifiers.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/tags.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/utils.cpython-313.pyc,, +wheel/vendored/packaging/__pycache__/version.cpython-313.pyc,, +wheel/vendored/packaging/_elffile.py,sha256=hbmK8OD6Z7fY6hwinHEUcD1by7czkGiNYu7ShnFEk2k,3266 +wheel/vendored/packaging/_manylinux.py,sha256=P7sdR5_7XBY09LVYYPhHmydMJIIwPXWsh4olk74Uuj4,9588 +wheel/vendored/packaging/_musllinux.py,sha256=z1s8To2hQ0vpn_d-O2i5qxGwEK8WmGlLt3d_26V7NeY,2674 +wheel/vendored/packaging/_parser.py,sha256=4tT4emSl2qTaU7VTQE1Xa9o1jMPCsBezsYBxyNMUN-s,10347 +wheel/vendored/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +wheel/vendored/packaging/_tokenizer.py,sha256=alCtbwXhOFAmFGZ6BQ-wCTSFoRAJ2z-ysIf7__MTJ_k,5292 +wheel/vendored/packaging/markers.py,sha256=_TSPI1BhJYO7Bp9AzTmHQxIqHEVXaTjmDh9G-w8qzPA,8232 +wheel/vendored/packaging/requirements.py,sha256=dgoBeVprPu2YE6Q8nGfwOPTjATHbRa_ZGLyXhFEln6Q,2933 +wheel/vendored/packaging/specifiers.py,sha256=IWSt0SrLSP72heWhAC8UL0eGvas7XIQHjqiViVfmPKE,39778 +wheel/vendored/packaging/tags.py,sha256=fedHXiOHkBxNZTXotXv8uXPmMFU9ae-TKBujgYHigcA,18950 +wheel/vendored/packaging/utils.py,sha256=XgdmP3yx9-wQEFjO7OvMj9RjEf5JlR5HFFR69v7SQ9E,5268 +wheel/vendored/packaging/version.py,sha256=PFJaYZDxBgyxkfYhH3SQw4qfE9ICCWrTmitvq14y3bs,16234 +wheel/vendored/vendor.txt,sha256=Z2ENjB1i5prfez8CdM1Sdr3c6Zxv2rRRolMpLmBncAE,16 +wheel/wheelfile.py,sha256=USCttNlJwafxt51YYFFKG7jnxz8dfhbyqAZL6jMTA9s,8411 diff --git a/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/REQUESTED b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/WHEEL b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/WHEEL new file mode 100644 index 0000000..e3c6fee --- /dev/null +++ b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/WHEEL @@ -0,0 +1,4 @@ +Wheel-Version: 1.0 +Generator: flit 3.10.1 +Root-Is-Purelib: true +Tag: py3-none-any diff --git a/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/entry_points.txt b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/entry_points.txt new file mode 100644 index 0000000..06c9f69 --- /dev/null +++ b/dist/DBC Converter/_internal/wheel-0.45.1.dist-info/entry_points.txt @@ -0,0 +1,6 @@ +[console_scripts] +wheel=wheel.cli:main + +[distutils.commands] +bdist_wheel=wheel.bdist_wheel:bdist_wheel + diff --git a/dist/DBC Converter/_internal/wrapt/_wrappers.cp313-win_amd64.pyd b/dist/DBC Converter/_internal/wrapt/_wrappers.cp313-win_amd64.pyd new file mode 100644 index 0000000..c3be2e6 Binary files /dev/null and b/dist/DBC Converter/_internal/wrapt/_wrappers.cp313-win_amd64.pyd differ diff --git a/dist/DBC Converter/settings.json b/dist/DBC Converter/settings.json new file mode 100644 index 0000000..07d2e91 --- /dev/null +++ b/dist/DBC Converter/settings.json @@ -0,0 +1,7 @@ +{ + "theme": "light", + "file_paths": [], + "channel_info": {}, + "default_save_path": "C:\\Users\\MSI\\Desktop", + "last_opened_dir": "C:\\Users\\MSI" +} \ No newline at end of file diff --git a/icon.ico b/icon.ico new file mode 100644 index 0000000..2476989 Binary files /dev/null and b/icon.ico differ