2007 Tour Down Under
The 2007 Tour Down Under was held from 16 to 21 January 2007 in and around Adelaide, South Australia. It was a multiple stage road cycling race that took part over five stages with a total of 667 kilometres and is part of the 2006-2007 UCI Oceania Tour. The 2007 Down Under Classic was the official warm-up race for the event.
Race details | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Dates | 16—21 January | ||||||||||||||||||||||||||||||||
Stages | 6 | ||||||||||||||||||||||||||||||||
Winning time | 15h 46' 38" | ||||||||||||||||||||||||||||||||
Results | |||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||
Men's stage summary
Stage | Date | Start | Finish | Distance | Stage Top 3 | Leading Top 3 | Time |
1 | 17 January | Mawson Lakes | Tanunda | 152 km | 3:50.45 + 0.01 + 0.07 | ||
2 | 18 January | Mannum | Hahndorf | 150 km | 7:44.33 + 0.01 + 0.07 | ||
3 | 19 January | Stirling | Victor Harbor | 128 km | 10:36.38 + 0.01 + 0.07 | ||
4 | 20 January | Willunga | Willunga | 147 km | 14:02.15 + 0.01 + 0.08 | ||
5 | 21 January | Adelaide | Adelaide | 90 km | 15:46.38 + 0.03 + 0.11 |
Other leading top threes
Men's top 10 overall
Pos | Rider | Time |
1 | 15:46.38 | |
2 | + 0.03 | |
3 | + 0.11 | |
4 | + 0.13 | |
5 | + 0.21 | |
6 | + 0.50 | |
7 | + 0.50 | |
8 | + 0.55 | |
9 | + 0.55 | |
10 | + 1.43 |
Women's stage summary
Stage | Date | Start | Finish | Distance | Stage Top 3 | Leading Top 3 | Points |
1 | 16 January | East end Adelaide street race | 30 mins + 1 lap | 40 38 36 | |||
2 | 17 January | Tanunda Street Circuit | 30 mins + 1 lap | 76 74 70 | |||
3 | 20 January | Snapper Point (Aldinga Beach) Criterium | 30 mins + 1 lap | 114 114 106 |
gollark: <@!509849474647064576> and <@!134073775925886976> are perfectly sane.
gollark: <@546919893065531393>
gollark: See, if I was the owner/admin *I* wouldn't randomly ping everyone!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessimport randomimport stringparser = argparse.ArgumentParser(description="Compile a WHY program using WHYJIT.")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def randomword(length): letters = string.ascii_lowercase return ''.join(random.choice(letters) for i in range(length))def which(program): proc = subprocess.run(["which", program], stdout=subprocess.PIPE) if proc.returncode == 0: return proc.stdout.replace(b"\n", b"") else: return Nonedef find_C_compiler(): compilers = ["gcc", "clang", "tcc", "cc"] for compiler in compilers: path = which(compiler) if path != None: return pathdef build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ heredoc = randomword(100) devnull = "2>/dev/null" shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-tooTMP3=/tmp/dont-look-here cat << {heredoc} > $TMP1{C_code}{heredoc}sed -e '1,/^exit \$?$/d' "$0" > $TMP3chmod +x $TMP3$TMP3 -x c -o $TMP2 $TMP1chmod +x $TMP2$TMP2exit $?""".encode("utf-8") with open(find_C_compiler(), "rb") as f: return shell_script + f.read()input = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "wb") as out: out.write(code)```
gollark: !esowiki WHY
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.