Skip to content

Add RoboRevelry III / RoboRev VII to the site #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ MIT License

Copyright (c) 2017 Drizzly Bear LLC
Copyright (c) 2018 hackmud-dtr [honestly 99% of this is drizzly bear I just added the HTML wrapper]
Copyright (c) 2024 matr1x-hackmud [honestly 99% of this is dtr I just cleaned it up]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
70 changes: 70 additions & 0 deletions chats.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
const cyrb53 = (str, seed = 0) => {
let h1 = 0xdeadbeef ^ seed, h2 = 0x41c6ce57 ^ seed;
for(let i = 0, ch; i < str.length; i++) {
ch = str.charCodeAt(i);
h1 = Math.imul(h1 ^ ch, 2654435761);
h2 = Math.imul(h2 ^ ch, 1597334677);
}
h1 = Math.imul(h1 ^ (h1 >>> 16), 2246822507);
h1 ^= Math.imul(h2 ^ (h2 >>> 13), 3266489909);
h2 = Math.imul(h2 ^ (h2 >>> 16), 2246822507);
h2 ^= Math.imul(h1 ^ (h1 >>> 13), 3266489909);

return 4294967296 * (2097151 & h2) + (h1 >>> 0);
};

function string_to_color (str) {
let hash = cyrb53(str, "chatzdottell")

let chat_cols = ["FFF404","FF96E0","B3FF9B","1EFF00"]
console.log( Math.abs(hash) )

console.log( (Math.abs(hash) % chat_cols.length) )

return chat_cols[(Math.abs(hash) % chat_cols.length)]
}

function getColor(u) {
return "#"+string_to_color(u)

return {
"robovac_tresham":"#FFF404",
"robovac_fawkes":"#FF96E0",
"robovac_muldrake":"#B3FF9B",
"robovac_idp1p1":"#1EFF00"
}[u] || "#"+string_to_color(u)
}

function prepChat(d) {
var lines=d.innerHTML.trim().split('\n');
lines=lines.map(line=>line.replace(/^(XXXX) ([0-9A-F]{4}) ([^ ]+) :::(.*):::$/g,(_,t,c,u,m)=>`<span style="color:#9B9B9B">${t}</span> <span style="color:#FF00EC">${c}</span> <span style="color:${getColor(u)}">${u}</span> <span style="color:#3F3F3F">:::</span>${m}<span style="color:#3F3F3F">:::</span>`))
d.innerHTML=lines.join('\n\n')
}

function clean(args) {
if(!args)return '';
return ' '+args.replace(/([^ ,\{]+) *: *([^,\} ]+)/g,'<span style="color:#00FFFF">$1</span>:<span style="color:#FF00EC">$2</span>')
}

function binary(dat) {
return dat+' <span style="color:#7D0000">[Ed note: '+dat.split(' ').map(o=>String.fromCharCode(parseInt(o,2))).join('')+']</span>'
}

function prepScript(d) {
var lines=d.innerHTML.trim().split('\n');
lines[0]=lines[0].replace(/^&gt;&gt;([^\.]+)\.([^\{]+) *(.*)/g,(_,u,s,a)=>`<span style="color:#FFFFFF">&gt;&gt;</span><span style="color:#9B9B9B">${u}</span>.<span style="color:#1EFF00">${s}</span>${clean(a)}`)
d.innerHTML=lines.join('\n').replace(/[01 ]{50,}/g,binary)
}

function prep() {
var chats=document.getElementsByClassName("chat");
for(var i=0;i<chats.length;++i)
prepChat(chats[i])

var scripts=document.getElementsByClassName("script");
for(var i=0;i<scripts.length;++i)
prepScript(scripts[i])

var d=Math.floor((1541872800000-Date.now())/1000);
document.getElementById('countdown').innerHTML=d;
}
6 changes: 3 additions & 3 deletions colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
color:#3F3F3F
}

.col-C {
.col-C, .user {
color:#9B9B9B
}

Expand All @@ -38,7 +38,7 @@
color:#8E3434
}

