changes
This commit is contained in:
		
							parent
							
								
									69c5c8cb40
								
							
						
					
					
						commit
						b46f309396
					
				
							
								
								
									
										19
									
								
								Gamertag.py
									
									
									
									
									
								
							
							
						
						
									
										19
									
								
								Gamertag.py
									
									
									
									
									
								
							| @ -1,11 +1,16 @@ | ||||
| player_gamertag = input("print please enter you gamer tag") | ||||
| awnser = input(f"so your gamer tag is {player_gamertag}? (yes/no) ")  | ||||
| if awnser == 'yes': | ||||
|     print("Great, then let's begin") | ||||
| player_gamertag = input("Please enter your gamer tag: ") | ||||
| awnser = input(f"So your gamer tag is {player_gamertag}? (yes/no) ")  | ||||
| 
 | ||||
| elif awnser == 'no': | ||||
|     print("Oh ok let's try again") | ||||
| while awnser.lower() not in ['yes', 'no']: | ||||
|     print("Sorry, I only accept 'yes' or 'no' as an answer.") | ||||
|     awnser = input("Please enter 'yes' or 'no': ") | ||||
| 
 | ||||
| if awnser.lower() == 'yes': | ||||
|     print("Great, then let's begin") | ||||
| elif awnser.lower() == 'no': | ||||
|     print("Oh, okay. Let's try again.") | ||||
|     player_gamertag = input("Please enter your gamer tag: ") | ||||
| else: | ||||
|     print("sorry I only accept yes or no as an awnser") | ||||
|     print("Sorry, I only accept 'yes' or 'no' as an answer.") | ||||
| 
 | ||||
|      | ||||
							
								
								
									
										56
									
								
								Tucker/Dungeon game.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										56
									
								
								Tucker/Dungeon game.py
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,56 @@ | ||||
| import os | ||||
| 
 | ||||
| def load_player_data(player_name, character_name): | ||||
|     player_file = f"{player_name}_{character_name}.txt" | ||||
|     if os.path.exists(player_file): | ||||
|         with open(player_file, 'r') as file: | ||||
|             player_data = file.readlines() | ||||
|             return [data.strip() for data in player_data] | ||||
|     else: | ||||
|         print(f"Player file '{player_file}' not found.") | ||||
|         return None | ||||
| 
 | ||||
| def save_player_data(player_name, character_name, data): | ||||
|     player_file = f"{player_name}_{character_name}.txt" | ||||
|     with open(player_file, 'w') as file: | ||||
|         for line in data: | ||||
|             file.write(line + '\n') | ||||
| 
 | ||||
| def create_new_character(player_name): | ||||
|     character_name = input("Enter character name: ") | ||||
|     gamer_tag = input("Please enter your gamer tag: ") | ||||
|     answer = input(f"So your gamer tag is {gamer_tag}? (yes/no) ") | ||||
|     while answer.lower() not in ['yes', 'no']: | ||||
|         print("Sorry, I only accept 'yes' or 'no' as an answer.") | ||||
|         answer = input("Please enter 'yes' or 'no': ") | ||||
|     if answer.lower() == 'no': | ||||
|         gamer_tag = input("Please enter your gamer tag: ") | ||||
|     print(f"Hello {gamer_tag}") | ||||
|     player_race = input("Are you a human, dwarf, or elf? (human/dwarf/elf): ").lower() | ||||
|     player_category = input(f"Is your {player_race} a ranged {player_race} or a close combat {player_race}? (ranged/close combat): ").lower() | ||||
|     if player_category == "close combat": | ||||
|         player_class = input("Are you a barbarian with increased attack power and less intelligence, a warrior with balanced stats, or a rogue with increased intelligence and less attack power? (barbarian/warrior/rogue): ").lower() | ||||
|         if player_class == "barbarian": | ||||
|             weapon_skill = input(f"Will your {gamer_tag} be skilled with axes, swords, or hammers? (axes/swords/hammers): ").lower() | ||||
|         elif player_class == "warrior": | ||||
|             weapon_skill = input(f"Will your {gamer_tag} be skilled with longswords, swords, or daggers? (longswords/swords/daggers): ").lower() | ||||
|     elif player_category == "ranged": | ||||
|         player_class = input(f"Are you an archer with increased intelligence and less attack power or a dead shot with increased attack power and less intelligence? (archer/dead shot): ").lower() | ||||
|         if player_class == "archer": | ||||
|             weapon_skill = input(f"Will your {gamer_tag} be skilled with longbows, throwing daggers, or shortbows? (longbows/throwing daggers/shortbows): ").lower() | ||||
|         elif player_class == "dead shot": | ||||
|             weapon_skill = input(f"Will your {gamer_tag} be skilled with crossbows, slings, or magic bows? (crossbows/slings/magic bows): ").lower() | ||||
|     return [gamer_tag, player_race, player_category, player_class, weapon_skill] | ||||
| 
 | ||||
