Skip to content

Commit

Permalink
Delete AP-fixes and check them in apfix.pck from nds-bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Nov 10, 2024
1 parent 998366c commit 52ef5ab
Show file tree
Hide file tree
Showing 718 changed files with 296 additions and 802 deletions.
125 changes: 1 addition & 124 deletions quickmenu/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -346,127 +346,6 @@ void dsCardLaunch() {
stop();
}

/**
* Fix AP for some games.
*/
std::string setApFix(const char *filename) {
if (flashcardFound()) {
remove("fat:/_nds/nds-bootstrap/apFix.ips");
remove("fat:/_nds/nds-bootstrap/apFixCheat.bin");
}

bool ipsFound = false;
bool cheatVer = true;
char ipsPath[256];
char ipsPath2[256];
if (!ipsFound) {
snprintf(ipsPath, sizeof(ipsPath), "%s:/_nds/TWiLightMenu/extras/apfix/cht/%s.bin", sys().isRunFromSD() ? "sd" : "fat", filename);
ipsFound = (access(ipsPath, F_OK) == 0);
}

if (!ipsFound) {
snprintf(ipsPath, sizeof(ipsPath), "%s:/_nds/TWiLightMenu/extras/apfix/cht/%s-%X.bin", sys().isRunFromSD() ? "sd" : "fat", gameTid[ms().secondaryDevice], headerCRC[ms().secondaryDevice]);
ipsFound = (access(ipsPath, F_OK) == 0);
}

if (!ipsFound) {
snprintf(ipsPath, sizeof(ipsPath), "%s:/_nds/TWiLightMenu/extras/apfix/%s.ips", sys().isRunFromSD() ? "sd" : "fat", filename);
ipsFound = (access(ipsPath, F_OK) == 0);
if (ipsFound) {
cheatVer = false;
}
}

if (!ipsFound) {
snprintf(ipsPath, sizeof(ipsPath), "%s:/_nds/TWiLightMenu/extras/apfix/%s-%X.ips", sys().isRunFromSD() ? "sd" : "fat", gameTid[ms().secondaryDevice], headerCRC[ms().secondaryDevice]);
ipsFound = (access(ipsPath, F_OK) == 0);
if (ipsFound) {
cheatVer = false;
}
}

if (ipsFound) {
if (ms().secondaryDevice && sys().isRunFromSD()) {
mkdir("fat:/_nds", 0777);
mkdir("fat:/_nds/nds-bootstrap", 0777);
fcopy(ipsPath, cheatVer ? "fat:/_nds/nds-bootstrap/apFixCheat.bin" : "fat:/_nds/nds-bootstrap/apFix.ips");
return cheatVer ? "fat:/_nds/nds-bootstrap/apFixCheat.bin" : "fat:/_nds/nds-bootstrap/apFix.ips";
}
return ipsPath;
} else {
FILE *file = fopen(sys().isRunFromSD() ? "sd:/_nds/TWiLightMenu/extras/apfix.pck" : "fat:/_nds/TWiLightMenu/extras/apfix.pck", "rb");
if (file) {
char buf[5] = {0};
fread(buf, 1, 4, file);
if (strcmp(buf, ".PCK") != 0) // Invalid file
return "";

u32 fileCount;
fread(&fileCount, 1, sizeof(fileCount), file);

u32 offset = 0, size = 0;

// Try binary search for the game
int left = 0;
int right = fileCount;

while (left <= right) {
int mid = left + ((right - left) / 2);
fseek(file, 16 + mid * 16, SEEK_SET);
fread(buf, 1, 4, file);
int cmp = strcmp(buf, gameTid[ms().secondaryDevice]);
if (cmp == 0) { // TID matches, check CRC
u16 crc;
fread(&crc, 1, sizeof(crc), file);

if (crc == headerCRC[ms().secondaryDevice]) { // CRC matches
fread(&offset, 1, sizeof(offset), file);
fread(&size, 1, sizeof(size), file);
cheatVer = fgetc(file) & 1;
break;
} else if (crc < headerCRC[ms().secondaryDevice]) {
left = mid + 1;
} else {
right = mid - 1;
}
} else if (cmp < 0) {
left = mid + 1;
} else {
right = mid - 1;
}
}

if (offset > 0 && size > 0) {
fseek(file, offset, SEEK_SET);
u8 *buffer = new u8[size];
fread(buffer, 1, size, file);

if (flashcardFound()) {
mkdir("fat:/_nds", 0777);
mkdir("fat:/_nds/nds-bootstrap", 0777);
}
snprintf(ipsPath, sizeof(ipsPath), "%s:/_nds/nds-bootstrap/apFix%s", ms().secondaryDevice ? "fat" : "sd", cheatVer ? "Cheat.bin" : ".ips");
snprintf(ipsPath2, sizeof(ipsPath2), "%s:/_nds/nds-bootstrap/apFix%s", ms().secondaryDevice ? "fat" : "sd", cheatVer ? ".ips" : "Cheat.bin");
if (access(ipsPath2, F_OK) == 0) {
remove(ipsPath2); // Delete leftover AP-fix file of opposite format
}
FILE *out = fopen(ipsPath, "wb");
if (out) {
fwrite(buffer, 1, size, out);
fclose(out);
}
delete[] buffer;
fclose(file);
return ipsPath;
}

fclose(file);
}
}

return "";
}

