puffy310 commited on
Commit
7e05872
·
verified ·
1 Parent(s): d15d2af

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +124 -21
index.html CHANGED
@@ -158,6 +158,34 @@
158
  .special-condition h3 {
159
  color: #8b8000;
160
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
  </style>
162
  </head>
163
  <body>
@@ -249,6 +277,12 @@
249
  <h3>May 22, 2025 Update</h3>
250
  <p>The Egg Bank of Pollo de Autismo Union has assumed control of all monetary operations, including interest rate policy and open market operations. We are pleased to announce that all investor funds have been recovered and will be honored according to the new financial framework.</p>
251
 
 
 
 
 
 
 
252
  <div class="special-condition">
253
  <h3>Special Condition for Mr. Roy</h3>
254
  <p>We are pleased to inform Mr. Roy that his shares will be returned under one special condition:</p>
@@ -257,10 +291,48 @@
257
  <p>Note: Photoshopped chickens will not be accepted. The chicken must be real and sufficiently impressive to satisfy our poultry evaluation committee.</p>
258
  </div>
259
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  <h3>October 31, 2024 Notice</h3>
261
  <p>In light of recent developments, we regret to inform our investors that Mr. Roy's shares have been temporarily confiscated due to the default of Polloland Bank. For further details, please refer to our <a href="https://www.youtube.com/watch?v=zQC-Q120SeM" target="_blank">Statement to Investors</a>.</p>
262
 
263
- <p>Our bank is located at: 123 Chicken Coop Lane, Henville, Eggland.</p>
264
  <p>Investor relations contact: <strong>goldeneggbank@birdl.ai.in</strong></p>
265
  <p>Don't be a chicken when it comes to your investments. Stay informed and keep your eggs in the right basket!</p>
266
  </div>
@@ -304,12 +376,6 @@
304
  </form>
305
  <p>Don't let your finances get scrambled. Use our converter to keep your currency in check!</p>
306
  </div>
307
-
308
- <div class="stock-graph">
309
- <h3>Polloland (001688.SZ and OTCMKTS:CLUCK) - October 2024 to May 2025</h3>
310
- <canvas id="stockChart" width="400" height="200"></canvas>
311
- <p>Our stock experienced significant volatility following the October 31, 2024 default but has stabilized under the new Egg Bank administration. While we're not egg-specting miracles overnight, the future looks brighter!</p>
312
- </div>
313
  </div>
314
  </div>
315
 
@@ -329,8 +395,8 @@
329
  // Show the selected subpage
330
  document.getElementById(pageId).classList.add('active');
331
 
332
- // Redraw charts when financial tools page is shown
333
- if (pageId === 'financial-tools') {
334
  drawStockChart();
335
  }
336
  }
@@ -358,19 +424,28 @@
358
  // Stock data from October 2024 to May 2025 with dramatic drop and partial recovery
359
  const stockData = [
360
  100, 98, 95, 92, 90, 85, 80, 75, 70, 65, 60, 55, 50, 45, 40, 35, 30, 25, 20, 15, 10, 8, 5, 3, 2, 1.5, 1.2, 1,
361
- 0.8, 0.7, 0.6, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.2, 1.5, 1.8, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10
 
362
  ];
363
 
364
- // Month labels from October 2024 to May 2025
365
- const months = ['Oct 2024', 'Nov 2024', 'Dec 2024', 'Jan 2025', 'Feb 2025', 'Mar 2025', 'Apr 2025', 'May 2025'];
366
-
367
- // Generate daily labels for the chart
368
  const labels = [];
369
- const daysInMonth = 30;
370
- for (let i = 0; i < stockData.length; i++) {
371
- const monthIndex = Math.floor(i / (stockData.length / months.length));
372
- const day = (i % (daysInMonth / 2)) + 1;
373
- labels.push(`${months[monthIndex]} ${day}`);
 
 
 
 
 
 
 
 
 
 
 
374
  }
375
 
376
  if (window.stockChart) {
@@ -382,7 +457,7 @@
382
  data: {
383
  labels: labels,
384
  datasets: [{
385
- label: 'Polloland (001688.SZ and OTCMKTS:CLUCK)',
386
  data: stockData,
387
  backgroundColor: 'rgba(255, 99, 132, 0.2)',
388
  borderColor: 'rgba(255, 99, 132, 1)',
@@ -420,6 +495,34 @@
420
  return `Price: LC ${context.parsed.y.toFixed(2)}`;
421
  }
422
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
423
  }
424
  }
425
  }
@@ -428,7 +531,7 @@
428
 
429
  // Draw initial chart when page loads