| def main(): | ||||
|     player_name = input("Enter player name: ") | ||||
|     characters = int(input("How many characters do you want to create?: ")) | ||||
|     for i in range(characters): | ||||
|         print(f"Creating character {i + 1}...") | ||||
|         character_data = create_new_character(player_name) | ||||
|         save_player_data(player_name, f"character_{i + 1}", character_data) | ||||
|     # Continue with your story or additional code here | ||||
|     print("You wake up on a shore not remebering anything") | ||||
| 
 | ||||
| if __name__ == "__main__": | ||||
|     main() | ||||
| @ -14,7 +14,7 @@ if path == "forest": | ||||
|     while cub_chioce != "care for it" and cub_chioce != "leave it": | ||||
|         if cub_chioce == "care for it": | ||||
|             cub_name = input("you take the cub home. What will you name it?:") | ||||
|             print(f"you and {cub_name} live a happily ever after. THE END") | ||||
|             input(f"you and {cub_name} live a happily ever after. THE END") | ||||
|             exit() | ||||
|         elif cub_chioce == "leave it": | ||||
|             print("you return home out of the forest never knowing what happened to the cub. THE END") | ||||
|  | ||||
							
								
								
									
										43
									
								
								Tucker/Path game.spec
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								Tucker/Path game.spec
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,43 @@ | ||||
| # -*- mode: python ; coding: utf-8 -*- | ||||
| 
 | ||||
| 
 | ||||
| a = Analysis( | ||||
|     ['Path game.py'], | ||||
|     pathex=[], | ||||
|     binaries=[], | ||||
|     datas=[], | ||||
|     hiddenimports=[], | ||||
|     hookspath=[], | ||||
|     hooksconfig={}, | ||||
|     runtime_hooks=[], | ||||
|     excludes=[], | ||||
|     noarchive=False, | ||||
| ) | ||||
| pyz = PYZ(a.pure) | ||||
| 
 | ||||
| exe = EXE( | ||||
|     pyz, | ||||
|     a.scripts, | ||||
|     [], | ||||
|     exclude_binaries=True, | ||||
|     name='Path game', | ||||
|     debug=False, | ||||
|     bootloader_ignore_signals=False, | ||||
|     strip=False, | ||||
|     upx=True, | ||||
|     console=True, | ||||
|     disable_windowed_traceback=False, | ||||
|     argv_emulation=False, | ||||
|     target_arch=None, | ||||
|     codesign_identity=None, | ||||
|     entitlements_file=None, | ||||
| ) | ||||
| coll = COLLECT( | ||||
|     exe, | ||||
|     a.binaries, | ||||
|     a.datas, | ||||
|     strip=False, | ||||
|     upx=True, | ||||
|     upx_exclude=[], | ||||
|     name='Path game', | ||||
| ) | ||||
							
								
								
									
										32
									
								
								Tucker/TJ999L.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								Tucker/TJ999L.py
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,32 @@ | ||||
| print("Welcome back Tucker! This is random 99 overal player selection!:") | ||||
| start = input("Thank you for the kind words now let's begin shall we? (yes/no)") | ||||
| if start == "yes": | ||||
|         from matplotlib import pyplot as plt | ||||
|         import numpy as np | ||||
| 
 | ||||
|         # List of NFL 99 overall players in Madden 24 (as an example, names might need updating based on the actual roster) | ||||
|         players_99 = [ | ||||
|             "Patrick Mahomes", | ||||
|             "Aaron Donald", | ||||
|             "Davante Adams", | ||||
|             "T.J. Watt", | ||||
|             "Travis Kelce", | ||||
|             "Jalen Ramsey", | ||||
|             "Myles Garrett", | ||||
|             "Tyreek Hill" | ||||
|         ] | ||||
| 
 | ||||
|         # Generating colors | ||||
|         colors = plt.cm.rainbow(np.linspace(0, 1, len(players_99))) | ||||
| 
 | ||||
