@jjlmoya/utils-finance 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +64 -0
- package/src/category/i18n/en.ts +159 -0
- package/src/category/i18n/es.ts +159 -0
- package/src/category/i18n/fr.ts +159 -0
- package/src/category/index.ts +24 -0
- package/src/category/seo.astro +15 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +11 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +32 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +146 -0
- package/src/pages/[locale].astro +251 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/locale_completeness.test.ts +39 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/seo_length.test.ts +23 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_validation.test.ts +17 -0
- package/src/tool/compoundInterest/bibliography.astro +14 -0
- package/src/tool/compoundInterest/component.astro +697 -0
- package/src/tool/compoundInterest/i18n/en.ts +212 -0
- package/src/tool/compoundInterest/i18n/es.ts +212 -0
- package/src/tool/compoundInterest/i18n/fr.ts +212 -0
- package/src/tool/compoundInterest/index.ts +34 -0
- package/src/tool/compoundInterest/logic.ts +40 -0
- package/src/tool/compoundInterest/seo.astro +14 -0
- package/src/tool/compoundInterest/ui.ts +19 -0
- package/src/tool/courtFeeCalculator/bibliography.astro +14 -0
- package/src/tool/courtFeeCalculator/component.astro +427 -0
- package/src/tool/courtFeeCalculator/i18n/en.ts +268 -0
- package/src/tool/courtFeeCalculator/i18n/es.ts +268 -0
- package/src/tool/courtFeeCalculator/i18n/fr.ts +268 -0
- package/src/tool/courtFeeCalculator/index.ts +33 -0
- package/src/tool/courtFeeCalculator/logic.ts +86 -0
- package/src/tool/courtFeeCalculator/seo.astro +14 -0
- package/src/tool/courtFeeCalculator/ui.ts +31 -0
- package/src/tool/debtSnowball/bibliography.astro +14 -0
- package/src/tool/debtSnowball/component.astro +1052 -0
- package/src/tool/debtSnowball/i18n/en.ts +288 -0
- package/src/tool/debtSnowball/i18n/es.ts +288 -0
- package/src/tool/debtSnowball/i18n/fr.ts +288 -0
- package/src/tool/debtSnowball/index.ts +37 -0
- package/src/tool/debtSnowball/logic.ts +156 -0
- package/src/tool/debtSnowball/seo.astro +14 -0
- package/src/tool/debtSnowball/ui.ts +49 -0
- package/src/tool/fireCalculator/bibliography.astro +14 -0
- package/src/tool/fireCalculator/component.astro +689 -0
- package/src/tool/fireCalculator/i18n/en.ts +261 -0
- package/src/tool/fireCalculator/i18n/es.ts +261 -0
- package/src/tool/fireCalculator/i18n/fr.ts +261 -0
- package/src/tool/fireCalculator/index.ts +33 -0
- package/src/tool/fireCalculator/logic.ts +108 -0
- package/src/tool/fireCalculator/seo.astro +14 -0
- package/src/tool/fireCalculator/ui.ts +33 -0
- package/src/tool/ibanBicSwiftConverter/bibliography.astro +14 -0
- package/src/tool/ibanBicSwiftConverter/component.astro +581 -0
- package/src/tool/ibanBicSwiftConverter/i18n/en.ts +167 -0
- package/src/tool/ibanBicSwiftConverter/i18n/es.ts +216 -0
- package/src/tool/ibanBicSwiftConverter/i18n/fr.ts +167 -0
- package/src/tool/ibanBicSwiftConverter/index.ts +33 -0
- package/src/tool/ibanBicSwiftConverter/logic.ts +101 -0
- package/src/tool/ibanBicSwiftConverter/seo.astro +14 -0
- package/src/tool/ibanBicSwiftConverter/ui.ts +17 -0
- package/src/tool/inflation/bibliography.astro +14 -0
- package/src/tool/inflation/component.astro +400 -0
- package/src/tool/inflation/i18n/en.ts +301 -0
- package/src/tool/inflation/i18n/es.ts +301 -0
- package/src/tool/inflation/i18n/fr.ts +301 -0
- package/src/tool/inflation/index.ts +34 -0
- package/src/tool/inflation/logic.ts +92 -0
- package/src/tool/inflation/seo.astro +14 -0
- package/src/tool/inflation/ui.ts +17 -0
- package/src/tool/lateInterest/bibliography.astro +14 -0
- package/src/tool/lateInterest/component.astro +655 -0
- package/src/tool/lateInterest/i18n/en.ts +255 -0
- package/src/tool/lateInterest/i18n/es.ts +224 -0
- package/src/tool/lateInterest/i18n/fr.ts +224 -0
- package/src/tool/lateInterest/index.ts +34 -0
- package/src/tool/lateInterest/logic.ts +89 -0
- package/src/tool/lateInterest/seo.astro +14 -0
- package/src/tool/lateInterest/ui.ts +33 -0
- package/src/tool/legalInterestRate/bibliography.astro +14 -0
- package/src/tool/legalInterestRate/component.astro +650 -0
- package/src/tool/legalInterestRate/i18n/en.ts +159 -0
- package/src/tool/legalInterestRate/i18n/es.ts +159 -0
- package/src/tool/legalInterestRate/i18n/fr.ts +159 -0
- package/src/tool/legalInterestRate/index.ts +33 -0
- package/src/tool/legalInterestRate/logic.ts +29 -0
- package/src/tool/legalInterestRate/seo.astro +14 -0
- package/src/tool/legalInterestRate/ui.ts +23 -0
- package/src/tool/lotteryOptimizer/bibliography.astro +14 -0
- package/src/tool/lotteryOptimizer/component.astro +863 -0
- package/src/tool/lotteryOptimizer/i18n/en.ts +188 -0
- package/src/tool/lotteryOptimizer/i18n/es.ts +281 -0
- package/src/tool/lotteryOptimizer/i18n/fr.ts +188 -0
- package/src/tool/lotteryOptimizer/index.ts +33 -0
- package/src/tool/lotteryOptimizer/logic.ts +133 -0
- package/src/tool/lotteryOptimizer/seo.astro +14 -0
- package/src/tool/lotteryOptimizer/ui.ts +33 -0
- package/src/tool/mortgage/bibliography.astro +14 -0
- package/src/tool/mortgage/component.astro +1030 -0
- package/src/tool/mortgage/i18n/en.ts +227 -0
- package/src/tool/mortgage/i18n/es.ts +227 -0
- package/src/tool/mortgage/i18n/fr.ts +227 -0
- package/src/tool/mortgage/index.ts +34 -0
- package/src/tool/mortgage/logic.ts +118 -0
- package/src/tool/mortgage/seo.astro +14 -0
- package/src/tool/mortgage/ui.ts +35 -0
- package/src/tool/percentageCalculator/bibliography.astro +14 -0
- package/src/tool/percentageCalculator/component.astro +640 -0
- package/src/tool/percentageCalculator/i18n/en.ts +233 -0
- package/src/tool/percentageCalculator/i18n/es.ts +233 -0
- package/src/tool/percentageCalculator/i18n/fr.ts +233 -0
- package/src/tool/percentageCalculator/index.ts +34 -0
- package/src/tool/percentageCalculator/logic.ts +48 -0
- package/src/tool/percentageCalculator/seo.astro +14 -0
- package/src/tool/percentageCalculator/ui.ts +30 -0
- package/src/tool/rentIncreaseCalculator/bibliography.astro +14 -0
- package/src/tool/rentIncreaseCalculator/component.astro +587 -0
- package/src/tool/rentIncreaseCalculator/i18n/en.ts +159 -0
- package/src/tool/rentIncreaseCalculator/i18n/es.ts +220 -0
- package/src/tool/rentIncreaseCalculator/i18n/fr.ts +159 -0
- package/src/tool/rentIncreaseCalculator/index.ts +33 -0
- package/src/tool/rentIncreaseCalculator/logic.ts +43 -0
- package/src/tool/rentIncreaseCalculator/seo.astro +14 -0
- package/src/tool/rentIncreaseCalculator/ui.ts +19 -0
- package/src/tools.ts +16 -0
- package/src/types.ts +74 -0
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { LotteryOptimizerUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'spain-lottery-optimizer';
|
|
6
|
+
const title = 'Spain Lottery Optimizer and Probability Calculator';
|
|
7
|
+
const description = 'Analyze your odds in Spain\'s Christmas Lottery, Euromillones, and Bonoloto. Calculate the optimal number of tickets and expected value of your bet.';
|
|
8
|
+
|
|
9
|
+
const faqData = [
|
|
10
|
+
{
|
|
11
|
+
question: 'What is mathematical expectancy in lotteries?',
|
|
12
|
+
answer: 'It is the average value you expect to win for each euro wagered. In almost all lotteries, mathematical expectancy is negative (you typically lose €0.50 per €1 wagered), meaning in the long run, the house always wins.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: 'Is it better to play many different numbers or multiple tickets of the same?',
|
|
16
|
+
answer: 'If you want to win "something," diversifying numbers increases your probability of winning smaller prizes. If you want the jackpot, playing a single number gives you the same odds, but a higher prize if it hits.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: 'Is Spain\'s Christmas Lottery really worth playing?',
|
|
20
|
+
answer: 'From a purely mathematical perspective, no. Only 70% of funds are returned. However, it has much higher odds of winning something (1 in 100,000) compared to Euromillones (1 in 140 million).',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Can I improve my odds with statistics?',
|
|
24
|
+
answer: 'No. Lottery draws are independent random processes. A number coming out yesterday has no influence on whether it comes out today. All numbers have exactly the same probability in each draw.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'What does "difficulty" mean in the comparison table?',
|
|
28
|
+
answer: 'It\'s a relative measure of how hard it is to win the jackpot. Accessible (under 200k): more realistic odds. Difficult (under 20M): remote odds. Extreme (over 20M): virtually impossible.',
|
|
29
|
+
},
|
|
30
|
+
];
|
|
31
|
+
|
|
32
|
+
const howToData = [
|
|
33
|
+
{
|
|
34
|
+
name: 'Select the lottery type',
|
|
35
|
+
text: 'Choose between Spain\'s Christmas Lottery, Primitiva, Euromillones or Bonoloto to analyze their specific rules.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'Define your investment',
|
|
39
|
+
text: 'Indicate how many tickets you plan to buy for this particular draw.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Analyze critical probabilities',
|
|
43
|
+
text: 'Check your actual chances of winning the jackpot versus smaller prizes or getting your money back.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Evaluate risk/reward',
|
|
47
|
+
text: 'Review the expected value to understand how much money you\'re statistically "giving away" per euro invested.',
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
const bibliographyData = [
|
|
52
|
+
{
|
|
53
|
+
name: 'Spain\'s Lottery Authority (SELAE) - Transparency Portal',
|
|
54
|
+
url: 'https://www.selae.es/es/web-corporativa/responsabilidad-social/portal-de-transparencia/portal-de-transparencia',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: 'Mathematics of Spain\'s Christmas Lottery - Royal Spanish Mathematical Society',
|
|
58
|
+
url: 'https://rsme.es/solucion-al-desafio-matematico-de-la-loteria-de-navidad-en-el-pais/',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: 'Kelly Criterion and Risk Management - Investopedia',
|
|
62
|
+
url: 'https://www.investopedia.com/terms/k/kellycriterion.asp',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const seoData = [
|
|
67
|
+
{
|
|
68
|
+
type: 'title',
|
|
69
|
+
text: 'Real Odds of Winning Spain\'s Lotteries',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
type: 'paragraph',
|
|
73
|
+
html: 'Spain\'s lotteries have <strong>negative mathematical expectations</strong>, meaning you always lose money over time. Spain\'s Christmas Lottery returns 70% of funds, while Euromillones returns only 50%.',
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
type: 'title',
|
|
77
|
+
text: 'Difficulty and Profitability Comparison',
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
type: 'paragraph',
|
|
81
|
+
html: '<strong>Christmas Lottery and Children\'s Lottery</strong>: 1 in 100,000 chance of winning (much higher than others). <strong>Euromillones</strong>: 1 in 139 million. <strong>Primitiva and Bonoloto</strong>: 1 in 13-139 million depending on the game.',
|
|
82
|
+
},
|
|
83
|
+
];
|
|
84
|
+
|
|
85
|
+
const gameTranslations = {
|
|
86
|
+
gordo: {
|
|
87
|
+
name: 'Christmas Lottery',
|
|
88
|
+
description: 'The largest prize draw in the world. High probability of winning something.',
|
|
89
|
+
},
|
|
90
|
+
nino: {
|
|
91
|
+
name: 'Children\'s Lottery',
|
|
92
|
+
description: 'Triple the chances of getting your money back compared to Christmas.',
|
|
93
|
+
},
|
|
94
|
+
euromillones: {
|
|
95
|
+
name: 'Euromillones',
|
|
96
|
+
description: 'Astronomical prizes, nearly impossible odds.',
|
|
97
|
+
},
|
|
98
|
+
primitiva: {
|
|
99
|
+
name: 'Primitiva',
|
|
100
|
+
description: 'Spain\'s oldest lottery. Difficult but cheaper.',
|
|
101
|
+
},
|
|
102
|
+
bonoloto: {
|
|
103
|
+
name: 'Bonoloto',
|
|
104
|
+
description: 'The most economical. Ideal for daily play on a tight budget.',
|
|
105
|
+
},
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'FAQPage',
|
|
111
|
+
mainEntity: faqData.map((item) => ({
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
name: item.question,
|
|
114
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
115
|
+
})),
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
const howToSchema: WithContext<HowTo> = {
|
|
119
|
+
'@context': 'https://schema.org',
|
|
120
|
+
'@type': 'HowTo',
|
|
121
|
+
name: title,
|
|
122
|
+
description,
|
|
123
|
+
step: howToData.map((step, i) => ({
|
|
124
|
+
'@type': 'HowToStep',
|
|
125
|
+
position: i + 1,
|
|
126
|
+
name: step.name,
|
|
127
|
+
text: step.text,
|
|
128
|
+
})),
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
132
|
+
'@context': 'https://schema.org',
|
|
133
|
+
'@type': 'SoftwareApplication',
|
|
134
|
+
name: title,
|
|
135
|
+
description,
|
|
136
|
+
applicationCategory: 'FinanceApplication',
|
|
137
|
+
offers: {
|
|
138
|
+
'@type': 'Offer',
|
|
139
|
+
price: '0',
|
|
140
|
+
priceCurrency: 'USD',
|
|
141
|
+
},
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
export const content: ToolLocaleContent<LotteryOptimizerUI> = {
|
|
145
|
+
slug,
|
|
146
|
+
title,
|
|
147
|
+
description,
|
|
148
|
+
faqTitle: 'Frequently Asked Questions',
|
|
149
|
+
bibliographyTitle: 'Sources and References',
|
|
150
|
+
ui: {
|
|
151
|
+
gameTranslations,
|
|
152
|
+
labelTitle: 'Lottery Optimizer',
|
|
153
|
+
labelDescription: 'Compare draws, calculate your expected value, and discover the optimal number of tickets to play smart.',
|
|
154
|
+
labelSelectGame: 'Select a lottery',
|
|
155
|
+
labelConfigurePlay: 'Configure Your Play',
|
|
156
|
+
labelAdjustQuantity: 'Adjust the number of participations to see your real probability.',
|
|
157
|
+
labelTotalInvestment: 'Total Investment',
|
|
158
|
+
labelTickets: 'Number of Tickets / Bets',
|
|
159
|
+
labelUnits: 'units',
|
|
160
|
+
labelExposureAnalysis: 'Exposure Analysis',
|
|
161
|
+
labelSelectLottery: 'Select a lottery to see the risk analysis.',
|
|
162
|
+
labelOptimalCutoff: 'Suggested Cutoff Point',
|
|
163
|
+
labelProbabilitySuccess: 'Success Probability',
|
|
164
|
+
labelExpectedValue: 'Expected Value (EV)',
|
|
165
|
+
labelReturnTheoretical: 'Theoretical return per play made.',
|
|
166
|
+
labelSocialReturnIndex: 'Social Profitability Index',
|
|
167
|
+
labelLow: 'Low',
|
|
168
|
+
labelMedium: 'Medium',
|
|
169
|
+
labelHigh: 'High',
|
|
170
|
+
labelComparison: 'Prize Comparison',
|
|
171
|
+
labelLottery: 'Lottery',
|
|
172
|
+
labelCost: 'Cost',
|
|
173
|
+
labelTypicalPrize: 'Typical Prize',
|
|
174
|
+
labelDifficulty: 'Difficulty',
|
|
175
|
+
labelAccessible: 'Accessible',
|
|
176
|
+
labelDifficult: 'Difficult',
|
|
177
|
+
labelExtreme: 'Extreme',
|
|
178
|
+
labelNote: 'Note: Christmas and Children\'s Lottery prizes are per ticket (20€). Euromillones, Primitiva, and Bonoloto are typical jackpots for first prize.',
|
|
179
|
+
currencySymbol: '$',
|
|
180
|
+
currencyCode: 'USD',
|
|
181
|
+
currencyLocale: 'en-US',
|
|
182
|
+
},
|
|
183
|
+
faq: faqData,
|
|
184
|
+
howTo: howToData,
|
|
185
|
+
bibliography: bibliographyData,
|
|
186
|
+
seo: seoData,
|
|
187
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
188
|
+
};
|
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { LotteryOptimizerUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'optimizador-loterias';
|
|
6
|
+
const title = 'Optimizador de Loterías y Calculadora de Probabilidades';
|
|
7
|
+
const description = 'Analiza tus probabilidades en la Lotería de Navidad, Euromillones y Bonoloto. Calcula el número óptimo de décimos y el valor esperado de tu apuesta.';
|
|
8
|
+
|
|
9
|
+
const faqData = [
|
|
10
|
+
{
|
|
11
|
+
question: '¿Qué es la esperanza matemática en la lotería?',
|
|
12
|
+
answer: 'Es el valor medio que esperas ganar por cada euro apostado. En casi todas las loterías, la esperanza matemática es negativa (normalmente pierdes 0,50€ por cada 1€ jugado), lo que significa que a largo plazo, la casa siempre gana.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: '¿Es mejor jugar muchos números o muchos décimos del mismo?',
|
|
16
|
+
answer: 'Si buscas ganar "algo", diversificar números aumenta tu probabilidad de obtener premios menores. Si buscas el premio gordo, jugar un solo número te da la misma probabilidad, pero mayor premio si toca.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: '¿Realmente renta jugar a la Lotería de Navidad?',
|
|
20
|
+
answer: 'Desde un punto de vista puramente matemático, no. Se devuelve solo el 70% de lo recaudado. Sin embargo, tiene una probabilidad de premio mayor (1 entre 100.000) mucho más alta que el Euromillones (1 entre 140 millones).',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: '¿Puedo mejorar mis posibilidades con estadísticas?',
|
|
24
|
+
answer: 'No. Los sorteos de lotería son procesos aleatorios independientes. Que un número haya salido ayer no influye en absoluto en que salga hoy. Todos los números tienen exactamente la misma probabilidad en cada sorteo.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: '¿Qué significa la "dificultad" en la tabla comparativa?',
|
|
28
|
+
answer: 'Es una medida relativa de lo difícil que es ganar el primer premio. Accesible (menos de 200k): probabilidades más realistas. Difícil (menos de 20M): probabilidades remotas. Extrema (más de 20M): prácticamente imposible.',
|
|
29
|
+
},
|
|
30
|
+
];
|
|
31
|
+
|
|
32
|
+
const howToData = [
|
|
33
|
+
{
|
|
34
|
+
name: 'Seleccionar el tipo de sorteo',
|
|
35
|
+
text: 'Elige entre la Lotería de Navidad, Primitiva, Euromillones o Bonoloto para analizar sus reglas específicas.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'Definir tu inversión',
|
|
39
|
+
text: 'Indica cuántos décimos o apuestas planeas comprar para este sorteo en particular.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Analizar probabilidades críticas',
|
|
43
|
+
text: 'Observa las posibilidades reales de ganar el primer premio frente a premios menores o el reintegro.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Evaluar el riesgo/beneficio',
|
|
47
|
+
text: 'Revisa la esperanza matemática para entender cuánto dinero estás "regalando" estadísticamente por cada euro invertido.',
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
const bibliographyData = [
|
|
52
|
+
{
|
|
53
|
+
name: 'Loterías y Apuestas del Estado (SELAE) - Portal de Transparencia',
|
|
54
|
+
url: 'https://www.selae.es/es/web-corporativa/responsabilidad-social/portal-de-transparencia/portal-de-transparencia',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: 'Matemática de la Lotería de Navidad - Real Sociedad Matemática Española',
|
|
58
|
+
url: 'https://rsme.es/solucion-al-desafio-matematico-de-la-loteria-de-navidad-en-el-pais/',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: 'El Criterio de Kelly y la Gestión de Riesgos - Investopedia',
|
|
62
|
+
url: 'https://www.investopedia.com/terms/k/kellycriterion.asp',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const seoData = [
|
|
67
|
+
{
|
|
68
|
+
type: 'title',
|
|
69
|
+
text: 'La Matemáticas de la Esperanza',
|
|
70
|
+
level: 2,
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
type: 'paragraph',
|
|
74
|
+
html: 'Jugar a la lotería es, para muchos, la compra de una ilusión por unos pocos euros. Sin embargo, detrás de los bombos y las bolas de cristal reside una de las ramas más fascinantes de las matemáticas: la estadística de probabilidades extremas.',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
type: 'card',
|
|
78
|
+
icon: 'mdi:finance',
|
|
79
|
+
title: 'Concepto Clave: Valor Esperado',
|
|
80
|
+
html: '<p>El Valor Esperado (EV) es lo que ganarías en promedio si jugaras infinitas veces. En casi todas las loterías, este valor es negativo.</p>',
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
type: 'title',
|
|
84
|
+
text: 'Probabilidad vs Realidad',
|
|
85
|
+
level: 3,
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
type: 'paragraph',
|
|
89
|
+
html: 'Para entender la magnitud de las probabilidades en juegos como el Euromillón (1 entre 139 millones), imagina que llenas un estadio de fútbol con granos de arena. Solo uno de esos granos es el premio. Tus posibilidades de encontrarlo son similares a las de ser alcanzado por un rayo mientras te muerde un tiburón en una piscina.',
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
type: 'paragraph',
|
|
93
|
+
html: 'Sin embargo, no todas las loterías son iguales. La Lotería de Navidad y la del Niño en España tienen una estructura de premios que devuelve cerca del 70% de lo recaudado, comparado con el 50% de los sorteos diarios. Esto las convierte en sorteos "más sociales" y estadísticamente "menos dañinos" para el bolsillo a largo plazo.',
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
type: 'title',
|
|
97
|
+
text: 'Diferencias Críticas',
|
|
98
|
+
level: 3,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
type: 'list',
|
|
102
|
+
items: [
|
|
103
|
+
'<strong>Sorteos de Bombo Único:</strong> Como la Navidad. Todos los números están en un bombo. Sabes exactamente tu probabilidad: 1/100,000.',
|
|
104
|
+
'<strong>Sorteos Combinatorios:</strong> Como la Primitiva o Bonoloto. Debes acertar N números de un conjunto. La probabilidad cae exponencialmente.',
|
|
105
|
+
],
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
type: 'title',
|
|
109
|
+
text: 'La Estrategia del Jugador Inteligente',
|
|
110
|
+
level: 3,
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'paragraph',
|
|
114
|
+
html: 'Aunque la suerte no se puede forzar, la gestión del presupuesto sí se puede optimizar.',
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
type: 'card',
|
|
118
|
+
icon: 'mdi:account-group-outline',
|
|
119
|
+
title: 'Peñas y Grupos',
|
|
120
|
+
html: '<p>Jugar en grupo aumenta las probabilidades al comprar más números, aunque el premio se diluya. Matemáticamente, es la forma más eficiente de jugar.</p>',
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'card',
|
|
124
|
+
icon: 'mdi:calendar-check',
|
|
125
|
+
title: 'Recurrencia vs Impulso',
|
|
126
|
+
html: '<p>Es preferible jugar una apuesta pequeña semanal que gastar 200€ en un bote gigante una vez al año. Mantienes viva la probabilidad sin comprometer tus finanzas.</p>',
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'card',
|
|
130
|
+
icon: 'mdi:shield-check-outline',
|
|
131
|
+
title: 'Límite de Pérdida',
|
|
132
|
+
html: '<p>Asume que el dinero de la lotería es un gasto de ocio, no una inversión. Nunca juegues lo que necesitas para cubrir necesidades básicas.</p>',
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
type: 'title',
|
|
136
|
+
text: '¿Qué es la "Rentabilidad Social"?',
|
|
137
|
+
level: 3,
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
type: 'paragraph',
|
|
141
|
+
html: 'En España, las loterías estatales (SELAE) no son solo un juego. Una parte significativa del margen de beneficio va destinado a proyectos sociales y a las arcas públicas. Por eso, en nuestro optimizador incluimos el índice de <strong>Rentabilidad Social</strong>.',
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
type: 'paragraph',
|
|
145
|
+
html: 'Este índice mide qué porcentaje del dinero vendido vuelve a la sociedad, ya sea en forma de premios o en inversión pública. Loterías con un alto índice de premios (como la Navidad) tienen una rentabilidad social más alta porque el capital circula más entre los ciudadanos en lugar de quedar retenido en el acumulado del jackpot.',
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'card',
|
|
149
|
+
icon: 'mdi:format-quote-open',
|
|
150
|
+
title: 'Reflexión',
|
|
151
|
+
html: '<p><em>"La lotería es un impuesto para los que no saben matemáticas, pero un juego para los que entienden el riesgo."</em></p>',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 'title',
|
|
155
|
+
text: 'El Factor Humano',
|
|
156
|
+
level: 3,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
type: 'paragraph',
|
|
160
|
+
html: 'Ninguna calculadora puede predecir el impacto emocional de un premio. Nuestra recomendación de "Décimos Óptimos" se basa en la teoría del <strong>Criterio de Kelly</strong> adaptada: buscar la máxima probabilidad de retorno con el mínimo riesgo de ruina. Para loterías de tipo décimo, sugerimos diversificar terminaciones para maximizar la probabilidad de reintegro y "salvar" parte de la inversión inicial.',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
type: 'comparative',
|
|
164
|
+
columns: 2,
|
|
165
|
+
items: [
|
|
166
|
+
{
|
|
167
|
+
title: 'Mito común',
|
|
168
|
+
description: '"Este número ha salido menos, por tanto le toca salir ahora". Esto es la Falacia del Apostador. Cada sorteo es un evento independiente.',
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
title: 'Verdad científica',
|
|
172
|
+
description: 'Todos los números tienen exactamente la misma probabilidad en cada sorteo, independientemente de su historial previo.',
|
|
173
|
+
},
|
|
174
|
+
],
|
|
175
|
+
},
|
|
176
|
+
];
|
|
177
|
+
|
|
178
|
+
const gameTranslations = {
|
|
179
|
+
gordo: {
|
|
180
|
+
name: 'Lotería de Navidad',
|
|
181
|
+
description: 'El mayor reparto de premios del mundo. Probabilidad alta de ganar algo.',
|
|
182
|
+
},
|
|
183
|
+
nino: {
|
|
184
|
+
name: 'Lotería del Niño',
|
|
185
|
+
description: 'Triplica las posibilidades de reintegro respecto a Navidad.',
|
|
186
|
+
},
|
|
187
|
+
euromillones: {
|
|
188
|
+
name: 'Euromillones',
|
|
189
|
+
description: 'Premios astronómicos, probabilidades casi imposibles.',
|
|
190
|
+
},
|
|
191
|
+
primitiva: {
|
|
192
|
+
name: 'La Primitiva',
|
|
193
|
+
description: 'La lotería más antigua de España. Difícil pero más barata.',
|
|
194
|
+
},
|
|
195
|
+
bonoloto: {
|
|
196
|
+
name: 'Bonoloto',
|
|
197
|
+
description: 'La más económica. Ideal para jugar a diario con poco presupuesto.',
|
|
198
|
+
},
|
|
199
|
+
};
|
|
200
|
+
|
|
201
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
202
|
+
'@context': 'https://schema.org',
|
|
203
|
+
'@type': 'FAQPage',
|
|
204
|
+
mainEntity: faqData.map((item) => ({
|
|
205
|
+
'@type': 'Question',
|
|
206
|
+
name: item.question,
|
|
207
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
208
|
+
})),
|
|
209
|
+
};
|
|
210
|
+
|
|
211
|
+
const howToSchema: WithContext<HowTo> = {
|
|
212
|
+
'@context': 'https://schema.org',
|
|
213
|
+
'@type': 'HowTo',
|
|
214
|
+
name: title,
|
|
215
|
+
description,
|
|
216
|
+
step: howToData.map((step, i) => ({
|
|
217
|
+
'@type': 'HowToStep',
|
|
218
|
+
position: i + 1,
|
|
219
|
+
name: step.name,
|
|
220
|
+
text: step.text,
|
|
221
|
+
})),
|
|
222
|
+
};
|
|
223
|
+
|
|
224
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
225
|
+
'@context': 'https://schema.org',
|
|
226
|
+
'@type': 'SoftwareApplication',
|
|
227
|
+
name: title,
|
|
228
|
+
description,
|
|
229
|
+
applicationCategory: 'FinanceApplication',
|
|
230
|
+
offers: {
|
|
231
|
+
'@type': 'Offer',
|
|
232
|
+
price: '0',
|
|
233
|
+
priceCurrency: 'EUR',
|
|
234
|
+
},
|
|
235
|
+
};
|
|
236
|
+
|
|
237
|
+
export const content: ToolLocaleContent<LotteryOptimizerUI> = {
|
|
238
|
+
slug,
|
|
239
|
+
title,
|
|
240
|
+
description,
|
|
241
|
+
faqTitle: 'Preguntas Frecuentes',
|
|
242
|
+
bibliographyTitle: 'Fuentes y Referencias',
|
|
243
|
+
ui: {
|
|
244
|
+
gameTranslations,
|
|
245
|
+
labelTitle: 'Optimizador de Loterías',
|
|
246
|
+
labelDescription: 'Compara sorteos, calcula tu esperanza matemática y descubre el número óptimo de décimos para jugar con cabeza.',
|
|
247
|
+
labelSelectGame: 'Selecciona una lotería',
|
|
248
|
+
labelConfigurePlay: 'Configura tu Jugada',
|
|
249
|
+
labelAdjustQuantity: 'Ajusta la cantidad de participaciones para ver tu probabilidad real.',
|
|
250
|
+
labelTotalInvestment: 'Inversión Total',
|
|
251
|
+
labelTickets: 'Cantidad de Décimos / Apuestas',
|
|
252
|
+
labelUnits: 'unidades',
|
|
253
|
+
labelExposureAnalysis: 'Análisis de Exposición',
|
|
254
|
+
labelSelectLottery: 'Selecciona una lotería para ver el análisis de riesgo.',
|
|
255
|
+
labelOptimalCutoff: 'Punto de Corte Sugerido',
|
|
256
|
+
labelProbabilitySuccess: 'Probabilidad de Éxito',
|
|
257
|
+
labelExpectedValue: 'Valor Esperado (EV)',
|
|
258
|
+
labelReturnTheoretical: 'Retorno teórico por cada jugada realizada.',
|
|
259
|
+
labelSocialReturnIndex: 'Índice de Rentabilidad Social',
|
|
260
|
+
labelLow: 'Baja',
|
|
261
|
+
labelMedium: 'Media',
|
|
262
|
+
labelHigh: 'Alta',
|
|
263
|
+
labelComparison: 'Comparativa de Premios',
|
|
264
|
+
labelLottery: 'Lotería',
|
|
265
|
+
labelCost: 'Coste',
|
|
266
|
+
labelTypicalPrize: 'Premio Típico',
|
|
267
|
+
labelDifficulty: 'Dificultad',
|
|
268
|
+
labelAccessible: 'Accesible',
|
|
269
|
+
labelDifficult: 'Difícil',
|
|
270
|
+
labelExtreme: 'Extrema',
|
|
271
|
+
labelNote: 'Nota: Los premios de Navidad y El Niño son por décimo (20€). Los de Euromillones, Primitiva y Bonoloto son botes típicos para el primer premio.',
|
|
272
|
+
currencySymbol: '€',
|
|
273
|
+
currencyCode: 'EUR',
|
|
274
|
+
currencyLocale: 'es-ES',
|
|
275
|
+
},
|
|
276
|
+
faq: faqData,
|
|
277
|
+
howTo: howToData,
|
|
278
|
+
bibliography: bibliographyData,
|
|
279
|
+
seo: seoData,
|
|
280
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
281
|
+
};
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { LotteryOptimizerUI } from '../ui';
|
|
4
|
+
|
|
5
|
+
const slug = 'optimiseur-loterie-espagne';
|
|
6
|
+
const title = 'Optimiseur de Loteries Espagne et Calculateur de Probabilités';
|
|
7
|
+
const description = 'Analysez vos chances à la Loterie de Noël espagnole, Euromillones et Bonoloto. Calculez le nombre optimal de billets et la valeur attendue de votre pari.';
|
|
8
|
+
|
|
9
|
+
const faqData = [
|
|
10
|
+
{
|
|
11
|
+
question: 'Qu\'est-ce que l\'espérance mathématique à la loterie?',
|
|
12
|
+
answer: 'C\'est la valeur moyenne que vous vous attendez à gagner pour chaque euro misé. Dans presque toutes les loteries, l\'espérance mathématique est négative (vous perdez généralement 0,50€ par 1€ misé), ce qui signifie qu\'à long terme, la maison gagne toujours.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: 'Est-il mieux de jouer de nombreux numéros différents ou plusieurs billets du même?',
|
|
16
|
+
answer: 'Si vous voulez gagner "quelque chose", diversifier les numéros augmente votre probabilité de gagner des prix mineurs. Si vous visez le gros lot, jouer un seul numéro vous donne les mêmes chances, mais un prix plus élevé s\'il sort.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: 'La Loterie de Noël espagnole vaut-elle vraiment le coup?',
|
|
20
|
+
answer: 'D\'un point de vue purement mathématique, non. Seuls 70% des fonds sont retournés. Cependant, elle a des chances beaucoup plus élevées de gagner quelque chose (1 sur 100 000) comparé à Euromillones (1 sur 140 millions).',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Puis-je améliorer mes chances avec les statistiques?',
|
|
24
|
+
answer: 'Non. Les tirages de loterie sont des processus aléatoires indépendants. Un numéro sorti hier n\'a aucune influence sur sa sortie aujourd\'hui. Tous les numéros ont exactement la même probabilité à chaque tirage.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Que signifie la "difficulté" dans le tableau comparatif?',
|
|
28
|
+
answer: 'C\'est une mesure relative de la difficulté à remporter le gros lot. Accessible (moins de 200k): probabilités plus réalistes. Difficile (moins de 20M): probabilités éloignées. Extrême (plus de 20M): pratiquement impossible.',
|
|
29
|
+
},
|
|
30
|
+
];
|
|
31
|
+
|
|
32
|
+
const howToData = [
|
|
33
|
+
{
|
|
34
|
+
name: 'Sélectionnez le type de loterie',
|
|
35
|
+
text: 'Choisissez entre la Loterie de Noël espagnole, Primitiva, Euromillones ou Bonoloto pour analyser leurs règles spécifiques.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'Définissez votre investissement',
|
|
39
|
+
text: 'Indiquez combien de billets vous envisagez d\'acheter pour ce tirage particulier.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Analysez les probabilités critiques',
|
|
43
|
+
text: 'Vérifiez vos chances réelles de gagner le gros lot par rapport aux prix mineurs ou récupérer votre argent.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Évaluez le risque/récompense',
|
|
47
|
+
text: 'Consultez la valeur attendue pour comprendre combien d\'argent vous "donnez" statistiquement par euro investi.',
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
const bibliographyData = [
|
|
52
|
+
{
|
|
53
|
+
name: 'Loteries et Jeux de l\'État espagnol (SELAE) - Portail de Transparence',
|
|
54
|
+
url: 'https://www.selae.es/es/web-corporativa/responsabilidad-social/portal-de-transparencia/portal-de-transparencia',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: 'Mathématiques de la Loterie de Noël - Société Royale Mathématique Espagnole',
|
|
58
|
+
url: 'https://rsme.es/solucion-al-desafio-matematico-de-la-loteria-de-navidad-en-el-pais/',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: 'Critère de Kelly et Gestion des Risques - Investopedia',
|
|
62
|
+
url: 'https://www.investopedia.com/terms/k/kellycriterion.asp',
|
|
63
|
+
},
|
|
64
|
+
];
|
|
65
|
+
|
|
66
|
+
const seoData = [
|
|
67
|
+
{
|
|
68
|
+
type: 'title',
|
|
69
|
+
text: 'Vraies Probabilités de Gagner aux Loteries Espagnoles',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
type: 'paragraph',
|
|
73
|
+
html: 'Les loteries espagnoles ont des <strong>espérances mathématiques négatives</strong>, ce qui signifie que vous perdez toujours de l\'argent au fil du temps. La Loterie de Noël retourne 70% des fonds, tandis qu\'Euromillones ne retourne que 50%.',
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
type: 'title',
|
|
77
|
+
text: 'Comparaison de Difficulté et de Rentabilité',
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
type: 'paragraph',
|
|
81
|
+
html: '<strong>Loterie de Noël et Loterie des Enfants</strong>: 1 sur 100 000 de chances de gagner (bien plus élevé que les autres). <strong>Euromillones</strong>: 1 sur 139 millions. <strong>Primitiva et Bonoloto</strong>: 1 sur 13-139 millions selon le jeu.',
|
|
82
|
+
},
|
|
83
|
+
];
|
|
84
|
+
|
|
85
|
+
const gameTranslations = {
|
|
86
|
+
gordo: {
|
|
87
|
+
name: 'Loterie de Noël',
|
|
88
|
+
description: 'Le plus grand tirage de prix du monde. Probabilité élevée de gagner quelque chose.',
|
|
89
|
+
},
|
|
90
|
+
nino: {
|
|
91
|
+
name: 'Loterie des Enfants',
|
|
92
|
+
description: 'Triple les chances de récupérer votre argent par rapport à Noël.',
|
|
93
|
+
},
|
|
94
|
+
euromillones: {
|
|
95
|
+
name: 'Euromillones',
|
|
96
|
+
description: 'Des prix astronomiques, des probabilités quasi impossibles.',
|
|
97
|
+
},
|
|
98
|
+
primitiva: {
|
|
99
|
+
name: 'Primitiva',
|
|
100
|
+
description: 'La plus ancienne loterie d\'Espagne. Difficile mais moins chère.',
|
|
101
|
+
},
|
|
102
|
+
bonoloto: {
|
|
103
|
+
name: 'Bonoloto',
|
|
104
|
+
description: 'La plus économique. Idéale pour jouer au quotidien avec un petit budget.',
|
|
105
|
+
},
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
109
|
+
'@context': 'https://schema.org',
|
|
110
|
+
'@type': 'FAQPage',
|
|
111
|
+
mainEntity: faqData.map((item) => ({
|
|
112
|
+
'@type': 'Question',
|
|
113
|
+
name: item.question,
|
|
114
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
115
|
+
})),
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
const howToSchema: WithContext<HowTo> = {
|
|
119
|
+
'@context': 'https://schema.org',
|
|
120
|
+
'@type': 'HowTo',
|
|
121
|
+
name: title,
|
|
122
|
+
description,
|
|
123
|
+
step: howToData.map((step, i) => ({
|
|
124
|
+
'@type': 'HowToStep',
|
|
125
|
+
position: i + 1,
|
|
126
|
+
name: step.name,
|
|
127
|
+
text: step.text,
|
|
128
|
+
})),
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
132
|
+
'@context': 'https://schema.org',
|
|
133
|
+
'@type': 'SoftwareApplication',
|
|
134
|
+
name: title,
|
|
135
|
+
description,
|
|
136
|
+
applicationCategory: 'FinanceApplication',
|
|
137
|
+
offers: {
|
|
138
|
+
'@type': 'Offer',
|
|
139
|
+
price: '0',
|
|
140
|
+
priceCurrency: 'EUR',
|
|
141
|
+
},
|
|
142
|
+
};
|
|
143
|
+
|
|
144
|
+
export const content: ToolLocaleContent<LotteryOptimizerUI> = {
|
|
145
|
+
slug,
|
|
146
|
+
title,
|
|
147
|
+
description,
|
|
148
|
+
faqTitle: 'Questions Fréquemment Posées',
|
|
149
|
+
bibliographyTitle: 'Sources et Références',
|
|
150
|
+
ui: {
|
|
151
|
+
gameTranslations,
|
|
152
|
+
labelTitle: 'Optimiseur de Loteries',
|
|
153
|
+
labelDescription: 'Comparez les tirages, calculez votre valeur attendue et découvrez le nombre optimal de billets pour jouer intelligemment.',
|
|
154
|
+
labelSelectGame: 'Sélectionnez une loterie',
|
|
155
|
+
labelConfigurePlay: 'Configurez Votre Jeu',
|
|
156
|
+
labelAdjustQuantity: 'Ajustez le nombre de participations pour voir votre probabilité réelle.',
|
|
157
|
+
labelTotalInvestment: 'Investissement Total',
|
|
158
|
+
labelTickets: 'Nombre de Billets / Mises',
|
|
159
|
+
labelUnits: 'unités',
|
|
160
|
+
labelExposureAnalysis: 'Analyse d\'Exposition',
|
|
161
|
+
labelSelectLottery: 'Sélectionnez une loterie pour voir l\'analyse des risques.',
|
|
162
|
+
labelOptimalCutoff: 'Point de Coupure Suggéré',
|
|
163
|
+
labelProbabilitySuccess: 'Probabilité de Succès',
|
|
164
|
+
labelExpectedValue: 'Valeur Attendue (VE)',
|
|
165
|
+
labelReturnTheoretical: 'Retour théorique par jeu effectué.',
|
|
166
|
+
labelSocialReturnIndex: 'Indice de Rentabilité Sociale',
|
|
167
|
+
labelLow: 'Basse',
|
|
168
|
+
labelMedium: 'Moyenne',
|
|
169
|
+
labelHigh: 'Haute',
|
|
170
|
+
labelComparison: 'Comparaison des Prix',
|
|
171
|
+
labelLottery: 'Loterie',
|
|
172
|
+
labelCost: 'Coût',
|
|
173
|
+
labelTypicalPrize: 'Prix Typique',
|
|
174
|
+
labelDifficulty: 'Difficulté',
|
|
175
|
+
labelAccessible: 'Accessible',
|
|
176
|
+
labelDifficult: 'Difficile',
|
|
177
|
+
labelExtreme: 'Extrême',
|
|
178
|
+
labelNote: 'Remarque: Les prix de la Loterie de Noël et des Enfants sont par billet (20€). Euromillones, Primitiva et Bonoloto sont des gros lots typiques pour le premier prix.',
|
|
179
|
+
currencySymbol: '€',
|
|
180
|
+
currencyCode: 'EUR',
|
|
181
|
+
currencyLocale: 'fr-FR',
|
|
182
|
+
},
|
|
183
|
+
faq: faqData,
|
|
184
|
+
howTo: howToData,
|
|
185
|
+
bibliography: bibliographyData,
|
|
186
|
+
seo: seoData,
|
|
187
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
188
|
+
};
|