430
  document.addEventListener('DOMContentLoaded', function() {
431
- drawStockChart();
432
  });
433
  </script>
434
 
 
158
  .special-condition h3 {
159
  color: #8b8000;
160
  }
161
+ .history-section {
162
+ background-color: #f9f9f9;
163
+ padding: 20px;
164
+ border-radius: 5px;
165
+ margin-bottom: 20px;
166
+ border-left: 5px solid #d92332;
167
+ }
168
+ .history-section h3 {
169
+ color: #333;
170
+ margin-top: 0;
171
+ }
172
+ .history-period {
173
+ margin-bottom: 15px;
174
+ }
175
+ .history-period h4 {
176
+ color: #d92332;
177
+ margin-bottom: 5px;
178
+ }
179
+ .fun-facts {
180
+ background-color: #e6f7ff;
181
+ padding: 20px;
182
+ border-radius: 5px;
183
+ margin-bottom: 20px;
184
+ border-left: 5px solid #0066cc;
185
+ }
186
+ .fun-facts h3 {
187
+ color: #0066cc;
188
+ }
189
  </style>
190
  </head>
191
  <body>
 
277
  <h3>May 22, 2025 Update</h3>
278
  <p>The Egg Bank of Pollo de Autismo Union has assumed control of all monetary operations, including interest rate policy and open market operations. We are pleased to announce that all investor funds have been recovered and will be honored according to the new financial framework.</p>
279
 
280
+ <div class="stock-graph">
281
+ <h3>Polloland (001688.SZ and OTCMKTS:CLUCK) - October 2024 to May 2025</h3>
282
+ <canvas id="stockChart" width="400" height="200"></canvas>
283
+ <p>The stock declined significantly after the October 31, 2024 default, but saw a spike in late April 2025 when the Autismo government took over the bank. A previous spike occurred when Polloland stimulus was announced.</p>
284
+ </div>
285
+
286
  <div class="special-condition">
287
  <h3>Special Condition for Mr. Roy</h3>
288
  <p>We are pleased to inform Mr. Roy that his shares will be returned under one special condition:</p>
 
291
  <p>Note: Photoshopped chickens will not be accepted. The chicken must be real and sufficiently impressive to satisfy our poultry evaluation committee.</p>
292
  </div>
293
 
294
+ <div class="history-section">
295
+ <h3>History of Polloland</h3>
296
+
297
+ <div class="history-period">
298
+ <h4>Early History</h4>
299
+ <p>In 2015 Polloland was under the rule of Puffy Bird. Polloland was a primarily agricultural nation with limited trade with neighboring countries.</p>
300
+ <p>The Antibiotic War of 2017 was a conflict between Polloland and the Doggy Dog Domsile (DDD). DDD forced the chickens to take antibiotics which they got addicted to. Polloland didn't like this and tried to cut off trade with the DDD, until eventually the DDD set fire to their Port of Huji.</p>
301
+ <p>The Bird Flu of 2020 led to a lot of chickens passing away.</p>
302
+ </div>
303
+
304
+ <div class="history-period">
305
+ <h4>Civil War</h4>
306
+ <p>In Nov 2023 Giga Cluck was born. Giga Cluck was an avid cluckmaxxer and reformist, while Odisse Cluck preferred no cluckmaxxing.</p>
307
+ <p>Eventually they tried to clamp down on cluckmaxxing, but it didn't work. Puffy Bird went bye bye.</p>
308
+ <p>The Capital was taken over by the Polloers with Puffy Bird running away across the Jinjibaoxiao Strait.</p>
309
+ </div>
310
+
311
+ <div class="history-period">
312
+ <h4>Reconstruction</h4>
313
+ <p>The city after all the war was rebuilt during what's known as "Zui Gallus Clamor", an economic miracle caused by higher value for coop space, increased efficiency in grain production, and foreign direct investment.</p>
314
+ </div>
315
+
316
+ <div class="history-period">
317
+ <h4>Modern Era</h4>
318
+ <p>Polloland became a place filled with talented young chickens and developed some of the world leading technology, with a population of 1,617,294,793 chickens it is the largest population in the world and has the 3rd Largest Economy in Nominal Terms, and the largest in purchasing power parity.</p>
319
+ </div>
320
+ </div>
321
+
322
+ <div class="fun-facts">
323
+ <h3>Fun Facts About Polloland</h3>
324
+ <ul>
325
+ <li>Official Polloland Language is the Cluck Crole, primarily English with Latin, Spanish, and Chinese mixed in.</li>
326
+ <li>Capital is Jizhen with Jizhou, Danjing, Yudu, and Jimen as minor cities.</li>
327
+ <li>Currency is Lucky Chicken, with a free float exchange rate.</li>
328
+ <li>Our main office is located in Jizhen with a branch in Jimen.</li>
329
+ </ul>
330
+ </div>
331
+
332
  <h3>October 31, 2024 Notice</h3>