/**
* Enable widescreen for some games.
*/
Expand Down Expand Up @@ -2503,7 +2382,6 @@ int dsClassicMenu(void) {
bootstrapini.SetString("NDS-BOOTSTRAP", "APP_PATH", sfnSrl);
bootstrapini.SetString("NDS-BOOTSTRAP", "SAV_PATH", sfnPub);
bootstrapini.SetString("NDS-BOOTSTRAP", "PRV_PATH", sfnPrv);
bootstrapini.SetString("NDS-BOOTSTRAP", "AP_FIX_PATH", "");
bootstrapini.SetString("NDS-BOOTSTRAP", "MANUAL_PATH", getGameManual(filename[ms().secondaryDevice].c_str()));
bootstrapini.SetString("NDS-BOOTSTRAP", "GUI_LANGUAGE", ms().getGuiLanguageString());
bootstrapini.SetInt("NDS-BOOTSTRAP", "LANGUAGE", perGameSettings_language == -2 ? ms().gameLanguage : perGameSettings_language);
Expand Down Expand Up @@ -2719,7 +2597,6 @@ int dsClassicMenu(void) {
bootstrapini.SetString("NDS-BOOTSTRAP", "NDS_PATH", path);
bootstrapini.SetString("NDS-BOOTSTRAP", "SAV_PATH", savepath);
if (!isHomebrew[ms().secondaryDevice]) {
bootstrapini.SetString("NDS-BOOTSTRAP", "AP_FIX_PATH", setApFix(argarray[0]));
bootstrapini.SetString("NDS-BOOTSTRAP", "MANUAL_PATH", getGameManual(filename[ms().secondaryDevice].c_str()));
}
bootstrapini.SetString("NDS-BOOTSTRAP", "HOMEBREW_ARG", (useWidescreen && (gameTid[ms().secondaryDevice][0] == 'W' || romVersion[ms().secondaryDevice] == 0x57)) ? "wide" : "");
Expand Down Expand Up @@ -2793,7 +2670,7 @@ int dsClassicMenu(void) {
ms().previousUsedDevice = ms().secondaryDevice;
ms().saveSettings();

bool useNightly = (perGameSettings_bootstrapFile == -1 ? ms().bootstrapFile : perGameSettings_bootstrapFile);
const bool useNightly = (perGameSettings_bootstrapFile == -1 ? ms().bootstrapFile : perGameSettings_bootstrapFile);

char ndsToBoot[256];
sprintf(ndsToBoot, "%s:/_nds/nds-bootstrap-%s%s.nds", sys().isRunFromSD() ? "sd" : "fat", ms().homebrewBootstrap ? "hb-" : "", useNightly ? "nightly" : "release");
Expand Down
Binary file removed resources/apfix/A3PJ-BBF0.ips
Binary file not shown.
Binary file removed resources/apfix/A3YK-3DF8.ips
Binary file not shown.
Binary file removed resources/apfix/AEYK-45E7.ips
Binary file not shown.
Binary file removed resources/apfix/AFXE-C18F.ips
Binary file not shown.
Binary file removed resources/apfix/AFXP-864D.ips
Binary file not shown.
Binary file removed resources/apfix/ANMK-2F5F.ips
Binary file not shown.
Binary file removed resources/apfix/ARFK-3E44.ips
Binary file not shown.
Binary file removed resources/apfix/ARMK-71CA.ips
Binary file not shown.
Binary file removed resources/apfix/AWIK-892C.ips
Binary file not shown.
Binary file removed resources/apfix/AZLE-236A.ips
Binary file not shown.
Binary file removed resources/apfix/AZLK-CBEC.ips
Binary file not shown.
Binary file removed resources/apfix/AZLP-32D5.ips
Binary file not shown.
Binary file removed resources/apfix/B22J-6D77.ips
Binary file not shown.
Binary file removed resources/apfix/B2AK-4E74.ips
Binary file not shown.
Binary file removed resources/apfix/B2BJ-DE33.ips
Binary file not shown.
Binary file removed resources/apfix/B2BX-2F9D.ips
Binary file not shown.
Binary file removed resources/apfix/B2JJ-A7F1.ips
Binary file not shown.
Binary file removed resources/apfix/B2KJ-41A4.ips
Binary file not shown.
Binary file removed resources/apfix/B2KJ-714F.ips
Binary file not shown.
Binary file removed resources/apfix/B2KJ-8175.ips
Binary file not shown.
Binary file removed resources/apfix/B2KJ-ED3C.ips
Binary file not shown.
Binary file removed resources/apfix/B2OK-EEBF.ips
Binary file not shown.
Binary file removed resources/apfix/B2QJ-F22D.ips
Binary file not shown.
Binary file removed resources/apfix/B2UE-BD40.ips
Binary file not shown.
Binary file removed resources/apfix/B2UP-697F.ips
Binary file not shown.
Binary file removed resources/apfix/B2WJ-8F5D.ips
Binary file not shown.
Binary file removed resources/apfix/B2YK-2C4A.ips
Binary file not shown.
Binary file removed resources/apfix/B35J-7753.ips
Binary file not shown.
Binary file removed resources/apfix/B3CJ-D5E4.ips
Binary file not shown.
Binary file removed resources/apfix/B3DJ-D7BA.ips
Binary file not shown.
Binary file removed resources/apfix/B3IJ-5800.ips
Binary file not shown.
Binary file removed resources/apfix/B3LJ-936C.ips
Binary file not shown.
Binary file removed resources/apfix/B3RE-50C9.ips
Binary file not shown.
Binary file removed resources/apfix/B3RJ-6C71.ips
Binary file not shown.
Binary file removed resources/apfix/B3RP-2BC0.ips
Binary file not shown.
Binary file removed resources/apfix/B3VE-C799.ips
Binary file not shown.
Binary file removed resources/apfix/B3VP-DC6E.ips
Binary file not shown.
Binary file removed resources/apfix/B3XE-941F.ips
Binary file not shown.
Binary file removed resources/apfix/B3XJ-69AE.ips
Binary file not shown.
Binary file removed resources/apfix/B42J-DABF.ips
Binary file not shown.
Binary file removed resources/apfix/B4CJ-8152.ips
Binary file not shown.
Binary file removed resources/apfix/B4FJ-218A.ips
Binary file not shown.
Binary file removed resources/apfix/B4KJ-D83F.ips
Binary file not shown.
Binary file removed resources/apfix/B4NK-F1CA.ips
Binary file not shown.
Binary file removed resources/apfix/B4TE-8877.ips
Binary file not shown.
Binary file removed resources/apfix/B4TJ-D0FC.ips
Binary file not shown.
Binary file removed resources/apfix/B4TP-C961.ips
Binary file not shown.
Binary file removed resources/apfix/B59J-AC11.ips
Binary file not shown.
Binary file removed resources/apfix/B5DJ-4989.ips
Binary file not shown.
Binary file removed resources/apfix/B5FJ-3B05.ips
Binary file not shown.
Binary file removed resources/apfix/B5FJ-7CF7.ips
Binary file not shown.
Binary file removed resources/apfix/B5GJ-2499.ips
Binary file not shown.
Binary file removed resources/apfix/B5KJ-F369.ips
Binary file not shown.
Binary file removed resources/apfix/B5VE-BFA5.ips
Binary file not shown.
Binary file removed resources/apfix/B62J-65E0.ips
Binary file not shown.
Binary file removed resources/apfix/B6KP-BD1E.ips
Binary file not shown.
Binary file removed resources/apfix/B6TE-221D.ips
Binary file not shown.
Binary file removed resources/apfix/B6TP-6C40.ips
Binary file not shown.
Binary file removed resources/apfix/B6TX-F993.ips
Binary file not shown.
Binary file removed resources/apfix/B6XJ-91F5.ips
Binary file not shown.
Binary file removed resources/apfix/B6XJ-D7D8.ips
Binary file not shown.
Binary file removed resources/apfix/B6ZE-0026.ips
Binary file not shown.
Binary file removed resources/apfix/B6ZJ-3C8A.ips
Binary file not shown.
Binary file removed resources/apfix/B6ZP-88A5.ips
Binary file not shown.
Binary file removed resources/apfix/B74J-BB80.ips
Binary file not shown.
Binary file removed resources/apfix/B74J-CAF1.ips
Binary file not shown.
Binary file removed resources/apfix/B7HE-0E81.ips
Binary file not shown.
Binary file removed resources/apfix/B7HP-8127.ips
Binary file not shown.
Binary file removed resources/apfix/B7KJ-B2E1.ips
Binary file not shown.
Binary file removed resources/apfix/B7XJ-392E.ips
Binary file not shown.
Binary file removed resources/apfix/B86E-A76E.ips
Binary file not shown.
Binary file removed resources/apfix/B86P-A0FE.ips
Binary file not shown.
Binary file removed resources/apfix/B89J-6940.ips
Binary file not shown.
Binary file removed resources/apfix/B8RJ-639A.ips
Binary file not shown.
Binary file removed resources/apfix/BA5P-D8E9.ips
Binary file not shown.
Binary file removed resources/apfix/BA7J-C2AC.ips
Binary file not shown.
Binary file removed resources/apfix/BA7J-E219.ips
Binary file not shown.
Binary file removed resources/apfix/BB4J-A6E1.ips
Binary file not shown.
Binary file removed resources/apfix/BBJJ-25C1.ips
Binary file not shown.
Binary file removed resources/apfix/BBUE-C688.ips
Binary file not shown.
Binary file removed resources/apfix/BBUJ-6C83.ips
Binary file not shown.
Binary file removed resources/apfix/BBUK-F567.ips
Binary file not shown.
Binary file removed resources/apfix/BBUP-67C2.ips
Binary file not shown.
Binary file removed resources/apfix/BBUX-5249.ips
Binary file not shown.
Binary file removed resources/apfix/BBUY-9E61.ips
Binary file not shown.
Binary file removed resources/apfix/BBUZ-3B88.ips
Binary file not shown.
Binary file removed resources/apfix/BCDK-FCC6.ips
Binary file not shown.
Binary file removed resources/apfix/BCJK-88A7.ips
Binary file not shown.
Binary file removed resources/apfix/BCKJ-4643.ips
Binary file not shown.
Binary file removed resources/apfix/BCNJ-FDAF.ips
Binary file not shown.
Binary file removed resources/apfix/BCXJ-6BE4.ips
Binary file not shown.
Binary file removed resources/apfix/BCXJ-9C31.ips
Binary file not shown.
Binary file removed resources/apfix/BD2E-6773.ips
Binary file not shown.
Binary file removed resources/apfix/BD2J-83B8.ips
Binary file not shown.
Binary file removed resources/apfix/BD2P-0CC8.ips
Binary file not shown.
Binary file removed resources/apfix/BDBE-1BF4.ips
Binary file not shown.
Binary file removed resources/apfix/BDBJ-530D.ips
Binary file not shown.
Binary file removed resources/apfix/BDBP-3D13.ips
Binary file not shown.
Binary file removed resources/apfix/BDEE-3D44.ips
Binary file not shown.
Binary file removed resources/apfix/BDEJ-CCD3.ips
Binary file not shown.
Binary file removed resources/apfix/BDEP-131F.ips
Binary file not shown.
Binary file removed resources/apfix/BDGJ-BAF7.ips
Binary file not shown.
Binary file removed resources/apfix/BDNJ-11E7.ips
Binary file not shown.
Binary file removed resources/apfix/BDUE-7AD7.ips
Binary file not shown.
Binary file removed resources/apfix/BDUE-7BB6.ips
Binary file not shown.
Binary file removed resources/apfix/BDUP-8417.ips
Binary file not shown.
Binary file removed resources/apfix/BDUP-8576.ips
Binary file not shown.
Binary file removed resources/apfix/BDYD-815D.ips
Binary file not shown.
Binary file removed resources/apfix/BDYE-2EF1.ips
Binary file not shown.
Binary file removed resources/apfix/BDYF-4F4C.ips
Binary file not shown.
Binary file removed resources/apfix/BDYP-1D9E.ips
Binary file not shown.
Binary file removed resources/apfix/BDYX-EBE8.ips
Binary file not shown.
Binary file removed resources/apfix/BDYY-42E9.ips
Binary file not shown.
Binary file removed resources/apfix/BE8J-8B7C.ips
Binary file not shown.
Binary file removed resources/apfix/BEBJ-7087.ips
Binary file not shown.
Binary file removed resources/apfix/BEBJ-C6B6.ips
Binary file not shown.
Binary file removed resources/apfix/BEEJ-7D70.ips
Binary file not shown.
Binary file removed resources/apfix/BEEJ-A259.ips
Binary file not shown.
Binary file removed resources/apfix/BEKJ-7BD8.ips
Binary file not shown.
Binary file removed resources/apfix/BELJ-A579.ips
Binary file not shown.
Binary file removed resources/apfix/BELK-F6F6.ips
Binary file not shown.
Binary file removed resources/apfix/BETJ-2B53.ips
Binary file not shown.
Binary file removed resources/apfix/BEZJ-5871.ips
Binary file not shown.
Binary file removed resources/apfix/BF2J-0FDA.ips
Binary file not shown.
Binary file removed resources/apfix/BFLE-A70F.ips
Binary file not shown.
Binary file removed resources/apfix/BFLP-1EB0.ips
Binary file not shown.
Binary file removed resources/apfix/BFPJ-DD44.ips
Binary file not shown.
Binary file removed resources/apfix/BFXE-F7C7.ips
Binary file not shown.
Binary file removed resources/apfix/BFXJ-0EE4.ips
Binary file not shown.
Binary file removed resources/apfix/BFXP-0494.ips
Binary file not shown.
Binary file removed resources/apfix/BFXP-1318.ips
Binary file not shown.
Binary file removed resources/apfix/BG3J-5B33.ips
Binary file not shown.
Binary file removed resources/apfix/BG5J-4C09.ips
Binary file not shown.
Binary file removed resources/apfix/BGTE-62F6.ips
Binary file not shown.
Binary file removed resources/apfix/BGTJ-C8CD.ips
Binary file not shown.
Binary file removed resources/apfix/BGTP-1A1D.ips
Binary file not shown.
Binary file removed resources/apfix/BGVJ-BCDF.ips
Binary file not shown.
Binary file removed resources/apfix/BH2E-DDCC.ips
Binary file not shown.
Binary file removed resources/apfix/BH2P-9FEB.ips
Binary file not shown.
Binary file removed resources/apfix/BH2X-A67D.ips
Binary file not shown.
Binary file removed resources/apfix/BH6J-9769.ips
Binary file not shown.
Binary file removed resources/apfix/BHQJ-E3F6.ips
Binary file not shown.
Binary file removed resources/apfix/BHXJ-84A0.ips
Binary file not shown.
Binary file removed resources/apfix/BIGE-D33E.ips
Binary file not shown.
Binary file removed resources/apfix/BIGP-6DE3.ips
Binary file not shown.
Binary file removed resources/apfix/BIMJ-7579.ips
Binary file not shown.
Binary file removed resources/apfix/BIPJ-E57B.ips
Binary file not shown.
Binary file removed resources/apfix/BJ3E-55F7.ips
Binary file not shown.
Binary file removed resources/apfix/BJ3J-85D6.ips
Binary file not shown.
Binary file removed resources/apfix/BJ8P-3B0B.ips
Binary file not shown.
Binary file removed resources/apfix/BJKJ-47BF.ips
Binary file not shown.
Binary file removed resources/apfix/BK3J-35B3.ips
Binary file not shown.
Binary file removed resources/apfix/BK3J-4199.ips
Binary file not shown.
Binary file removed resources/apfix/BK9E-FAA4.ips
Binary file not shown.
Binary file removed resources/apfix/BK9J-E620.ips
Binary file not shown.
Binary file removed resources/apfix/BK9P-7326.ips
Binary file not shown.
Binary file removed resources/apfix/BKCE-A594.ips
Binary file not shown.
Binary file removed resources/apfix/BKHJ-6BFF.ips
Binary file not shown.
Binary file removed resources/apfix/BKIE-0450.ips
Binary file not shown.
Binary file removed resources/apfix/BKIE-2248.ips
Binary file not shown.
Binary file removed resources/apfix/BKIE-E25B.ips
Binary file not shown.
Binary file removed resources/apfix/BKIJ-D658.ips
Binary file not shown.
Binary file removed resources/apfix/BKIP-813A.ips
Binary file not shown.
Binary file removed resources/apfix/BKIP-B6A3.ips
Binary file not shown.
Binary file removed resources/apfix/BKJJ-0BC6.ips
Binary file not shown.
Binary file removed resources/apfix/BKKJ-9190.ips
Binary file not shown.
Binary file removed resources/apfix/BKMJ-6718.ips
Binary file not shown.
Binary file removed resources/apfix/BKPJ-E764.ips
Binary file not shown.
Binary file removed resources/apfix/BKQE-25DC.ips
Binary file not shown.
Binary file removed resources/apfix/BKQK-DAC6.ips
Binary file not shown.
Binary file removed resources/apfix/BKSJ-6983.ips
Binary file not shown.
Binary file removed resources/apfix/BKTJ-4A59.ips
Binary file not shown.
Binary file removed resources/apfix/BKUE-56D1.ips
Binary file not shown.
Binary file removed resources/apfix/BKUJ-7EE4.ips
Binary file not shown.
Binary file removed resources/apfix/BKUP-EEE8.ips
Binary file not shown.
Binary file removed resources/apfix/BKXJ-320F.ips
Binary file not shown.
Binary file removed resources/apfix/BL3J-304C.ips
Binary file not shown.
Binary file removed resources/apfix/BL3J-567A.ips
Binary file not shown.
Binary file removed resources/apfix/BLEJ-D745.ips
Binary file not shown.
Binary file removed resources/apfix/BLEJ-FB8C.ips
Binary file not shown.
Binary file removed resources/apfix/BLFD-3A47.ips
Binary file not shown.
Binary file removed resources/apfix/BLFE-C22B.ips
Binary file not shown.
Binary file removed resources/apfix/BLFF-AA9B.ips
Binary file not shown.
Binary file removed resources/apfix/BLFH-BB86.ips
Binary file not shown.
Binary file removed resources/apfix/BLFI-BA4E.ips
Binary file not shown.
Binary file removed resources/apfix/BLFJ-3317.ips
Binary file not shown.
Binary file removed resources/apfix/BLFJ-8231.ips
Binary file not shown.
Binary file removed resources/apfix/BLFP-BC3A.ips
Binary file not shown.
Binary file removed resources/apfix/BLFS-0582.ips
Binary file not shown.
Binary file removed resources/apfix/BLLE-F214.ips
Binary file not shown.
Binary file removed resources/apfix/BM7J-A541.ips
Binary file not shown.
Binary file removed resources/apfix/BM9J-F261.ips
Binary file not shown.
Binary file removed resources/apfix/BMTE-F398.ips
Binary file not shown.
Binary file removed resources/apfix/BMTJ-157B.ips
Binary file not shown.
Binary file removed resources/apfix/BNCJ-EABC.ips
Binary file not shown.
Binary file removed resources/apfix/BNQE-891A.ips
Binary file not shown.
Binary file removed resources/apfix/BNQP-B191.ips
Binary file not shown.
Binary file removed resources/apfix/BNXK-F223.ips
Binary file not shown.
Binary file removed resources/apfix/BO4J-96B6.ips
Binary file not shown.
Binary file removed resources/apfix/BO9J-F1A6.ips
Binary file not shown.
Binary file removed resources/apfix/BOBJ-B478.ips
Binary file not shown.
Binary file removed resources/apfix/BOEJ-02C6.ips
Binary file not shown.
Binary file removed resources/apfix/BOEJ-1F99.ips
Binary file not shown.
Binary file removed resources/apfix/BOEJ-3698.ips
Binary file not shown.
Binary file removed resources/apfix/BOEJ-AE31.ips
Binary file not shown.
Binary file removed resources/apfix/BOJD-4533.ips
Binary file not shown.
Binary file removed resources/apfix/BOJF-8171.ips
Binary file not shown.
Binary file removed resources/apfix/BOJJ-37FA.ips
Binary file not shown.
Binary file removed resources/apfix/BOJP-D4BA.ips
Binary file not shown.
Binary file removed resources/apfix/BOKJ-1DB4.ips
Binary file not shown.
Binary file removed resources/apfix/BONJ-AA37.ips
Binary file not shown.
Binary file removed resources/apfix/BOOE-59F2.ips
Binary file not shown.
Binary file removed resources/apfix/BOOE-AE1D.ips
Binary file not shown.
Binary file removed resources/apfix/BOOJ-D582.ips
Binary file not shown.
Binary file removed resources/apfix/BOOP-54FA.ips
Binary file not shown.
Binary file removed resources/apfix/BOXJ-E6E0.ips
Binary file not shown.
Binary file removed resources/apfix/BOYJ-B52D.ips
Binary file not shown.
Binary file removed resources/apfix/BPOJ-7DC1.ips
Binary file not shown.
Binary file removed resources/apfix/BPPJ-ED84.ips
Binary file not shown.
Binary file removed resources/apfix/BPUJ-554A.ips
Binary file not shown.
Binary file removed resources/apfix/BQ2J-0420.ips
Binary file not shown.
Binary file removed resources/apfix/BQ3J-63E4.ips
Binary file not shown.
Binary file removed resources/apfix/BQ4J-8D61.ips
Binary file not shown.
Binary file removed resources/apfix/BQ6J-84C5.ips
Binary file not shown.
Binary file removed resources/apfix/BQ8E-84A8.ips
Binary file not shown.
Binary file removed resources/apfix/BQ8J-E7E5.ips
Binary file not shown.
Binary file removed resources/apfix/BQ9J-CBBB.ips
Binary file not shown.
Binary file removed resources/apfix/BQBJ-DD35.ips
Binary file not shown.
Binary file removed resources/apfix/BQFJ-0505.ips
Binary file not shown.
Binary file removed resources/apfix/BQIJ-FE7B.ips
Binary file not shown.
Binary file removed resources/apfix/BQJJ-FFF3.ips
Binary file not shown.
Binary file removed resources/apfix/BQNE-9B12.ips
Binary file not shown.
Binary file removed resources/apfix/BQNP-8201.ips
Binary file not shown.
Binary file removed resources/apfix/BQPJ-FBB8.ips
Binary file not shown.
Binary file removed resources/apfix/BQPK-3619.ips
Binary file not shown.
Binary file removed resources/apfix/BQUJ-B181.ips
Binary file not shown.
Binary file removed resources/apfix/BQVJ-B7AB.ips
Binary file not shown.
Binary file removed resources/apfix/BQWJ-8DB2.ips
Binary file not shown.
Binary file removed resources/apfix/BQWJ-C03F.ips
Binary file not shown.
Binary file removed resources/apfix/BRGJ-EFB2.ips
Binary file not shown.
Binary file removed resources/apfix/BRIJ-0929.ips
Binary file not shown.
Binary file removed resources/apfix/BRJE-56A6.ips
Binary file not shown.
Binary file removed resources/apfix/BRJJ-AF50.ips
Binary file not shown.
Binary file removed resources/apfix/BRME-FCE2.ips
Binary file not shown.
Binary file removed resources/apfix/BRMJ-E13A.ips
Binary file not shown.
Binary file removed resources/apfix/BRMP-2617.ips
Binary file not shown.
Binary file removed resources/apfix/BROJ-E40F.ips
Binary file not shown.
Binary file removed resources/apfix/BRQJ-A6D6.ips
Binary file not shown.
Binary file removed resources/apfix/BRWJ-B148.ips
Binary file not shown.
Binary file removed resources/apfix/BRYJ-FA3A.ips
Binary file not shown.
Binary file removed resources/apfix/BRZE-2BC8.ips
Binary file not shown.
Binary file removed resources/apfix/BRZJ-7E7C.ips
Binary file not shown.
Binary file removed resources/apfix/BRZK-748E.ips
Binary file not shown.
Binary file removed resources/apfix/BRZP-86EC.ips
Binary file not shown.
Binary file removed resources/apfix/BRZW-4413.ips
Binary file not shown.
Binary file removed resources/apfix/BRZX-0E32.ips
Binary file not shown.
Binary file removed resources/apfix/BRZY-1548.ips
Binary file not shown.
Binary file removed resources/apfix/BRZZ-52F2.ips
Binary file not shown.
Binary file removed resources/apfix/BS8E-0883.ips
Binary file not shown.
Binary file removed resources/apfix/BS8P-30F4.ips
Binary file not shown.
Binary file removed resources/apfix/BSDE-7197.ips
Binary file not shown.
Binary file removed resources/apfix/BSDJ-2B0D.ips
Binary file not shown.
Binary file removed resources/apfix/BSKE-30DE.ips
Binary file not shown.
Binary file removed resources/apfix/BSKE-6172.ips
Binary file not shown.
Binary file removed resources/apfix/BSKE-D6FD.ips
Binary file not shown.
Binary file removed resources/apfix/BSKJ-601C.ips
Binary file not shown.
Binary file removed resources/apfix/BSKJ-8097.ips
Binary file not shown.
Binary file removed resources/apfix/BSWJ-9EF0.ips
Binary file not shown.
Binary file removed resources/apfix/BT5J-4F90.ips
Binary file not shown.
Binary file removed resources/apfix/BT5J-D09D.ips
Binary file not shown.
Binary file removed resources/apfix/BTAJ-8A4B.ips
Binary file not shown.
Binary file removed resources/apfix/BTGJ-B37B.ips
Binary file not shown.
Binary file removed resources/apfix/BTUE-1A52.ips
Binary file not shown.
Binary file removed resources/apfix/BTUJ-5833.ips
Binary file not shown.
Binary file removed resources/apfix/BTUP-B38A.ips
Binary file not shown.
Binary file removed resources/apfix/BTUX-9E8A.ips
Binary file not shown.
Binary file removed resources/apfix/BTUY-9760.ips
Binary file not shown.
Binary file removed resources/apfix/BU8E-DAF6.ips
Binary file not shown.
Binary file removed resources/apfix/BU8P-15EC.ips
Binary file not shown.
Binary file removed resources/apfix/BU9P-E6C7.ips
Binary file not shown.
Binary file removed resources/apfix/BUCJ-BCEC.ips
Binary file not shown.
Binary file removed resources/apfix/BUCK-034B.ips
Binary file not shown.
Binary file removed resources/apfix/BUFE-5243.ips
Binary file not shown.
Binary file removed resources/apfix/BUKJ-84A5.ips
Binary file not shown.
Binary file removed resources/apfix/BUQJ-763E.ips
Binary file not shown.
Binary file removed resources/apfix/BV7K-8F26.ips
Binary file not shown.
Binary file removed resources/apfix/BVGE-5B1B.ips
Binary file not shown.
Binary file removed resources/apfix/BVIJ-AB11.ips
Binary file not shown.
Binary file removed resources/apfix/BVNE-9A4C.ips
Binary file not shown.
Binary file removed resources/apfix/BVNP-DE92.ips
Binary file not shown.
Binary file removed resources/apfix/BW4E-6D92.ips
Binary file not shown.
Binary file removed resources/apfix/BW4P-3084.ips
Binary file not shown.
Binary file removed resources/apfix/BWCJ-3503.ips
Binary file not shown.
Binary file removed resources/apfix/BWRJ-C307.ips
Binary file not shown.
Binary file removed resources/apfix/BWWJ-FF92.ips
Binary file not shown.
Binary file removed resources/apfix/BWYJ-4471.ips
Binary file not shown.
Binary file removed resources/apfix/BWZJ-D411.ips
Binary file not shown.
Binary file removed resources/apfix/BXOJ-8B5B.ips
Binary file not shown.
Binary file removed resources/apfix/BXOJ-B33C.ips
Binary file not shown.
Loading

0 comments on commit 52ef5ab

Please sign in to comment.