An integer n (2 ≤ n ≤ 11), representing some quantity or size.
A list of five integers (w, h, r, v_x, v_y), where:
- w and h are between 4 and 1000,
- r is between 1 and 100,
- v_x and v_y are between -10,000 and 10,000 (v_x, v_y) ≠ (0, 0).
A list of n tuples, where each tuple consists of two integers (x_i, y_i) such that r < x_i < w - r and r < y_i < h - r.

### Example Input:

```
3
26 16 1 8 4
10 6
9 2
9 10
```

### Function Signature:
Write a function f(inputs) that takes in the input.
```python
def f(inputs: List[Tuple[int, Tuple[int, int, int, int, int], List[Tuple[int, int]]]]):
    '''
    inputs: a list of tuples, where each tuple consists of:
        - an integer
        - a tuple of five integers
        - a list of tuples of two integers
    '''
```