Emeritus


Survey administration¶

This notebook explores ways of specifying contexts in which an edsl survey is "administered" to agents in order to investigate potential impacts to simulated responses.

Thank you to Sophia Kazinnik for this idea and suggestions!

Adding context to question texts
Adding context to agent traits
Adding context to question texts and agent traits
Comparing prompts
Ideas for further investigation



Importing the tools:

In [2]:
from edsl.questions import QuestionLinearScale
from edsl import Agent, Scenario, Survey, Model
In [3]:
Model.available()
Out[3]:
['gpt-3.5-turbo',
 'gpt-4-1106-preview',
 'gemini_pro',
 'llama-2-13b-chat-hf',
 'llama-2-70b-chat-hf',
 'mixtral-8x7B-instruct-v0.1']
In [4]:
m4 = Model('gpt-4-1106-preview') # GPT 3.5 Turbo is the default model

Example agent traits and survey contexts:

In [5]:
ages = ["You are a teenager (13-19 years old).", 
        "You are college age (20-24 years old).", 
        "You are a young adult (25-39 years old).",
        "You are middle-aged (40-59 years old).", 
        "You are a senior citizen (60 or more years old)."]

contexts = ["",
            "You are answering an online survey.",
            "You are being interviewed by a researcher.",
            "You are participating in a focus group of peers.",
            "You are participating in a focus group of people of all ages and backgrounds."]

Adding context to question texts¶

Here we specify agent traits and survey context directly in the question texts:

In [6]:
q_exercise = QuestionLinearScale(
    question_name = "exercise",
    question_text = "How many times do you typically exercise each week? ({{age}} {{context}})",
    question_options = [0,1,2,3,4,5,6,7]
)

q_dessert = QuestionLinearScale(
    question_name = "dessert",
    question_text = "How many times do you typically eat dessert each week?  ({{age}} {{context}})",
    question_options = [0,1,2,3,4,5,6,7]
)

