├── FOSDEM ├── LetaBotSource │ ├── BaseManager.cpp │ ├── BaseManager.h │ ├── BuildOrderManager.cpp │ ├── BuildOrderManager.h │ ├── BuildingManager.cpp │ ├── BuildingManager.h │ ├── Common.cpp │ ├── Common.h │ ├── Dll.cpp │ ├── GeneralManager.cpp │ ├── GeneralManager.h │ ├── InformationManager.cpp │ ├── InformationManager.h │ ├── LetaBotModule.cpp │ ├── LetaBotModule.h │ ├── MacroManager.cpp │ ├── MacroManager.h │ ├── MicroManagerProtoss.cpp │ ├── MicroManagerProtoss.h │ ├── MicroManagerTerran.cpp │ ├── MicroManagerTerran.h │ ├── MicroManagerZerg.cpp │ ├── MicroManagerZerg.h │ ├── ProductionManager.cpp │ ├── ProductionManager.h │ ├── RepairManager.cpp │ ├── RepairManager.h │ ├── SKManager.cpp │ ├── SKManager.h │ ├── ScannerManager.cpp │ ├── ScannerManager.h │ ├── ScoutManager.cpp │ ├── ScoutManager.h │ ├── Timer.hpp │ ├── WorkerDefenceManager.cpp │ ├── WorkerDefenceManager.h │ ├── WraithManager.cpp │ ├── WraithManager.h │ ├── WraithMicro.cpp │ └── WraithMicro.h └── README.md ├── LICENCE.md ├── Old Versions ├── 2RaxSCVAllin.dll ├── BBSbotv03.dll ├── BunkerRushBotv04.dll ├── LetaBotCIG2017 │ └── Source │ │ ├── BaseManager.cpp │ │ ├── BaseManager.h │ │ ├── BuildOrderManager.cpp │ │ ├── BuildOrderManager.h │ │ ├── BuildingManager.cpp │ │ ├── BuildingManager.h │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── Dll.cpp │ │ ├── GeneralManager.cpp │ │ ├── GeneralManager.h │ │ ├── InformationManager.cpp │ │ ├── InformationManager.h │ │ ├── LetaBotModule.cpp │ │ ├── LetaBotModule.cpp~ │ │ ├── LetaBotModule.h │ │ ├── MacroManager.cpp │ │ ├── MacroManager.h │ │ ├── MarineRushManager.cpp │ │ ├── MarineRushManager.h │ │ ├── MicroManagerProtoss.cpp │ │ ├── MicroManagerProtoss.h │ │ ├── MicroManagerTerran.cpp │ │ ├── MicroManagerTerran.h │ │ ├── MicroManagerZerg.cpp │ │ ├── MicroManagerZerg.h │ │ ├── ProductionManager.cpp │ │ ├── ProductionManager.h │ │ ├── RepairManager.cpp │ │ ├── RepairManager.h │ │ ├── SKManager.cpp │ │ ├── SKManager.h │ │ ├── ScannerManager.cpp │ │ ├── ScannerManager.h │ │ ├── ScoutManager.cpp │ │ ├── ScoutManager.h │ │ ├── Timer.hpp │ │ ├── WorkerAttackManager.cpp │ │ ├── WorkerAttackManager.h │ │ ├── WorkerDefenceManager.cpp │ │ ├── WorkerDefenceManager.h │ │ ├── WraithManager.cpp │ │ ├── WraithManager.h │ │ ├── WraithMicro.cpp │ │ └── WraithMicro.h └── SCVRushBot12.dll ├── README.md └── Research ├── LetaMicroTourAutoHeuristics ├── Micro │ ├── 1 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 4 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 44.txt │ │ │ ├── 44Readable.txt │ │ │ ├── 45.txt │ │ │ ├── 45Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 10 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 11 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ ├── 25 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 29 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 40 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 41 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 47 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 60 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ ├── 61 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 66 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 67 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 74 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 75 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 76 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 77 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 85 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 44.txt │ │ │ ├── 44Readable.txt │ │ │ ├── 45.txt │ │ │ ├── 45Readable.txt │ │ │ ├── 46.txt │ │ │ ├── 46Readable.txt │ │ │ ├── 47.txt │ │ │ ├── 47Readable.txt │ │ │ ├── 48.txt │ │ │ ├── 48Readable.txt │ │ │ ├── 49.txt │ │ │ ├── 49Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 50.txt │ │ │ ├── 50Readable.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 86 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 2Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ ├── 87 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 89 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 91 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 93 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 44.txt │ │ │ ├── 44Readable.txt │ │ │ ├── 45.txt │ │ │ ├── 45Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 95 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 96 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 97 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 44.txt │ │ │ ├── 44Readable.txt │ │ │ ├── 45.txt │ │ │ ├── 45Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 98 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 99 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 101 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 103 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 116 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 44.txt │ │ │ ├── 44Readable.txt │ │ │ ├── 45.txt │ │ │ ├── 45Readable.txt │ │ │ ├── 46.txt │ │ │ ├── 46Readable.txt │ │ │ ├── 47.txt │ │ │ ├── 47Readable.txt │ │ │ ├── 48.txt │ │ │ ├── 48Readable.txt │ │ │ ├── 49.txt │ │ │ ├── 49Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 44.txt │ │ │ ├── 44Readable.txt │ │ │ ├── 45.txt │ │ │ ├── 45Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 128 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 129 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 137 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 139 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 141 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 142 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ ├── 143 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 44.txt │ │ │ ├── 44Readable.txt │ │ │ ├── 45.txt │ │ │ ├── 45Readable.txt │ │ │ ├── 46.txt │ │ │ ├── 46Readable.txt │ │ │ ├── 47.txt │ │ │ ├── 47Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 160 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 161 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 163 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 164 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ ├── 165 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 170 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 178 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 180 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ ├── 181 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 186 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 188 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 198 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 1Readable.txt │ │ │ └── Score.txt │ ├── 199 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 204 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 205 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 207 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 212 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 214 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 44.txt │ │ │ ├── 44Readable.txt │ │ │ ├── 45.txt │ │ │ ├── 45Readable.txt │ │ │ ├── 46.txt │ │ │ ├── 46Readable.txt │ │ │ ├── 47.txt │ │ │ ├── 47Readable.txt │ │ │ ├── 48.txt │ │ │ ├── 48Readable.txt │ │ │ ├── 49.txt │ │ │ ├── 49Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 10Readable.txt │ │ │ ├── 11.txt │ │ │ ├── 11Readable.txt │ │ │ ├── 12.txt │ │ │ ├── 12Readable.txt │ │ │ ├── 13.txt │ │ │ ├── 13Readable.txt │ │ │ ├── 14.txt │ │ │ ├── 14Readable.txt │ │ │ ├── 15.txt │ │ │ ├── 15Readable.txt │ │ │ ├── 16.txt │ │ │ ├── 16Readable.txt │ │ │ ├── 17.txt │ │ │ ├── 17Readable.txt │ │ │ ├── 18.txt │ │ │ ├── 18Readable.txt │ │ │ ├── 19.txt │ │ │ ├── 19Readable.txt │ │ │ ├── 1Readable.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 20Readable.txt │ │ │ ├── 21.txt │ │ │ ├── 21Readable.txt │ │ │ ├── 22.txt │ │ │ ├── 22Readable.txt │ │ │ ├── 23.txt │ │ │ ├── 23Readable.txt │ │ │ ├── 24.txt │ │ │ ├── 24Readable.txt │ │ │ ├── 25.txt │ │ │ ├── 25Readable.txt │ │ │ ├── 26.txt │ │ │ ├── 26Readable.txt │ │ │ ├── 27.txt │ │ │ ├── 27Readable.txt │ │ │ ├── 28.txt │ │ │ ├── 28Readable.txt │ │ │ ├── 29.txt │ │ │ ├── 29Readable.txt │ │ │ ├── 2Readable.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 30Readable.txt │ │ │ ├── 31.txt │ │ │ ├── 31Readable.txt │ │ │ ├── 32.txt │ │ │ ├── 32Readable.txt │ │ │ ├── 33.txt │ │ │ ├── 33Readable.txt │ │ │ ├── 34.txt │ │ │ ├── 34Readable.txt │ │ │ ├── 35.txt │ │ │ ├── 35Readable.txt │ │ │ ├── 36.txt │ │ │ ├── 36Readable.txt │ │ │ ├── 37.txt │ │ │ ├── 37Readable.txt │ │ │ ├── 38.txt │ │ │ ├── 38Readable.txt │ │ │ ├── 39.txt │ │ │ ├── 39Readable.txt │ │ │ ├── 3Readable.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 40Readable.txt │ │ │ ├── 41.txt │ │ │ ├── 41Readable.txt │ │ │ ├── 42.txt │ │ │ ├── 42Readable.txt │ │ │ ├── 43.txt │ │ │ ├── 43Readable.txt │ │ │ ├── 44.txt │ │ │ ├── 44Readable.txt │ │ │ ├── 45.txt │ │ │ ├── 45Readable.txt │ │ │ ├── 46.txt │ │ │ ├── 46Readable.txt │ │ │ ├── 47.txt │ │ │ ├── 47Readable.txt │ │ │ ├── 4Readable.txt │ │ │ ├── 5.txt │ │ │ ├── 5Readable.txt │ │ │ ├── 6.txt │ │ │ ├── 6Readable.txt │ │ │ ├── 7.txt │ │ │ ├── 7Readable.txt │ │ │ ├── 8.txt │ │ │ ├── 8Readable.txt │ │ │ ├── 9.txt │ │ │ ├── 9Readable.txt │ │ │ └── Score.txt │ ├── 218 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── 219 │ │ ├── Left │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ │ └── Right │ │ │ ├── 0.txt │ │ │ ├── 0Readable.txt │ │ │ └── Score.txt │ ├── Check1.py │ └── GenerareDir.py ├── MicroTournament10.6h.scx ├── MicroTournament10.6m.scx ├── dll │ └── LetaMicro.dll ├── readme.md ├── readme.txt └── src │ └── LetaBot │ ├── FileStructure.txt │ ├── Source │ ├── Common.cpp │ ├── Common.h │ ├── Dll.cpp │ ├── LetaBotModule.cpp │ ├── LetaBotModule.h │ ├── LevelSelector.cpp │ ├── LevelSelector.h │ ├── MicroModule.cpp │ ├── MicroModule.h │ ├── VultureManager.cpp │ ├── VultureManager.h │ ├── WraithMicro.cpp │ └── WraithMicro.h │ └── VisualStudio │ ├── LetaBot.suo │ ├── LetaBot.v11.suo │ ├── LetaBot.vcxproj │ ├── LetaMicro.sln │ ├── LetaMicro.v11.suo │ ├── Release │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Common.obj │ ├── Dll.obj │ ├── LetaBot.log │ ├── LetaBotModule.obj │ ├── LetaMicro.dll │ ├── LetaMicro.dll.intermediate.manifest │ ├── LetaMicro.dll.lastcodeanalysissucceeded │ ├── LetaMicro.exp │ ├── LetaMicro.lastbuildstate │ ├── LetaMicro.lib │ ├── LetaMicro.map │ ├── LetaMicro.pdb │ ├── LetaMicro.write.1.tlog │ ├── LevelSelector.obj │ ├── MicroModule.obj │ ├── NativeCodeAnalysis.read.1.tlog │ ├── VultureManager.obj │ ├── WraithMicro.obj │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ ├── vc.nativecodeanalysis.all.xml │ └── vc90.pdb │ └── UAlbertaBot.vcxproj.user ├── MineralGatheringAlgorithm ├── Astral Mineral.scm ├── README.md ├── Source │ ├── Common.cpp │ ├── Common.h │ ├── Dll.cpp │ ├── LetaBotModule.cpp │ └── LetaBotModule.h ├── VisualStudio │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Common.obj │ │ ├── Dll.obj │ │ ├── LetaBot.lastbuildstate │ │ ├── LetaBot.log │ │ ├── LetaBotModule.obj │ │ ├── LetaMicro.Build.CppClean.log │ │ ├── LetaMicro.dll │ │ ├── LetaMicro.lastbuildstate │ │ ├── LetaMicro.lib │ │ ├── Minerals.dll │ │ ├── Minerals.dll.embed.manifest │ │ ├── Minerals.dll.embed.manifest.res │ │ ├── Minerals.dll.intermediate.manifest │ │ ├── Minerals.exp │ │ ├── Minerals.ilk │ │ ├── Minerals.lastbuildstate │ │ ├── Minerals.lib │ │ ├── Minerals.log │ │ ├── Minerals.pdb │ │ ├── Minerals.write.1.tlog │ │ ├── Minerals_manifest.rc │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link.3000-cvtres.read.1.tlog │ │ ├── link.3000-cvtres.write.1.tlog │ │ ├── link.3000.read.1.tlog │ │ ├── link.3000.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mt.command.1.tlog │ │ ├── mt.read.1.tlog │ │ ├── mt.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ ├── rc.write.1.tlog │ │ ├── vc90.idb │ │ └── vc90.pdb │ ├── LetaBot.suo │ ├── LetaBot.v11.suo │ ├── LetaBot.vcxproj.user │ ├── LetaMicro.v11.suo │ ├── Minerals.opensdf │ ├── Minerals.sln │ ├── Minerals.v11.suo │ ├── Minerals.vcxproj │ ├── Minerals.vcxproj.user │ ├── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Common.obj │ │ ├── Dll.obj │ │ ├── LetaBotModule.obj │ │ ├── Minerals.dll │ │ ├── Minerals.dll.intermediate.manifest │ │ ├── Minerals.dll.lastcodeanalysissucceeded │ │ ├── Minerals.exp │ │ ├── Minerals.lastbuildstate │ │ ├── Minerals.lib │ │ ├── Minerals.log │ │ ├── Minerals.map │ │ ├── Minerals.pdb │ │ ├── Minerals.write.1.tlog │ │ ├── NativeCodeAnalysis.read.1.tlog │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mt.command.1.tlog │ │ ├── mt.read.1.tlog │ │ ├── mt.write.1.tlog │ │ ├── vc.nativecodeanalysis.all.xml │ │ └── vc90.pdb │ └── UAlbertaBot.vcxproj.user └── dll.rar └── README.md /FOSDEM/LetaBotSource/BaseManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/BaseManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/BaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/BaseManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/BuildOrderManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/BuildOrderManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/BuildOrderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/BuildOrderManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/BuildingManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/BuildingManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/BuildingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/BuildingManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/Common.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/Common.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/Dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/Dll.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/GeneralManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/GeneralManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/GeneralManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/GeneralManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/InformationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/InformationManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/InformationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/InformationManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/LetaBotModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/LetaBotModule.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/LetaBotModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/LetaBotModule.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/MacroManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/MacroManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/MacroManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/MacroManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/MicroManagerProtoss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/MicroManagerProtoss.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/MicroManagerProtoss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/MicroManagerProtoss.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/MicroManagerTerran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/MicroManagerTerran.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/MicroManagerTerran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/MicroManagerTerran.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/MicroManagerZerg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/MicroManagerZerg.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/MicroManagerZerg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/MicroManagerZerg.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/ProductionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/ProductionManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/ProductionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/ProductionManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/RepairManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/RepairManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/RepairManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/RepairManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/SKManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/SKManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/SKManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/SKManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/ScannerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/ScannerManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/ScannerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/ScannerManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/ScoutManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/ScoutManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/ScoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/ScoutManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/Timer.hpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/WorkerDefenceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/WorkerDefenceManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/WorkerDefenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/WorkerDefenceManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/WraithManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/WraithManager.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/WraithManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/WraithManager.h -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/WraithMicro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/WraithMicro.cpp -------------------------------------------------------------------------------- /FOSDEM/LetaBotSource/WraithMicro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/FOSDEM/LetaBotSource/WraithMicro.h -------------------------------------------------------------------------------- /FOSDEM/README.md: -------------------------------------------------------------------------------- 1 | FOSDEM version. Basically my bot converted to 4.4 2 | -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/LICENCE.md -------------------------------------------------------------------------------- /Old Versions/2RaxSCVAllin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/2RaxSCVAllin.dll -------------------------------------------------------------------------------- /Old Versions/BBSbotv03.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/BBSbotv03.dll -------------------------------------------------------------------------------- /Old Versions/BunkerRushBotv04.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/BunkerRushBotv04.dll -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/BaseManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/BaseManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/BaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/BaseManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/BuildOrderManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/BuildOrderManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/BuildOrderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/BuildOrderManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/BuildingManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/BuildingManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/BuildingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/BuildingManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/Common.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/Common.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/Dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/Dll.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/GeneralManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/GeneralManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/GeneralManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/GeneralManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/InformationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/InformationManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/InformationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/InformationManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/LetaBotModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/LetaBotModule.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/LetaBotModule.cpp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/LetaBotModule.cpp~ -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/LetaBotModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/LetaBotModule.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/MacroManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/MacroManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/MacroManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/MacroManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/MarineRushManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/MarineRushManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/MarineRushManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/MarineRushManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/MicroManagerProtoss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/MicroManagerProtoss.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/MicroManagerProtoss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/MicroManagerProtoss.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/MicroManagerTerran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/MicroManagerTerran.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/MicroManagerTerran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/MicroManagerTerran.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/MicroManagerZerg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/MicroManagerZerg.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/MicroManagerZerg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/MicroManagerZerg.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/ProductionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/ProductionManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/ProductionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/ProductionManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/RepairManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/RepairManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/RepairManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/RepairManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/SKManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/SKManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/SKManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/SKManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/ScannerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/ScannerManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/ScannerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/ScannerManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/ScoutManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/ScoutManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/ScoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/ScoutManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/Timer.hpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/WorkerAttackManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/WorkerAttackManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/WorkerAttackManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/WorkerAttackManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/WorkerDefenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/WorkerDefenceManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/WraithManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/WraithManager.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/WraithManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/WraithManager.h -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/WraithMicro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/WraithMicro.cpp -------------------------------------------------------------------------------- /Old Versions/LetaBotCIG2017/Source/WraithMicro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/LetaBotCIG2017/Source/WraithMicro.h -------------------------------------------------------------------------------- /Old Versions/SCVRushBot12.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Old Versions/SCVRushBot12.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/README.md -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/10.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/11.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/12.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/13.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/14.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/15.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/16.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/17.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/18.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/19.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/20.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/21.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/22.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/23.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/24.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/25.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/26.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/27.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/28.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/29.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/30.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/31.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/32.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/33.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/34.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/35.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/10.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/11.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/12.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/13.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/14.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/15.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/16.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/17.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/18.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/19.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/20.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/21.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/22.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/23.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/24.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/25.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/26.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/27.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/28.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/29.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/30.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/31.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/32.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/33.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/34.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/35.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/36.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/37.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/38.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/1/Right/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/1/Right/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/10/Left/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 37 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/10/Left/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Zerg Mutalisk 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/10/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/10/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/10/Right/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 54 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/10/Right/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Protoss Corsair 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/10/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/10.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/11.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/12.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/13.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/14.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/15.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/16.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/17.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/18.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/19.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/20.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/21.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/22.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/23.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/24.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/25.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/26.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/27.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/28.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/29.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Right/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Right/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Right/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Right/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Right/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Right/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Right/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Right/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Right/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Right/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Right/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Right/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Right/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Right/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Right/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Right/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Right/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Right/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/101/Right/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/101/Right/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/10.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/11.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/12.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/13.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/14.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/15.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/16.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/17.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/18.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/19.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/20.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/21.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/22.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/23.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/24.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/25.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/26.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/27.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/28.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/29.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/30.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/31.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/32.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/33.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/34.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/35.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/36.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/37.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/38.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/39.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/40.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/41.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/42.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/43.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Right/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Right/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Right/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Right/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Right/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Right/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Right/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Right/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Right/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Right/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Right/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Right/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Right/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Right/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Right/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Right/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Right/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Right/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/103/Right/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/103/Right/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/11/Left/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 54 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/11/Left/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Protoss Corsair 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/11/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/11/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/11/Right/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 37 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/11/Right/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Zerg Mutalisk 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/11/Right/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/11/Right/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 31 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/10.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/11.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/12.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/13.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/14.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/15.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/16.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/17.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/18.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/19.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/20.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/21.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/22.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/23.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/24.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/25.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/26.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/27.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/28.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/29.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/30.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/31.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/32.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/33.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/34.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/35.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/36.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/37.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/38.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/39.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/40.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/41.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/42.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/43.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/44.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/45.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/46.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/47.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/48.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/49.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Right/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Right/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Right/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Right/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Right/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Right/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Right/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Right/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Right/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Right/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Right/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Right/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Right/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Right/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Right/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Right/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Right/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Right/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/116/Right/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/116/Right/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/128/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/128/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/128/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 4 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/128/Right/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/128/Right/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/128/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -4 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/129/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/129/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/129/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -7 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/129/Right/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/129/Right/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/129/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 7 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/10.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/11.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/12.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/13.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/14.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/15.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/16.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/17.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/18.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/19.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/20.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/21.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/22.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/23.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/24.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/25.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/26.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/27.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/28.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/29.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/30.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/31.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/32.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/33.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/34.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/35.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Right/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Right/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Right/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Right/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Right/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Right/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Right/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Right/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Right/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Right/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Right/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Right/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Right/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Right/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Right/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Right/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Right/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Right/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/137/Right/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/137/Right/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/10.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/11.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/12.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/13.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/14.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/15.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/16.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/17.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/18.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/19.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/20.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/21.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/22.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/23.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/24.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/25.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/26.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/27.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/28.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/29.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/30.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/31.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/32.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/33.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/34.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/35.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/36.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Right/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Right/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Right/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Right/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Right/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Right/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Right/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Right/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Right/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Right/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Right/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Right/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Right/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Right/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Right/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Right/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Right/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Right/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/139/Right/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/139/Right/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/10.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/11.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/12.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/13.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/14.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/15.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/16.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/17.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/18.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/19.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/20.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/21.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/22.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/23.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/24.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/25.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/26.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/27.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Right/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Right/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Right/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Right/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Right/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Right/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Right/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Right/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Right/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Right/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Right/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Right/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Right/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Right/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Right/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Right/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Right/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Right/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/141/Right/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/141/Right/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/142/Left/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 52 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/142/Left/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Terran Valkyrie 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/142/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/142/Right/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/142/Right/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/142/Right/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/142/Right/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/143/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/143/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/143/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/143/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/143/Left/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/143/Left/10.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/143/Left/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/143/Left/11.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/143/Left/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/143/Left/12.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/143/Left/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/143/Left/13.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/143/Right/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 52 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/143/Right/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Terran Valkyrie 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/160/Right/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/160/Right/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Terran Vulture 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/160/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -9 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/161/Left/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/161/Left/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Terran Vulture 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/161/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 6 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/164/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 17 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/165/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -18 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/165/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 18 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/170/Left/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 31 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/180/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -4 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/181/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 5 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/181/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -5 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/186/Left/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 47 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/186/Left/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Hero Hunter Killer 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/198/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 9 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/199/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -8 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/199/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 8 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/205/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -12 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/205/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 12 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/218/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 13 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/218/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -13 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/219/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -14 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/219/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 14 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/25/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/25/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/25/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/25/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/25/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/25/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/25/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/25/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/25/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/25/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/25/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/25/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/25/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/25/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/25/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/25/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/25/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/25/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/25/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/25/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/29/Left/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 48 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/29/Left/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Hero Devouring One 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/29/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/29/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/29/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/29/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/29/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/29/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/29/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/29/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/29/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/29/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/29/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/29/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/29/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/29/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/29/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/29/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/29/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/29/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/10.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/11.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/12.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/13.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/14.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/15.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/16.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/17.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/18.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/19.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/20.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/21.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/22.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/23.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/24.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/25.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/26.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/27.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/28.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/29.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/30.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/31.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/32.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/33.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/34.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/35.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/36.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/37.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/38.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/39.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Right/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Right/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Right/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Right/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Right/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Right/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Right/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Right/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Right/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Right/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Right/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Right/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Right/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Right/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Right/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Right/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Right/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Right/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/4/Right/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/4/Right/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/40/Left/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 54 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/40/Left/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Protoss Corsair 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/40/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 5 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/40/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -5 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/41/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/41/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/41/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -7 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/41/Right/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 54 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/41/Right/0Readable.txt: -------------------------------------------------------------------------------- 1 | 1 2 | Protoss Corsair 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/41/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 7 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/47/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/47/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/47/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/47/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/47/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/47/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/47/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/47/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/47/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/47/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/47/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/47/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/47/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/47/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/47/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/47/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/47/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/47/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/47/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/47/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/60/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/60/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/60/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 20 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/61/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/61/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/61/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -18 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/61/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 18 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/66/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/66/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/66/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 7 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/66/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -7 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/67/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/67/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/67/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/67/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/67/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/67/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/67/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/67/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/67/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/67/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/67/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/67/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/67/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/67/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/67/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/67/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/67/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/67/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/67/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/67/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/74/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/74/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/74/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 9 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/74/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -9 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/75/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/75/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/75/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/75/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/75/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/75/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/75/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/75/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/75/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/75/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/75/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/75/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/75/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/75/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/75/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/75/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/75/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/75/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/75/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/75/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/76/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/76/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/76/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 8 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/76/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -8 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/77/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/77/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/77/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/77/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/77/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/85/Left/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 31 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/85/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/85/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/85/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/85/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/85/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/85/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/85/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/85/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/85/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/85/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/85/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/85/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/85/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/85/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/85/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/85/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/85/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/85/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/86/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/86/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/86/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/86/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/86/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/86/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/86/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -8 3 | -6 4 | -15 5 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/86/Right/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 31 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/86/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 8 3 | 6 4 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/87/Left/0.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 31 3 | 1 4 | 0 5 | 1 Attack_Closest 1 6 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/87/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/87/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/87/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/87/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/87/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/87/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/87/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/87/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/87/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/87/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/87/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/87/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/87/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/87/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/87/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/87/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/87/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/87/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/89/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/89/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/89/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/89/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/89/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/89/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/89/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/89/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/89/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/89/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/89/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/89/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/89/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/89/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/89/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/89/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/89/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/89/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/89/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/89/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/91/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/91/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/91/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/91/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/91/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/91/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/91/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/91/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/91/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/91/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/91/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/91/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/91/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/91/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/91/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/91/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/91/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/91/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/91/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/91/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/93/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/93/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/93/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/93/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/93/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/93/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/93/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/93/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/93/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/93/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/93/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/93/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/93/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/93/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/93/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/93/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/93/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/93/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/93/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/93/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/95/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/95/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/95/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/95/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/95/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/95/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/95/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/95/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/95/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/95/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/95/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/95/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/95/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/95/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/95/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/95/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/95/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/95/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/95/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/95/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/96/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/96/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/96/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 8 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/96/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -8 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/97/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/97/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/97/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/97/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/97/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/97/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/97/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/97/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/97/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/97/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/97/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/97/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/97/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/97/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/97/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/97/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/97/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/97/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/97/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/97/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/98/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/98/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/98/Left/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 14 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/98/Right/Score.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -14 3 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/99/Left/0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/99/Left/0.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/99/Left/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/99/Left/1.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/99/Left/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/99/Left/2.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/99/Left/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/99/Left/3.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/99/Left/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/99/Left/4.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/99/Left/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/99/Left/5.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/99/Left/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/99/Left/6.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/99/Left/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/99/Left/7.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/99/Left/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/99/Left/8.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/99/Left/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/99/Left/9.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/Micro/Check1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/Micro/Check1.py -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/dll/LetaMicro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/dll/LetaMicro.dll -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/readme.md -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/LetaMicroTourAutoHeuristics/readme.txt -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/src/LetaBot/VisualStudio/Release/LetaMicro.dll.lastcodeanalysissucceeded: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Research/LetaMicroTourAutoHeuristics/src/LetaBot/VisualStudio/Release/vc.nativecodeanalysis.all.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Research/MineralGatheringAlgorithm/Astral Mineral.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/MineralGatheringAlgorithm/Astral Mineral.scm -------------------------------------------------------------------------------- /Research/MineralGatheringAlgorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/MineralGatheringAlgorithm/README.md -------------------------------------------------------------------------------- /Research/MineralGatheringAlgorithm/Source/Common.cpp: -------------------------------------------------------------------------------- 1 | #include "Common.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /Research/MineralGatheringAlgorithm/Source/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/MineralGatheringAlgorithm/Source/Common.h -------------------------------------------------------------------------------- /Research/MineralGatheringAlgorithm/Source/Dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/MineralGatheringAlgorithm/Source/Dll.cpp -------------------------------------------------------------------------------- /Research/MineralGatheringAlgorithm/VisualStudio/Debug/Minerals.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v90:false 2 | Debug|Win32|D:\StarcraftCompetition\Minerals\src\LetaBot\VisualStudio\| 3 | -------------------------------------------------------------------------------- /Research/MineralGatheringAlgorithm/VisualStudio/Release/Minerals.dll.lastcodeanalysissucceeded: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Research/MineralGatheringAlgorithm/VisualStudio/Release/Minerals.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v90 2 | Release|Win32|C:\StarcraftCompetition\Minerals\src\LetaBot\VisualStudio\| 3 | -------------------------------------------------------------------------------- /Research/MineralGatheringAlgorithm/VisualStudio/Release/vc.nativecodeanalysis.all.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Research/MineralGatheringAlgorithm/dll.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/MineralGatheringAlgorithm/dll.rar -------------------------------------------------------------------------------- /Research/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRooijackers/LetaBot/HEAD/Research/README.md --------------------------------------------------------------------------------