```text
┌───────────────────────┐
│ Offered order options │
├───┬────────────┬──────┴╥──────╥───────────────┐
│ U │ Customer │ Order ║ ║ Description │
╞═══╪════════════╪═══════╬══════╬═══════════════╡
│ 1 │ "Business" │ <10 ║ 0.10 ║ Desc 1 │
├───┼────────────┼───────╫──────╫───────────────┤
│ 2 │ "Business" │ >=10 ║ 0.15 ║ Desc 2 │
├───┼────────────┼───────╫──────╫───────────────┤
│ 3 │ "Private" │ - ║ 0.05 ║ Desc 3 │
└───┴────────────┴───────╨──────╨───────────────┘
```
> # Offered order options
| | `i` | `i` | `o` | `a` |
| 1 | "Business" | <10 | 0.10 | Desc 1 |
| 2 | "Business" | >=10 | 0.15 | Desc 2 |
| 3 | "Private" | - | 0.05 | Desc 3 |