123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058 |
- questions = [
- /* ESSENTIALISME ************************************************ */
- {
- question: "“One is not born, but rather becomes, a woman.”",
- answer: 0,
- valuesYes: [
- {
- axis: "c0",
- value: 3
- },
- {
- axis: "femi",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c1",
- value: 3
- }
- ]
- },
- {
- question:
- "Differences of treatment and quality of life in our society show that racism is still omnipresent.",
- answer: 0,
- valuesYes: [
- {
- axis: "c0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c1",
- value: 3
- }
- ]
- },
- {
- question:
- "All sciences, even chemistry and biology are not uncompromising and are conditioned by our society.",
- answer: 0,
- valuesYes: [
- {
- axis: "c0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c1",
- value: 3
- }
- ]
- },
- {
- question:
- "The categories “women” and “men” are social constructs that should be given up.",
- answer: 0,
- valuesYes: [
- {
- axis: "c0",
- value: 3
- },
- {
- axis: "femi",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c1",
- value: 3
- }
- ]
- },
- {
- question: "Nobody is by nature predisposed to criminality.",
- answer: 0,
- valuesYes: [
- {
- axis: "c0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c1",
- value: 3
- }
- ]
- },
- {
- question: "Sexual orientation is a social construct",
- answer: 0,
- valuesYes: [
- {
- axis: "c0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c1",
- value: 3
- }
- ]
- },
- {
- question:
- "Social differences between ethnic groups cannot be explained by biology.",
- answer: 0,
- valuesYes: [
- {
- axis: "c0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c1",
- value: 3
- }
- ]
- },
- {
- question:
- "The social roles of women and men can partly be explained by biological differences.",
- answer: 0,
- valuesYes: [
- {
- axis: "c1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c0",
- value: 3
- },
- {
- axis: "femi",
- value: 3
- }
- ]
- },
- {
- question:
- "Hormonal differences can explain some differences in individual characteristics between women and men.",
- answer: 0,
- valuesYes: [
- {
- axis: "c1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c0",
- value: 3
- },
- {
- axis: "femi",
- value: 3
- }
- ]
- },
- {
- question: "Sexual assaults are partly caused by men's natural impulse.",
- answer: 0,
- valuesYes: [
- {
- axis: "c1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c0",
- value: 3
- },
- {
- axis: "femi",
- value: 3
- }
- ]
- },
- {
- question:
- "Transgender individuals will never really be of the gender they would like to be.",
- answer: 0,
- valuesYes: [
- {
- axis: "c1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c0",
- value: 3
- }
- ]
- },
- {
- question:
- "Members of a nation or culture have some unchangeable characteristics that define them.",
- answer: 0,
- valuesYes: [
- {
- axis: "c1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c0",
- value: 3
- }
- ]
- },
- {
- question: "Biologically, human beings are designed for heterosexuality.",
- answer: 0,
- valuesYes: [
- {
- axis: "c1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c0",
- value: 3
- }
- ]
- },
- {
- question:
- "Selfishness is the overriding drive in the human species, no matter the context.",
- answer: 0,
- valuesYes: [
- {
- axis: "c1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "c0",
- value: 3
- }
- ]
- },
- /* NATIONALISME ************************************************* */
- {
- question: "Borders should eventually be abolished.",
- answer: 0,
- valuesYes: [
- {
- axis: "b0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b1",
- value: 3
- }
- ]
- },
- {
- question:
- "People need to stand up for their ideals, even if it leads them to betray their country.",
- answer: 0,
- valuesYes: [
- {
- axis: "b0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b1",
- value: 3
- }
- ]
- },
- {
- question:
- "My country must pay for the damages caused by the crimes it committed in other countries.",
- answer: 0,
- valuesYes: [
- {
- axis: "b0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b1",
- value: 3
- }
- ]
- },
- {
- question:
- "If two countries have similar economies, social systems and environmental norms, then the free market between them has no negative impact.",
- answer: 0,
- valuesYes: [
- {
- axis: "b0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b1",
- value: 3
- }
- ]
- },
- {
- question:
- "National Chauvinism during sports competitions is not acceptable.",
- answer: 0,
- valuesYes: [
- {
- axis: "b0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b1",
- value: 3
- }
- ]
- },
- {
- question:
- "I am equally concerned about the inhabitants of my country and those of other the countries.",
- answer: 0,
- valuesYes: [
- {
- axis: "b0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b1",
- value: 3
- }
- ]
- },
- {
- question:
- "Foreigners living in my country should be allowed to act politically, equally to those who have the nationality.",
- answer: 0,
- valuesYes: [
- {
- axis: "b0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b1",
- value: 3
- }
- ]
- },
- {
- question: "Citizens should take priority over foreigners.",
- answer: 0,
- valuesYes: [
- {
- axis: "b1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b0",
- value: 3
- }
- ]
- },
- {
- question:
- "The values of my country are superior to those of other countries.",
- answer: 0,
- valuesYes: [
- {
- axis: "b1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b0",
- value: 3
- }
- ]
- },
- {
- question: "Multiculturalism is a threat to our society.",
- answer: 0,
- valuesYes: [
- {
- axis: "b1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b0",
- value: 3
- }
- ]
- },
- {
- question: "A good citizen is a patriot.",
- answer: 0,
- valuesYes: [
- {
- axis: "b1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b0",
- value: 3
- }
- ]
- },
- {
- question:
- "It is legitimate for a country to intervene militarily to defend its economic interests.",
- answer: 0,
- valuesYes: [
- {
- axis: "b1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b0",
- value: 3
- }
- ]
- },
- {
- question:
- "It is necessary to teach history in order to create a sense of belonging to the nation.",
- answer: 0,
- valuesYes: [
- {
- axis: "b1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b0",
- value: 3
- }
- ]
- },
- {
- question:
- "Research produced by my country should not be available to other countries.",
- answer: 0,
- valuesYes: [
- {
- axis: "b1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "b0",
- value: 3
- }
- ]
- },
- /* PRODUCTION *************************************************** */
- {
- question:
- "No one should get rich from owning a business, housing, or land.",
- answer: 0,
- valuesYes: [
- {
- axis: "p0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p1",
- value: 3
- }
- ]
- },
- {
- question: "Wage labor is a form of theft from the worker by companies.",
- answer: 0,
- valuesYes: [
- {
- axis: "p0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p1",
- value: 3
- }
- ]
- },
- {
- question: "It is important that health should stay a public matter.",
- answer: 0,
- valuesYes: [
- {
- axis: "p0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p1",
- value: 3
- }
- ]
- },
- {
- question: "Energy and transport structures should be a public matter.",
- answer: 0,
- valuesYes: [
- {
- axis: "p0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p1",
- value: 3
- }
- ]
- },
- {
- question: "Patents should not exist.",
- answer: 0,
- valuesYes: [
- {
- axis: "p0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p1",
- value: 3
- }
- ]
- },
- {
- question:
- "It is necessary to implement assemblies to ration our production to the consumers according to their needs.",
- answer: 0,
- valuesYes: [
- {
- axis: "p0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p1",
- value: 3
- }
- ]
- },
- {
- question: "The labor market enslaves workers.",
- answer: 0,
- valuesYes: [
- {
- axis: "p0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p1",
- value: 3
- }
- ]
- },
- {
- question: "Looking for one's own profit is healthy for the economy.",
- answer: 0,
- valuesYes: [
- {
- axis: "p1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p0",
- value: 3
- }
- ]
- },
- {
- question:
- "It is merit that explains differences of wealth between two individuals.",
- answer: 0,
- valuesYes: [
- {
- axis: "p1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p0",
- value: 3
- }
- ]
- },
- {
- question:
- "The fact that some schools and universities are private is not a problem.",
- answer: 0,
- valuesYes: [
- {
- axis: "p1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p0",
- value: 3
- }
- ]
- },
- {
- question:
- "Offshoring and outsourcing are necessary evils to improve production.",
- answer: 0,
- valuesYes: [
- {
- axis: "p1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p0",
- value: 3
- }
- ]
- },
- {
- question: "It is acceptable that there are rich and poor people.",
- answer: 0,
- valuesYes: [
- {
- axis: "p1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p0",
- value: 3
- }
- ]
- },
- {
- question: "It is acceptable that some industry sectors are private.",
- answer: 0,
- valuesYes: [
- {
- axis: "p1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p0",
- value: 3
- }
- ]
- },
- {
- question: "Banks should remain private.",
- answer: 0,
- valuesYes: [
- {
- axis: "p1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "p0",
- value: 3
- }
- ]
- },
- /* MARKET ******************************************************* */
- {
- question: "Revenues and capital should be taxed to redistribute wealth.",
- answer: 0,
- valuesYes: [
- {
- axis: "m0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m1",
- value: 3
- }
- ]
- },
- {
- question: "The age of retirement should be lowered.",
- answer: 0,
- valuesYes: [
- {
- axis: "m0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m1",
- value: 3
- }
- ]
- },
- {
- question:
- "Dismissals of employees should be forbidden except if it is justified.",
- answer: 0,
- valuesYes: [
- {
- axis: "m0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m1",
- value: 3
- }
- ]
- },
- {
- question:
- "Minimal levels of salary should be ensured to make sure that a worker can live of her/his work.",
- answer: 0,
- valuesYes: [
- {
- axis: "m0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m1",
- value: 3
- }
- ]
- },
- {
- question: "It is necessary to avoid private monopoly.",
- answer: 0,
- valuesYes: [
- {
- axis: "m0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m1",
- value: 3
- }
- ]
- },
- {
- question:
- "Loans contracted in the public sphere (State, regions, collectivities...) should not necessarily be refunded.",
- answer: 0,
- valuesYes: [
- {
- axis: "m0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m1",
- value: 3
- }
- ]
- },
- {
- question:
- "Some sectors or type of employment should be financially supported.",
- answer: 0,
- valuesYes: [
- {
- axis: "m0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m1",
- value: 3
- }
- ]
- },
- {
- question: "Market economy is optimal when it is not regulated.",
- answer: 0,
- valuesYes: [
- {
- axis: "m1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m0",
- value: 3
- }
- ]
- },
- {
- question:
- "Nowadays employees are free to choose when signing a contract with their future employer",
- answer: 0,
- valuesYes: [
- {
- axis: "m1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m0",
- value: 3
- }
- ]
- },
- {
- question:
- "It is necessary to remove regulations in labor legislation to encourage firms to hire.",
- answer: 0,
- valuesYes: [
- {
- axis: "m1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m0",
- value: 3
- }
- ]
- },
- {
- question:
- "The maximum allowed hours in the legal work week should be increased.",
- answer: 0,
- valuesYes: [
- {
- axis: "m1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m0",
- value: 3
- }
- ]
- },
- {
- question:
- "Environmental norms should be influenced by mass consumption and not from an authority.",
- answer: 0,
- valuesYes: [
- {
- axis: "m1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m0",
- value: 3
- }
- ]
- },
- {
- question: "Social assistance deters people from working.",
- answer: 0,
- valuesYes: [
- {
- axis: "m1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m0",
- value: 3
- }
- ]
- },
- {
- question:
- "State-run companies should be managed like private ones and follow the logic of the market (competition, profitability...).",
- answer: 0,
- valuesYes: [
- {
- axis: "m1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "m0",
- value: 3
- }
- ]
- },
- /* SOCIETE ****************************************************** */
- {
- question: "Traditions should be questioned.",
- answer: 0,
- valuesYes: [
- {
- axis: "s0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s1",
- value: 3
- }
- ]
- },
- {
- question:
- "I do not have any problem if other official languages are added or replace the already existing official language in my country.",
- answer: 0,
- valuesYes: [
- {
- axis: "s0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s1",
- value: 3
- }
- ]
- },
- {
- question: "Marriage should be abolished.",
- answer: 0,
- valuesYes: [
- {
- axis: "s0",
- value: 3
- },
- {
- axis: "femi",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s1",
- value: 3
- }
- ]
- },
- {
- question: "Foreigners enrich our culture.",
- answer: 0,
- valuesYes: [
- {
- axis: "s0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s1",
- value: 3
- }
- ]
- },
- {
- question: "The influence of religion should decrease.",
- answer: 0,
- valuesYes: [
- {
- axis: "s0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s1",
- value: 3
- }
- ]
- },
- {
- question: "A language is defined by its users, not by scholars.",
- answer: 0,
- valuesYes: [
- {
- axis: "s0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s1",
- value: 3
- }
- ]
- },
- {
- question: "Euthanasia should be authorized.",
- answer: 0,
- valuesYes: [
- {
- axis: "s0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s1",
- value: 3
- }
- ]
- },
- {
- question:
- "Homosexuals should not be treated equally to heterosexuals with regards to marriage, parentage, adoption or procreation.",
- answer: 0,
- valuesYes: [
- {
- axis: "s1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s0",
- value: 3
- }
- ]
- },
- {
- question: "In some specific conditions, the death penalty is justified.",
- answer: 0,
- valuesYes: [
- {
- axis: "s1",
- value: 3
- },
- {
- axis: "j1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s0",
- value: 3
- },
- {
- axis: "j0",
- value: 3
- }
- ]
- },
- {
- question: "Technological progress must not change society too quickly.",
- answer: 0,
- valuesYes: [
- {
- axis: "s1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s0",
- value: 3
- }
- ]
- },
- {
- question:
- "School should mostly teach our values, traditions and fundamental knowledge.",
- answer: 0,
- valuesYes: [
- {
- axis: "s1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s0",
- value: 3
- }
- ]
- },
- {
- question: "Abortion should be limited to specific cases.",
- answer: 0,
- valuesYes: [
- {
- axis: "s1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s0",
- value: 3
- },
- {
- axis: "femi",
- value: 3
- }
- ]
- },
- {
- question: "The main goal of a couple is to make at least one child.",
- answer: 0,
- valuesYes: [
- {
- axis: "s1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s0",
- value: 3
- }
- ]
- },
- {
- question:
- "Abstinence should be preferred to contraception, to preserve the true nature of the sexual act.",
- answer: 0,
- valuesYes: [
- {
- axis: "s1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "s0",
- value: 3
- }
- ]
- },
- /* ECOLOGIE ***************************************************** */
- {
- question:
- "It is not acceptable that human actions should lead to the extinction of species.",
- answer: 0,
- valuesYes: [
- {
- axis: "e0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e1",
- value: 3
- }
- ]
- },
- {
- question: "GMOs should be forbidden outside research and medical purposes.",
- answer: 0,
- valuesYes: [
- {
- axis: "e0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e1",
- value: 3
- }
- ]
- },
- {
- question: "We must fight against global warming.",
- answer: 0,
- valuesYes: [
- {
- axis: "e0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e1",
- value: 3
- }
- ]
- },
- {
- question:
- "We should accept changes in our way of consuming food to limit the exploitation of nature.",
- answer: 0,
- valuesYes: [
- {
- axis: "e0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e1",
- value: 3
- }
- ]
- },
- {
- question:
- "It is important to encourage an agriculture that maintains a food biodiversity, even if the output is inferior.",
- answer: 0,
- valuesYes: [
- {
- axis: "e0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e1",
- value: 3
- }
- ]
- },
- {
- question:
- "Preserving non urban ecosystems is more important than creating jobs.",
- answer: 0,
- valuesYes: [
- {
- axis: "e0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e1",
- value: 3
- }
- ]
- },
- {
- question: "Reduction of waste should be done by reducing production.",
- answer: 0,
- valuesYes: [
- {
- axis: "e0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e1",
- value: 3
- }
- ]
- },
- {
- question:
- "Space colonization is a good solution for supplying the lack of raw material on Earth (iron, rare metals, fuel...) ",
- answer: 0,
- valuesYes: [
- {
- axis: "e1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e0",
- value: 3
- }
- ]
- },
- {
- question:
- "Transforming ecosystems durably to increase the quality of life of human beings is legitimate.",
- answer: 0,
- valuesYes: [
- {
- axis: "e1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e0",
- value: 3
- }
- ]
- },
- {
- question:
- "It is necessary to massively invest in research to improve productivity.",
- answer: 0,
- valuesYes: [
- {
- axis: "e1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e0",
- value: 3
- }
- ]
- },
- {
- question:
- "Transhumanism will be beneficial because it will allow us to improve our capacities.",
- answer: 0,
- valuesYes: [
- {
- axis: "e1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e0",
- value: 3
- }
- ]
- },
- {
- question:
- "Nuclear fission, when well maintained, is a good source of energy.",
- answer: 0,
- valuesYes: [
- {
- axis: "e1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e0",
- value: 3
- }
- ]
- },
- {
- question: "Exploitation of fossil fuels is necessary.",
- answer: 0,
- valuesYes: [
- {
- axis: "e1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e0",
- value: 3
- }
- ]
- },
- {
- question:
- "Maintaining strong economic growth should be an objective for the government.",
- answer: 0,
- valuesYes: [
- {
- axis: "e1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "e0",
- value: 3
- }
- ]
- },
- /* LIBERTAIRE *************************************************** */
- {
- question: "Prisons should no longer exist.",
- answer: 0,
- valuesYes: [
- {
- axis: "j0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j1",
- value: 3
- }
- ]
- },
- {
- question:
- "It is unfair to set a minimal penalty for an offense or a crime.",
- answer: 0,
- valuesYes: [
- {
- axis: "j0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j1",
- value: 3
- }
- ]
- },
- {
- question:
- "Individuals who get out of prison should be accompanied in their reinsertion.",
- answer: 0,
- valuesYes: [
- {
- axis: "j0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j1",
- value: 3
- }
- ]
- },
- {
- question:
- "Justice should always take into consideration the context and the past of the condemned and adapt their penalty accordingly.",
- answer: 0,
- valuesYes: [
- {
- axis: "j0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j1",
- value: 3
- }
- ]
- },
- {
- question: "Conditions of life in jail should be greatly improved.",
- answer: 0,
- valuesYes: [
- {
- axis: "j0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j1",
- value: 3
- }
- ]
- },
- {
- question:
- "The filing and storage of personal records should be delimited strictly and database cross-checking should be forbidden.",
- answer: 0,
- valuesYes: [
- {
- axis: "j0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j1",
- value: 3
- }
- ]
- },
- {
- question: "The right to be anonymous on Internet should be guaranteed.",
- answer: 0,
- valuesYes: [
- {
- axis: "j0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j1",
- value: 3
- }
- ]
- },
- {
- question:
- "The purpose of the judiciary system should be to punish those who went against the law.",
- answer: 0,
- valuesYes: [
- {
- axis: "j1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j0",
- value: 3
- }
- ]
- },
- {
- question: "The police should be armed.",
- answer: 0,
- valuesYes: [
- {
- axis: "j1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j0",
- value: 3
- }
- ]
- },
- {
- question:
- "The sacrifice of some civil liberties is a necessity in order to be protected from terrorist acts.",
- answer: 0,
- valuesYes: [
- {
- axis: "j1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j0",
- value: 3
- }
- ]
- },
- {
- question: "Order and authority should be respected in all circumstances.",
- answer: 0,
- valuesYes: [
- {
- axis: "j1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j0",
- value: 3
- }
- ]
- },
- {
- question: "Heavy penalties are efficient because they are dissuasive.",
- answer: 0,
- valuesYes: [
- {
- axis: "j1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j0",
- value: 3
- }
- ]
- },
- {
- question:
- "It is better to arrest someone potentially dangerous preventively rather than taking the risk of having them committing a crime.",
- answer: 0,
- valuesYes: [
- {
- axis: "j1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "j0",
- value: 3
- }
- ]
- },
- /* STRATEGIE **************************************************** */
- {
- question: "Mass strike is a good way to acquire new rights.",
- answer: 0,
- valuesYes: [
- {
- axis: "t0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t1",
- value: 3
- }
- ]
- },
- {
- question: "Armed struggle in a country is sometimes necessary.",
- answer: 0,
- valuesYes: [
- {
- axis: "t0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t1",
- value: 3
- }
- ]
- },
- {
- question: "Insurrection is necessary to deeply change society.",
- answer: 0,
- valuesYes: [
- {
- axis: "t0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t1",
- value: 3
- }
- ]
- },
- {
- question:
- "Activism in existing political organizations is not relevant to change society.",
- answer: 0,
- valuesYes: [
- {
- axis: "t0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t1",
- value: 3
- }
- ]
- },
- {
- question:
- "Elections organized by the state cannot question the powers in place.",
- answer: 0,
- valuesYes: [
- {
- axis: "t0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t1",
- value: 3
- }
- ]
- },
- {
- question: "Hacking has a legitimate place in political struggle.",
- answer: 0,
- valuesYes: [
- {
- axis: "t0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t1",
- value: 3
- }
- ]
- },
- {
- question: "Sabotage is legitimate under certain conditions.",
- answer: 0,
- valuesYes: [
- {
- axis: "t0",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t1",
- value: 3
- }
- ]
- },
- {
- question: "Activists must always act in strict accordance with the law.",
- answer: 0,
- valuesYes: [
- {
- axis: "t1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t0",
- value: 3
- }
- ]
- },
- {
- question: "Revolutions will always end up in a bad way.",
- answer: 0,
- valuesYes: [
- {
- axis: "t1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t0",
- value: 3
- }
- ]
- },
- {
- question:
- "Changing the system radically is counter-productive. We should rather transform it progressively.",
- answer: 0,
- valuesYes: [
- {
- axis: "t1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t0",
- value: 3
- }
- ]
- },
- {
- question: "Violence against individuals is never productive.",
- answer: 0,
- valuesYes: [
- {
- axis: "t1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t0",
- value: 3
- }
- ]
- },
- {
- question:
- "We should always distance ourselves from protesters who use violence.",
- answer: 0,
- valuesYes: [
- {
- axis: "t1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t0",
- value: 3
- }
- ]
- },
- {
- question:
- "We need to make compromises with the opposition to apply our ideas.",
- answer: 0,
- valuesYes: [
- {
- axis: "t1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t0",
- value: 3
- }
- ]
- },
- {
- question:
- "Changes in an individual's way of life can induce changes in society.",
- answer: 0,
- valuesYes: [
- {
- axis: "t1",
- value: 3
- }
- ],
- valuesNo: [
- {
- axis: "t0",
- value: 3
- }
- ]
- },
- /* BONUS ******************************************************** */
- {
- question: "My religion must be spread as widely as possible.",
- answer: 0,
- valuesYes: [
- {
- axis: "reli",
- value: 3
- }
- ],
- valuesNo: []
- },
- {
- question:
- "It is a small group that consciously and secretly controls the world.",
- answer: 0,
- valuesYes: [
- {
- axis: "comp",
- value: 3
- }
- ],
- valuesNo: []
- },
- {
- question: "A good policy is a pragmatic policy without ideology.",
- answer: 0,
- valuesYes: [
- {
- axis: "prag",
- value: 3
- }
- ],
- valuesNo: []
- },
- {
- question:
- "We need to establish a monarchy to federate the people and preserve our sovereignty.",
- answer: 0,
- valuesYes: [
- {
- axis: "mona",
- value: 3
- }
- ],
- valuesNo: []
- },
- {
- question: "Humans should neither eat nor exploit animals.",
- answer: 0,
- valuesYes: [
- {
- axis: "vega",
- value: 3
- }
- ],
- valuesNo: []
- },
- {
- question: "The State should be abolished.",
- answer: 0,
- valuesYes: [
- {
- axis: "anar",
- value: 3
- }
- ],
- valuesNo: []
- }
- ];
- var qn = 0; // Question number
- var prev_answer = null;
- function shuffle(array) {
- var i = 0,
- j = 0,
- temp = null;
- for (i = array.length - 1; i > 0; i -= 1) {
- j = Math.floor(Math.random() * (i + 1));
- temp = array[i];
- array[i] = array[j];
- array[j] = temp;
- }
- }
- shuffle(questions);
- init_question();
- function init_question() {
- document.getElementById("question-text").innerHTML = questions[qn].question;
- document.getElementById(
- "question-number"
- ).innerHTML = "Question %num% of %sum%"
- .replace("%num%", qn + 1)
- .replace("%sum%", questions.length);
- if (qn == 0) {
- document.getElementById("back_button").style.display = "none";
- document.getElementById("back_button_off").style.display = "block";
- } else {
- document.getElementById("back_button").style.display = "block";
- document.getElementById("back_button_off").style.display = "none";
- }
- }
- function next_question(mult) {
- questions[qn].answer = mult;
- qn++;
- if (qn < questions.length) {
- init_question();
- } else {
- results();
- }
- }
- function prev_question() {
- if (qn == 0) {
- return;
- }
- qn--;
- init_question();
- }
- function calc_score(score, max_value) {
- return ((100 * score) / max_value).toFixed(0);
- }
- function results() {
- var axes = {};
- for (var i = 0; i < questions.length; i++) {
- q = questions[i];
- for (var j = 0; j < q.valuesYes.length; j++) {
- a = q.valuesYes[j];
- if (!(a.axis in axes)) {
- axes[a.axis] = {
- val: 0,
- sum: 0
- };
- }
- if (q.answer > 0) {
- axes[a.axis].val += q.answer * a.value;
- }
- axes[a.axis].sum += Math.max(a.value, 0);
- }
- for (var j = 0; j < q.valuesNo.length; j++) {
- a = q.valuesNo[j];
- if (!(a.axis in axes)) {
- axes[a.axis] = {
- val: 0,
- sum: 0
- };
- }
- if (q.answer < 0) {
- axes[a.axis].val -= q.answer * a.value;
- }
- axes[a.axis].sum += Math.max(a.value, 0);
- }
- }
- url = "";
- for (var aK in axes) {
- if (axes[aK].val > 0) {
- if (url != "") url += "&";
- url += aK + "=" + calc_score(axes[aK].val, axes[aK].sum);
- }
- }
- url = window.btoa(url);
- url = "/results/?" + url;
- location.href = url;
- }
|