import Beginning as pages from . import * c = cu class PlayerBot(Bot): def play_round(self): yield Instructions yield IntroDemographics yield Demographics, dict( gender="Male", age="18-24", nationality="xyz", country_of_birth="xyz", degree="Graduate school (e.g. Masters, Ph.D., Post-doctoral degrees)", employment="Employed full-time", ) yield OpeningQuestions, dict( opening_1="Never", opening_2="Never", opening_3="Through personal experience with rising prices of goods and services", opening_4="Myself", ) yield InflationIntro yield InflationDefinitionQ, dict(inflation_definition="value of money.") yield InflationDefinitionCont yield InstructionControl, dict( forecast_variable="Future inflation ", inflation_period="Year 4 and Year 5. ", ) yield CorrectAnswers yield PastAndFutureSwedenInflation, dict( pnf_swe_inf_4=-1000, pnf_swe_inf_5="Higher today", pnf_swe_inf_6=-1000, ) yield ControlPhaseIntro, dict() yield InflationForecasting_1, dict(control_1=-1000) yield InflationForecasting_2, dict(control_2=-1000) yield InflationForecasting_3, dict(control_3=-1000) yield InflationForecasting_4, dict(control_4=-1000) yield InflationForecasting_5, dict(control_5=-1000) yield InflationForecasting_6, dict(control_6=-1000) yield TreatmentPhaseIntro yield InflationForecasting_7, dict(treatment_1=-1000) yield InflationForecasting_8, dict(treatment_2=-1000) yield InflationForecasting_9, dict(treatment_3=-1000) yield InflationForecasting_10, dict(treatment_4=-1000) yield InflationForecasting_11, dict(treatment_5=-1000) yield InflationForecasting_12, dict(treatment_6=-1000)