SQLite format 3@   _{E) Leave. CFirst option to choose from Foo Bar4 OI just take all the cash you have3 MSure, what do you have to offer?H wI am fine, thank you. Would you like to buy anything? [Leave]G uWhat do you think I am, a computer program? Go away!5 QYo [Player], what can I do for you' 5Do you have carrots? %How are you? #Hello world              =asked_for_carrots_many()Aasked_for_carrots_before()    $T''gtabledialog_piecesdialog_piecesCREATE TABLE dialog_pieces ( owner_id INTEGER NOT NULL, stage_id INTEGER NOT NULL, piece_id INTEGER DEFAULT 0, precondition_id INTEGER DEFAULT 0, postcondition_id INTEGER DEFAULT 0, next_on_fail INTEGER DEFAULT 0, postaction_id INTEGER DEFAULT 0, next_dialog_stage INTEGER DEFAULT 0, as_string TEXT NOT NULL, comment TEXT, PRIMARY KEY(owner_id, stage_id, piece_id) )9M'indexsqlite_autoindex_dialog_pieces_1dialog_pieces//[tabledialog_conditionsdialog_conditionsCREATE TABLE dialog_conditions ( id PRIMARY KEY NOT NULL, lua_code BLOB, comment TEXT )AU/indexsqlite_autoindex_dialog_conditions_1dialog_conditions "g&gx--#tabledialog_variablesdialog_variables CREATE TABLE dialog_variables (name TEXT PRIMARY KEY, value TEXT DEFAULT 0)? S-indexsqlite_autoindex_dialog_variables_1dialog_variables  ))Utabledialog_actionsdialog_actionsCREATE TABLE dialog_actions ( id PRIMARY KEY NOT NULL, lua_code BLOB, comment TEXT );O)indexsqlite_autoindex_dialog_actions_1dialog_actions //Eviewdialog_stage_viewdialog_stage_viewCREATE VIEW dialog_stage_view AS SELECT owner_id, stage_id, piece_id, next_dialog_stage, next_on_fail, as_string, d.comment AS comment, c1.lua_code AS pre_cond, c2.lua_code AS post_cond, a.lua_code AS action FROM dialog_pieces AS d LEFT JOIN dialog_conditions AS c1 ON c1.id = d.precondition_id LEFT JOIN dialog_conditions AS c2 ON c2.id == d.postcondition_id LEFT JOIN dialog_actions AS a ON a.id = d.postaction_id ORDER BY d.piece_id ASC 5NUM_ASKED_FOR_CARROT0 5NUM_ASKED_FOR_CARROT