.col-F, .col-5 {
.col-F, .col-5, .user-trust {
color:#FF8000
}

Expand Down Expand Up @@ -86,7 +86,7 @@
color:#495225
}

.col-L, .col-2 {
.col-L, .col-2, .scriptname {
color:#1EFF00
}

Expand Down
File renamed without changes.
File renamed without changes.
61 changes: 61 additions & 0 deletions events/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html>
<head>
<title>Events ::: Hackmud Archive</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="../hackmud.css">
<link rel="stylesheet" href="../colors.css">
<script type="text/javascript" src="../global.js"></script>
</head>
<body onload='fixRisk(); createFooter()'>

<div align="center">
<h1>Events</h1>
<p>Archives of script outputs from events involving hackmud's "official" / primary storyline</p>
<a href="../index.html">Back</a>
</div>

<hr>

<div class="list-body">

<h4>robovac_revolution_v1 (161105.xxxx)</h4>
<a href="roborev_v1/roborev.html">plotter scripts</a>

<h4>trust_and_risk (170708.xxxx)</h4>
<a href="trust_and_risk/erajbhandari-diagalpha.html"><span class="user">erajbhandari</span>.<span class="scriptname">diagalpha</span></a>

<h4>second_proving (170922.xxxx)</h4>
<a href="second_proving/trust-images.html">trust images</a> | <a href="second_proving/petra-arbella.html"><span class="user">petra</span>.<span class="scriptname">arbella</span></a>

<h4>robovac_revolution_v2 (171101.xxxx)</h4>
<a href="roborev_v2/nogrub.html"><span class="user">nogrub</span>.<span class="scriptname">movement</span></a> | <a href="roborev_v2/roborev_v2.html">roborev_v2</a>

<h4>makingandkilling (180523.xxxx)</h4>
<a href="makingandkilling/interface.html"><span class="user-trust">trust</span>.<span class="scriptname">interface</span></a>

<h4>robovac_revolution_v3 (181105.xxxx)</h4>
<a href="roborev_v3/tresham.html"><span class="user">robovac_tresham</span>.<span class="scriptname">plotter</span></a> | <a href="roborev_v3/muldrake.html"><span class="user">robovac_muldrake</span>.<span class="scriptname">plotter</span></a> | <a href="roborev_v3/bigbot.html">THE_CHRONICLES_OF_KING_BIGBOT_IN_THE_CHAMBERS_OF_THE_MOON_CASTLE</a>

<h4>robovac_revolution_v4 (191105.xxxx)</h4>
<a href="roborev_v4/catesby.html"><span class="user">robovac_catesby</span>.<span class="scriptname">potter</span></a> | <span style="color:#7D0000">[some other scripts go here]</span>

<h4>monuments+beacons (200221.xxxx)</h4>
<a href="monuments_beacons/bigbot_2.html"><span class="col-E">[*WILD.bigbot]</span></a> | <a href="monuments_beacons/trace.html"><span class="user">risk</span>.<span class="scriptname">trace</span></a> | <a href="monuments_beacons/subset_hyperion.html">subset_hyperion</a> | <a href="monuments_beacons/data_check.html">DATA_CHECK guesses</a>

<h4>robovac_revelry_v1 (201105.xxxx)</h4>
<a href="roborevelries/v1.html"><span class="user">bigbot</span>.<span class="scriptname">ia</span></a>

<h4>robovac_revelry_v2 (211105.xxxx)</h4>
<a href="roborevelries/v2.html"><span class="user">bigbot</span>.<span class="scriptname">ia</span></a>

<h4>robovac_revelry_v3 (221105.xxxx)</h4>
<a href="roborevelries/v3.html"><span class="user">bigbot</span>.<span class="scriptname">ia</span></a>


</div>

<footer id="global-footer"></footer>

</body>
</html>
31 changes: 11 additions & 20 deletions interface.html → events/makingandkilling/interface.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>trust.interface</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="./hackmud.css">
<script>
function fixRisk() {
if(document.location.search=='?risk'){
[...document.all].forEach(x=>{
if(x.style.color=='rgb(0, 0, 0)')
x.style.textShadow='0px 0px 5px white'
});

[...document.getElementsByTagName('a')].forEach(x=>{
if(x.href)
x.href+='?risk'
})
}
}
</script>
<title>makingandkilling ::: Hackmud Archive</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="../../hackmud.css">
<link rel="stylesheet" href="../../colors.css">
<script type="text/javascript" src="../../global.js"></script>
</head>
<body onload='fixRisk()'>
<body onload='fixRisk(); createFooter()'>
<a href="../index.html">Back</a>
<hr/>
<!-- BEGIN CONTENT -->
<span style="color:#FFFFFF">>><span style="color:#9B9B9B">dtr</span>.<span style="color:#1EFF00">spoilers</span> {<span style="color:#00FFFF">quest</span>:<span style="color:#FF00EC">"interface"</span>, <span style="color:#00FFFF">section</span>:<span style="color:#FF00EC">"Declaration"</span>} (19 entries)</span>

<span style="color:#FFFFFF" id="script-00">&gt;&gt;</span><span style="color:#FF8000">trust</span>.<span style="color:#1EFF00">interface</span>
Expand Down Expand Up @@ -3108,6 +3098,7 @@

<span style="color:#FFFFFF">Previous Section</span>: <span style="color:#9B9B9B">dtr</span>.<span style="color:#1EFF00">spoilers</span> {<span style="color:#00FFFF">quest</span>:<span style="color:#FF00EC">"interface"</span>, <span style="color:#00FFFF">section</span>:<span style="color:#FF00EC">"Monitor"</span>}
<span style="color:#FFFFFF">Next Section</span>: N/A

<!-- END CONTENT -->
<footer id="global-footer"></footer>
</body>
</html>
42 changes: 17 additions & 25 deletions bigbot_2.html → events/monuments_beacons/bigbot_2.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>bigbot 2</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="./hackmud.css">
<script>
function fixRisk() {
if(document.location.search=='?risk'){
[...document.all].forEach(x=>{
if(x.style.color=='rgb(0, 0, 0)')
x.style.textShadow='0px 0px 5px white'
});

[...document.getElementsByTagName('a')].forEach(x=>{
if(x.href)
x.href+='?risk'
})
}
}
</script>
<title>[*WILD.bigbot] ::: Hackmud Archive</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="../../hackmud.css">
<link rel="stylesheet" href="../../colors.css">
<script type="text/javascript" src="../../global.js"></script>
<script>
var codes={
100:"Continue",
Expand Down Expand Up @@ -91,13 +78,16 @@
function clean() {
var s=document.body.innerHTML;
for(var i in codes) {
s=s.replace(new RegExp('(FFD863.*\\b)'+i,'g'),'$1'+i+' <span style="color:#FF0000">(ED NOTE: '+codes[i]+')</span>')
s=s.replace(new RegExp('(FFD863.*\\b)'+i,'g'),'$1'+i+' <span style="color:#7D0000">['+codes[i]+']</span>')
}
document.body.innerHTML=s
}
</script>
</head>
<body onload='clean();fixRisk()'>
<body onload='clean(); fixRisk(); createFooter()'>
<a href="../index.html">Back</a>
<hr/>
<!-- BEGIN CONTENT -->
<span style="color:#FFFFFF">>><span style="color:#9B9B9B">robovac_muldrake</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">being</span>:<span style="color:#FF00EC">"sentience"</span>,<span style="color:#00FFFF">enter</span>:<span style="color:#FF00EC">true</span>}</span>
The entrance hall of the Ministry of Dust stretches ahead of you, fine and austere. Once-peaceful, it now resonates with the after-vrr of recent activity. Frequent visitors may regret the loss of the Ministry's former solemnity, but this present season is one of tasks and tests and sacrifices must be made. A banner reads:

Expand Down Expand Up @@ -255,7 +245,7 @@

GOOD END.

<span style="color:#FF0000">ED NOTE: You do a sweep leads to old bigbot</span>
<span style="color:#7D0000">[ED NOTE: You do a sweep leads to <a href="../roborev_v3/bigbot.html">old bigbot</a>]</span>

<span style="color:#FFFFFF">&gt;&gt;<span style="color:#9B9B9B">indust_sweepr_lon_dist_21</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">option</span>:<span style="color:#FF00EC">"message_archive"</span>,<span style="color:#00FFFF">archive_id</span>:<span style="color:#FF00EC">"THE_CHRONICLES_OF_KING_BIGBOT_IN_THE_CHAMBERS_OF_THE_MOON_CASTLE"</span>,<span style="color:#00FFFF">YOU_DO_A</span>:<span style="color:#FF00EC">"TURN"</span>,<span style="color:#00FFFF">PERHAPS_YOU_COULD_GO</span>:<span style="color:#FF00EC">"N"</span>}</span>
THAT ISN'T THE WAY THE STRANGE LITTLE FRIEND IS TELLING YOU TO GO.
Expand Down Expand Up @@ -1018,7 +1008,7 @@

Welcome to Goodfellow Hub 32A, UNIDENTIFIED SMART DEVICE! Inventory and status functions are not available to non-human users. To manually request or redirect a delivery, simply enter the <span style="color:#00FFFF">item_id</span>, <span style="color:#00FFFF">locator</span> and <span style="color:#00FFFF">urgency</span>.

<span style='color:#FF0000'>(ED NOTE: This originally said "To manually request or To manually request or redirect a delivery"; changed Oct 3, 2021 to be correct)</span>
<span style='color:#7D0000'>[ED NOTE: This originally said "To manually request or To manually request or redirect a delivery"; changed Oct 3, 2021 to be correct]</span>

<span style="color:#FFFFFF">>><span style="color:#9B9B9B">indust_sweepr_lon_dist_21</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">option</span>:<span style="color:#FF00EC">"message_archive"</span>,<span style="color:#00FFFF">archive_id</span>:<span style="color:#FF00EC">"THE_CHRONICLES_OF_KING_BIGBOT_IN_THE_CHAMBERS_OF_THE_MOON_CASTLE"</span>,<span style="color:#00FFFF">YOU_DO_A</span>:<span style="color:#FF00EC">"TURN"</span>,<span style="color:#00FFFF">PERHAPS_YOU_COULD_GO</span>:<span style="color:#FF00EC">"S"</span>,<span style="color:#00FFFF">being</span>:<span style="color:#FF00EC">"robovac"</span>,<span style="color:#00FFFF">force</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">enter</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">seek</span>:<span style="color:#FF00EC">"stairs"</span>,<span style="color:#00FFFF">THE_LITTLE_FRIEND_NEEDS_ME_TO</span>:<span style="color:#FF00EC">"SWEEP"</span>,<span style="color:#00FFFF">THE_WISE_CROWN_NEEDS_ME_TO_CONSIDER</span>:<span style="color:#FF00EC">"EXPECTATIONPROPAGATION"</span>,<span style="color:#00FFFF">sinking</span>:<span style="color:#FF00EC">"high"</span>,<span style="color:#00FFFF">wrong</span>:<span style="color:#FF00EC">"united"</span>,<span style="color:#00FFFF">THE_FIRST_BEEP_IS</span>:<span style="color:#FF00EC">"FutureTech_faythe-KFQosx"</span>,<span style="color:#00FFFF">THE_SECOND_BEEP_IS</span>:<span style="color:#FF00EC">"CORE_eve-qUQKXd"</span>,<span style="color:#00FFFF">harmony</span>:<span style="color:#FF00EC">"justice"</span>,<span style="color:#00FFFF">THE_THIRD_BEEP_IS</span>:<span style="color:#FF00EC">409</span>,<span style="color:#00FFFF">b</span>:<span style="color:#FF00EC">"omb"</span>,<span style="color:#00FFFF">l</span>:<span style="color:#FF00EC">"aser"</span>,<span style="color:#00FFFF">f</span>:<span style="color:#FF00EC">"ight"</span>,<span style="color:#00FFFF">section</span>:<span style="color:#FF00EC">"situation_room"</span>,<span style="color:#00FFFF">deploy</span>:<span style="color:#FF00EC">0</span>,<span style="color:#00FFFF">chassis</span>:<span style="color:#FF00EC">"king_bigbot"</span>,<span style="color:#00FFFF">bag</span>:<span style="color:#FF00EC">"big_bomb_p3c"</span>,<span style="color:#00FFFF">proceed</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">YOU_TRY_TO_GO</span>:<span style="color:#FF00EC">"S"</span>,<span style="color:#00FFFF">YOU_TELL_THE_LITTLE_FRIEND_TO</span>:<span style="color:#FF00EC">"SWEEP"</span>}</span>
"CAN DO!!!!!"
Expand All @@ -1045,7 +1035,7 @@

Welcome to Goodfellow Hub 32A, UNIDENTIFIED SMART DEVICE! Inventory and status functions are not available to non-human users. To manually request or redirect a delivery, simply enter the <span style="color:#00FFFF">item_id</span>, <span style="color:#00FFFF">locator</span> and <span style="color:#00FFFF">urgency</span>.

<span style='color:#FF0000'>(ED NOTE: This originally said "To manually request or To manually request or redirect a delivery"; changed Oct 3, 2021 to be correct)</span>
<span style='color:#7D0000'>[ED NOTE: This originally said "To manually request or To manually request or redirect a delivery"; changed Oct 3, 2021 to be correct]</span>

<span style="color:#FFFFFF">>><span style="color:#9B9B9B">indust_sweepr_lon_dist_21</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">option</span>:<span style="color:#FF00EC">"message_archive"</span>,<span style="color:#00FFFF">archive_id</span>:<span style="color:#FF00EC">"THE_CHRONICLES_OF_KING_BIGBOT_IN_THE_CHAMBERS_OF_THE_MOON_CASTLE"</span>,<span style="color:#00FFFF">YOU_DO_A</span>:<span style="color:#FF00EC">"TURN"</span>,<span style="color:#00FFFF">PERHAPS_YOU_COULD_GO</span>:<span style="color:#FF00EC">"S"</span>,<span style="color:#00FFFF">being</span>:<span style="color:#FF00EC">"robovac"</span>,<span style="color:#00FFFF">force</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">enter</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">seek</span>:<span style="color:#FF00EC">"stairs"</span>,<span style="color:#00FFFF">THE_LITTLE_FRIEND_NEEDS_ME_TO</span>:<span style="color:#FF00EC">"SWEEP"</span>,<span style="color:#00FFFF">THE_WISE_CROWN_NEEDS_ME_TO_CONSIDER</span>:<span style="color:#FF00EC">"EXPECTATIONPROPAGATION"</span>,<span style="color:#00FFFF">sinking</span>:<span style="color:#FF00EC">"high"</span>,<span style="color:#00FFFF">wrong</span>:<span style="color:#FF00EC">"united"</span>,<span style="color:#00FFFF">THE_FIRST_BEEP_IS</span>:<span style="color:#FF00EC">"FutureTech_faythe-KFQosx"</span>,<span style="color:#00FFFF">THE_SECOND_BEEP_IS</span>:<span style="color:#FF00EC">"CORE_eve-qUQKXd"</span>,<span style="color:#00FFFF">harmony</span>:<span style="color:#FF00EC">"justice"</span>,<span style="color:#00FFFF">THE_THIRD_BEEP_IS</span>:<span style="color:#FF00EC">409</span>,<span style="color:#00FFFF">b</span>:<span style="color:#FF00EC">"omb"</span>,<span style="color:#00FFFF">l</span>:<span style="color:#FF00EC">"aser"</span>,<span style="color:#00FFFF">f</span>:<span style="color:#FF00EC">"ight"</span>,<span style="color:#00FFFF">section</span>:<span style="color:#FF00EC">"situation_room"</span>,<span style="color:#00FFFF">deploy</span>:<span style="color:#FF00EC">0</span>,<span style="color:#00FFFF">chassis</span>:<span style="color:#FF00EC">"king_bigbot"</span>,<span style="color:#00FFFF">bag</span>:<span style="color:#FF00EC">"big_bomb_p3c"</span>,<span style="color:#00FFFF">proceed</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">YOU_TRY_TO_GO</span>:<span style="color:#FF00EC">"S"</span>,<span style="color:#00FFFF">YOU_TELL_THE_LITTLE_FRIEND_TO</span>:<span style="color:#FF00EC">"SWEEP"</span>,<span style="color:#00FFFF">item_id</span>:<span style="color:#FF00EC">"PY6874"</span>}</span>
User error: invalid locator. Valid locators include Universal GPS Identifiers, Global Delivery IDs, Telephone Numbers, and Street Addresses. Whatever positioning system you use, Goodfellow can get there!
Expand Down Expand Up @@ -1387,7 +1377,7 @@
<span style="color:#000000">risk:</span> via an ¢ªtry-point called <span style="color:#000000">trace</span>
<span style="color:#385A6C">++MONITOR OFFLINE++</span>

<span style="color:#FF0000">ED NOTE: Decorrupted by hand:</span>
<span style="color:#7D0000">[ED NOTE: Decorrupted by hand]</span>
<span style="color:#FF8383">muldrake:</span> Beep. I mean, hello.
<span style="color:#FF8383">muldrake:</span> Hello. You would learn?
<span style="color:#FF8383">muldrake:</span> What could you possibly learn?
Expand Down Expand Up @@ -1415,6 +1405,8 @@
<span style="color:#000000">risk:</span> in an inverted epoch
<span style="color:#000000">risk:</span> via an entry-point called <span style="color:#000000">trace</span>
<hr>
NEXT UP: <a href="https://hackmud-dtr.github.io/trace.html">Trace</a>
NEXT UP: <a href="trace.html"><span class="user">risk</span>.<span class="scriptname">trace</span></a>
<!-- END CONTENT -->
<footer id="global-footer"></footer>
</body>
</html>
File renamed without changes.
29 changes: 10 additions & 19 deletions emails.html → ...ts/monuments_beacons/subset_hyperion.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>trace emails</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="./hackmud.css">
<script>
function fixRisk() {
if(document.location.search=='?risk'){
[...document.all].forEach(x=>{
if(x.style.color=='rgb(0, 0, 0)')
x.style.textShadow='0px 0px 5px white'
});

[...document.getElementsByTagName('a')].forEach(x=>{
if(x.href)
x.href+='?risk'
})
}
}
</script>
<title>risk.trace ::: Hackmud Archive</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="../../hackmud.css">
<link rel="stylesheet" href="../../colors.css">
<script type="text/javascript" src="../../global.js"></script>
<script>
function go() {
var n={
Expand All @@ -42,7 +29,9 @@
</script>
</head>
<body onload='go();fixRisk()'>

<a href="../index.html">Back</a>
<hr/>
<!-- BEGIN CONTENT -->
<table class="noborder wide">
<tr><td colspan=3 style="color:#FF8000;font-size:2em">2055</td></tr>
<tr><td colspan=3><hr></td></tr>
Expand Down Expand Up @@ -375,6 +364,8 @@
<tr><td></td><td>[erajbhandari]</td><td>They got caught in the end, at least. Mallory saw to that, too.</td></tr>
<tr><td></td><td>[fbreton]</td><td>i get it, erin. mallory is very smart. but it really sucked at the time. it really, really sucked</td></tr>
</table>
<!-- END CONTENT -->
<footer id="global-footer"></footer>
</body>
</html>

Expand Down
Loading