The FAT is just a list of pointer to the applications. The very first pointer (to the first application) is at the address "FAT_ADDRESS-4" ( = 0x08005FFC by default). The pointer to the second application is located at the address "FAT_ADDRESS-8" ( = 0x08005FF8 by default) and so on.
Typically, you will find the value 0x08006000 at 0x08005FFC. If the first application is 8KB long, you will have the value 0x08008000 at the address 0x08005FF8. The 'end of list' is the value 0xFFFFFFFF.