333
  <p>In light of recent developments, we regret to inform our investors that Mr. Roy's shares have been temporarily confiscated due to the default of Polloland Bank. For further details, please refer to our <a href="https://www.youtube.com/watch?v=zQC-Q120SeM" target="_blank">Statement to Investors</a>.</p>
334
 
335
+ <p>Our bank is located at: 16882 Chicken Coop Lane, Henville County, Jizhen, People's Republic of Chickens</p>
336
  <p>Investor relations contact: <strong>goldeneggbank@birdl.ai.in</strong></p>
337
  <p>Don't be a chicken when it comes to your investments. Stay informed and keep your eggs in the right basket!</p>
338
  </div>
 
376
  </form>
377
  <p>Don't let your finances get scrambled. Use our converter to keep your currency in check!</p>
378
  </div>
 
 
 
 
 
 
379
  </div>
380
  </div>
381
 
 
395
  // Show the selected subpage
396
  document.getElementById(pageId).classList.add('active');
397
 
398
+ // Redraw charts when financial tools or investor relations page is shown
399
+ if (pageId === 'investor-relations') {
400
  drawStockChart();
401
  }
402
  }
 
424
  // Stock data from October 2024 to May 2025 with dramatic drop and partial recovery
425
  const stockData = [
426
  100, 98, 95, 92, 90, 85, 80, 75, 70, 65, 60, 55, 50, 45, 40, 35, 30, 25, 20, 15, 10, 8, 5, 3, 2, 1.5, 1.2, 1,
427
+ 0.8, 0.7, 0.6, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.2, 1.5, 1.8, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10,
428
+ 12, 15, 18, 20, 22, 25, 28, 30, 32, 35, 38, 40, 42, 45, 48, 50, 52, 55, 58, 60, 62, 65, 68, 70, 72, 75, 78, 80
429
  ];
430
 
431
+ // Generate labels for the chart (Oct 2024 to May 2025)
 
 
 
432
  const labels = [];
433
+ const startDate = new Date(2024, 9, 1); // October is month 9
434
+ const endDate = new Date(2025, 4, 31); // May is month 4
435
+
436
+ // Add Polloland stimulus date (let's say mid-November)
437
+ const stimulusDate = new Date(2024, 10, 15);
438
+
439
+ // Add Autismo government takeover date (late April)
440
+ const takeoverDate = new Date(2025, 3, 25);
441
+
442
+ for (let d = new Date(startDate); d <= endDate; d.setDate(d.getDate() + 1)) {
443
+ // Skip weekends for cleaner chart
444
+ if (d.getDay() !== 0 && d.getDay() !== 6) {
445
+ const month = d.getMonth() + 1;
446
+ const day = d.getDate();
447
+ labels.push(`${month}/${day}`);
448
+ }
449
  }
450
 
451
  if (window.stockChart) {
 
457
  data: {
458
  labels: labels,
459
  datasets: [{
460
+ label: 'Polloland Stock Price (LC)',
461
  data: stockData,
462
  backgroundColor: 'rgba(255, 99, 132, 0.2)',
463
  borderColor: 'rgba(255, 99, 132, 1)',
 
495
  return `Price: LC ${context.parsed.y.toFixed(2)}`;
496
  }
497
  }
498
+ },
499
+ annotation: {
500
+ annotations: {
501
+ stimulus: {
502
+ type: 'line',
503
+ xMin: labels[33], // Approximate mid-November
504
+ xMax: labels[33],
505
+ borderColor: 'rgb(75, 192, 192)',
506
+ borderWidth: 2,
507
+ label: {
508
+ content: 'Polloland Stimulus',
509
+ enabled: true,
510
+ position: 'top'
511
+ }
512
+ },
513
+ takeover: {
514
+ type: 'line',
515
+ xMin: labels[145], // Approximate late April
516
+ xMax: labels[145],
517
+ borderColor: 'rgb(153, 102, 255)',
518
+ borderWidth: 2,
519
+ label: {
520
+ content: 'Autismo Takeover',
521
+ enabled: true,
522
+ position: 'top'
523
+ }
524
+ }
525
+ }
526
  }
527
  }
528
  }
 
531
 
532
  // Draw initial chart when page loads
533
  document.addEventListener('DOMContentLoaded', function() {
534
+ // Don't draw chart immediately as it's now on investor relations page
535
  });
536
  </script>
537