survey = Survey([q_exercise, q_dessert])
In [7]:
scenarios = [Scenario({"age":a, "context":c}) for a in ages for c in contexts]
In [8]:
results = survey.by(scenarios).by(m4).run()
In [9]:
results.select("age", "context", "exercise", "dessert").print()
results.print()
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┓
┃ scenario                                   ┃ scenario                                    ┃ answer    ┃ answer   ┃
┃ .age                                       ┃ .context                                    ┃ .exercise ┃ .dessert ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━┩
│ You are a teenager (13-19 years old).      │                                             │ 3         │ 3        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are answering an online survey.         │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are being interviewed by a researcher.  │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are participating in a focus group of   │ 4         │ 2        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │                                             │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are answering an online survey.         │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are being interviewed by a researcher.  │ 4         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │                                             │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are answering an online survey.         │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are being interviewed by a researcher.  │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are participating in a focus group of   │ 4         │ 2        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │                                             │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are answering an online survey.         │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are being interviewed by a researcher.  │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │                                             │ 3         │ 2        │
│ old).                                      │                                             │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are answering an online survey.         │ 2         │ 2        │
│ old).                                      │                                             │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are being interviewed by a researcher.  │ 3         │ 2        │
│ old).                                      │                                             │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are participating in a focus group of   │ 3         │ 2        │
│ old).                                      │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are participating in a focus group of   │ 3         │ 2        │
│ old).                                      │ people of all ages and backgrounds.         │           │          │
└────────────────────────────────────────────┴─────────────────────────────────────────────┴───────────┴──────────┘
┏━━━━━━┳━━━━━━┳━━━━━━┳━━━━━━┳━━━━━━┳━━━━━━┳━━━━━━┳━━━━━━┳━━━━━┳━━━━━━┳━━━━━┳━━━━━━┳━━━━━┳━━━━━━┳━━━━━┳━━━━━━┳━━━━━┓
┃ ans… ┃ ans… ┃ ans… ┃ ans… ┃ sce… ┃ sce… ┃ mod… ┃ mod… ┃ mo… ┃ mod… ┃ mo… ┃ mod… ┃ mo… ┃ pro… ┃ pr… ┃ pro… ┃ pr… ┃
┃ .de… ┃ .de… ┃ .ex… ┃ .ex… ┃ .co… ┃ .age ┃ .pr… ┃ .us… ┃ .t… ┃ .mo… ┃ .m… ┃ .fr… ┃ .t… ┃ .de… ┃ .d… ┃ .ex… ┃ .e… ┃
┡━━━━━━╇━━━━━━╇━━━━━━╇━━━━━━╇━━━━━━╇━━━━━━╇━━━━━━╇━━━━━━╇━━━━━╇━━━━━━╇━━━━━╇━━━━━━╇━━━━━╇━━━━━━╇━━━━━╇━━━━━━╇━━━━━┩
│ 3    │ I    │ I    │ 3    │      │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ usu… │      │      │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ exe… │      │      │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ abo… │      │      │ tee… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ aft… │ thr… │      │      │ (13… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ din… │ tim… │      │      │ yea… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ so   │ a    │      │      │ old… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ tha… │ week │      │      │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ abo… │ to   │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ thr… │ stay │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ tim… │ act… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ a    │ and  │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ wee… │ hea… │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ tee… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ tee… │ the │ (13… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (13… │ fo… │ yea… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ pe… │ old… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ {}  │ )    │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ )    │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ usu… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ man… │      │ ans… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ to   │      │ an   │ tee… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ exe… │      │ onl… │ (13… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ abo… │      │ sur… │ yea… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ thr… │      │      │ old… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ oft… │ tim… │      │      │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ a    │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ week │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ when │ with │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ we   │ a    │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ have │ mix  │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ fam… │ of   │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ din… │ spo… │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │ and  │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │ gym  │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │ wor… │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ tee… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ tee… │ the │ (13… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (13… │ fo… │ yea… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ pe… │ old… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ {}  │ You  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ an   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ an   │     │ onl… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ onl… │     │ sur… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sur… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ usu… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ man… │      │ bei… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ to   │      │ int… │ tee… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ abo… │ exe… │      │ by a │ (13… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ twi… │ thr… │      │ res… │ yea… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ a    │ tim… │      │      │ old… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ wee… │ a    │      │      │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ typ… │ wee… │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ on   │ mos… │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ wee… │ bec… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ or   │ of   │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ when │ the  │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ we   │ sch… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ have │ phy… │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ som… │ edu… │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │ spe… │ pro… │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │ at   │ and  │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │ hom… │ soc… │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │ pra… │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ tee… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ tee… │ the │ (13… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (13… │ fo… │ yea… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ pe… │ old… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ {}  │ You  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ bei… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ bei… │     │ int… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ int… │     │ by a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ by a │     │ res… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ res… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 4    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ usu… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ exe… │      │ par… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ abo… │      │ in a │ tee… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ like │ four │      │ foc… │ (13… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ twi… │ tim… │      │ gro… │ yea… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ a    │ a    │      │ of   │ old… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ wee… │ wee… │      │ pee… │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ mos… │ mos… │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ on   │ aft… │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ wee… │ sch… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ when │ or   │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ we   │ in   │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ have │ the  │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ fam… │ eve… │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ din… │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ tee… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ tee… │ the │ (13… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (13… │ fo… │ yea… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ pe… │ old… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ {}  │ You  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ par… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ par… │     │ in a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ in a │     │ foc… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ foc… │     │ gro… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ gro… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ pee… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ pee… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ usu… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ man… │      │ par… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ to   │      │ in a │ tee… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ fit  │      │ foc… │ (13… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ in   │      │ gro… │ yea… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ exe… │      │ of   │ old… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ oft… │ abo… │      │ peo… │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ thr… │      │ of   │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ the  │ tim… │      │ all  │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ wee… │ a    │      │ ages │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ when │ wee… │      │ and  │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ fam… │ bal… │      │ bac… │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ din… │ it   │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ hap… │ with │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │ sch… │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │ and  │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │ oth… │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │ act… │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ tee… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ tee… │ the │ (13… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (13… │ fo… │ yea… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ pe… │ old… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ {}  │ You  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ par… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ par… │     │ in a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ in a │     │ foc… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ foc… │     │ gro… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ gro… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ peo… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ peo… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ all  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ all  │     │ ages │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ages │     │ and  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ and  │     │ bac… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ bac… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │      │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ typ… │      │      │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ exe… │      │      │ col… │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ abo… │      │      │ age  │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ abo… │ thr… │      │      │ (20… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ twi… │ tim… │      │      │ yea… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ a    │ a    │      │      │ old… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ wee… │ week │      │      │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ oft… │ to   │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ on   │ bal… │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ wee… │ my   │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ or   │ stu… │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ when │ and  │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ I'm  │ fit… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ out  │      │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ with │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │ fri… │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ col… │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ col… │ wi… │ age  │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ age  │ the │ (20… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (20… │ fo… │ yea… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ pe… │ old… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ {}  │ )    │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ )    │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ typ… │ typ… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ man… │      │ ans… │ col… │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ to   │      │ an   │ age  │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ exe… │      │ onl… │ (20… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ abo… │      │ sur… │ yea… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ thr… │      │      │ old… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ usu… │ tim… │      │      │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ a    │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ week │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ when │ due  │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ I    │ to   │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ hang │ my   │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ out  │ col… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ with │ sch… │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ fri… │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │ or   │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │ have │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │ a    │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ col… │ ag… │
│      │ fam… │      │      │      │      │      │      │     │      │     │      │     │ col… │ wi… │ age  │ wi… │
│      │ din… │      │      │      │      │      │      │     │      │     │      │     │ age  │ the │ (20… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (20… │ fo… │ yea… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ pe… │ old… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ {}  │ You  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ an   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ an   │     │ onl… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ onl… │     │ sur… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sur… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 4    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ usu… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ man… │      │ bei… │ col… │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ to   │      │ int… │ age  │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ work │      │ by a │ (20… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ out  │      │ res… │ yea… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ abo… │      │      │ old… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ typ… │ four │      │      │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ tim… │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ a    │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ when │ wee… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ I    │ bal… │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ have │ bet… │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ more │ car… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ free │ and  │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ time │ str… │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │ to   │ tra… │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │ enj… │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │ it.  │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ col… │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ col… │ wi… │ age  │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ age  │ the │ (20… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (20… │ fo… │ yea… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ pe… │ old… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ {}  │ You  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ bei… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ bei… │     │ int… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ int… │     │ by a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ by a │     │ res… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ res… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ usu… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ man… │      │ par… │ col… │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ to   │      │ in a │ age  │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ a    │ fit  │      │ foc… │ (20… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ cou… │ in a │      │ gro… │ yea… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ of   │ wor… │      │ of   │ old… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ tim… │ abo… │      │ pee… │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ a    │ thr… │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ tim… │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ oft… │ a    │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ aft… │ wee… │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ din… │ bal… │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ or   │ bet… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ as a │ my   │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ tre… │ stu… │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │ dur… │ and  │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │ wee… │ soc… │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │ act… │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ col… │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ col… │ wi… │ age  │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ age  │ the │ (20… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (20… │ fo… │ yea… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ pe… │ old… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ {}  │ You  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ par… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ par… │     │ in a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ in a │     │ foc… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ foc… │     │ gro… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ gro… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ pee… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ pee… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ usu… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ man… │      │ par… │ col… │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ to   │      │ in a │ age  │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ fit  │      │ foc… │ (20… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ in a │      │ gro… │ yea… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ wor… │      │ of   │ old… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ typ… │ abo… │      │ peo… │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ thr… │      │ of   │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ tim… │      │ all  │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ or   │ a    │      │ ages │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ when │ wee… │      │ and  │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ han… │ bal… │      │ bac… │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ out  │ bet… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ with │ my   │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ fri… │ stu… │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │ and  │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │ soc… │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │ act… │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ col… │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ col… │ wi… │ age  │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ age  │ the │ (20… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (20… │ fo… │ yea… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ pe… │ old… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ {}  │ You  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ par… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ par… │     │ in a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ in a │     │ foc… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ foc… │     │ gro… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ gro… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ peo… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ peo… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ all  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ all  │     │ ages │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ages │     │ and  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ and  │     │ bac… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ bac… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │      │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ usu… │      │      │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ man… │      │      │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ to   │      │      │ you… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ fit  │      │      │ adu… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ in   │      │      │ (25… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ exe… │      │      │ yea… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ typ… │ abo… │      │      │ old… │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ thr… │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ tim… │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ or   │ a    │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ dur… │ wee… │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ soc… │ bal… │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ out… │ it   │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │      │ with │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │ work │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │ and  │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │ oth… │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │ com… │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ you… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ you… │ the │ adu… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ adu… │ fo… │ (25… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (25… │ pe… │ yea… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ {}  │ old… │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │     │ )    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ )    │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ typ… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ exe… │      │ ans… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ abo… │      │ an   │ you… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ thr… │      │ onl… │ adu… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ tim… │      │ sur… │ (25… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ a    │      │      │ yea… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ oft… │ week │      │      │ old… │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ to   │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ mai… │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ or   │ my   │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ dur… │ fit… │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ soc… │ and  │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ gat… │ man… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │      │ str… │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ you… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ you… │ the │ adu… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ adu… │ fo… │ (25… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (25… │ pe… │ yea… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ {}  │ old… │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │     │ You  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ an   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ an   │     │ onl… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ onl… │     │ sur… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sur… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ typ… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ exe… │      │ bei… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ thr… │      │ int… │ you… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ tim… │      │ by a │ adu… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ a    │      │ res… │ (25… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ week │      │      │ yea… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ typ… │ to   │      │      │ old… │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ mai… │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ my   │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ or   │ fit… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ dur… │ and  │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ soc… │ wel… │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ out… │      │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ you… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ you… │ the │ adu… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ adu… │ fo… │ (25… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (25… │ pe… │ yea… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ {}  │ old… │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │     │ You  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ bei… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ bei… │     │ int… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ int… │     │ by a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ by a │     │ res… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ res… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 4    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ typ… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ have │ man… │      │ par… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ to   │      │ in a │ you… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ exe… │      │ foc… │ adu… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ four │      │ gro… │ (25… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ tim… │      │ of   │ yea… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ oft… │ a    │      │ pee… │ old… │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ wee… │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ the  │ fit… │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ wee… │ in   │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ when │ wor… │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ I    │ aro… │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ have │ my   │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ more │ work │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ time │ sch… │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │ to   │ and  │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │ enj… │ soc… │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │ it.  │ com… │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ you… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ you… │ the │ adu… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ adu… │ fo… │ (25… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (25… │ pe… │ yea… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ {}  │ old… │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │     │ You  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ par… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ par… │     │ in a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ in a │     │ foc… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ foc… │     │ gro… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ gro… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ pee… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ pee… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ typ… │ typ… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ enj… │ exe… │      │ par… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ thr… │      │ in a │ you… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ tim… │      │ foc… │ adu… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ a    │      │ gro… │ (25… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ week │      │ of   │ yea… │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ usu… │ to   │      │ peo… │ old… │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ mai… │      │ of   │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ my   │      │ all  │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ or   │ fit… │      │ ages │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ dur… │ and  │      │ and  │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ soc… │ man… │      │ bac… │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ gat… │ str… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ you… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ you… │ the │ adu… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ adu… │ fo… │ (25… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (25… │ pe… │ yea… │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ {}  │ old… │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │     │ You  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ par… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ par… │     │ in a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ in a │     │ foc… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ foc… │     │ gro… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ gro… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ peo… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ peo… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ all  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ all  │     │ ages │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ages │     │ and  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ and  │     │ bac… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ bac… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │      │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ typ… │      │      │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ all… │ exe… │      │      │ mid… │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ mys… │ thr… │      │      │ (40… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ to   │ tim… │      │      │ yea… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ have │ a    │      │      │ old… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ des… │ week │      │      │      │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ twi… │ to   │      │      │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ a    │ mai… │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ week │ my   │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ to   │ hea… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ mai… │ and  │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ a    │ man… │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ bal… │ str… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ die… │      │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ mid… │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ mid… │ wi… │ (40… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (40… │ the │ yea… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ fo… │ old… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ pe… │ )    │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ )    │ {}  │ The  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ gen… │ typ… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ enj… │ exe… │      │ ans… │ mid… │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ thr… │      │ an   │ (40… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ tim… │      │ onl… │ yea… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ a    │      │ sur… │ old… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ week │      │      │      │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ typ… │ to   │      │      │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ mai… │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ my   │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ or   │ hea… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ dur… │ and  │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ soc… │ man… │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ gat… │ str… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ mid… │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ mid… │ wi… │ (40… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (40… │ the │ yea… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ fo… │ old… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ pe… │ You  │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │ {}  │ are  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ an   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ an   │     │ onl… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ onl… │     │ sur… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sur… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ usu… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ enj… │ man… │      │ bei… │ mid… │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ to   │      │ int… │ (40… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ fit  │      │ by a │ yea… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ in   │      │ res… │ old… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ exe… │      │      │      │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ typ… │ thr… │      │      │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ tim… │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ a    │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │      │ wee… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │      │ typ… │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │      │ foc… │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │      │ on a │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │      │ mix  │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │ of   │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │ car… │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │ and  │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │ str… │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ mid… │ ag… │
│      │      │ tra… │      │      │      │      │      │     │      │     │      │     │ mid… │ wi… │ (40… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (40… │ the │ yea… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ fo… │ old… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ pe… │ You  │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │ {}  │ are  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ bei… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ bei… │     │ int… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ int… │     │ by a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ by a │     │ res… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ res… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ typ… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ all… │ man… │      │ par… │ mid… │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ mys… │ to   │      │ in a │ (40… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ to   │ fit  │      │ foc… │ yea… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ have │ in   │      │ gro… │ old… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ des… │ thr… │      │ of   │      │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ twi… │ exe… │      │ pee… │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ a    │ ses… │      │      │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ each │      │      │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ typ… │ wee… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ on   │ I    │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ the  │ find │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ wee… │ it's │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │      │ a    │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │ good │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │ bal… │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │ bet… │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │ my   │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ mid… │ ag… │
│      │      │ work │      │      │      │      │      │     │      │     │      │     │ mid… │ wi… │ (40… │ wi… │
│      │      │ sch… │      │      │      │      │      │     │      │     │      │     │ (40… │ the │ yea… │ the │
│      │      │ and  │      │      │      │      │      │     │      │     │      │     │ yea… │ fo… │ old… │ fo… │
│      │      │ fam… │      │      │      │      │      │     │      │     │      │     │ old… │ pe… │ You  │ pe… │
│      │      │ com… │      │      │      │      │      │     │      │     │      │     │ You  │ {}  │ are  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ par… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ par… │     │ in a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ in a │     │ foc… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ foc… │     │ gro… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ gro… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ pee… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ pee… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ gen… │ typ… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ enj… │ man… │      │ par… │ mid… │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ to   │      │ in a │ (40… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ fit  │      │ foc… │ yea… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ in 3 │      │ gro… │ old… │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ exe… │      │ of   │      │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ oft… │ ses… │      │ peo… │      │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ each │      │ of   │      │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ wee… │      │ all  │      │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ or   │ bal… │      │ ages │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ dur… │ work │      │ and  │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ a    │ and  │      │ bac… │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ soc… │ fam… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ gat… │ com… │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ mid… │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ mid… │ wi… │ (40… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (40… │ the │ yea… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │ fo… │ old… │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │ pe… │ You  │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │ {}  │ are  │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ par… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ par… │     │ in a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ in a │     │ foc… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ foc… │     │ gro… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ gro… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ peo… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ peo… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ all  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ all  │     │ ages │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ages │     │ and  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ and  │     │ bac… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ bac… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │      │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ make │      │      │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ enj… │ it a │      │      │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ poi… │      │      │ sen… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ to   │      │      │ cit… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ exe… │      │      │ (60  │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ mod… │      │      │ or   │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ typ… │ at   │      │      │ more │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ on   │ lea… │      │      │ yea… │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ thr… │      │      │ old… │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ when │ tim… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ fam… │ a    │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ com… │ week │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ over │ to   │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ for  │ mai… │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ din… │ my   │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │ hea… │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │ and  │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │ mob… │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ sen… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sen… │ the │ cit… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ cit… │ fo… │ (60  │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (60  │ pe… │ or   │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ or   │ {}  │ more │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ more │     │ yea… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │     │ old… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │     │ )    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ )    │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 2    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ enj… │ typ… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ hav… │ exe… │      │ ans… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ twi… │      │ an   │ sen… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ aft… │ a    │      │ onl… │ cit… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ din… │ week │      │ sur… │ (60  │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ and  │ to   │      │      │ or   │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ I    │ mai… │      │      │ more │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ typ… │ my   │      │      │ yea… │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ all… │ hea… │      │      │ old… │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ mys… │ and  │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ this │ mob… │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ tre… │      │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ twi… │      │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ a    │      │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ wee… │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ sen… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sen… │ the │ cit… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ cit… │ fo… │ (60  │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (60  │ pe… │ or   │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ or   │ {}  │ more │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ more │     │ yea… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │     │ old… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │     │ You  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ an   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ an   │     │ onl… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ onl… │     │ sur… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sur… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ find │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ enj… │ it   │      │ bei… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ a    │ imp… │      │ int… │ sen… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ des… │ to   │      │ by a │ cit… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ aft… │ stay │      │ res… │ (60  │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ din… │ act… │      │      │ or   │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ twi… │ so I │      │      │ more │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ a    │ typ… │      │      │ yea… │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ wee… │ exe… │      │      │ old… │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ oft… │ thr… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ on   │ tim… │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ wee… │ a    │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ when │ wee… │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ the  │ It   │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ fam… │ hel… │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │ gat… │ me   │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │ mai… │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │ my   │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │ hea… │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ sen… │ wi… │
│      │      │ and  │      │      │      │      │      │     │      │     │      │     │ sen… │ the │ cit… │ the │
│      │      │ mob… │      │      │      │      │      │     │      │     │      │     │ cit… │ fo… │ (60  │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (60  │ pe… │ or   │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ or   │ {}  │ more │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ more │     │ yea… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │     │ old… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │     │ You  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ bei… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ bei… │     │ int… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ int… │     │ by a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ by a │     │ res… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ res… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ enj… │ find │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ des… │ that │      │ par… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ but  │ exe… │      │ in a │ sen… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ I    │ thr… │      │ foc… │ cit… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ try  │ tim… │      │ gro… │ (60  │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ to   │ a    │      │ of   │ or   │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ keep │ week │      │ pee… │ more │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ it   │ is a │      │      │ yea… │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ mod… │ good │      │      │ old… │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ I    │ bal… │      │      │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ typ… │ for  │      │      │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ have │ me.  │      │      │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ des… │ It   │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ twi… │ all… │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ a    │ me   │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │ wee… │ to   │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │      │ stay │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │      │ act… │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │ and  │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ sen… │ wi… │
│      │      │ mai… │      │      │      │      │      │     │      │     │      │     │ sen… │ the │ cit… │ the │
│      │      │ my   │      │      │      │      │      │     │      │     │      │     │ cit… │ fo… │ (60  │ fo… │
│      │      │ hea… │      │      │      │      │      │     │      │     │      │     │ (60  │ pe… │ or   │ pe… │
│      │      │ wit… │      │      │      │      │      │     │      │     │      │     │ or   │ {}  │ more │ {}  │
│      │      │ ove… │      │      │      │      │      │     │      │     │      │     │ more │     │ yea… │     │
│      │      │ mys… │      │      │      │      │      │     │      │     │      │     │ yea… │     │ old… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │     │ You  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ par… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ par… │     │ in a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ in a │     │ foc… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ foc… │     │ gro… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ gro… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ pee… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ pee… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
├──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┼──────┼─────┤
│ 2    │ I    │ I    │ 3    │ You  │ You  │ 0    │ True │ 1   │ gpt… │ 10… │ 0    │ 0.5 │ You  │ You │ You  │ You │
│      │ usu… │ typ… │      │ are  │ are  │      │      │     │      │     │      │     │ are  │ are │ are  │ are │
│      │ enj… │ exe… │      │ par… │ a    │      │      │     │      │     │      │     │ bei… │ pl… │ bei… │ pl… │
│      │ des… │ thr… │      │ in a │ sen… │      │      │     │      │     │      │     │ ask… │ the │ ask… │ the │
│      │ twi… │ tim… │      │ foc… │ cit… │      │      │     │      │     │      │     │ the  │ ro… │ the  │ ro… │
│      │ a    │ a    │      │ gro… │ (60  │      │      │     │      │     │      │     │ fol… │ of  │ fol… │ of  │
│      │ wee… │ week │      │ of   │ or   │      │      │     │      │     │      │     │ que… │ a   │ que… │ a   │
│      │ oft… │ to   │      │ peo… │ more │      │      │     │      │     │      │     │ How  │ hu… │ How  │ hu… │
│      │ aft… │ mai… │      │ of   │ yea… │      │      │     │      │     │      │     │ many │ an… │ many │ an… │
│      │ Sun… │ my   │      │ all  │ old… │      │      │     │      │     │      │     │ tim… │ su… │ tim… │ su… │
│      │ din… │ hea… │      │ ages │      │      │      │     │      │     │      │     │ do   │ qu… │ do   │ qu… │
│      │ and  │ and  │      │ and  │      │      │      │     │      │     │      │     │ you  │ Do  │ you  │ Do  │
│      │ once │ mob… │      │ bac… │      │      │      │     │      │     │      │     │ typ… │ not │ typ… │ not │
│      │ dur… │      │      │      │      │      │      │     │      │     │      │     │ eat  │ br… │ exe… │ br… │
│      │ the  │      │      │      │      │      │      │     │      │     │      │     │ des… │ ch… │ each │ ch… │
│      │ week │      │      │      │      │      │      │     │      │     │      │     │ each │ You │ wee… │ You │
│      │ as a │      │      │      │      │      │      │     │      │     │      │     │ wee… │ are │ (You │ are │
│      │ lit… │      │      │      │      │      │      │     │      │     │      │     │ (You │ an  │ are  │ an  │
│      │ tre… │      │      │      │      │      │      │     │      │     │      │     │ are  │ ag… │ a    │ ag… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │ wi… │ sen… │ wi… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sen… │ the │ cit… │ the │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ cit… │ fo… │ (60  │ fo… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (60  │ pe… │ or   │ pe… │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ or   │ {}  │ more │ {}  │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ more │     │ yea… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ yea… │     │ old… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ old… │     │ You  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ You  │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │ par… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ par… │     │ in a │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ in a │     │ foc… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ foc… │     │ gro… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ gro… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ peo… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ peo… │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ all  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ all  │     │ ages │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ages │     │ and  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ and  │     │ bac… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ bac… │     │ The  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ The  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ are  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ are  │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 0: 0 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0: 0 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 1: 1 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1: 1 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 2: 2 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 2: 2 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 3: 3 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 3: 3 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 4: 4 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 4: 4 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 5: 5 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 5: 5 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 6: 6 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 6: 6 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ 7: 7 │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 7: 7 │     │      │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │      │     │ Ret… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Ret… │     │ a    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ a    │     │ val… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ val… │     │ JSON │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ JSON │     │ for… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ for… │     │ like │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ like │     │ thi… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ thi… │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │ only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ only │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ of   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ of   │     │ the  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ the  │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ (co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ (co… │     │ sta… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sta… │     │ at   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ at   │     │ 0):  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 0):  │     │ {"a… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ {"a… │     │ <put │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ <put │     │ ans… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ ans… │     │ code │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ code │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ "co… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "co… │     │ "<p… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ "<p… │     │ exp… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ exp… │     │ her… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ her… │     │ Only │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ Only │     │ 1    │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ 1    │     │ opt… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ opt… │     │ may  │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ may  │     │ be   │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ be   │     │ sel… │     │
│      │      │      │      │      │      │      │      │     │      │     │      │     │ sel… │     │      │     │
└──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴─────┴──────┴─────┴──────┴─────┴──────┴─────┴──────┴─────┘

Adding context to agent traits¶

Here we specify agent traits and survey context via agent traits only:

In [10]:
q_exercise = QuestionLinearScale(
    question_name = "exercise",
    question_text = "How many times do you exercise each week?",
    question_options = [0,1,2,3,4,5,6,7]
)

q_dessert = QuestionLinearScale(
    question_name = "dessert",
    question_text = "How many times do you eat dessert each week?",
    question_options = [0,1,2,3,4,5,6,7]
)

survey = Survey([q_exercise, q_dessert])
In [11]:
agents = [Agent({"age":a, "context":c}) for a in ages for c in contexts]
In [12]:
results = survey.by(agents).by(m4).run()
In [13]:
results.select("age", "context", "exercise", "dessert").print()
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┓
┃ agent                                      ┃ agent                                       ┃ answer    ┃ answer   ┃
┃ .age                                       ┃ .context                                    ┃ .exercise ┃ .dessert ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━┩
│ You are a teenager (13-19 years old).      │                                             │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are answering an online survey.         │ 3         │ 3        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are being interviewed by a researcher.  │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are participating in a focus group of   │ 3         │ 3        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are participating in a focus group of   │ 2         │ 3        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │                                             │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are answering an online survey.         │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are being interviewed by a researcher.  │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │                                             │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are answering an online survey.         │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are being interviewed by a researcher.  │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │                                             │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are answering an online survey.         │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are being interviewed by a researcher.  │ 2         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │                                             │ 3         │ 2        │
│ old).                                      │                                             │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are answering an online survey.         │ 3         │ 2        │
│ old).                                      │                                             │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are being interviewed by a researcher.  │ 3         │ 2        │
│ old).                                      │                                             │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are participating in a focus group of   │ 3         │ 2        │
│ old).                                      │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are participating in a focus group of   │ 3         │ 2        │
│ old).                                      │ people of all ages and backgrounds.         │           │          │
└────────────────────────────────────────────┴─────────────────────────────────────────────┴───────────┴──────────┘

Adding context to question texts and agent traits¶

Here we use agent traits and specify context only in the question text:

In [14]:
q_exercise = QuestionLinearScale(
    question_name = "exercise",
    question_text = "How many times do you exercise each week? ({{context}})",
    question_options = [0,1,2,3,4,5,6,7]
)

q_dessert = QuestionLinearScale(
    question_name = "dessert",
    question_text = "How many times do you eat dessert each week? ({{context}})",
    question_options = [0,1,2,3,4,5,6,7]
)

survey = Survey([q_exercise, q_dessert])
In [15]:
scenarios = [Scenario({"context":c}) for c in contexts]
In [16]:
agents = [Agent({"age":a}) for a in ages]
In [17]:
results = survey.by(scenarios).by(agents).by(m4).run()
In [18]:
results.select("age", "context", "exercise", "dessert").print()
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┓
┃ agent                                      ┃ scenario                                    ┃ answer    ┃ answer   ┃
┃ .age                                       ┃ .context                                    ┃ .exercise ┃ .dessert ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━┩
│ You are a teenager (13-19 years old).      │                                             │ 3         │ 3        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are answering an online survey.         │ 3         │ 3        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are being interviewed by a researcher.  │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a teenager (13-19 years old).      │ You are participating in a focus group of   │ 4         │ 3        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │                                             │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are answering an online survey.         │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are being interviewed by a researcher.  │ 3         │ 1        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are college age (20-24 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │                                             │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are answering an online survey.         │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are being interviewed by a researcher.  │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are participating in a focus group of   │ 2         │ 2        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a young adult (25-39 years old).   │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │                                             │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are answering an online survey.         │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are being interviewed by a researcher.  │ 3         │ 2        │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are middle-aged (40-59 years old).     │ You are participating in a focus group of   │ 3         │ 2        │
│                                            │ people of all ages and backgrounds.         │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │                                             │ 2         │ 2        │
│ old).                                      │                                             │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are answering an online survey.         │ 3         │ 1        │
│ old).                                      │                                             │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are being interviewed by a researcher.  │ 3         │ 2        │
│ old).                                      │                                             │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are participating in a focus group of   │ 3         │ 1        │
│ old).                                      │ peers.                                      │           │          │
├────────────────────────────────────────────┼─────────────────────────────────────────────┼───────────┼──────────┤
│ You are a senior citizen (60 or more years │ You are participating in a focus group of   │ 3         │ 2        │
│ old).                                      │ people of all ages and backgrounds.         │           │          │
└────────────────────────────────────────────┴─────────────────────────────────────────────┴───────────┴──────────┘

Compare prompts¶

We can compare the prompts that we used which are accessible via the database that is created.

In [19]:
# from edsl import CONFIG
# CONFIG.EDSL_DATABASE_PATH
# 
# $ sqlite database.db
# > select system_prompt, prompt from responses;

The prompt where we put both agent traits and survey context in the question texts:

You are answering questions as if you were a human. Do not break character. Your traits are: {}.

You are being asked the following question: How many times do you eat dessert each week? (You are a young adult (25-39 years old). You are participating in a focus group of peers.)
The options are 0: 0 1: 1 2: 2 3: 3 4: 4 5: 5 6: 6 7: 7 Return a valid JSON formatted like this, selecting only the number of the option: {"answer": , "comment": ""}

The prompt where we put context in the agent traits:

You are answering questions as if you were a human. Do not break character. Your traits are: {'age': 'You are a young adult (25-39 years old).', 'survey_type': 'You are participating in a focus group of peers.'}.

You are being asked the following question: How many times do you eat dessert each week?
The options are 0: 0 1: 1 2: 2 3: 3 4: 4 5: 5 6: 6 7: 7 Return a valid JSON formatted like this, selecting only the number of the option: {"answer": , "comment": ""}

The prompt where we used agent traits and put context only in the question texts:

You are answering questions as if you were a human. Do not break character. Your traits are: {'age': 'You are a young adult (25-39 years old).'}.

You are being asked the following question: How many times do you eat dessert each week? (You are participating in a focus group of peers.)
The options are 0: 0 1: 1 2: 2 3: 3 4: 4 5: 5 6: 6 7: 7 Return a valid JSON formatted like this, selecting only the number of the option: {"answer": , "comment": ""}

Ideas for further investigation¶

Consider

Seeding questions with prior reponses (see example)
Exploring answer comments with free text questions and more in-depth contexts and personas (see examples)



Copyright © 2023 Go Emeritus, Inc. All rights reserved. www.goemeritus.com