|         # Creating the pie chart | ||||
|         fig, ax = plt.subplots() | ||||
|         ax.pie([1] * len(players_99), labels=players_99, autopct='%1.1f%%', startangle=90, colors=colors) | ||||
|         ax.axis('equal')  # Equal aspect ratio ensures that pie is drawn as a circle. | ||||
| 
 | ||||
|         # Display the wheel | ||||
|         plt.title("NFL 99 Overall Players in Madden 24") | ||||
|         plt.show() | ||||
| 
 | ||||
| elif start == "no": | ||||
|         exit  | ||||
							
								
								
									
										365
									
								
								Tucker/build/Path game/Analysis-00.toc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										365
									
								
								Tucker/build/Path game/Analysis-00.toc
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,365 @@ | ||||
| (['C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\Path game.py'], | ||||
|  ['C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker'], | ||||
|  [], | ||||
|  ['C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks', | ||||
|   'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks'], | ||||
|  {}, | ||||
|  [], | ||||
|  [], | ||||
|  False, | ||||
|  {}, | ||||
|  [], | ||||
|  [], | ||||
|  '3.12.2 (tags/v3.12.2:6abddd9, Feb  6 2024, 21:26:36) [MSC v.1937 64 bit ' | ||||
|  '(AMD64)]', | ||||
|  [('pyi_rth_inspect', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', | ||||
|    'PYSOURCE'), | ||||
|   ('Path game', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\Path game.py', | ||||
|    'PYSOURCE')], | ||||
|  [('inspect', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\inspect.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib._bootstrap_external', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_bootstrap_external.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('typing', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\typing.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.abc', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\abc.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources.abc', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\abc.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources._legacy', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_legacy.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources._common', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_common.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources._adapters', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_adapters.py', | ||||
|    'PYMODULE'), | ||||
|   ('tempfile', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tempfile.py', | ||||
|    'PYMODULE'), | ||||
|   ('random', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\random.py', | ||||
|    'PYMODULE'), | ||||
|   ('_strptime', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_strptime.py', | ||||
|    'PYMODULE'), | ||||
|   ('datetime', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\datetime.py', | ||||
|    'PYMODULE'), | ||||
|   ('_pydatetime', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_pydatetime.py', | ||||
|    'PYMODULE'), | ||||
|   ('calendar', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\calendar.py', | ||||
|    'PYMODULE'), | ||||
|   ('statistics', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\statistics.py', | ||||
|    'PYMODULE'), | ||||
|   ('decimal', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\decimal.py', | ||||
|    'PYMODULE'), | ||||
|   ('_pydecimal', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_pydecimal.py', | ||||
|    'PYMODULE'), | ||||
|   ('contextvars', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\contextvars.py', | ||||
|    'PYMODULE'), | ||||
|   ('fractions', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\fractions.py', | ||||
|    'PYMODULE'), | ||||
|   ('numbers', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\numbers.py', | ||||
|    'PYMODULE'), | ||||
|   ('hashlib', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\hashlib.py', | ||||
|    'PYMODULE'), | ||||
|   ('logging', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\logging\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('pickle', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pickle.py', | ||||
|    'PYMODULE'), | ||||
|   ('pprint', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pprint.py', | ||||
|    'PYMODULE'), | ||||
|   ('dataclasses', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\dataclasses.py', | ||||
|    'PYMODULE'), | ||||
|   ('copy', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\copy.py', | ||||
|    'PYMODULE'), | ||||
|   ('_compat_pickle', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_compat_pickle.py', | ||||
|    'PYMODULE'), | ||||
|   ('struct', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\struct.py', | ||||
|    'PYMODULE'), | ||||
|   ('threading', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\threading.py', | ||||
|    'PYMODULE'), | ||||
|   ('_threading_local', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_threading_local.py', | ||||
|    'PYMODULE'), | ||||
|   ('string', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\string.py', | ||||
|    'PYMODULE'), | ||||
|   ('bisect', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\bisect.py', | ||||
|    'PYMODULE'), | ||||
|   ('shutil', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\shutil.py', | ||||
|    'PYMODULE'), | ||||
|   ('tarfile', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tarfile.py', | ||||
|    'PYMODULE'), | ||||
|   ('gzip', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\gzip.py', | ||||
|    'PYMODULE'), | ||||
|   ('_compression', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_compression.py', | ||||
|    'PYMODULE'), | ||||
|   ('lzma', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\lzma.py', | ||||
|    'PYMODULE'), | ||||
|   ('bz2', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\bz2.py', | ||||
|    'PYMODULE'), | ||||
|   ('fnmatch', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\fnmatch.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib._abc', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_abc.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._itertools', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_itertools.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._functools', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_functools.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._collections', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_collections.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._meta', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_meta.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._adapters', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_adapters.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._text', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_text.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.message', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\message.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.policy', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\policy.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.contentmanager', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\contentmanager.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.quoprimime', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\quoprimime.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.headerregistry', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\headerregistry.py', | ||||
|    'PYMODULE'), | ||||
|   ('email._header_value_parser', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_header_value_parser.py', | ||||
|    'PYMODULE'), | ||||
|   ('urllib', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\urllib\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.iterators', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\iterators.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.generator', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\generator.py', | ||||
|    'PYMODULE'), | ||||
|   ('email._encoded_words', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_encoded_words.py', | ||||
|    'PYMODULE'), | ||||
|   ('base64', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\base64.py', | ||||
|    'PYMODULE'), | ||||
|   ('getopt', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\getopt.py', | ||||
|    'PYMODULE'), | ||||
|   ('gettext', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\gettext.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.charset', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\charset.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.encoders', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\encoders.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.base64mime', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\base64mime.py', | ||||
|    'PYMODULE'), | ||||
|   ('email._policybase', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_policybase.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.header', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\header.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.errors', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\errors.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.utils', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\utils.py', | ||||
|    'PYMODULE'), | ||||
|   ('email._parseaddr', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_parseaddr.py', | ||||
|    'PYMODULE'), | ||||
|   ('urllib.parse', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\urllib\\parse.py', | ||||
|    'PYMODULE'), | ||||
|   ('ipaddress', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\ipaddress.py', | ||||
|    'PYMODULE'), | ||||
|   ('socket', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\socket.py', | ||||
|    'PYMODULE'), | ||||
|   ('selectors', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\selectors.py', | ||||
|    'PYMODULE'), | ||||
|   ('quopri', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\quopri.py', | ||||
|    'PYMODULE'), | ||||
|   ('contextlib', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\contextlib.py', | ||||
|    'PYMODULE'), | ||||
|   ('textwrap', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\textwrap.py', | ||||
|    'PYMODULE'), | ||||
|   ('zipfile', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('zipfile._path', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\_path\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('zipfile._path.glob', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\_path\\glob.py', | ||||
|    'PYMODULE'), | ||||
|   ('py_compile', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\py_compile.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.util', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\util.py', | ||||
|    'PYMODULE'), | ||||
|   ('pathlib', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pathlib.py', | ||||
|    'PYMODULE'), | ||||
|   ('email', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.parser', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\parser.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.feedparser', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\feedparser.py', | ||||
|    'PYMODULE'), | ||||
|   ('csv', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\csv.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.readers', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\readers.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources.readers', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\readers.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources._itertools', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_itertools.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib._bootstrap', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_bootstrap.py', | ||||
|    'PYMODULE'), | ||||
|   ('argparse', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\argparse.py', | ||||
|    'PYMODULE'), | ||||
|   ('token', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\token.py', | ||||
|    'PYMODULE'), | ||||
|   ('tokenize', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tokenize.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.machinery', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\machinery.py', | ||||
|    'PYMODULE'), | ||||
|   ('dis', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\dis.py', | ||||
|    'PYMODULE'), | ||||
|   ('opcode', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\opcode.py', | ||||
|    'PYMODULE'), | ||||
|   ('ast', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\ast.py', | ||||
|    'PYMODULE'), | ||||
|   ('tracemalloc', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tracemalloc.py', | ||||
|    'PYMODULE'), | ||||
|   ('subprocess', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\subprocess.py', | ||||
|    'PYMODULE'), | ||||
|   ('signal', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\signal.py', | ||||
|    'PYMODULE'), | ||||
|   ('_py_abc', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_py_abc.py', | ||||
|    'PYMODULE'), | ||||
|   ('stringprep', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\stringprep.py', | ||||
|    'PYMODULE')], | ||||
|  [('python312.dll', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\python312.dll', | ||||
|    'BINARY'), | ||||
|   ('_decimal.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_decimal.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('_hashlib.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_hashlib.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('_lzma.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_lzma.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('_bz2.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_bz2.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('unicodedata.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\unicodedata.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('select.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\select.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('_socket.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_socket.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('VCRUNTIME140.dll', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\VCRUNTIME140.dll', | ||||
|    'BINARY'), | ||||
|   ('libcrypto-3.dll', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\libcrypto-3.dll', | ||||
|    'BINARY')], | ||||
|  [], | ||||
|  [], | ||||
|  [('base_library.zip', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\base_library.zip', | ||||
|    'DATA')]) | ||||
							
								
								
									
										38
									
								
								Tucker/build/Path game/COLLECT-00.toc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								Tucker/build/Path game/COLLECT-00.toc
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,38 @@ | ||||
| ([('Path game.exe', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\Path game.exe', | ||||
|    'EXECUTABLE'), | ||||
|   ('python312.dll', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\python312.dll', | ||||
|    'BINARY'), | ||||
|   ('_decimal.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_decimal.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('_hashlib.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_hashlib.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('_lzma.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_lzma.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('_bz2.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_bz2.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('unicodedata.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\unicodedata.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('select.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\select.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('_socket.pyd', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\_socket.pyd', | ||||
|    'EXTENSION'), | ||||
|   ('VCRUNTIME140.dll', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\VCRUNTIME140.dll', | ||||
|    'BINARY'), | ||||
|   ('libcrypto-3.dll', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\DLLs\\libcrypto-3.dll', | ||||
|    'BINARY'), | ||||
|   ('base_library.zip', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\base_library.zip', | ||||
|    'DATA')],) | ||||
							
								
								
									
										76
									
								
								Tucker/build/Path game/EXE-00.toc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										76
									
								
								Tucker/build/Path game/EXE-00.toc
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,76 @@ | ||||
| ('C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|  'game\\Path game.exe', | ||||
|  True, | ||||
|  False, | ||||
|  True, | ||||
|  'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-console.ico', | ||||
|  None, | ||||
|  False, | ||||
|  False, | ||||
|  b'<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n<assembly xmlns=' | ||||
|  b'"urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">\n  <trustInfo x' | ||||
|  b'mlns="urn:schemas-microsoft-com:asm.v3">\n    <security>\n      <requested' | ||||
|  b'Privileges>\n        <requestedExecutionLevel level="asInvoker" uiAccess=' | ||||
|  b'"false"/>\n      </requestedPrivileges>\n    </security>\n  </trustInfo>\n  ' | ||||
|  b'<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">\n    <' | ||||
|  b'application>\n      <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f' | ||||
|  b'0}"/>\n      <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>\n ' | ||||
|  b'     <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>\n      <s' | ||||
|  b'upportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>\n      <supporte' | ||||
|  b'dOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>\n    </application>\n  <' | ||||
|  b'/compatibility>\n  <application xmlns="urn:schemas-microsoft-com:asm.v3">' | ||||
|  b'\n    <windowsSettings>\n      <longPathAware xmlns="http://schemas.micros' | ||||
|  b'oft.com/SMI/2016/WindowsSettings">true</longPathAware>\n    </windowsSett' | ||||
|  b'ings>\n  </application>\n  <dependency>\n    <dependentAssembly>\n      <ass' | ||||
|  b'emblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version=' | ||||
|  b'"6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" langua' | ||||
|  b'ge="*"/>\n    </dependentAssembly>\n  </dependency>\n</assembly>', | ||||
|  True, | ||||
|  False, | ||||
|  None, | ||||
|  None, | ||||
|  None, | ||||
|  'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|  'game\\Path game.pkg', | ||||
|  [('pyi-contents-directory _internal', '', 'OPTION'), | ||||
|   ('PYZ-00.pyz', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\PYZ-00.pyz', | ||||
|    'PYZ'), | ||||
|   ('struct', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\localpycs\\struct.pyc', | ||||
|    'PYMODULE'), | ||||
|   ('pyimod01_archive', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\localpycs\\pyimod01_archive.pyc', | ||||
|    'PYMODULE'), | ||||
|   ('pyimod02_importers', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\localpycs\\pyimod02_importers.pyc', | ||||
|    'PYMODULE'), | ||||
|   ('pyimod03_ctypes', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\localpycs\\pyimod03_ctypes.pyc', | ||||
|    'PYMODULE'), | ||||
|   ('pyimod04_pywin32', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\localpycs\\pyimod04_pywin32.pyc', | ||||
|    'PYMODULE'), | ||||
|   ('pyiboot01_bootstrap', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', | ||||
|    'PYSOURCE'), | ||||
|   ('pyi_rth_inspect', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', | ||||
|    'PYSOURCE'), | ||||
|   ('Path game', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\Path game.py', | ||||
|    'PYSOURCE')], | ||||
|  [], | ||||
|  False, | ||||
|  False, | ||||
|  1710203189, | ||||
|  [('run.exe', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe', | ||||
|    'EXECUTABLE')], | ||||
|  'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\python312.dll') | ||||
							
								
								
									
										53
									
								
								Tucker/build/Path game/PKG-00.toc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										53
									
								
								Tucker/build/Path game/PKG-00.toc
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,53 @@ | ||||
| ('C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|  'game\\Path game.pkg', | ||||
|  {'BINARY': True, | ||||
|   'DATA': True, | ||||
|   'EXECUTABLE': True, | ||||
|   'EXTENSION': True, | ||||
|   'PYMODULE': True, | ||||
|   'PYSOURCE': True, | ||||
|   'PYZ': False, | ||||
|   'SPLASH': True, | ||||
|   'SYMLINK': False}, | ||||
|  [('pyi-contents-directory _internal', '', 'OPTION'), | ||||
|   ('PYZ-00.pyz', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\PYZ-00.pyz', | ||||
|    'PYZ'), | ||||
|   ('struct', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\localpycs\\struct.pyc', | ||||
|    'PYMODULE'), | ||||
|   ('pyimod01_archive', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\localpycs\\pyimod01_archive.pyc', | ||||
|    'PYMODULE'), | ||||
|   ('pyimod02_importers', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\localpycs\\pyimod02_importers.pyc', | ||||
|    'PYMODULE'), | ||||
|   ('pyimod03_ctypes', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\localpycs\\pyimod03_ctypes.pyc', | ||||
|    'PYMODULE'), | ||||
|   ('pyimod04_pywin32', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|    'game\\localpycs\\pyimod04_pywin32.pyc', | ||||
|    'PYMODULE'), | ||||
|   ('pyiboot01_bootstrap', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', | ||||
|    'PYSOURCE'), | ||||
|   ('pyi_rth_inspect', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', | ||||
|    'PYSOURCE'), | ||||
|   ('Path game', | ||||
|    'C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\Path game.py', | ||||
|    'PYSOURCE')], | ||||
|  'python312.dll', | ||||
|  True, | ||||
|  False, | ||||
|  False, | ||||
|  [], | ||||
|  None, | ||||
|  None, | ||||
|  None) | ||||
							
								
								
									
										
											BIN
										
									
								
								Tucker/build/Path game/PYZ-00.pyz
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/build/Path game/PYZ-00.pyz
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										308
									
								
								Tucker/build/Path game/PYZ-00.toc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										308
									
								
								Tucker/build/Path game/PYZ-00.toc
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,308 @@ | ||||
| ('C:\\Users\\tjtro\\OneDrive\\Documents\\Python\\Tucker\\build\\Path ' | ||||
|  'game\\PYZ-00.pyz', | ||||
|  [('_compat_pickle', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_compat_pickle.py', | ||||
|    'PYMODULE'), | ||||
|   ('_compression', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_compression.py', | ||||
|    'PYMODULE'), | ||||
|   ('_py_abc', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_py_abc.py', | ||||
|    'PYMODULE'), | ||||
|   ('_pydatetime', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_pydatetime.py', | ||||
|    'PYMODULE'), | ||||
|   ('_pydecimal', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_pydecimal.py', | ||||
|    'PYMODULE'), | ||||
|   ('_strptime', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_strptime.py', | ||||
|    'PYMODULE'), | ||||
|   ('_threading_local', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\_threading_local.py', | ||||
|    'PYMODULE'), | ||||
|   ('argparse', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\argparse.py', | ||||
|    'PYMODULE'), | ||||
|   ('ast', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\ast.py', | ||||
|    'PYMODULE'), | ||||
|   ('base64', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\base64.py', | ||||
|    'PYMODULE'), | ||||
|   ('bisect', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\bisect.py', | ||||
|    'PYMODULE'), | ||||
|   ('bz2', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\bz2.py', | ||||
|    'PYMODULE'), | ||||
|   ('calendar', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\calendar.py', | ||||
|    'PYMODULE'), | ||||
|   ('contextlib', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\contextlib.py', | ||||
|    'PYMODULE'), | ||||
|   ('contextvars', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\contextvars.py', | ||||
|    'PYMODULE'), | ||||
|   ('copy', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\copy.py', | ||||
|    'PYMODULE'), | ||||
|   ('csv', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\csv.py', | ||||
|    'PYMODULE'), | ||||
|   ('dataclasses', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\dataclasses.py', | ||||
|    'PYMODULE'), | ||||
|   ('datetime', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\datetime.py', | ||||
|    'PYMODULE'), | ||||
|   ('decimal', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\decimal.py', | ||||
|    'PYMODULE'), | ||||
|   ('dis', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\dis.py', | ||||
|    'PYMODULE'), | ||||
|   ('email', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('email._encoded_words', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_encoded_words.py', | ||||
|    'PYMODULE'), | ||||
|   ('email._header_value_parser', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_header_value_parser.py', | ||||
|    'PYMODULE'), | ||||
|   ('email._parseaddr', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_parseaddr.py', | ||||
|    'PYMODULE'), | ||||
|   ('email._policybase', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\_policybase.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.base64mime', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\base64mime.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.charset', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\charset.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.contentmanager', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\contentmanager.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.encoders', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\encoders.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.errors', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\errors.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.feedparser', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\feedparser.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.generator', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\generator.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.header', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\header.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.headerregistry', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\headerregistry.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.iterators', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\iterators.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.message', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\message.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.parser', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\parser.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.policy', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\policy.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.quoprimime', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\quoprimime.py', | ||||
|    'PYMODULE'), | ||||
|   ('email.utils', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\email\\utils.py', | ||||
|    'PYMODULE'), | ||||
|   ('fnmatch', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\fnmatch.py', | ||||
|    'PYMODULE'), | ||||
|   ('fractions', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\fractions.py', | ||||
|    'PYMODULE'), | ||||
|   ('getopt', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\getopt.py', | ||||
|    'PYMODULE'), | ||||
|   ('gettext', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\gettext.py', | ||||
|    'PYMODULE'), | ||||
|   ('gzip', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\gzip.py', | ||||
|    'PYMODULE'), | ||||
|   ('hashlib', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\hashlib.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib._abc', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_abc.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib._bootstrap', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_bootstrap.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib._bootstrap_external', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\_bootstrap_external.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.abc', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\abc.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.machinery', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\machinery.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._adapters', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_adapters.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._collections', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_collections.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._functools', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_functools.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._itertools', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_itertools.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._meta', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_meta.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.metadata._text', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\metadata\\_text.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.readers', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\readers.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources._adapters', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_adapters.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources._common', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_common.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources._itertools', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_itertools.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources._legacy', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\_legacy.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources.abc', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\abc.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.resources.readers', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\resources\\readers.py', | ||||
|    'PYMODULE'), | ||||
|   ('importlib.util', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\importlib\\util.py', | ||||
|    'PYMODULE'), | ||||
|   ('inspect', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\inspect.py', | ||||
|    'PYMODULE'), | ||||
|   ('ipaddress', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\ipaddress.py', | ||||
|    'PYMODULE'), | ||||
|   ('logging', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\logging\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('lzma', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\lzma.py', | ||||
|    'PYMODULE'), | ||||
|   ('numbers', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\numbers.py', | ||||
|    'PYMODULE'), | ||||
|   ('opcode', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\opcode.py', | ||||
|    'PYMODULE'), | ||||
|   ('pathlib', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pathlib.py', | ||||
|    'PYMODULE'), | ||||
|   ('pickle', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pickle.py', | ||||
|    'PYMODULE'), | ||||
|   ('pprint', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\pprint.py', | ||||
|    'PYMODULE'), | ||||
|   ('py_compile', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\py_compile.py', | ||||
|    'PYMODULE'), | ||||
|   ('quopri', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\quopri.py', | ||||
|    'PYMODULE'), | ||||
|   ('random', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\random.py', | ||||
|    'PYMODULE'), | ||||
|   ('selectors', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\selectors.py', | ||||
|    'PYMODULE'), | ||||
|   ('shutil', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\shutil.py', | ||||
|    'PYMODULE'), | ||||
|   ('signal', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\signal.py', | ||||
|    'PYMODULE'), | ||||
|   ('socket', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\socket.py', | ||||
|    'PYMODULE'), | ||||
|   ('statistics', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\statistics.py', | ||||
|    'PYMODULE'), | ||||
|   ('string', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\string.py', | ||||
|    'PYMODULE'), | ||||
|   ('stringprep', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\stringprep.py', | ||||
|    'PYMODULE'), | ||||
|   ('subprocess', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\subprocess.py', | ||||
|    'PYMODULE'), | ||||
|   ('tarfile', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tarfile.py', | ||||
|    'PYMODULE'), | ||||
|   ('tempfile', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tempfile.py', | ||||
|    'PYMODULE'), | ||||
|   ('textwrap', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\textwrap.py', | ||||
|    'PYMODULE'), | ||||
|   ('threading', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\threading.py', | ||||
|    'PYMODULE'), | ||||
|   ('token', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\token.py', | ||||
|    'PYMODULE'), | ||||
|   ('tokenize', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tokenize.py', | ||||
|    'PYMODULE'), | ||||
|   ('tracemalloc', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tracemalloc.py', | ||||
|    'PYMODULE'), | ||||
|   ('typing', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\typing.py', | ||||
|    'PYMODULE'), | ||||
|   ('urllib', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\urllib\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('urllib.parse', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\urllib\\parse.py', | ||||
|    'PYMODULE'), | ||||
|   ('zipfile', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('zipfile._path', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\_path\\__init__.py', | ||||
|    'PYMODULE'), | ||||
|   ('zipfile._path.glob', | ||||
|    'C:\\Users\\tjtro\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\zipfile\\_path\\glob.py', | ||||
|    'PYMODULE')]) | ||||
							
								
								
									
										
											BIN
										
									
								
								Tucker/build/Path game/Path game.exe
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/build/Path game/Path game.exe
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/build/Path game/Path game.pkg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/build/Path game/Path game.pkg
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/build/Path game/base_library.zip
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/build/Path game/base_library.zip
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/build/Path game/localpycs/pyimod01_archive.pyc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/build/Path game/localpycs/pyimod01_archive.pyc
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/build/Path game/localpycs/pyimod02_importers.pyc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/build/Path game/localpycs/pyimod02_importers.pyc
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/build/Path game/localpycs/pyimod03_ctypes.pyc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/build/Path game/localpycs/pyimod03_ctypes.pyc
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/build/Path game/localpycs/pyimod04_pywin32.pyc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/build/Path game/localpycs/pyimod04_pywin32.pyc
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/build/Path game/localpycs/struct.pyc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/build/Path game/localpycs/struct.pyc
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										24
									
								
								Tucker/build/Path game/warn-Path game.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								Tucker/build/Path game/warn-Path game.txt
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,24 @@ | ||||
| 
 | ||||
| This file lists modules PyInstaller was not able to find. This does not | ||||
| necessarily mean this module is required for running your program. Python and | ||||
| Python 3rd-party packages include a lot of conditional or optional modules. For | ||||
| example the module 'ntpath' only exists on Windows, whereas the module | ||||
| 'posixpath' only exists on Posix systems. | ||||
| 
 | ||||
| Types if import: | ||||
| * top-level: imported at the top-level - look at these first | ||||
| * conditional: imported within an if-statement | ||||
| * delayed: imported within a function | ||||
| * optional: imported within a try-except-statement | ||||
| 
 | ||||
| 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 pwd - imported by posixpath (delayed, conditional, optional), 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 posixpath (optional), shutil (conditional), importlib._bootstrap_external (conditional), os (conditional, optional) | ||||
| missing module named resource - imported by posix (top-level) | ||||
| missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional) | ||||
| excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional) | ||||
| missing module named _posixsubprocess - imported by subprocess (conditional) | ||||
| missing module named fcntl - imported by subprocess (optional) | ||||
							
								
								
									
										7183
									
								
								Tucker/build/Path game/xref-Path game.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7183
									
								
								Tucker/build/Path game/xref-Path game.html
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/Path game.exe
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/Path game.exe
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/VCRUNTIME140.dll
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/VCRUNTIME140.dll
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/_bz2.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/_bz2.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/_decimal.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/_decimal.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/_hashlib.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/_hashlib.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/_lzma.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/_lzma.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/_socket.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/_socket.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/base_library.zip
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/base_library.zip
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/libcrypto-3.dll
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/libcrypto-3.dll
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/python312.dll
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/python312.dll
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/select.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/select.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/unicodedata.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								Tucker/dist/Path game/_internal/unicodedata.pyd
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										5
									
								
								Tucker_character_1.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								Tucker_character_1.txt
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,5 @@ | ||||
| tuck | ||||
| elf | ||||
| ranged | ||||
| dead shot | ||||
| magic bows | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user