public static class InstructionAnalyzer
{
    public static bool LooksObfuscated(IReadOnlyList<ParsedInstruction> instructions)
    {
        return instructions.Count > 0 && instructions.Count(i => i.Mnemonic == "db") >= instructions.Count / 2;
    }
}