Executable and Linkable Format

From Wikipedia, the free encyclopedia

Template:Short description

Page Module:Infobox/styles.css has no content.

Executable and Linkable Format
Filename extensionTemplate:Monodiv
Internet media type{{#property:P1163}}
Magic number0x7F 'E' 'L' 'F'
Developed byUnix System Laboratories[1]Template:Rp
Initial release14 May 1998; Lua error in package.lua at line 80: module 'Module:Date' not found. (1998-05-14)
Latest release
4.2 [2]
2025; 1 year ago (2025)
Type of formatBinary, executable, object, shared library, core dump
Container forMany executable binary formats
An ELF file has two views: the program header shows the segments used at run time, whereas the section header lists the set of sections.

In computing, the Executable and Linkable Format[3] (ELF, formerly named Extensible Linking Format) is a common standard file format for executable files, object code, shared libraries, device drivers, and core dumps. First published in the specification for the application binary interface (ABI) of the Unix operating system version named System V Release 4 (SVR4),[4] and later in the Tool Interface Standard,[1] it was quickly accepted among different vendors of Unix systems. In 1999, it was chosen as the standard binary file format for Unix and Unix-like systems on x86 processors by the 86open project.

By design, the ELF format is flexible, extensible, and cross-platform. For instance, it supports different endiannesses and address sizes so it does not exclude any particular CPU or instruction set architecture. This has allowed it to be adopted by many different operating systems on many different hardware platforms.

File layout

Each ELF file is made up of one ELF header, followed by file data. The data can include:

  • Program header table, describing zero or more memory segments
  • Section header table, describing zero or more sections
  • Data referred to by entries in the program header table or section header table
Structure of an ELF file with key entries highlighted

The segments contain information that is needed for run time execution of the file, while sections contain important data for linking and relocation. Any byte in the entire file can be owned by one section at most, and orphan bytes can occur which are unowned by any section.

ELF header

The ELF header defines whether to use 32-bit or 64-bit addresses. The header contains three fields that are affected by this setting and offset other fields that follow them. The ELF header is 52 or 64 bytes long for 32-bit and 64-bit binaries, respectively.

ELF header[5]
Offset Size (bytes) Field Purpose
32-bit 64-bit 32-bit 64-bit
Template:Tt 4 Page Template:Mono/styles.css has no content.e_ident[EI_MAG0] through Page Template:Mono/styles.css has no content.e_ident[EI_MAG3] 0x7F followed by ELF(45 4c 46) in ASCII; these four bytes constitute the magic number.
Template:Tt 1 Page Template:Mono/styles.css has no content.e_ident[EI_CLASS] This byte is set to either 1 or 2 to signify 32- or 64-bit format, respectively.
Template:Tt 1 Page Template:Mono/styles.css has no content.e_ident[EI_DATA] This byte is set to either 1 or 2 to signify little or big endianness, respectively. This affects interpretation of multi-byte fields starting with offset 0x10.
Template:Tt 1 Page Template:Mono/styles.css has no content.e_ident[EI_VERSION] Set to 1 for the original and current version of ELF.
Template:Tt 1 Page Template:Mono/styles.css has no content.e_ident[EI_OSABI] Identifies the target operating system ABI.
Value ABI
Template:Tt System V
Template:Tt HP-UX
Template:Tt NetBSD
Template:Tt Linux
Template:Tt GNU Hurd
Template:Tt Solaris
Template:Tt AIX (Monterey)
Template:Tt IRIX
Template:Tt FreeBSD
Template:Tt Tru64
Template:Tt Novell Modesto
Template:Tt OpenBSD
Template:Tt OpenVMS
Template:Tt NonStop Kernel
Template:Tt AROS
Template:Tt FenixOS
Template:Tt Nuxi CloudABI
Template:Tt Stratus Technologies OpenVOS
Template:Tt 1 Page Template:Mono/styles.css has no content.e_ident[EI_ABIVERSION] Further specifies the ABI version. Its interpretation depends on the target ABI. Linux kernel (after at least 2.6) has no definition of it,[6] so it is ignored for statically linked executables. In that case, offset and size of EI_PAD are 8.

glibc 2.12+ in case Page Template:Mono/styles.css has no content.e_ident[EI_OSABI] == 3 treats this field as ABI version of the dynamic linker:[7] it defines a list of dynamic linker's features,[8] treats Page Template:Mono/styles.css has no content.e_ident[EI_ABIVERSION] as a feature level requested by the shared object (executable or dynamic library) and refuses to load it if an unknown feature is requested, i.e. Page Template:Mono/styles.css has no content.e_ident[EI_ABIVERSION] is greater than the largest known feature.[9]

Template:Tt 7 Page Template:Mono/styles.css has no content.e_ident[EI_PAD] Reserved padding bytes. Currently unused. Should be filled with zeros and ignored when read.
Template:Tt 2 Page Template:Mono/styles.css has no content.e_type Identifies object file type.
Value Type Meaning
Template:Tt ET_NONE Unknown.
Template:Tt ET_REL Relocatable file.
Template:Tt ET_EXEC Executable file.
Template:Tt ET_DYN Shared object.
Template:Tt ET_CORE Core file.
Template:Tt ET_LOOS Reserved inclusive range. Operating system specific.
Template:Tt ET_HIOS
Template:Tt ET_LOPROC Reserved inclusive range. Processor specific.
Template:Tt ET_HIPROC
Template:Tt 2 Page Template:Mono/styles.css has no content.e_machine Specifies target instruction set architecture. Some examples are:
Value ISA
Template:Tt No specific instruction set
Template:Tt AT&T WE 32100
Template:Tt SPARC
Template:Tt x86
Template:Tt Motorola 68000 (M68k)
Template:Tt Motorola 88000 (M88k)
Template:Tt Intel MCU
Template:Tt Intel 80860
Template:Tt MIPS
Template:Tt IBM System/370
Template:Tt MIPS RS3000 Little-endian
Template:Tt Reserved for future use
Template:Tt Hewlett-Packard PA-RISC
Template:Tt Intel 80960
Template:Tt PowerPC
Template:Tt PowerPC (64-bit)
Template:Tt S390, including S390x
Template:Tt IBM SPU/SPC
Template:Tt Reserved for future use
Template:Tt NEC V800
Template:Tt Fujitsu FR20
Template:Tt TRW RH-32
Template:Tt Motorola RCE
Template:Tt Arm (up to Armv7/AArch32)
Template:Tt Digital Alpha
Template:Tt SuperH
Template:Tt SPARC Version 9
Template:Tt Siemens TriCore embedded processor
Template:Tt Argonaut RISC Core
Template:Tt Hitachi H8/300
Template:Tt Hitachi H8/300H
Template:Tt Hitachi H8S
Template:Tt Hitachi H8/500
Template:Tt IA-64
Template:Tt Stanford MIPS-X
Template:Tt Motorola ColdFire
Template:Tt Motorola M68HC12
Template:Tt Fujitsu MMA Multimedia Accelerator
Template:Tt Siemens PCP
Template:Tt Sony nCPU embedded RISC processor
Template:Tt Denso NDR1 microprocessor
Template:Tt Motorola Star*Core processor
Template:Tt Toyota ME16 processor
Template:Tt STMicroelectronics ST100 processor
Template:Tt Advanced Logic Corp. TinyJ embedded processor family
Template:Tt AMD x86-64
Template:Tt Sony DSP Processor
Template:Tt Digital Equipment Corp. PDP-10
Template:Tt Digital Equipment Corp. PDP-11
Template:Tt Siemens FX66 microcontroller
Template:Tt STMicroelectronics ST9+ 8/16-bit microcontroller
Template:Tt STMicroelectronics ST7 8-bit microcontroller
Template:Tt Motorola MC68HC16 Microcontroller
Template:Tt Motorola MC68HC11 Microcontroller
Template:Tt Motorola MC68HC08 Microcontroller
Template:Tt Motorola MC68HC05 Microcontroller
Template:Tt Silicon Graphics SVx
Template:Tt STMicroelectronics ST19 8-bit microcontroller
Template:Tt Digital VAX
Template:Tt Axis Communications 32-bit embedded processor
Template:Tt Infineon Technologies 32-bit embedded processor
Template:Tt Element 14 64-bit DSP Processor
Template:Tt LSI Logic 16-bit DSP Processor
Template:Tt TMS320C6000 Family
Template:Tt MCST Elbrus e2k
Template:Tt Arm 64-bits (Armv8/AArch64)
Template:Tt Zilog Z80
Template:Tt RISC-V
Template:Tt Berkeley Packet Filter
Template:Tt WDC 65C816
Template:Tt LoongArch
Template:Tt 4 Page Template:Mono/styles.css has no content.e_version Set to 1 for the original version of ELF.
Template:Tt 4 8 Page Template:Mono/styles.css has no content.e_entry This is the memory address of the entry point from where the process starts executing. This field is either 32 or 64 bits long, depending on the format defined earlier (byte 0x04). If the file doesn't have an associated entry point, then this holds zero.
Template:Tt Template:Tt 4 8 Page Template:Mono/styles.css has no content.e_phoff Points to the start of the program header table. It usually follows the file header immediately following this one, making the offset 0x34 or 0x40 for 32- and 64-bit ELF executables, respectively.
Template:Tt Template:Tt 4 8 Page Template:Mono/styles.css has no content.e_shoff Points to the start of the section header table.
Template:Tt Template:Tt 4 Page Template:Mono/styles.css has no content.e_flags Interpretation of this field depends on the target architecture.
Template:Tt Template:Tt 2 Page Template:Mono/styles.css has no content.e_ehsize Contains the size of this header, normally 64 Bytes for 64-bit and 52 Bytes for 32-bit format.
Template:Tt Template:Tt 2 Page Template:Mono/styles.css has no content.e_phentsize Contains the size of a program header table entry. As explained below, this will typically be 0x20 (32-bit) or 0x38 (64-bit).
Template:Tt Template:Tt 2 Page Template:Mono/styles.css has no content.e_phnum Contains the number of entries in the program header table.
Template:Tt Template:Tt 2 Page Template:Mono/styles.css has no content.e_shentsize Contains the size of a section header table entry. As explained below, this will typically be 0x28 (32-bit) or 0x40 (64-bit).
Template:Tt Template:Tt 2 Page Template:Mono/styles.css has no content.e_shnum Contains the number of entries in the section header table.
Template:Tt Template:Tt 2 Page Template:Mono/styles.css has no content.e_shstrndx Contains index of the section header table entry that contains the section names.
Template:Tt Template:Tt End of ELF Header (size).

Example hexdump

00000000  7f 45 4c 46 02 01 01 00  00 00 00 00 00 00 00 00  |.ELF............|
00000010  02 00 3e 00 01 00 00 00  c5 48 40 00 00 00 00 00  |..>......H@.....|

[10]

Program header

The program header table tells the system how to create a process image. It is found at file offset Page Template:Mono/styles.css has no content.e_phoff, and consists of Page Template:Mono/styles.css has no content.e_phnum entries, each with size Page Template:Mono/styles.css has no content.e_phentsize. The layout is slightly different in 32-bit ELF vs 64-bit ELF, because the Page Template:Mono/styles.css has no content.p_flags are in a different structure location for alignment reasons. Each entry is structured as:

Program header[11]
Offset Size (bytes) Field Purpose
32-bit 64-bit 32-bit 64-bit
Template:Tt 4 Page Template:Mono/styles.css has no content.p_type Identifies the type of the segment.
Value Name Meaning
Template:Tt Page Template:Mono/styles.css has no content.PT_NULL Program header table entry unused.
Template:Tt Page Template:Mono/styles.css has no content.PT_LOAD Loadable segment.
Template:Tt Page Template:Mono/styles.css has no content.PT_DYNAMIC Dynamic linking information.
Template:Tt Page Template:Mono/styles.css has no content.PT_INTERP Interpreter information.
Template:Tt Page Template:Mono/styles.css has no content.PT_NOTE Auxiliary information.
Template:Tt Page Template:Mono/styles.css has no content.PT_SHLIB Reserved.
Template:Tt Page Template:Mono/styles.css has no content.PT_PHDR Segment containing program header table itself.
Template:Tt Page Template:Mono/styles.css has no content.PT_TLS Thread-Local Storage template.
Template:Tt Page Template:Mono/styles.css has no content.PT_LOOS Reserved inclusive range. Operating system specific.
Template:Tt Page Template:Mono/styles.css has no content.PT_HIOS
Template:Tt Page Template:Mono/styles.css has no content.PT_LOPROC Reserved inclusive range. Processor specific.
Template:Tt Page Template:Mono/styles.css has no content.PT_HIPROC
Template:Tt 4 Page Template:Mono/styles.css has no content.p_flags Segment-dependent flags (position for 64-bit structure).
Value Name Meaning
Template:Tt Page Template:Mono/styles.css has no content.PF_X Executable segment.
Template:Tt Page Template:Mono/styles.css has no content.PF_W Writeable segment.
Template:Tt Page Template:Mono/styles.css has no content.PF_R Readable segment.
Template:Tt Template:Tt 4 8 Page Template:Mono/styles.css has no content.p_offset Offset of the segment in the file image.
Template:Tt Template:Tt 4 8 Page Template:Mono/styles.css has no content.p_vaddr Virtual address of the segment in memory.
Template:Tt Template:Tt 4 8 Page Template:Mono/styles.css has no content.p_paddr On systems where physical address is relevant, reserved for segment's physical address.
Template:Tt Template:Tt 4 8 Page Template:Mono/styles.css has no content.p_filesz Size in bytes of the segment in the file image. May be 0.
Template:Tt Template:Tt 4 8 Page Template:Mono/styles.css has no content.p_memsz Size in bytes of the segment in memory. May be 0.
Template:Tt 4 Page Template:Mono/styles.css has no content.p_flags Segment-dependent flags (position for 32-bit structure). See above p_flags field for flag definitions.
Template:Tt Template:Tt 4 8 Page Template:Mono/styles.css has no content.p_align 0 and 1 specify no alignment. Otherwise should be a positive, integral power of 2, with Page Template:Mono/styles.css has no content.p_vaddr equating Page Template:Mono/styles.css has no content.p_offset modulus Page Template:Mono/styles.css has no content.p_align.
Template:Tt Template:Tt End of Program Header (size).

Section header

Offset Size (bytes) Field Purpose
32-bit 64-bit 32-bit 64-bit
0x00 4 Template:Tt An offset to a string in the .shstrtab section that represents the name of this section.
0x04 4 Template:Tt Identifies the type of this header.
Value Name Meaning
Template:Tt Template:Tt Section header table entry unused
Template:Tt Template:Tt Program data
Template:Tt Template:Tt Symbol table
Template:Tt Template:Tt String table
Template:Tt Template:Tt Relocation entries with addends
Template:Tt Template:Tt Symbol hash table
Template:Tt Template:Tt Dynamic linking information
Template:Tt Template:Tt Notes
Template:Tt Template:Tt Program space with no data (bss)
Template:Tt Template:Tt Relocation entries, no addends
Template:Tt Template:Tt Reserved
Template:Tt Template:Tt Dynamic linker symbol table
Template:Tt Template:Tt Array of constructors
Template:Tt Template:Tt Array of destructors
Template:Tt Template:Tt Array of pre-constructors
Template:Tt Template:Tt Section group
Template:Tt Template:Tt Extended section indices
Template:Tt Template:Tt Number of defined types.
Template:Tt Template:Tt Start OS-specific.
... ... ...
0x08 4 8 Template:Tt Identifies the attributes of the section.
Value Name Meaning
Template:Tt Template:Tt Writable
Template:Tt Template:Tt Occupies memory during execution
Template:Tt Template:Tt Executable
Template:Tt Template:Tt Might be merged
Template:Tt Template:Tt Contains null-terminated strings
Template:Tt Template:Tt 'sh_info' contains SHT index
Template:Tt Template:Tt Preserve order after combining
Template:Tt Template:Tt Non-standard OS specific handling required
Template:Tt Template:Tt Section is member of a group
Template:Tt Template:Tt Section hold thread-local data
Template:Tt Template:Tt OS-specific
Template:Tt Template:Tt Processor-specific
Template:Tt Template:Tt Special ordering requirement (Solaris)
Template:Tt Template:Tt Section is excluded unless referenced or allocated (Solaris)
Template:Tt Template:Tt 4 8 Template:Tt Virtual address of the section in memory, for sections that are loaded.
Template:Tt Template:Tt 4 8 Template:Tt Offset of the section in the file image.
Template:Tt Template:Tt 4 8 Template:Tt Size in bytes of the section. May be 0.
Template:Tt Template:Tt 4 Template:Tt Contains the section index of an associated section. This field is used for several purposes, depending on the type of section.
Template:Tt Template:Tt 4 Template:Tt Contains extra information about the section. This field is used for several purposes, depending on the type of section.
Template:Tt Template:Tt 4 8 Template:Tt Contains the required alignment of the section. This field must be a power of two.
Template:Tt Template:Tt 4 8 Template:Tt Contains the size, in bytes, of each entry, for sections that contain fixed-size entries. Otherwise, this field contains zero.
Template:Tt Template:Tt End of Section Header (size).

Tools

Script error: No such module "Labelled list hatnote".

  • readelf is a Unix binary utility that displays information about one or more ELF files. A free software implementation is provided by GNU Binutils.
  • elfutils provides alternative tools to GNU Binutils purely for Linux.[12]
  • elfdump is a command for viewing ELF information in an ELF file, available under Solaris and FreeBSD.
  • objdump provides a wide range of information about ELF files and other object formats. objdump uses the Binary File Descriptor library as a back-end to structure the ELF data.
  • The Unix file utility can display some information about ELF files, including the instruction set architecture for which the code in a relocatable, executable, or shared object file is intended, or on which an ELF core dump was produced.

Applications

Unix-like systems

Page Module:Message box/ambox.css has no content.

The ELF format has replaced older executable formats in various environments. It has replaced a.out and COFF formats in Unix-like operating systems:

Non-Unix adoption

ELF has also seen some adoption in non-Unix operating systems, such as:

Microsoft Windows also uses the ELF format, but only for its Windows Subsystem for Linux compatibility system.[18]

Game consoles

Some game consoles also use ELF:

PowerPC

Other (operating) systems running on PowerPC that use ELF:

Mobile phones

Some operating systems for mobile phones and mobile devices use ELF:

Some phones can run ELF files through the use of a patch that adds assembly code to the main firmware, which is a feature known as ELFPack in the underground modding culture. The ELF file format is also used with the Atmel AVR (8-bit), AVR32[23] and with Texas Instruments MSP430 microcontroller architectures. Some implementations of Open Firmware can also load ELF files, most notably Apple's implementation used in almost all PowerPC machines the company produced.

Blockchain platforms

  • Solana uses ELF format for its on-chain programs (smart contracts). The platform processes ELF files compiled to BPF (Berkeley Packet Filter) byte-code, which are then deployed as shared objects and executed in Solana's runtime environment. The BPF loader validates and processes these ELF files during program deployment.[24]

Specifications

Architecture Specification
Generic
AMD64
Arm
IA-32
IA-64
M32R
MIPS
Motorola 6800
PA-RISC
PowerPC
RISC-V
SPARC
S/390
zSeries
Symbian OS 9

The Linux Standard Base (LSB) supplements some of the above specifications for architectures in which it is specified.[25] For example, that is the case for the System V ABI, AMD64 Supplement.[26][27]

86open

86open was a project to form consensus on a common binary file format for Unix and Unix-like operating systems on the common PC compatible x86 architecture, to encourage software developers to port to the architecture.[28] The initial idea was to standardize on a small subset of Spec 1170, a predecessor of the Single UNIX Specification, and the GNU C Library (glibc) to enable unmodified binaries to run on the x86 Unix-like operating systems. The project was originally designated "Spec 150".

The format eventually chosen was ELF, specifically the Linux implementation of ELF, after it had turned out to be a de facto standard supported by all involved vendors and operating systems.

The group began email discussions in 1997 and first met together at the Santa Cruz Operation offices on August 22, 1997.

The steering committee was Marc Ewing, Dion Johnson, Evan Leibovitch, Bruce Perens, Andrew Roach, Bryan Wayne Sparks and Linus Torvalds. Other people on the project were Keith Bostic, Chuck Cranor, Michael Davidson, Chris G. Demetriou, Ulrich Drepper, Don Dugger, Steve Ginzburg, Jon "maddog" Hall, Ron Holt, Jordan Hubbard, Dave Jensen, Kean Johnston, Andrew Josey, Robert Lipe, Bela Lubkin, Tim Marsland, Greg Page, Ronald Joe Record, Tim Ruckle, Joel Silverstein, Chia-pi Tien, and Erik Troan. Operating systems and companies represented were BeOS, BSDI, FreeBSD, Intel, Linux, NetBSD, SCO and SunSoft.

The project progressed and in mid-1998, SCO began developing lxrun, an open-source compatibility layer able to run Linux binaries on OpenServer, UnixWare, and Solaris. SCO announced official support of lxrun at LinuxWorld in March 1999. Sun Microsystems began officially supporting lxrun for Solaris in early 1999,[29] and later moved to integrated support of the Linux binary format via Solaris Containers for Linux Applications.

With the BSDs having long supported Linux binaries (through a compatibility layer) and the main x86 Unix vendors having added support for the format, the project decided that Linux ELF was the format chosen by the industry and "declare[d] itself dissolved" on July 25, 1999.[30]

FatELF: universal binaries for Linux

FatELF is an ELF binary-format extension that adds fat binary capabilities.[31] It is aimed for Linux and other Unix-like operating systems. Additionally to the CPU architecture abstraction (byte order, word size, CPU instruction set etc.), there is the potential advantage of software-platform abstraction e.g., binaries which support multiple kernel ABI versions. As of 2021, FatELF has not been integrated into the mainline Linux kernel.[32][33][34]

See also

Lua error in mw.title.lua at line 404: bad argument #2 to 'title.new' (unrecognized namespace name 'Portal').

References

Page Template:Reflist/styles.css has no content.

  1. ^ a b Tool Interface Standard (TIS) Executable and Linking Format (ELF) Specification Version 1.2 (May 1995)
  2. ^ ELF Object File Format: Appendix C: Revision History
  3. ^ Tool Interface Standard (TIS) Portable Formats Specification Version 1.1 (October 1993)
  4. ^ System V Application Binary Interface Edition 4.1 (1997-03-18)
  5. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  6. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  7. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  8. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  9. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  10. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  11. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  12. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  13. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  14. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  15. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  16. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  17. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found. p. 44 archived from the original Script error: No such module "webarchive". on 2018-5-30
  18. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  19. ^ PlayStation Portable use encrypted & relocated ELF : PSP
  20. ^ Symbian OS executable file format
  21. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  22. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  23. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  24. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  25. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  26. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  27. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  28. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  29. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  30. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  31. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  32. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  33. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.
  34. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.

Further reading

Page Template:Div col/styles.css has no content.

Page Template:Div col/styles.css has no content.

Lua error in package.lua at line 80: module 'Module:Navbox/configuration' not found.

  1. ^ Lua error in package.lua at line 80: module 'Module:Citation/CS1/Utilities' not found.