I am using a regular expression to convert text into a table that has the following columns:

$$COLUMNS$$

Not every columns might be relevant in this example. Some might be empty.

Currently, the regex is defined using the following JSON:

```json
$$REGEXDEFINITION$$
```

# Examples
Here are some example lines that have been parsed using that regex:

```json
$$EXAMPLES$$
```

# Changes
I need you to update the regex based on the following instructions:
	
$$INSTRUCTIONS$$

# Output
Write a brief summary of what you would be changing, then write the updated regex definition using the following format:

```json
{
  "regex" : "<regular expression>",
  "NumberOfGroups": <number of groups in the expression>,
  "Group1" : "<column name>",
  ...,
  "GroupN" : "<column name>",
}
```
