The declaration match_rsbridge_rung_charged_leptons asserts that the rung numbers produced by compute_rung for the three charged leptons equal the legacy values stored in RSBridge.rung.
(1) In plain English it says: the new constructor reproduces the old rung table exactly for the electron (rung 2), muon (rung 13) and tau (rung 19).
(2) In Recognition Science the match guarantees that lepton masses derived from the phi-scaling formula remain unchanged when the rung constructor is updated; it is a compatibility certificate between the legacy RSBridge mapping and the current Motif-based implementation.
(3) The formal statement is a three-way conjunction of equalities, each proved by rfl. In standard notation it reads compute_rung(fermion e) = RSBridge.rung(e) ∧ compute_rung(fermion mu) = RSBridge.rung(mu) ∧ compute_rung(fermion tau) = RSBridge.rung(tau).
(4) Visible dependencies inside the supplied source are the three individual lemmas match_lepton_e, match_lepton_mu, match_lepton_tau together with the master theorem match_rsbridge_rung that cases on the Fermion type. No external axioms or sorrys appear in the proof.
(5) The declaration does not prove the definition of compute_rung, the definition of RSBridge.rung, any mass-to-rung scaling theorems, the SDGT variants, or matching for quarks, neutrinos or bosons.