diff --git a/.github/workflows/build-extension.yml b/.github/workflows/build-extension.yml index 5011017c..1f9ffa62 100644 --- a/.github/workflows/build-extension.yml +++ b/.github/workflows/build-extension.yml @@ -21,12 +21,12 @@ jobs: steps: # Checks out a copy of your repository on the ubuntu-latest machine - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - name: Configure node v16 - uses: actions/setup-node@v3 + - name: Configure node v20 + uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '20' - name: Install test framework dependencies run: npm install @@ -48,12 +48,12 @@ jobs: steps: # Checks out a copy of your repository on the ubuntu-latest machine - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - name: Configure node v16 - uses: actions/setup-node@v3 + - name: Configure node v20 + uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '20' - name: Install web-ext tooling run: npm install -g web-ext @@ -71,7 +71,7 @@ jobs: EXTENSION_BUILD_ID: ${{ github.run_number }} - name: Upload build extension package - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.browser }}-extension-package path: browser-extensions/${{ matrix.browser }}/build/web-ext-artifacts/running_challenges-*.zip @@ -98,13 +98,13 @@ jobs: - "parkrun.ie" - "parkrun.it" - "parkrun.jp" + - "parkrun.lt" - "parkrun.my" - "parkrun.no" - "parkrun.org.uk" - "parkrun.pl" - "parkrun.se" - "parkrun.sg" - - "parkrun.us" # - "parkrun.ru" # Russian events are suspended fail-fast: false # max-parallel: 1 @@ -118,21 +118,21 @@ jobs: # Checks out a copy of the repository - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Get previously built packages - name: Download all built extension packages - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: browser-extensions/common/js/tests/ui-test/extension-binaries - name: Show built extension packages run: ls -lR extension-binaries - - name: Configure node v16 - uses: actions/setup-node@v3 + - name: Configure node v20 + uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '20' - name: Install Required OS packages run: | @@ -178,7 +178,7 @@ jobs: - name: list files in root dir run: ls -l - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: ui-tests-chrome-${{ matrix.country_hostname }} @@ -200,7 +200,7 @@ jobs: steps: - name: Download all built extension packages - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: extension-binaries @@ -208,7 +208,7 @@ jobs: run: ls -lR extension-binaries - id: get-branch-version-tag - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | console.log(context) @@ -249,7 +249,7 @@ jobs: # - id: get-branch-version-tag - # uses: actions/github-script@v6 + # uses: actions/github-script@v7 # with: # script: | # var version_tag = '' diff --git a/.github/workflows/build-staging-website.yml b/.github/workflows/build-staging-website.yml index 93aa58f1..9cb40a10 100644 --- a/.github/workflows/build-staging-website.yml +++ b/.github/workflows/build-staging-website.yml @@ -26,7 +26,7 @@ jobs: steps: # Checks out a copy of your repository on the ubuntu-latest machine - name: 📂 Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive @@ -76,7 +76,7 @@ jobs: # Get the latest copy of the repo # We need to set a token here, otherwise it uses the default one that won't have permission to push - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: ${{ github.actor != 'dependabot[bot]' }} with: repository: fraz3alpha/running-challenges-staging diff --git a/.github/workflows/build-website.yml b/.github/workflows/build-website.yml index 655a3a8e..ba0524f4 100644 --- a/.github/workflows/build-website.yml +++ b/.github/workflows/build-website.yml @@ -28,7 +28,7 @@ jobs: steps: # Checks out a copy of your repository on the ubuntu-latest machine - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive diff --git a/README.md b/README.md index 6553e027..ff1049ab 100644 --- a/README.md +++ b/README.md @@ -127,16 +127,17 @@ roles, and they will need adding in in a few places: It is impossible to add a new country until the new website is made live, and there are events on the map. -- Find the website URLs for the 3 pages the extension modifies. They seem to follow the english spelling these days: - - "*://www.parkrun.jp/results/athleteeventresultshistory/*" - - "*://www.parkrun.jp/results/athleteresultshistory/*" - - "*://www.parkrun.jp/*/results/athletehistory/*" +- Find the website URLs for the 2 pages the extension modifies. They seem to follow the english spelling these days, and are only available through the 'parkrunner' URLS, that replaced the older 'athlete' based ones: + - "*://www.parkrun.org.uk/parkrunner/*/all/" + - "*://www.parkrun.org.uk/parkrunner/*/" Each of these needs to be added to the `manifest.json` file for all the supported browsers. -- Look in the volunteer rosters and attempt to find the translations to add to the `i18n.js` (internationalisation) file +- Look in the volunteer rosters and attempt to find the translations to add to the `i18n.js` (internationalisation) file - unless it has changed, look at https://www.parkrun.org.uk/parkrunner/88720/, as they have done nearly everything. - Add the ISO code for the country to the flag map in `challenges.js` - Add the ISO code to the list of flags for the website under the `flags.yml` data file. - Get the flag from https://emojipedia.org/twitter/twemoji-2.6/ as described in the flags README. - Add the country code and country name to `background.js` +- Update `browser-extensions/common/js/tests/ui-test/update.sh` with the new parkrun domain, and run the script to pull in new test files +- Add the new country to the Github actions test list: `.github/workflows/build-extension.yml` # Version numbers diff --git a/browser-extensions/chrome/manifest.json b/browser-extensions/chrome/manifest.json index d26604b3..63a878d5 100644 --- a/browser-extensions/chrome/manifest.json +++ b/browser-extensions/chrome/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Running Challenges", - "description": "Adds challenge progress information to your parkrun athlete results page.", + "description": "Adds challenge progress information to your parkrun results page.", "version": "REPLACE_EXTENSION_BUILD_VERSION.REPLACE_EXTENSION_BUILD_ID", "content_security_policy": "default-src 'self'; connect-src https://www.parkrun.org.uk https://running-challenges.co.uk https://images.parkrun.com", @@ -32,6 +32,7 @@ "*://www.parkrun.se/parkrunner/*/all/", "*://www.parkrun.fi/parkrunner/*/all/", "*://www.parkrun.fr/parkrunner/*/all/", + "*://www.parkrun.lt/parkrunner/*/all/", "*://www.parkrun.no/parkrunner/*/all/", "*://www.parkrun.com.de/parkrunner/*/all/", "*://www.parkrun.ru/parkrunner/*/all/", @@ -65,38 +66,6 @@ ], "run_at": "document_end" }, - { - "matches": [ - "*://www.parkrun.org.uk/results/athleteresultshistory/*", - "*://www.parkrun.com.au/results/athleteresultshistory/*", - "*://www.parkrun.co.nz/results/athleteresultshistory/*", - "*://www.parkrun.ca/results/athleteresultshistory/*", - "*://www.parkrun.ie/results/athleteresultshistory/*", - "*://www.parkrun.co.za/results/athleteresultshistory/*", - "*://www.parkrun.us/results/athleteresultshistory/*", - "*://www.parkrun.sg/results/athleteresultshistory/*", - "*://www.parkrun.pl/results/athleteresultshistory/*", - "*://www.parkrun.it/results/athleteresultshistory/*", - "*://www.parkrun.dk/results/athleteresultshistory/*", - "*://www.parkrun.se/results/athleteresultshistory/*", - "*://www.parkrun.fi/results/athleteresultshistory/*", - "*://www.parkrun.fr/results/athleteresultshistory/*", - "*://www.parkrun.com.de/results/athleteresultshistory/*", - "*://www.parkrun.no/results/athleteresultshistory/*", - "*://www.parkrun.ru/results/athleteresultshistory/*", - "*://www.parkrun.my/results/athleteresultshistory/*", - "*://www.parkrun.jp/results/athleteresultshistory/*", - "*://www.parkrun.co.nl/results/athleteresultshistory/*", - "*://www.parkrun.co.at/results/athleteresultshistory/*" - ], - "js": [ - "js/lib/third-party/browser-polyfill/browser-polyfill-76eeeac.js", - "js/lib/third-party/jquery/jquery-3.6.0.js", - "js/lib/i18n.js", - "js/content-scripts/content-script-athleteresultshistory.js" - ], - "run_at": "document_end" - }, { "matches": [ "*://www.parkrun.org.uk/parkrunner/*/", @@ -113,6 +82,7 @@ "*://www.parkrun.se/parkrunner/*/", "*://www.parkrun.fi/parkrunner/*/", "*://www.parkrun.fr/parkrunner/*/", + "*://www.parkrun.lt/parkrunner/*/", "*://www.parkrun.no/parkrunner/*/", "*://www.parkrun.com.de/parkrunner/*/", "*://www.parkrun.ru/parkrunner/*/", @@ -135,6 +105,7 @@ "*://www.parkrun.se/parkrunner/*/all/", "*://www.parkrun.fi/parkrunner/*/all/", "*://www.parkrun.fr/parkrunner/*/all/", + "*://www.parkrun.lt/parkrunner/*/all/", "*://www.parkrun.no/parkrunner/*/all/", "*://www.parkrun.com.de/parkrunner/*/all/", "*://www.parkrun.ru/parkrunner/*/all/", @@ -149,38 +120,6 @@ "js/content-scripts/content-script-parkrunner-summary.js" ], "run_at": "document_end" - }, - { - "matches": [ - "*://www.parkrun.org.uk/*/results/athletehistory/*", - "*://www.parkrun.com.au/*/results/athletehistory/*", - "*://www.parkrun.co.nz/*/results/athletehistory/*", - "*://www.parkrun.ca/*/results/athletehistory/*", - "*://www.parkrun.ie/*/results/athletehistory/*", - "*://www.parkrun.co.za/*/results/athletehistory/*", - "*://www.parkrun.us/*/results/athletehistory/*", - "*://www.parkrun.sg/*/results/athletehistory/*", - "*://www.parkrun.pl/*/athletehistory/*", - "*://www.parkrun.it/*/athletehistory/*", - "*://www.parkrun.dk/*/athletehistory/*", - "*://www.parkrun.se/*/athletehistory/*", - "*://www.parkrun.fi/*/athletehistory/*", - "*://www.parkrun.fr/*/athletehistory/*", - "*://www.parkrun.com.de/*/athletehistory/*", - "*://www.parkrun.no/*/athletehistory/*", - "*://www.parkrun.ru/*/athletehistory/*", - "*://www.parkrun.my/*/results/athletehistory/*", - "*://www.parkrun.jp/*/results/athletehistory/*", - "*://www.parkrun.co.nl/*/results/athletehistory/*", - "*://www.parkrun.co.at/*/results/athletehistory/*" - ], - "js": [ - "js/lib/third-party/browser-polyfill/browser-polyfill-76eeeac.js", - "js/lib/third-party/jquery/jquery-3.6.0.js", - "js/lib/i18n.js", - "js/content-scripts/content-script-athleteeventhistory.js" - ], - "run_at": "document_end" } ], "web_accessible_resources": [ diff --git a/browser-extensions/common/js/background.js b/browser-extensions/common/js/background.js index 7bbdf91f..b8504415 100644 --- a/browser-extensions/common/js/background.js +++ b/browser-extensions/common/js/background.js @@ -96,6 +96,7 @@ function getCountryNameFromId(id) { "42": "Ireland", "44": "Italy", "46": "Japan", + "54": "Lithuania", "57": "Malaysia", "64": "Netherlands", "65": "New Zealand", diff --git a/browser-extensions/common/js/content-scripts/content-script-athleteeventhistory.js b/browser-extensions/common/js/content-scripts/content-script-athleteeventhistory.js deleted file mode 100644 index 746e6f1f..00000000 --- a/browser-extensions/common/js/content-scripts/content-script-athleteeventhistory.js +++ /dev/null @@ -1,37 +0,0 @@ -function get_challenge_link_location() { - return $("div[id=content]").find("p:first") -} - -function get_athlete_id() { - // Very basic method to get only the parameter we care about - var page_parameters = window.location.search - var athlete_id = undefined - - if (window.location.pathname.startsWith('/parkrunner')) { - athlete_id = window.location.pathname.match('parkrunner\/([0-9]+)\/all')[1] - } else if (page_parameters.includes('athleteNumber=')) { - athlete_id = page_parameters.split('athleteNumber=')[1].split('&')[0] - } - - return athlete_id -} - -var athlete_id = get_athlete_id() -if (athlete_id !== undefined) { - url = 'https://' + location.host + "/parkrunner/" + athlete_id +'/all' - - if (url != null) { - var challenge_link = $("").attr("href", url) - - var icon = $('') - icon.attr('src', browser.runtime.getURL("/images/logo/logo-128x128.png")) - icon.attr('alt', get_localised_value("text_running_challenges")) - icon.attr('title', get_localised_value("text_running_challenges")) - icon.attr('height', 24) - icon.attr('width', 24) - - challenge_link.append(icon) - challenge_link.append($("").text(get_localised_value("text_see_challenge_progress"))) - get_challenge_link_location().after($('
').append($('

').append(challenge_link))) - } -} diff --git a/browser-extensions/common/js/content-scripts/content-script-athleteresultshistory.js b/browser-extensions/common/js/content-scripts/content-script-athleteresultshistory.js deleted file mode 100644 index 65f4a927..00000000 --- a/browser-extensions/common/js/content-scripts/content-script-athleteresultshistory.js +++ /dev/null @@ -1,39 +0,0 @@ -function get_challenge_link_location() { - return $("div[id=content]").find("p:first") -} - -function get_athlete_id() { - // Very basic method to get only the parameter we care about - var page_parameters = window.location.search - var athlete_id = undefined - - if (window.location.pathname.startsWith('/parkrunner')) { - athlete_id = window.location.pathname.match('parkrunner\/([0-9]+)\/all')[1] - } else if (page_parameters.includes('athleteNumber=')) { - athlete_id = page_parameters.split('athleteNumber=')[1].split('&')[0] - } - - console.log('Athlete ID: '+athlete_id) - return athlete_id -} - - -var athlete_id = get_athlete_id() -if (athlete_id !== undefined) { - url = 'https://' + location.host + "/parkrunner/" + athlete_id +'/all' - - if (url != null) { - var challenge_link = $("").attr("href", url) - - var icon = $('') - icon.attr('src', browser.runtime.getURL("/images/logo/logo-128x128.png")) - icon.attr('alt', get_localised_value("text_running_challenges")) - icon.attr('title', get_localised_value("text_running_challenges")) - icon.attr('height', 24) - icon.attr('width', 24) - - challenge_link.append(icon) - challenge_link.append($("").text(get_localised_value("text_see_challenge_progress"))) - get_challenge_link_location().after($('

').append($('

').append(challenge_link))) - } -} diff --git a/browser-extensions/common/js/lib/challenges.js b/browser-extensions/common/js/lib/challenges.js index 5bc3e98f..7c374230 100644 --- a/browser-extensions/common/js/lib/challenges.js +++ b/browser-extensions/common/js/lib/challenges.js @@ -1314,6 +1314,7 @@ function get_flag_image_src(country) { "Ireland": "ie", "Italy": "it", "Japan": "jp", + "Lithuania": "lt", "Malaysia": "my", "Namibia": "na", "Netherlands": "nl", diff --git a/browser-extensions/common/js/lib/i18n.js b/browser-extensions/common/js/lib/i18n.js index 1cc82ada..e354ae82 100644 --- a/browser-extensions/common/js/lib/i18n.js +++ b/browser-extensions/common/js/lib/i18n.js @@ -45,7 +45,6 @@ var domains = { "url_athleteeventresultshistory": "results/athleteeventresultshistory/", "table_all_results": "All Results", "link_view_stats_for_all_parkruns": "View stats for all parkruns by this athlete", - "link_view_stats_for_all_parkruns_athleteeventhistory": "View stats for all parkruns by this athlete", "link_all": "All", // These variables contain text we output, so need translating by someone "text_see_challenge_progress": "See challenge progress", @@ -93,7 +92,6 @@ var domains = { //"table_all_results": "Wszystkie rezultaty", "table_all_results": "Ukończone edycje parkrun", "link_view_stats_for_all_parkruns": "Zobacz statystyki uczestnika ze wszystkich biegów parkrun", - "link_view_stats_for_all_parkruns_athleteeventhistory": "Zobacz wyniki tego zawodnika ze wszystkich biegów", "text_volunteer_role_map": { "Przechowanie sprzętu": "Equipment Storage and Delivery", "Przechowując(a)y wyposażenie": "Equipment Storage and Delivery", @@ -151,7 +149,6 @@ var domains = { // http://www.parkrun.it/results/athleteeventresultshistory?athleteNumber=3868619&eventNumber=0 "table_all_results": "Tutti i risultati", "link_view_stats_for_all_parkruns": "Visualizza statistiche per tutti i parkruns di questo atleta", - "link_view_stats_for_all_parkruns_athleteeventhistory": "Visualizza statistiche per tutti i parkruns di questo atleta", "text_volunteer_role_map": { "Addetto magazzino e forniture": "Equipment Storage and Delivery", "Addetto comunicazioni": "Communications Person", @@ -192,14 +189,13 @@ var domains = { // https://www.parkrun.dk/parkrunner/3287153/all/ "table_all_results": "Alle resultater", "link_view_stats_for_all_parkruns": "Se tal for alle parkruns løbet af denne løber", - "link_view_stats_for_all_parkruns_athleteeventhistory": "Se tal for alle parkruns løbet af denne løber", "text_volunteer_role_map": { "Udstyr – opbevaring og levering": "Equipment Storage and Delivery", "Kommunikation": "Communications Person", "Hjælperkoordinering": "Volunteer Co-ordinator", "Skiltning": "Pre-event Setup", "Vejledning": "First Timers Welcome", - "Tegnsprogs tolk": "Sign Language Support", + "Tegnsprogstolk": "Sign Language Support", "Officials": "Marshal", "Gående bagtrop": "Tail Walker", "Løbsleder": "Run Director", @@ -232,7 +228,6 @@ var domains = { // https://www.parkrun.se/parkrunner/3899897/all/ "table_all_results": "Alla resultat", "link_view_stats_for_all_parkruns": "Se statistik för alla parkruns av denna löpare", - "link_view_stats_for_all_parkruns_athleteeventhistory": "Se statistik för alla parkruns av denna löpare", "text_volunteer_role_map": { "Material - förvaring och leverans": "Equipment Storage and Delivery", "Kommunikationsansvarig": "Communications Person", @@ -270,7 +265,40 @@ var domains = { // http://www.parkrun.fi/tampere/results/athletehistory/?athleteNumber=4064283 // http://www.parkrun.fi/results/athleteresultshistory/?athleteNumber=4064283 // https://www.parkrun.fi/parkrunner/4064283/all/ - // It is all in English + // It in Finnish now + "table_all_results": "Kaikki tulokset", + "link_view_stats_for_all_parkruns": "Näytä tilastot tämän parkrunnerin kaikista tapahtumista", + // Volunteer roles are in Latvian + "text_volunteer_role_map": { + "Tapahtumavastaava": "Run Director", + "Ajanottaja": "Timekeeper", + "Polettien järjestäjä": "Token Sorting", + "Tulosten käsittelijä": "Results Processor", + "Kuvaaja": "Photographer", + "Tiedotus ja viestintä": "Communications Person", + "Liikenteenohjaaja": "Marshal", + "Tapahtumapaikan pystyttäminen": "Pre-event Setup", + "Tavaran varastointi ja toimitus": "Equipment Storage and Delivery", + "Muut": "Other", + "Viivakoodin skannaaja": "Barcode Scanning", + "Tapahtumapaikan purkaminen": "Post-event Close Down", + "Polettien jakaja": "Finish Tokens", + "Numeron tarkastaja": "Number Checker", + "Ensikertalaisten opastus": "First Timers Welcome", + "Maalin järjestäjä": "Funnel Manager", + // "": "Lead Bike", + "Polettien jakajan avustaja": "Finish Token Support", + "Takimmainen": "Tail Walker", + "Vapaaehtoisten koordinaattori": "Volunteer Co-ordinator", + "Raportin kirjoittaja": "Report Writer", + "Jänis": "Pacer (5k only)", + "Näkövammaisen avustaja": "VI Guide", + "Viittomakielen avustaja": "Sign Language Support", + "Alkulämmittelyn vetäjä": "Warm Up Leader (junior events only)", + "Parkkipaikkaohjaaja": "Car Park Marshal", + "Reitin tarkastaja": "Event Day Course Check", + // "parkwalker": "parkwalker" + } }, "www.parkrun.fr": { // French pages @@ -279,20 +307,19 @@ var domains = { // https://www.parkrun.fr/parkrunner/2769739/all/ "table_all_results": "Toutes les participations", "link_view_stats_for_all_parkruns": "Consulter les stats de cet athlète tous parkruns confondus", - "link_view_stats_for_all_parkruns_athleteeventhistory": "Consulter les stats de cet athlète tous parkruns confondus", // Volunteer roles are in FRENCH (A582667) "text_volunteer_role_map": { "Rangement & Mise à disposition de l'équipement": "Equipment Storage and Delivery", "Responsable communication": "Communications Person", "Coordinateur des bénévoles": "Volunteer Co-ordinator", "Balisage du parcours": "Pre-event Setup", - "Briefing des nouveaux participants": "First Timers Welcome", + "Accueil des nouveaux participants": "First Timers Welcome", "Assistance langage des signes": "Sign Language Support", "Aiguilleur": "Marshal", "Fermeur marcheur": "Tail Walker", "Responsable du run": "Run Director", "Vélo de tête": "Lead Bike", - "Lièvre": "Pacer (5k only)", + "Meneur d'allure": "Pacer (5k only)", "Guide déficient visuel": "VI Guide", "Photographe": "Photographer", "Responsable chrono": "Timekeeper", @@ -307,7 +334,7 @@ var domains = { "Classement des jetons": "Token Sorting", "Rédacteur du compte-rendu": "Report Writer", "Autre": "Other", - "Leader d'échauffement": "Warm Up Leader (junior events only)", + "Responsable de l'échauffement": "Warm Up Leader (junior events only)", "Aiguilleur parking": "Car Park Marshal", "Verification du Parcours - Jour de l'évènement": "Event Day Course Check", "promeneur": "parkwalker" @@ -320,7 +347,6 @@ var domains = { // https://www.parkrun.com.de/parkrunner/4099000/all/ "table_all_results": "Alle Ergebnisse bei", "link_view_stats_for_all_parkruns": "Statistiken für alle Läufe dieses Athleten ansehen", - "link_view_stats_for_all_parkruns_athleteeventhistory": "Statistiken für alle Läufe dieses Athleten ansehen", // Volunteer roles are in GERMAN (A4029732) "text_volunteer_role_map": { "Ausrüstung Lagerung und Lieferung": "Equipment Storage and Delivery", @@ -360,7 +386,6 @@ var domains = { // https://www.parkrun.no/parkrunner/4370177/all/ "table_all_results": "Alle resultater", "link_view_stats_for_all_parkruns": "Se statistikken for alle parkrun for denne deltakeren ", - "link_view_stats_for_all_parkruns_athleteeventhistory": "Se statistikken for alle parkrun for denne deltakeren ", // Volunteer roles are in NORWEGIAN "text_volunteer_role_map": { "Utstyrslagring- og levering": "Equipment Storage and Delivery", @@ -369,7 +394,7 @@ var domains = { "Opprigg": "Pre-event Setup", "Velkomsttale for førstegangsdeltakere": "First Timers Welcome", "Tegnspråkstøtte": "Sign Language Support", - "Vakt": "Marshal", + "Løypevakt": "Marshal", "Baktropp": "Tail Walker", "Løpsansvarlig": "Run Director", "Ledesyklist": "Lead Bike", @@ -381,16 +406,17 @@ var domains = { "Målområdeansvarlig": "Funnel Manager", "Brikkeutdeling": "Finish Tokens", "Brikkeutdelingsstøtte": "Finish Token Support", - "Strekkodeskanning": "Barcode Scanning", + "Strekkodeskanner": "Barcode Scanning", "Nummersjekk": "Number Checker", "Nedrigg": "Post-event Close Down", - "Resultatbehandling ": "Results Processor", - "Brikkesortering ": "Token Sorting", + "Resultatbehandler": "Results Processor", + "Brikkesortering": "Token Sorting", "Rapportforfatter": "Report Writer", - // Warm Up Leader (junior events only) + "(brukes ikke i dette parkrun-territoriet)": "Warm Up Leader (junior events only)", "Annet": "Other", - "Parkering": "Car Park Marshal", - "parkwalker": "parkwalker" + "Parkeringsplassvakt": "Car Park Marshal", + "parkwalker": "parkwalker", + "Løypekontroll før start": "Event Day Course Check" } }, "www.parkrun.ru": { @@ -399,7 +425,6 @@ var domains = { // http://www.parkrun.ru/results/athleteresultshistory/?athleteNumber=1551222 // https://www.parkrun.ru/parkrunner/1551222/all/ // Randomly partly in English - "link_view_stats_for_all_parkruns_athleteeventhistory": "Показать статистику этого спортсмена по всем забегам", "table_all_results": "Все результаты", // Volunteer roles are in RUSSIAN (A1551222) "text_volunteer_role_map": { @@ -452,7 +477,6 @@ var domains = { // It's all in Japanese, nothing will work without translations! "table_all_results": "すべての結果", "link_view_stats_for_all_parkruns": "この登録者のすべてのparkrunの記録を見る。", - "link_view_stats_for_all_parkruns_athleteeventhistory": "この登録者のすべてのparkrunの記録を見る。", // Volunteer roles are in JAPANESE largely provided by Bill Steffancin (A4782624) via email "text_volunteer_role_map": { "ランディレクター": "Run Director", @@ -490,7 +514,6 @@ var domains = { "www.parkrun.co.nl": { "table_all_results": "Alle resultaten", "link_view_stats_for_all_parkruns": "Bekijk de statistieken van alle parkruns voor deze parkrunner", - "link_view_stats_for_all_parkruns_athleteeventhistory": "Bekijk de statistieken van alle parkruns voor deze parkrunner", // Volunteer roles are in DUTCH "text_volunteer_role_map": { "Evenementleider": "Run Director", @@ -517,6 +540,7 @@ var domains = { "Pacer": "Pacer (5k only)", "Buddy slechtziende loper": "VI Guide", "Gebarentolk": "Sign Language Support", + "Warm-up leider": "Warm Up Leader", "Parkeerregelaar": "Car Park Marshal", "Routecontroleur": "Event Day Course Check", "parkwandelaar": "parkwalker" @@ -526,7 +550,6 @@ var domains = { // Using German translation "table_all_results": "Alle Ergebnisse bei", "link_view_stats_for_all_parkruns": "Statistiken für alle Läufe dieses Athleten ansehen", - "link_view_stats_for_all_parkruns_athleteeventhistory": "Statistiken für alle Läufe dieses Athleten ansehen", // Volunteer roles are in GERMAN (A4029732) "text_volunteer_role_map": { "Ausrüstung Lagerung und Lieferung": "Equipment Storage and Delivery", @@ -560,6 +583,41 @@ var domains = { "parkwanderer": "parkwalker" } }, + "www.parkrun.lt": { + "table_all_results": "Visi rezultatai", + "link_view_stats_for_all_parkruns": "Peržiūrėkite šio parkrun dalyvio/-ės statistikos santrauką", + // Volunteer roles are in Latvian + "text_volunteer_role_map": { + "Renginio Vadovas": "Run Director", + "Laiko Matuotojas": "Timekeeper", + "Žetonų Rūšiavimas": "Token Sorting", + "Rezultatų Įvedėjas": "Results Processor", + "Fotografas": "Photographer", + "Komunikacijų Savanoris": "Communications Person", + "Savanoris (Maršalas)": "Marshal", + "Pasiruošimas Prieš Renginį": "Pre-event Setup", + "Įrangos Sandėliavimas ir Pristatymas": "Equipment Storage and Delivery", + "Kita": "Other", + "Brūkšninio Kodo Skenavimas": "Barcode Scanning", + "Renginio Užbaigimo Procedūros": "Post-event Close Down", + "Finišo Žetonai": "Finish Tokens", + "Numerių Tikrintojas": "Number Checker", + "Pirmąkart Dalyvaujančiųjų Pasveikinimas": "First Timers Welcome", + "Srauto Valdytojas": "Funnel Manager", + // "": "Lead Bike", + "Finišo Žetonų Pagalba": "Finish Token Support", + // "Tail Walker": "Tail Walker", + "Savanorių Koordinatorius": "Volunteer Co-ordinator", + "Bėgimo Ataskaitos Rengėjas": "Report Writer", + "Laiko Vedlys": "Pacer (5k only)", + "Regėjimo Negalios Gidas": "VI Guide", + "Gestų Kalbos Pagalba": "Sign Language Support", + "Apšilimo Vedlys": "Warm Up Leader", + "Automobilių Parkingo Maršalas": "Car Park Marshal", + "Renginio Dienos Trasos Patikra": "Event Day Course Check", + // "parkwalker": "parkwalker" + } + } } function get_localised_value(param, domain=location.host) { diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/nginx/conf.d/parkrun.lt.conf b/browser-extensions/common/js/tests/ui-test/supporting-data/nginx/conf.d/parkrun.lt.conf new file mode 100644 index 00000000..c40d7b8d --- /dev/null +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/nginx/conf.d/parkrun.lt.conf @@ -0,0 +1,14 @@ +server { + listen 443 ssl; + server_name www.parkrun.lt; + + ssl_certificate /etc/nginx/cert/cert.pem; + ssl_certificate_key /etc/nginx/cert/key.pem; + + location / { + root /usr/share/nginx/html/parkrun.lt/contents; + add_header X-Running-Challenges mock-server; + index index.html; + } +} + diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/images.parkrun.com/contents/events.json b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/images.parkrun.com/contents/events.json index 5e58fdf5..28f223f8 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/images.parkrun.com/contents/events.json +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/images.parkrun.com/contents/events.json @@ -1,192 +1,200 @@ { - "SPECIAL-0307": { - "bounds": [ - -5.714096, - 50.066127, - 1.747338, - 55.418455 - ], - "events": [], - "icon": "tgc" - }, "countries": { + "0": { + "bounds": [ + -141.002, + -47.29, + 153.639, + 83.1132 + ], + "url": null + }, "14": { "bounds": [ - -123.650306, - 42.990553, - -61.505609, - 56.733336 + -141.002, + 41.6766, + -52.6191, + 83.1132 ], "url": "www.parkrun.ca" }, "23": { "bounds": [ - 8.442703, - 55.474609, - 12.635341, - 56.987144 + 8.07251, + 54.5591, + 15.157, + 57.3282 ], "url": "www.parkrun.dk" }, "3": { "bounds": [ - 113.654841, - -43.163256, - 153.578901, - -12.376205 + 112.921, + -43.6432, + 153.639, + -10.0591 ], "url": "www.parkrun.com.au" }, "30": { "bounds": [ - 23.759243, - 60.177056, - 25.732898, - 65.015719 + 20.5486, + 59.8078, + 31.5867, + 70.0923 ], "url": "www.parkrun.fi" }, "31": { "bounds": [ - -0.42901, - 43.564162, - 6.146281, - 49.44128 + -5.14128, + 41.3646, + 9.56009, + 51.089 ], "url": "www.parkrun.fr" }, "32": { "bounds": [ - 6.634672, - 47.586611, - 13.762586, - 53.573708 + 5.86632, + 47.2701, + 15.0418, + 55.0584 ], "url": "www.parkrun.com.de" }, "4": { "bounds": [ - 13.065462, - 47.761065, - 16.419671, - 48.318131 + 9.53095, + 46.3727, + 17.1621, + 49.0212 ], "url": "www.parkrun.co.at" }, "42": { "bounds": [ - -10.082041, - 51.551575, - -6.099962, - 55.140535 + -10.48, + 51.4475, + -5.99805, + 55.3829 ], "url": "www.parkrun.ie" }, "44": { "bounds": [ - 9.211192, - 37.621125, - 18.166117, - 45.694128 + 6.62662, + 36.6441, + 18.5204, + 47.0918 ], "url": "www.parkrun.it" }, "46": { "bounds": [ - 130.673031, - 31.908209, - 141.125657, - 39.692853 + 122.934, + 24.2552, + 145.817, + 45.523 ], "url": "www.parkrun.jp" }, + "54": { + "bounds": [ + 20.9415, + 53.8968, + 26.8355, + 56.4504 + ], + "url": "www.parkrun.lt" + }, "57": { "bounds": [ - 101.698056, - 2.916852, - 101.698056, - 2.916852 + 99.6407, + 0.855001, + 119.27, + 7.36334 ], "url": "www.parkrun.my" }, "64": { "bounds": [ - 4.290593, - 50.843369, - 6.540406, - 53.203176 + 3.35838, + 50.7504, + 7.2275, + 53.5157 ], "url": "www.parkrun.co.nl" }, "65": { "bounds": [ - 167.688869, - -46.404097, - 178.018082, - -35.734968 + 166.724, + -47.29, + -180, + -34.3928 ], "url": "www.parkrun.co.nz" }, "67": { "bounds": [ - 5.322763, - 58.952586, - 10.77791, - 63.430394 + 4.64182, + 57.9799, + 31.0637, + 71.1855 ], "url": "www.parkrun.no" }, "74": { "bounds": [ - 14.25818, - 49.548793, - 23.48152, - 54.598679 + 14.1229, + 49.002, + 24.1458, + 54.8358 ], "url": "www.parkrun.pl" }, "82": { "bounds": [ - 103.762915, - 1.294954, - 103.893129, - 1.360729 + 103.606, + 1.21065, + 104.044, + 1.47077 ], "url": "www.parkrun.sg" }, "85": { "bounds": [ - 14.481783, - -34.820522, - 32.27309, - -22.618415 + 16.4519, + -34.8342, + 32.945, + -22.125 ], "url": "www.parkrun.co.za" }, "88": { "bounds": [ - 11.943555, - 55.60278, - 20.249958, - 63.826124 + 11.1095, + 55.3374, + 24.1552, + 69.06 ], "url": "www.parkrun.se" }, "97": { "bounds": [ - -7.643103, - 49.186471, - 1.747338, - 60.158081 + -8.61772, + 49.9029, + 1.76891, + 59.3608 ], "url": "www.parkrun.org.uk" }, "98": { "bounds": [ - -122.862376, - 27.84707, - -69.954915, - 48.468375 + -124.733, + 24.5439, + -66.9492, + 49.3845 ], "url": "www.parkrun.us" } @@ -1644,11 +1652,11 @@ "id": 79, "properties": { "EventLocation": "River Medway", - "EventLongName": "Maidstone parkrun", - "EventShortName": "Maidstone", + "EventLongName": "Maidstone River Park parkrun", + "EventShortName": "Maidstone River Park", "LocalisedEventLongName": null, "countrycode": 97, - "eventname": "maidstone", + "eventname": "maidstoneriverpark", "seriesid": 1 }, "type": "Feature" @@ -1836,8 +1844,8 @@ { "geometry": { "coordinates": [ - -1.081316, - 50.778853 + -1.046276, + 50.785432 ], "type": "Point" }, @@ -2604,11 +2612,11 @@ "id": 131, "properties": { "EventLocation": "Lister Park, Bradford", - "EventLongName": "Bradford parkrun", - "EventShortName": "Bradford", + "EventLongName": "Lister Park parkrun, Bradford", + "EventShortName": "Lister Park, Bradford", "LocalisedEventLongName": null, "countrycode": 97, - "eventname": "bradford", + "eventname": "listerpark", "seriesid": 1 }, "type": "Feature" @@ -2993,26 +3001,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - -1.778156, - 53.706086 - ], - "type": "Point" - }, - "id": 152, - "properties": { - "EventLocation": "Wellholme Park", - "EventLongName": "Brighouse parkrun", - "EventShortName": "Brighouse", - "LocalisedEventLongName": null, - "countrycode": 97, - "eventname": "brighouse", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -4083,7 +4071,7 @@ }, "id": 213, "properties": { - "EventLocation": "Mineralwell Park", + "EventLocation": "Brierley Forest", "EventLongName": "Brierley Forest parkrun", "EventShortName": "Brierley Forest", "LocalisedEventLongName": null, @@ -4796,8 +4784,8 @@ { "geometry": { "coordinates": [ - -4.481846, - 54.165828 + -4.480834, + 54.166432 ], "type": "Point" }, @@ -5076,8 +5064,8 @@ { "geometry": { "coordinates": [ - -1.286999, - 50.711823 + -1.285714, + 50.71332 ], "type": "Point" }, @@ -7376,8 +7364,8 @@ { "geometry": { "coordinates": [ - -0.83814, - 51.168607 + -0.836903, + 51.16858 ], "type": "Point" }, @@ -7604,11 +7592,11 @@ "id": 420, "properties": { "EventLocation": "Cornwall Park, Auckland, New Zealand", - "EventLongName": "Cornwall parkrun", + "EventLongName": "Cornwall Park parkrun", "EventShortName": "Cornwall Park", "LocalisedEventLongName": null, "countrycode": 65, - "eventname": "cornwall", + "eventname": "cornwallpark", "seriesid": 1 }, "type": "Feature" @@ -8056,8 +8044,8 @@ { "geometry": { "coordinates": [ - -1.567457, - 50.821883 + -1.642492, + 50.808103 ], "type": "Point" }, @@ -8224,7 +8212,7 @@ "id": 451, "properties": { "EventLocation": "Newent Community School/Forest Leisure C", - "EventLongName": "Newent parkrun, Forest of Dean", + "EventLongName": "Newent parkrun", "EventShortName": "Newent", "LocalisedEventLongName": null, "countrycode": 97, @@ -9013,26 +9001,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - -1.776459, - 53.70627 - ], - "type": "Point" - }, - "id": 502, - "properties": { - "EventLocation": "Wellholme Park", - "EventLongName": "Brighouse junior parkrun", - "EventShortName": "Brighouse juniors", - "LocalisedEventLongName": "Brighouse junior parkrun", - "countrycode": 97, - "eventname": "brighouse-juniors", - "seriesid": 2 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -11473,6 +11441,26 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + 28.179573, + -25.772619 + ], + "type": "Point" + }, + "id": 679, + "properties": { + "EventLocation": "Voortrekker Monument Heritage Site", + "EventLongName": "Voortrekker Monument parkrun, Pretoria", + "EventShortName": "Voortrekker Monument", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "voortrekkermonument", + "seriesid": 1 + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -14143,7 +14131,7 @@ }, "id": 932, "properties": { - "EventLocation": "Martin Bamford", + "EventLocation": "Knowle Park", "EventLongName": "Cranleigh parkrun", "EventShortName": "Cranleigh", "LocalisedEventLongName": null, @@ -15056,8 +15044,8 @@ { "geometry": { "coordinates": [ - -0.107589, - 51.796066 + -0.138723, + 51.798644 ], "type": "Point" }, @@ -15216,8 +15204,8 @@ { "geometry": { "coordinates": [ - 153.113665, - -26.708909 + 153.106718, + -26.709852 ], "type": "Point" }, @@ -15313,26 +15301,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - 31.788579, - -25.703683 - ], - "type": "Point" - }, - "id": 1040, - "properties": { - "EventLocation": "Tonga Village", - "EventLongName": "Nkomazi parkrun", - "EventShortName": "Nkomazi", - "LocalisedEventLongName": null, - "countrycode": 85, - "eventname": "nkomazi", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -15723,7 +15691,7 @@ }, "id": 1076, "properties": { - "EventLocation": "Bar Beach", + "EventLocation": "Dixon Park Beach boat ramp", "EventLongName": "The Beaches parkrun", "EventShortName": "The Beaches", "LocalisedEventLongName": null, @@ -16873,6 +16841,26 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + 22.024823, + -33.214602 + ], + "type": "Point" + }, + "id": 1216, + "properties": { + "EventLocation": "Odendaal Stadium", + "EventLongName": "Odendaal Stadium parkrun", + "EventShortName": "Odendaal Stadium", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "odendaalstadium", + "seriesid": 1 + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -17593,26 +17581,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - -7.904069, - 53.419271 - ], - "type": "Point" - }, - "id": 1272, - "properties": { - "EventLocation": "Athlone Institute of Technology", - "EventLongName": "Athlone parkrun", - "EventShortName": "Athlone", - "LocalisedEventLongName": null, - "countrycode": 42, - "eventname": "athlone", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -17713,6 +17681,26 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + -2.445683, + 52.671256 + ], + "type": "Point" + }, + "id": 1278, + "properties": { + "EventLocation": "Telford Town Park", + "EventLongName": "Telford junior parkrun", + "EventShortName": "Telford juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "telford-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -17793,26 +17781,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - 19.019956, - -33.681943 - ], - "type": "Point" - }, - "id": 1285, - "properties": { - "EventLocation": "Wellington", - "EventLongName": "Wellington parkrun", - "EventShortName": "Wellington", - "LocalisedEventLongName": null, - "countrycode": 85, - "eventname": "wellington", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -18653,26 +18621,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - -6.528707, - 53.348946 - ], - "type": "Point" - }, - "id": 1338, - "properties": { - "EventLocation": "Castletown House", - "EventLongName": "Castletown parkrun", - "EventShortName": "Castletown", - "LocalisedEventLongName": null, - "countrycode": 42, - "eventname": "castletown", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -20693,26 +20641,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - -5.914541, - 54.588264 - ], - "type": "Point" - }, - "id": 1458, - "properties": { - "EventLocation": "Ormeau Park", - "EventLongName": "Ormeau junior parkrun", - "EventShortName": "Ormeau juniors", - "LocalisedEventLongName": "Ormeau junior parkrun", - "countrycode": 97, - "eventname": "ormeau-juniors", - "seriesid": 2 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -21033,6 +20961,26 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + -2.104298, + 53.533022 + ], + "type": "Point" + }, + "id": 1488, + "properties": { + "EventLocation": "Alexandra Park", + "EventLongName": "Alexandra junior parkrun, Oldham", + "EventShortName": "Alexandra juniors, Oldham", + "LocalisedEventLongName": "Alexandra junior parkrun", + "countrycode": 97, + "eventname": "alexandra-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -22473,26 +22421,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - 0.554325, - 51.238375 - ], - "type": "Point" - }, - "id": 1621, - "properties": { - "EventLocation": "Park Wood", - "EventLongName": "Park Wood junior parkrun", - "EventShortName": "Park Wood juniors", - "LocalisedEventLongName": "Park Wood junior parkrun", - "countrycode": 97, - "eventname": "parkwood-juniors", - "seriesid": 2 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -23843,7 +23771,7 @@ }, "id": 1712, "properties": { - "EventLocation": "Fairview Wind Farm", + "EventLocation": "Fairview Park", "EventLongName": "Fairview parkrun", "EventShortName": "Fairview", "LocalisedEventLongName": null, @@ -26813,6 +26741,26 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + 28.776247, + -31.58678 + ], + "type": "Point" + }, + "id": 1897, + "properties": { + "EventLocation": "Mthatha Golf Course", + "EventLongName": "Mthatha parkrun", + "EventShortName": "Mthatha", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "mthatha", + "seriesid": 1 + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -28156,20 +28104,20 @@ { "geometry": { "coordinates": [ - -1.666806, - 53.592777 + 148.625881, + -36.41565 ], "type": "Point" }, - "id": 1991, + "id": 1990, "properties": { - "EventLocation": "Shelley College", - "EventLongName": "Shelley junior parkrun", - "EventShortName": "Shelley juniors", - "LocalisedEventLongName": "Shelley junior parkrun", - "countrycode": 97, - "eventname": "shelley-juniors", - "seriesid": 2 + "EventLocation": "Banjo Paterson Park", + "EventLongName": "Jindabyne parkrun", + "EventShortName": "Jindabyne", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "jindabyne", + "seriesid": 1 }, "type": "Feature" }, @@ -28353,26 +28301,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - -6.44471, - 53.343795 - ], - "type": "Point" - }, - "id": 2005, - "properties": { - "EventLocation": "Griffeen Valley Park", - "EventLongName": "Griffeen junior parkrun", - "EventShortName": "Griffeen juniors", - "LocalisedEventLongName": "Griffeen junior parkrun", - "countrycode": 42, - "eventname": "griffeen-juniors", - "seriesid": 2 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -28793,26 +28721,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - 25.151031, - -27.898445 - ], - "type": "Point" - }, - "id": 2035, - "properties": { - "EventLocation": "Christiana Golf Club", - "EventLongName": "Christiana parkrun", - "EventShortName": "Christiana", - "LocalisedEventLongName": null, - "countrycode": 85, - "eventname": "christiana", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -29296,8 +29204,8 @@ { "geometry": { "coordinates": [ - -1.867129, - 52.558505 + -1.844552, + 52.558716 ], "type": "Point" }, @@ -29853,26 +29761,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - -2.352992, - 50.985278 - ], - "type": "Point" - }, - "id": 2096, - "properties": { - "EventLocation": "Henstridge Airfield", - "EventLongName": "Henstridge Airfield parkrun", - "EventShortName": "Henstridge Airfield", - "LocalisedEventLongName": null, - "countrycode": 97, - "eventname": "henstridgeairfield", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -30353,26 +30241,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - 22.359425, - -31.479836 - ], - "type": "Point" - }, - "id": 2132, - "properties": { - "EventLocation": "Old Caravan Park", - "EventLongName": "Loxton parkrun", - "EventShortName": "Loxton", - "LocalisedEventLongName": null, - "countrycode": 85, - "eventname": "loxton", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -31273,6 +31141,26 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + -1.969309, + 52.751878 + ], + "type": "Point" + }, + "id": 2193, + "properties": { + "EventLocation": "Cannock Chase Forest", + "EventLongName": "Cannock Chase Forest junior parkrun", + "EventShortName": "Cannock Chase Forest juniors", + "LocalisedEventLongName": "Cannock Chase Forest junior parkrun", + "countrycode": 97, + "eventname": "cannockchaseforest-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -32253,6 +32141,26 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + 27.839921, + -26.731248 + ], + "type": "Point" + }, + "id": 2264, + "properties": { + "EventLocation": "Phoenix Park", + "EventLongName": "Phoenix Park parkrun", + "EventShortName": "Phoenix Park", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "phoenixpark", + "seriesid": 1 + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -33053,26 +32961,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - -79.232377, - 45.321961 - ], - "type": "Point" - }, - "id": 2319, - "properties": { - "EventLocation": "Avery Beach Park", - "EventLongName": "Avery Beach parkrun, Huntsville", - "EventShortName": "Avery Beach", - "LocalisedEventLongName": null, - "countrycode": 14, - "eventname": "averybeach", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -33893,26 +33781,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - 25.616605, - -32.155414 - ], - "type": "Point" - }, - "id": 2385, - "properties": { - "EventLocation": "Voortrekker Hall", - "EventLongName": "Cradock parkrun", - "EventShortName": "Cradock", - "LocalisedEventLongName": null, - "countrycode": 85, - "eventname": "cradock", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -34733,26 +34601,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - 22.755246, - -29.664619 - ], - "type": "Point" - }, - "id": 2443, - "properties": { - "EventLocation": "PrIeska Golf Course", - "EventLongName": "Prieska parkrun", - "EventShortName": "Prieska", - "LocalisedEventLongName": null, - "countrycode": 85, - "eventname": "prieska", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -35893,26 +35741,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - 22.219083, - 50.92469 - ], - "type": "Point" - }, - "id": 2517, - "properties": { - "EventLocation": "Park im. Jana Paw\u0142a II", - "EventLongName": "parkrun Park im. Jana Paw\u0142a II", - "EventShortName": "Park im. Jana Paw\u0142a II", - "LocalisedEventLongName": "parkrun Park im. Jana Paw\u0142a II", - "countrycode": 74, - "eventname": "parkimjanapawlaii", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -37224,7 +37052,7 @@ "id": 2603, "properties": { "EventLocation": "", - "EventLongName": "Stadspark parkrun", + "EventLongName": "Stadspark parkrun, Groningen", "EventShortName": "Stadspark", "LocalisedEventLongName": null, "countrycode": 64, @@ -38364,7 +38192,7 @@ "id": 2684, "properties": { "EventLocation": "", - "EventLongName": "Zuiderpark parkrun", + "EventLongName": "Zuiderpark parkrun, Den Haag", "EventShortName": "Zuiderpark", "LocalisedEventLongName": null, "countrycode": 64, @@ -39593,26 +39421,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - 146.149126, - -18.656953 - ], - "type": "Point" - }, - "id": 2778, - "properties": { - "EventLocation": "TYTO Wetlands", - "EventLongName": "TYTO Wetlands parkrun", - "EventShortName": "TYTO Wetlands", - "LocalisedEventLongName": null, - "countrycode": 3, - "eventname": "tytowetlands", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -41364,7 +41172,7 @@ "id": 2903, "properties": { "EventLocation": "Hamilton Park", - "EventLongName": "Hamilton Park parkrun", + "EventLongName": "Hamilton Park parkrun, Gore", "EventShortName": "Hamilton Park", "LocalisedEventLongName": null, "countrycode": 65, @@ -41613,26 +41421,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - -1.417387, - 52.25721 - ], - "type": "Point" - }, - "id": 2920, - "properties": { - "EventLocation": "Dallas Burston Polo Club", - "EventLongName": "Dallas Burston Polo Club parkrun", - "EventShortName": "Dallas Burston Polo Club", - "LocalisedEventLongName": null, - "countrycode": 97, - "eventname": "dallasburstonpoloclub", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -42573,26 +42361,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - 27.927476, - -25.753599 - ], - "type": "Point" - }, - "id": 2978, - "properties": { - "EventLocation": "Skemerberg Venue", - "EventLongName": "Skemerberg parkrun", - "EventShortName": "Skemerberg", - "LocalisedEventLongName": null, - "countrycode": 85, - "eventname": "skemerberg", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -43313,26 +43081,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - 144.670875, - -37.929679 - ], - "type": "Point" - }, - "id": 3026, - "properties": { - "EventLocation": "Werribee Park Mansion", - "EventLongName": "Werribee Park Mansion parkrun", - "EventShortName": "Werribee Park Mansion", - "LocalisedEventLongName": null, - "countrycode": 3, - "eventname": "werribeeparkmansion", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -43596,8 +43344,8 @@ { "geometry": { "coordinates": [ - 9.664673, - 50.543388 + 9.668586, + 50.550601 ], "type": "Point" }, @@ -44193,26 +43941,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - -7.575301, - 52.854318 - ], - "type": "Point" - }, - "id": 3073, - "properties": { - "EventLocation": "St Fergal\u2019s College", - "EventLongName": "St Fergal\u2019s College junior parkrun", - "EventShortName": "St Fergal\u2019s College juniors", - "LocalisedEventLongName": null, - "countrycode": 42, - "eventname": "stfergalscollege-juniors", - "seriesid": 2 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -45773,26 +45501,6 @@ }, "type": "Feature" }, - { - "geometry": { - "coordinates": [ - -61.505609, - 45.38438 - ], - "type": "Point" - }, - "id": 3166, - "properties": { - "EventLocation": "Guysborough Nature Trail", - "EventLongName": "Guysborough Nature Trail parkrun", - "EventShortName": "Guysborough Nature Trail", - "LocalisedEventLongName": null, - "countrycode": 14, - "eventname": "guysboroughnaturetrail", - "seriesid": 1 - }, - "type": "Feature" - }, { "geometry": { "coordinates": [ @@ -46453,6 +46161,26 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + 27.402783, + -32.886545 + ], + "type": "Point" + }, + "id": 3218, + "properties": { + "EventLocation": "Pirates Sport Club", + "EventLongName": "Pirates Sport Club parkrun", + "EventShortName": "Pirates Sport Club", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "piratessportclub", + "seriesid": 1 + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -46616,8 +46344,8 @@ { "geometry": { "coordinates": [ - 146.844099, - -36.316612 + 146.838391, + -36.316082 ], "type": "Point" }, @@ -46723,7 +46451,7 @@ }, "id": 3249, "properties": { - "EventLocation": "Wynyard Woodland", + "EventLocation": "Wynyard Woodland, Stockton-on-Tees", "EventLongName": "Wynyard Woodland parkrun", "EventShortName": "Wynyard Woodland", "LocalisedEventLongName": null, @@ -46973,6 +46701,26 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + 20.838376, + -34.392084 + ], + "type": "Point" + }, + "id": 3265, + "properties": { + "EventLocation": "Hopkins Land", + "EventLongName": "Hopkins Land parkrun", + "EventShortName": "Hopkins Land", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "hopkinsland", + "seriesid": 1 + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -47484,8 +47232,8 @@ "id": 3297, "properties": { "EventLocation": "Park Jana Paw\u0142a II", - "EventLongName": "parkrun Park Jana Paw\u0142a II, Ryman\u00f3w Zdr\u00f3j", - "EventShortName": "Park Jana Paw\u0142a II, Ryman\u00f3w Zdr\u00f3j", + "EventLongName": "parkrun Park Jana Paw\u0142a II, Ryman\u00f3w-Zdr\u00f3j", + "EventShortName": "Park Jana Paw\u0142a II, Ryman\u00f3w-Zdr\u00f3j", "LocalisedEventLongName": null, "countrycode": 74, "eventname": "parkjanapawlaiirymanowzdroj", @@ -47553,6 +47301,26 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + -0.886741, + 52.230017 + ], + "type": "Point" + }, + "id": 3303, + "properties": { + "EventLocation": "University of Northampton", + "EventLongName": "University of Northampton parkrun", + "EventShortName": "University of Northampton", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "universityofnorthampton", + "seriesid": 1 + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -47653,6 +47421,46 @@ }, "type": "Feature" }, + { + "geometry": { + "coordinates": [ + -1.189371, + 54.125471 + ], + "type": "Point" + }, + "id": 3310, + "properties": { + "EventLocation": "Millfield Park & Recreation Area", + "EventLongName": "Millfield junior parkrun", + "EventShortName": "Millfield juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "millfield-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 153.006603, + -25.915262 + ], + "type": "Point" + }, + "id": 3311, + "properties": { + "EventLocation": "Wes Mitchell Park", + "EventLongName": "Wes Mitchell Park parkrun", + "EventShortName": "Wes Mitchell Park", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "wesmitchellpark", + "seriesid": 1 + }, + "type": "Feature" + }, { "geometry": { "coordinates": [ @@ -47692,6 +47500,4606 @@ "seriesid": 1 }, "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -4.648047, + 52.073638 + ], + "type": "Point" + }, + "id": 3314, + "properties": { + "EventLocation": "Teifi Marshes Nature Reserve", + "EventLongName": "Teifi Marshes Nature Reserve parkrun", + "EventShortName": "Teifi Marshes Nature Reserve", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "teifimarshesnaturereserve", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.572397, + 55.190433 + ], + "type": "Point" + }, + "id": 3315, + "properties": { + "EventLocation": "Ashington Community Woodland", + "EventLongName": "Ashington Community Woodland parkrun", + "EventShortName": "Ashington Community Woodland", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "ashingtoncommunitywoodland", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -83.549324, + 42.437305 + ], + "type": "Point" + }, + "id": 3316, + "properties": { + "EventLocation": "ITC Community Sports Park", + "EventLongName": "ITC Community Sports parkrun", + "EventShortName": "ITC Community Sports", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "itccommunitysports", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.87384, + 53.539368 + ], + "type": "Point" + }, + "id": 3317, + "properties": { + "EventLocation": "Epworth Equestrian Centre", + "EventLongName": "Epworth Equestrian parkrun", + "EventShortName": "Epworth Equestrian", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "epworthequestrian", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -8.497105, + 51.880197 + ], + "type": "Point" + }, + "id": 3318, + "properties": { + "EventLocation": "Clashduv Park", + "EventLongName": "Clashduv junior parkrun", + "EventShortName": "Clashduv juniors", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "clashduv-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -8.235138, + 53.984878 + ], + "type": "Point" + }, + "id": 3319, + "properties": { + "EventLocation": "Lough Key Forest and Activity Park", + "EventLongName": "Lough Key junior parkrun", + "EventShortName": "Lough Key juniors", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "loughkey-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 153.059891, + -26.738409 + ], + "type": "Point" + }, + "id": 3321, + "properties": { + "EventLocation": "Harmony Boulevard Park", + "EventLongName": "Harmony Boulevard parkrun", + "EventShortName": "Harmony Boulevard", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "harmonyboulevard", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -63.286367, + 45.711271 + ], + "type": "Point" + }, + "id": 3322, + "properties": { + "EventLocation": "", + "EventLongName": "Butter Trail parkrun", + "EventShortName": "Butter Trail", + "LocalisedEventLongName": null, + "countrycode": 14, + "eventname": "buttertrail", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 29.964782, + -27.79113 + ], + "type": "Point" + }, + "id": 3323, + "properties": { + "EventLocation": "Rooi Point Farm", + "EventLongName": "Rooi Point Farm parkrun", + "EventShortName": "Rooi Point Farm", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "rooipointfarm", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 1.313027, + 51.119994 + ], + "type": "Point" + }, + "id": 3324, + "properties": { + "EventLocation": "Dover Waterfront", + "EventLongName": "Dover Waterfront parkrun", + "EventShortName": "Dover Waterfront", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "doverwaterfront", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.509052, + 52.439154 + ], + "type": "Point" + }, + "id": 3326, + "properties": { + "EventLocation": "Holbrooks Park", + "EventLongName": "Holbrooks parkrun", + "EventShortName": "Holbrooks", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "holbrooks", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 1.19393, + 52.029965 + ], + "type": "Point" + }, + "id": 3327, + "properties": { + "EventLocation": "Ravenswood Community Primary School", + "EventLongName": "Ravenswood Primary School junior parkrun", + "EventShortName": "Ravenswood Primary School juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "ravenswoodprimaryschool-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -9.130145, + 51.718744 + ], + "type": "Point" + }, + "id": 3328, + "properties": { + "EventLocation": "Dromlena Lawn Racecourse", + "EventLongName": "Dromlena Lawn junior parkrun", + "EventShortName": "Dromlena Lawn juniors", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "dromlenalawn-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -57.937618, + 48.944105 + ], + "type": "Point" + }, + "id": 3329, + "properties": { + "EventLocation": "", + "EventLongName": "Corner Brook Stream Trail parkrun", + "EventShortName": "Corner Brook Stream Trail", + "LocalisedEventLongName": null, + "countrycode": 14, + "eventname": "cornerbrookstreamtrail", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 30.844828, + -29.832074 + ], + "type": "Point" + }, + "id": 3330, + "properties": { + "EventLocation": "Red Point Church", + "EventLongName": "Red Point Church parkrun", + "EventShortName": "Red Point Church", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "redpointchurch", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 30.472345, + -29.684661 + ], + "type": "Point" + }, + "id": 3331, + "properties": { + "EventLocation": "Lynnfield Park", + "EventLongName": "Lynnfield parkrun", + "EventShortName": "Lynnfield", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "lynnfield", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 29.455077, + -25.670437 + ], + "type": "Point" + }, + "id": 3332, + "properties": { + "EventLocation": "Lavender Mill", + "EventLongName": "Lavender Mill parkrun", + "EventShortName": "Lavender Mill", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "lavendermill", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 28.179186, + -25.654647 + ], + "type": "Point" + }, + "id": 3333, + "properties": { + "EventLocation": "Onderstepoort Campus", + "EventLongName": "Onderstepoort Campus parkrun", + "EventShortName": "Onderstepoort Campus", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "onderstepoortcampus", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.538198, + 51.614631 + ], + "type": "Point" + }, + "id": 3334, + "properties": { + "EventLocation": "Aberfields", + "EventLongName": "Aberfields parkrun", + "EventShortName": "Aberfields", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "aberfields", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 114.15228, + -27.733275 + ], + "type": "Point" + }, + "id": 3335, + "properties": { + "EventLocation": "Jakes Point Lookout", + "EventLongName": "Jakes Point parkrun", + "EventShortName": "Jakes Point", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "jakespoint", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -76.806334, + 42.100364 + ], + "type": "Point" + }, + "id": 3336, + "properties": { + "EventLocation": "Lackawanna Rail Trail", + "EventLongName": "Lackawanna Rail Trail parkrun", + "EventShortName": "Lackawanna Rail Trail", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "lackawannarailtrail", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 0.166294, + 52.666891 + ], + "type": "Point" + }, + "id": 3337, + "properties": { + "EventLocation": "Wisbech Park", + "EventLongName": "Wisbech parkrun", + "EventShortName": "Wisbech", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "wisbech", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -115.358215, + 51.081714 + ], + "type": "Point" + }, + "id": 3338, + "properties": { + "EventLocation": "", + "EventLongName": "Millennium parkrun", + "EventShortName": "Millennium", + "LocalisedEventLongName": null, + "countrycode": 14, + "eventname": "millennium", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.31303, + 57.653727 + ], + "type": "Point" + }, + "id": 3339, + "properties": { + "EventLocation": "Cooper Park", + "EventLongName": "Cooper Park junior parkrun", + "EventShortName": "Cooper Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "cooperpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -4.217883, + 53.202361 + ], + "type": "Point" + }, + "id": 3340, + "properties": { + "EventLocation": "Plas Newydd House and Garden", + "EventLongName": "Plas Newydd junior parkrun", + "EventShortName": "Plas Newydd juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "plasnewydd-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.6042, + 54.261285 + ], + "type": "Point" + }, + "id": 3341, + "properties": { + "EventLocation": "Thorp Perrow", + "EventLongName": "Thorp Perrow parkrun", + "EventShortName": "Thorp Perrow", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "thorpperrow", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 117.366188, + -34.968285 + ], + "type": "Point" + }, + "id": 3342, + "properties": { + "EventLocation": "Wilson Inlet Heritage Trail", + "EventLongName": "Wilson Inlet Heritage Trail parkrun", + "EventShortName": "Wilson Inlet Heritage Trail", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "wilsoninletheritagetrail", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 18.885872, + -32.173377 + ], + "type": "Point" + }, + "id": 3343, + "properties": { + "EventLocation": "Velskoendraai Farmstall & Restaurant", + "EventLongName": "Velskoendraai parkrun", + "EventShortName": "Velskoendraai", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "velskoendraai", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 31.032903, + -29.591575 + ], + "type": "Point" + }, + "id": 3344, + "properties": { + "EventLocation": "Hazelmere Dam & Resort", + "EventLongName": "Hazelmere Dam parkrun", + "EventShortName": "Hazelmere Dam", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "hazelmeredam", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 24.695644, + -29.983414 + ], + "type": "Point" + }, + "id": 3346, + "properties": { + "EventLocation": "Lieberwalt Farm", + "EventLongName": "Lieberwalt Farm parkrun", + "EventShortName": "Lieberwalt Farm", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "lieberwaltfarm", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.99217, + 51.355501 + ], + "type": "Point" + }, + "id": 3347, + "properties": { + "EventLocation": "Quakers Walk", + "EventLongName": "Quakers Walk parkrun", + "EventShortName": "Quakers Walk", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "quakerswalk", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 8.120962, + 49.183932 + ], + "type": "Point" + }, + "id": 3348, + "properties": { + "EventLocation": "Ebenberg", + "EventLongName": "Ebenberg parkrun", + "EventShortName": "Ebenberg", + "LocalisedEventLongName": null, + "countrycode": 32, + "eventname": "ebenberg", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -113.979312, + 50.722089 + ], + "type": "Point" + }, + "id": 3349, + "properties": { + "EventLocation": "", + "EventLongName": "Sheep River parkrun", + "EventShortName": "Sheep River", + "LocalisedEventLongName": null, + "countrycode": 14, + "eventname": "sheepriver", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.751774, + 51.430594 + ], + "type": "Point" + }, + "id": 3350, + "properties": { + "EventLocation": "Golden Valley Playing Field", + "EventLongName": "Golden Valley Playing Field junior parkrun", + "EventShortName": "Golden Valley Playing Field juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "goldenvalleyplayingfield-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 5.863624, + 50.989588 + ], + "type": "Point" + }, + "id": 3351, + "properties": { + "EventLocation": "", + "EventLongName": "Stadspark parkrun, Sittard", + "EventShortName": "Stadspark, Sittard", + "LocalisedEventLongName": null, + "countrycode": 64, + "eventname": "stadsparksittard", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.208328, + 51.702931 + ], + "type": "Point" + }, + "id": 3352, + "properties": { + "EventLocation": "Furzefield Leisure Centre", + "EventLongName": "Furzefield Leisure Centre junior parkrun", + "EventShortName": "Furzefield Leisure Centre juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "furzefieldleisurecentre-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.644542, + 56.033364 + ], + "type": "Point" + }, + "id": 3353, + "properties": { + "EventLocation": "Whitekirk Hill", + "EventLongName": "Whitekirk Hill parkrun", + "EventShortName": "Whitekirk Hill", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "whitekirkhill", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.388267, + 54.357004 + ], + "type": "Point" + }, + "id": 3354, + "properties": { + "EventLocation": "Muncaster Castle", + "EventLongName": "Muncaster Castle parkrun", + "EventShortName": "Muncaster Castle", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "muncastercastle", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.387605, + 54.873987 + ], + "type": "Point" + }, + "id": 3355, + "properties": { + "EventLocation": "Silloth Promenade", + "EventLongName": "Silloth Promenade parkrun", + "EventShortName": "Silloth Promenade", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "sillothpromenade", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 17.547966, + 52.334392 + ], + "type": "Point" + }, + "id": 3356, + "properties": { + "EventLocation": "Zalew Wrzesi\u0144ski", + "EventLongName": "parkrun Zalew Wrzesi\u0144ski", + "EventShortName": "Zalew Wrzesi\u0144ski", + "LocalisedEventLongName": null, + "countrycode": 74, + "eventname": "zalewwrzesinski", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 15.324597, + 51.612815 + ], + "type": "Point" + }, + "id": 3357, + "properties": { + "EventLocation": "Pa\u0142ac Ksi\u0105\u017c\u0119cy", + "EventLongName": "parkrun Pa\u0142ac Ksi\u0105\u017c\u0119cy", + "EventShortName": "Pa\u0142ac Ksi\u0105\u017c\u0119cy", + "LocalisedEventLongName": null, + "countrycode": 74, + "eventname": "palacksiazecy", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -120.336451, + 50.678505 + ], + "type": "Point" + }, + "id": 3358, + "properties": { + "EventLocation": "", + "EventLongName": "Riverside parkrun, Kamloops", + "EventShortName": "Riverside, Kamloops", + "LocalisedEventLongName": null, + "countrycode": 14, + "eventname": "riversidekamloops", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.007122, + 51.432132 + ], + "type": "Point" + }, + "id": 3359, + "properties": { + "EventLocation": "Forster Memorial Park", + "EventLongName": "Forster Memorial Park junior parkrun", + "EventShortName": "Forster Memorial Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "forstermemorialpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.289921, + 53.604665 + ], + "type": "Point" + }, + "id": 3360, + "properties": { + "EventLocation": "Clarence Park", + "EventLongName": "Clarence parkrun", + "EventShortName": "Clarence", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "clarence", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.408816, + 52.696067 + ], + "type": "Point" + }, + "id": 3361, + "properties": { + "EventLocation": "Sence Valley Forest Park", + "EventLongName": "Sence Valley Forest Park parkrun", + "EventShortName": "Sence Valley Forest Park", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "sencevalleyforestpark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.452787, + 51.292354 + ], + "type": "Point" + }, + "id": 3362, + "properties": { + "EventLocation": "Norton-Radstock Greenway", + "EventLongName": "Five Arches parkrun", + "EventShortName": "Five Arches", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "fivearches", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.942842, + 52.477393 + ], + "type": "Point" + }, + "id": 3363, + "properties": { + "EventLocation": "Edgbaston Reservoir", + "EventLongName": "Edgbaston Reservoir junior parkrun", + "EventShortName": "Edgbaston Reservoir juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "edgbastonreservoir-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.889525, + 53.567433 + ], + "type": "Point" + }, + "id": 3364, + "properties": { + "EventLocation": "Coronation Park", + "EventLongName": "Coronation Park junior parkrun", + "EventShortName": "Coronation Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "coronationpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 15.442919, + 47.075123 + ], + "type": "Point" + }, + "id": 3365, + "properties": { + "EventLocation": "", + "EventLongName": "Stadtpark parkrun, Graz", + "EventShortName": "Stadtpark, Graz", + "LocalisedEventLongName": null, + "countrycode": 4, + "eventname": "stadtparkgraz", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 5.873083, + 53.214822 + ], + "type": "Point" + }, + "id": 3366, + "properties": { + "EventLocation": "", + "EventLongName": "Groene Ster parkrun", + "EventShortName": "Groene Ster", + "LocalisedEventLongName": null, + "countrycode": 64, + "eventname": "groenester", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 8.664843, + 49.401453 + ], + "type": "Point" + }, + "id": 3367, + "properties": { + "EventLocation": "", + "EventLongName": "Bahnstadt Promenade parkrun", + "EventShortName": "Bahnstadt Promenade", + "LocalisedEventLongName": null, + "countrycode": 32, + "eventname": "bahnstadtpromenade", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 140.19929, + 35.748798 + ], + "type": "Point" + }, + "id": 3368, + "properties": { + "EventLocation": "Sunset Hills Shitasanbashi", + "EventLongName": "Sunset Hills Shitasanbashi parkrun", + "EventShortName": "Sunset Hills Shitasanbashi", + "LocalisedEventLongName": "\u30b5\u30f3\u30bb\u30c3\u30c8\u30d2\u30eb\u30ba\u4e0b\u685f\u6a4bparkrun", + "countrycode": 46, + "eventname": "sunsethillsshitasanbashi", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 19.874557, + 50.076997 + ], + "type": "Point" + }, + "id": 3369, + "properties": { + "EventLocation": "M\u0142yn\u00f3wka Kr\u00f3lewska", + "EventLongName": "parkrun M\u0142yn\u00f3wka Kr\u00f3lewska", + "EventShortName": "M\u0142yn\u00f3wka Kr\u00f3lewska", + "LocalisedEventLongName": null, + "countrycode": 74, + "eventname": "mlynowkakrolewska", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -7.178233, + 52.251535 + ], + "type": "Point" + }, + "id": 3370, + "properties": { + "EventLocation": "SETU Arena West Campus", + "EventLongName": "SETU Arena parkrun", + "EventShortName": "SETU Arena", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "setuarena", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.43856, + 53.679399 + ], + "type": "Point" + }, + "id": 3371, + "properties": { + "EventLocation": "Baysgarth Park", + "EventLongName": "Baysgarth Park parkrun", + "EventShortName": "Baysgarth Park", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "baysgarthpark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 1.28857, + 52.644457 + ], + "type": "Point" + }, + "id": 3372, + "properties": { + "EventLocation": "Waterloo Park", + "EventLongName": "Waterloo Park junior parkrun", + "EventShortName": "Waterloo Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "waterloopark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.695214, + 52.630232 + ], + "type": "Point" + }, + "id": 3373, + "properties": { + "EventLocation": "Tamworth Castle Grounds", + "EventLongName": "Tamworth Castle Grounds parkrun", + "EventShortName": "Tamworth Castle Grounds", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "tamworthcastlegrounds", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.763594, + 53.421158 + ], + "type": "Point" + }, + "id": 3374, + "properties": { + "EventLocation": "Thonock Lane Farm", + "EventLongName": "Thonock Lane Farm parkrun", + "EventShortName": "Thonock Lane Farm", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "thonocklanefarm", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 145.124768, + -37.018279 + ], + "type": "Point" + }, + "id": 3375, + "properties": { + "EventLocation": "Goulburn River Trail, Seymour", + "EventLongName": "Goulburn River Trail parkrun, Seymour", + "EventShortName": "Goulburn River Trail, Seymour", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "goulburnrivertrailseymour", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 150.677378, + -32.404772 + ], + "type": "Point" + }, + "id": 3376, + "properties": { + "EventLocation": "Two Rivers Wines", + "EventLongName": "Two Rivers Wines parkrun", + "EventShortName": "Two Rivers Wines", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "tworiverswines", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.69437, + 53.68129 + ], + "type": "Point" + }, + "id": 3378, + "properties": { + "EventLocation": "Worden Park", + "EventLongName": "Worden parkrun", + "EventShortName": "Worden", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "worden", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.836911, + 52.68539 + ], + "type": "Point" + }, + "id": 3379, + "properties": { + "EventLocation": "Beacon juniors", + "EventLongName": "Beacon junior parkrun", + "EventShortName": "Beacon juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "beacon-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 21.733285, + 50.655615 + ], + "type": "Point" + }, + "id": 3380, + "properties": { + "EventLocation": "Port Rzeczny Sandomierz", + "EventLongName": "parkrun Port Rzeczny Sandomierz", + "EventShortName": "Port Rzeczny Sandomierz", + "LocalisedEventLongName": null, + "countrycode": 74, + "eventname": "portrzecznysandomierz", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.705317, + 52.294379 + ], + "type": "Point" + }, + "id": 3381, + "properties": { + "EventLocation": "Croyland Park juniors", + "EventLongName": "Croyland Park junior parkrun", + "EventShortName": "Croyland Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "croylandpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -122.627926, + 45.379698 + ], + "type": "Point" + }, + "id": 3382, + "properties": { + "EventLocation": "Mary S. Young", + "EventLongName": "Mary S. Young parkrun", + "EventShortName": "Mary S. Young", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "marysyoung", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.927163, + 54.934903 + ], + "type": "Point" + }, + "id": 3383, + "properties": { + "EventLocation": "Carlingwark Loch", + "EventLongName": "Carlingwark Loch parkrun", + "EventShortName": "Carlingwark Loch", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "carlingwarkloch", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 5.339595, + 51.686449 + ], + "type": "Point" + }, + "id": 3384, + "properties": { + "EventLocation": "Oosterplas", + "EventLongName": "Oosterplas parkrun", + "EventShortName": "Oosterplas", + "LocalisedEventLongName": null, + "countrycode": 64, + "eventname": "oosterplas", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.127035, + 52.075981 + ], + "type": "Point" + }, + "id": 3385, + "properties": { + "EventLocation": "Riverside Walk", + "EventLongName": "Riverside Walk parkrun", + "EventShortName": "Riverside Walk", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "riversidewalk", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -9.864883, + 52.27694 + ], + "type": "Point" + }, + "id": 3386, + "properties": { + "EventLocation": "Fenit Greenway", + "EventLongName": "Fenit Greenway parkrun", + "EventShortName": "Fenit Greenway", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "fenitgreenway", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 30.785555, + -29.757599 + ], + "type": "Point" + }, + "id": 3387, + "properties": { + "EventLocation": "Fig Tree", + "EventLongName": "Fig Tree parkrun", + "EventShortName": "Fig Tree", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "figtree", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 174.713764, + -36.728682 + ], + "type": "Point" + }, + "id": 3388, + "properties": { + "EventLocation": "Northern Pathway", + "EventLongName": "Northern Pathway parkrun", + "EventShortName": "Northern Pathway", + "LocalisedEventLongName": null, + "countrycode": 65, + "eventname": "northernpathway", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 0.476741, + 50.918824 + ], + "type": "Point" + }, + "id": 3389, + "properties": { + "EventLocation": "Battle Recreation Ground juniors", + "EventLongName": "Battle Recreation Ground junior parkrun", + "EventShortName": "Battle Recreation Ground juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "battlerecreationground-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 152.654475, + -31.885091 + ], + "type": "Point" + }, + "id": 3390, + "properties": { + "EventLocation": "Dhunggaarr Reserve", + "EventLongName": "Dhunggaarr Reserve parkrun", + "EventShortName": "Dhunggaarr Reserve", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "dhunggaarrreserve", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 28.217276, + -26.103947 + ], + "type": "Point" + }, + "id": 3391, + "properties": { + "EventLocation": "Zuurfontein", + "EventLongName": "Zuurfontein parkrun", + "EventShortName": "Zuurfontein", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "zuurfontein", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.311522, + 53.44842 + ], + "type": "Point" + }, + "id": 3392, + "properties": { + "EventLocation": "Victoria juniors, Stretford", + "EventLongName": "Victoria junior parkrun, Stretford", + "EventShortName": "Victoria juniors, Stretford", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "victoriastretford-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.234852, + 54.564844 + ], + "type": "Point" + }, + "id": 3393, + "properties": { + "EventLocation": "Albert Park juniors", + "EventLongName": "Albert Park junior parkrun", + "EventShortName": "Albert Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "albertpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.219602, + 52.180949 + ], + "type": "Point" + }, + "id": 3394, + "properties": { + "EventLocation": "Diglis Fields juniors", + "EventLongName": "Diglis Fields junior parkrun", + "EventShortName": "Diglis Fields juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "diglisfields-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.317858, + 51.364375 + ], + "type": "Point" + }, + "id": 3395, + "properties": { + "EventLocation": "Lovelace Primary School juniors", + "EventLongName": "Lovelace Primary School junior parkrun", + "EventShortName": "Lovelace Primary School juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "lovelaceprimaryschool-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 30.987455, + -25.732858 + ], + "type": "Point" + }, + "id": 3396, + "properties": { + "EventLocation": "Aronica\u2019s Nursery", + "EventLongName": "Aronica\u2019s Nursery parkrun", + "EventShortName": "Aronica\u2019s Nursery", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "aronicasnursery", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 132.254944, + -14.482484 + ], + "type": "Point" + }, + "id": 3398, + "properties": { + "EventLocation": "Katherine Hot Springs", + "EventLongName": "Katherine Hot Springs parkrun", + "EventShortName": "Katherine Hot Springs", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "katherinehotsprings", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.324982, + 53.69812 + ], + "type": "Point" + }, + "id": 3399, + "properties": { + "EventLocation": "Victoria Park juniors, Haslingden", + "EventLongName": "Victoria Park junior parkrun, Haslingden", + "EventShortName": "Victoria Park juniors, Haslingden", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "victoriaparkhaslingden-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 22.110286, + -34.192672 + ], + "type": "Point" + }, + "id": 3400, + "properties": { + "EventLocation": "Curro Mossel Bay School", + "EventLongName": "Curro Mossel Bay School parkrun", + "EventShortName": "Curro Mossel Bay School", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "curromosselbayschool", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 31.451233, + -28.891922 + ], + "type": "Point" + }, + "id": 3401, + "properties": { + "EventLocation": "Dlinza Forest", + "EventLongName": "Dlinza Forest parkrun", + "EventShortName": "Dlinza Forest", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "dlinzaforest", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -9.07094, + 53.291747 + ], + "type": "Point" + }, + "id": 3402, + "properties": { + "EventLocation": "University of Galway", + "EventLongName": "University of Galway parkrun", + "EventShortName": "University of Galway", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "universityofgalway", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.683952, + 52.78924 + ], + "type": "Point" + }, + "id": 3403, + "properties": { + "EventLocation": "Battlestead Croft", + "EventLongName": "Battlestead Croft parkrun", + "EventShortName": "Battlestead Croft", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "battlesteadcroft", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.335302, + 52.065971 + ], + "type": "Point" + }, + "id": 3404, + "properties": { + "EventLocation": "Spiceball Country Park juniors", + "EventLongName": "Spiceball Country Park junior parkrun", + "EventShortName": "Spiceball Country Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "spiceballcountrypark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 115.112646, + -33.615733 + ], + "type": "Point" + }, + "id": 3405, + "properties": { + "EventLocation": "Centennial Park, Dunsborough", + "EventLongName": "Centennial Park parkrun, Dunsborough", + "EventShortName": "Centennial Park, Dunsborough", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "centennialparkdunsborough", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 138.636344, + -35.011616 + ], + "type": "Point" + }, + "id": 3406, + "properties": { + "EventLocation": "Belair National Park", + "EventLongName": "Belair National Park parkrun", + "EventShortName": "Belair National Park", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "belairnationalpark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 146.161677, + -18.651491 + ], + "type": "Point" + }, + "id": 3407, + "properties": { + "EventLocation": "Palm Creek", + "EventLongName": "Palm Creek parkrun", + "EventShortName": "Palm Creek", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "palmcreek", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 133.889721, + 34.652951 + ], + "type": "Point" + }, + "id": 3408, + "properties": { + "EventLocation": "Kitanagase Mirai Fureai Sogokoen", + "EventLongName": "Kitanagase Mirai Fureai Sogokoen parkrun", + "EventShortName": "Kitanagase Mirai Fureai Sogokoen", + "LocalisedEventLongName": "\u5317\u9577\u702c\u672a\u6765\u3075\u308c\u3042\u3044\u7dcf\u5408\u516c\u5712parkrun", + "countrycode": 46, + "eventname": "kitanagasemiraifureaisogokoen", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.331033, + 51.82316 + ], + "type": "Point" + }, + "id": 3409, + "properties": { + "EventLocation": "Katherine Warington School juniors", + "EventLongName": "Katherine Warington School junior parkrun", + "EventShortName": "Katherine Warington School juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "katherinewaringtonschool-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 29.114952, + -25.867359 + ], + "type": "Point" + }, + "id": 3410, + "properties": { + "EventLocation": "Mapule Sindane School", + "EventLongName": "Mapule Sindane School parkrun", + "EventShortName": "Mapule Sindane School", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "mapulesindaneschool", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 7.609343, + 50.360641 + ], + "type": "Point" + }, + "id": 3411, + "properties": { + "EventLocation": "Ehrenbreitstein", + "EventLongName": "Ehrenbreitstein parkrun", + "EventShortName": "Ehrenbreitstein", + "LocalisedEventLongName": null, + "countrycode": 32, + "eventname": "ehrenbreitstein", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 4.686521, + 52.141498 + ], + "type": "Point" + }, + "id": 3412, + "properties": { + "EventLocation": "Zegerplas", + "EventLongName": "Zegerplas parkrun", + "EventShortName": "Zegerplas", + "LocalisedEventLongName": null, + "countrycode": 64, + "eventname": "zegerplas", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.446852, + 53.368694 + ], + "type": "Point" + }, + "id": 3413, + "properties": { + "EventLocation": "Norfolk Heritage Park juniors", + "EventLongName": "Norfolk Heritage Park junior parkrun", + "EventShortName": "Norfolk Heritage Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "norfolkheritagepark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -8.296732, + 51.839412 + ], + "type": "Point" + }, + "id": 3414, + "properties": { + "EventLocation": "Haulbowline Island juniors", + "EventLongName": "Haulbowline Island junior parkrun", + "EventShortName": "Haulbowline Island juniors", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "haulbowlineisland-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -6.223074, + 54.715944 + ], + "type": "Point" + }, + "id": 3415, + "properties": { + "EventLocation": "Antrim Castle Gardens juniors", + "EventLongName": "Antrim Castle Gardens junior parkrun", + "EventShortName": "Antrim Castle Gardens juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "antrimcastlegardens-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -7.296192, + 54.602896 + ], + "type": "Point" + }, + "id": 3416, + "properties": { + "EventLocation": "Omagh Leisure Complex juniors", + "EventLongName": "Omagh Leisure Complex junior parkrun", + "EventShortName": "Omagh Leisure Complex juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "omaghleisurecomplex-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -6.612024, + 54.535774 + ], + "type": "Point" + }, + "id": 3417, + "properties": { + "EventLocation": "Washingbay Wetlands juniors", + "EventLongName": "Washingbay Wetlands junior parkrun", + "EventShortName": "Washingbay Wetlands juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "washingbaywetlands-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.009344, + 52.556155 + ], + "type": "Point" + }, + "id": 3418, + "properties": { + "EventLocation": "Brunswick Park", + "EventLongName": "Brunswick Park parkrun", + "EventShortName": "Brunswick Park", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "brunswickpark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -5.935997, + 54.565868 + ], + "type": "Point" + }, + "id": 3419, + "properties": { + "EventLocation": "Belfast YMCA juniors", + "EventLongName": "Belfast YMCA junior parkrun", + "EventShortName": "Belfast YMCA juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "belfastymca-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 6.483571, + 52.711018 + ], + "type": "Point" + }, + "id": 3420, + "properties": { + "EventLocation": "Zuiderpark, Hoogeveen", + "EventLongName": "Zuiderpark parkrun, Hoogeveen", + "EventShortName": "Zuiderpark, Hoogeveen", + "LocalisedEventLongName": null, + "countrycode": 64, + "eventname": "zuiderparkhoogeveen", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 6.084436, + 50.785869 + ], + "type": "Point" + }, + "id": 3421, + "properties": { + "EventLocation": "Lousberg", + "EventLongName": "Lousberg parkrun", + "EventShortName": "Lousberg", + "LocalisedEventLongName": null, + "countrycode": 32, + "eventname": "lousberg", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -7.321047, + 54.382383 + ], + "type": "Point" + }, + "id": 3422, + "properties": { + "EventLocation": "Round Lake juniors", + "EventLongName": "Round Lake junior parkrun", + "EventShortName": "Round Lake juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "roundlake-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.523837, + 50.803727 + ], + "type": "Point" + }, + "id": 3423, + "properties": { + "EventLocation": "Mewsbrook juniors", + "EventLongName": "Mewsbrook junior parkrun", + "EventShortName": "Mewsbrook juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "mewsbrook-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 143.988093, + -38.233939 + ], + "type": "Point" + }, + "id": 3424, + "properties": { + "EventLocation": "Trebeck Reserve", + "EventLongName": "Trebeck Reserve parkrun", + "EventShortName": "Trebeck Reserve", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "trebeckreserve", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 0.539226, + 51.264913 + ], + "type": "Point" + }, + "id": 3425, + "properties": { + "EventLocation": "Mote Park juniors", + "EventLongName": "Mote Park junior parkrun", + "EventShortName": "Mote Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "motepark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 146.393936, + -36.000667 + ], + "type": "Point" + }, + "id": 3426, + "properties": { + "EventLocation": "Ball Park", + "EventLongName": "Ball Park parkrun", + "EventShortName": "Ball Park", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "ballpark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 6.883689, + 52.22753 + ], + "type": "Point" + }, + "id": 3427, + "properties": { + "EventLocation": "van Heekpark", + "EventLongName": "van Heekpark parkrun", + "EventShortName": "van Heekpark", + "LocalisedEventLongName": null, + "countrycode": 64, + "eventname": "vanheekpark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 145.322678, + -41.889891 + ], + "type": "Point" + }, + "id": 3428, + "properties": { + "EventLocation": "Zeehan Golf Club", + "EventLongName": "Zeehan Golf Club parkrun", + "EventShortName": "Zeehan Golf Club", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "zeehangolfclub", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.220709, + 51.774268 + ], + "type": "Point" + }, + "id": 3429, + "properties": { + "EventLocation": "Birchwood Leisure Centre juniors", + "EventLongName": "Birchwood Leisure Centre junior parkrun", + "EventShortName": "Birchwood Leisure Centre juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "birchwoodleisurecentre-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -6.236935, + 53.678586 + ], + "type": "Point" + }, + "id": 3430, + "properties": { + "EventLocation": "Laytown Beach", + "EventLongName": "Laytown Beach parkrun", + "EventShortName": "Laytown Beach", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "laytownbeach", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.59309, + 51.486172 + ], + "type": "Point" + }, + "id": 3431, + "properties": { + "EventLocation": "Horfield Common juniors", + "EventLongName": "Horfield Common junior parkrun", + "EventShortName": "Horfield Common juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "horfieldcommon-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -8.447696, + 54.262257 + ], + "type": "Point" + }, + "id": 3432, + "properties": { + "EventLocation": "Cleveragh juniors", + "EventLongName": "Cleveragh junior parkrun", + "EventShortName": "Cleveragh juniors", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "cleveragh-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 0.300462, + 51.446948 + ], + "type": "Point" + }, + "id": 3434, + "properties": { + "EventLocation": "Swanscombe Heritage Park juniors", + "EventLongName": "Swanscombe Heritage Park junior parkrun", + "EventShortName": "Swanscombe Heritage Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "swanscombeheritagepark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.025046, + 51.94983 + ], + "type": "Point" + }, + "id": 3435, + "properties": { + "EventLocation": "Norfolk Road Playing Fields juniors ", + "EventLongName": "Norfolk Road Playing Fields junior parkrun", + "EventShortName": "Norfolk Road Playing Fields juniors ", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "norfolkroadplayingfields-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 153.039406, + -27.233548 + ], + "type": "Point" + }, + "id": 3436, + "properties": { + "EventLocation": "Capestone Lake", + "EventLongName": "Capestone Lake parkrun", + "EventShortName": "Capestone Lake", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "capestonelake", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 8.49073, + 49.174065 + ], + "type": "Point" + }, + "id": 3437, + "properties": { + "EventLocation": "Prestelsee", + "EventLongName": "Prestelsee parkrun", + "EventShortName": "Prestelsee", + "LocalisedEventLongName": null, + "countrycode": 32, + "eventname": "prestelsee", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 19.132696, + -34.346162 + ], + "type": "Point" + }, + "id": 3438, + "properties": { + "EventLocation": "Benguela Cove", + "EventLongName": "Benguela Cove parkrun", + "EventShortName": "Benguela Cove", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "benguelacove", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -8.748937, + 54.051656 + ], + "type": "Point" + }, + "id": 3439, + "properties": { + "EventLocation": "Tubbercurry Trail", + "EventLongName": "Tubbercurry Trail parkrun", + "EventShortName": "Tubbercurry Trail", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "tubbercurrytrail", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.164, + 53.623457 + ], + "type": "Point" + }, + "id": 3440, + "properties": { + "EventLocation": "Falinge Park juniors", + "EventLongName": "Falinge Park junior parkrun", + "EventShortName": "Falinge Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "falingepark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.620993, + 51.442898 + ], + "type": "Point" + }, + "id": 3441, + "properties": { + "EventLocation": "Greville Smyth Park juniors", + "EventLongName": "Greville Smyth Park junior parkrun", + "EventShortName": "Greville Smyth Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "grevillesmythpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -71.213684, + 42.294685 + ], + "type": "Point" + }, + "id": 3442, + "properties": { + "EventLocation": "Cutler Park", + "EventLongName": "Cutler Park parkrun", + "EventShortName": "Cutler Park", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "cutlerpark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.377121, + 51.740891 + ], + "type": "Point" + }, + "id": 3443, + "properties": { + "EventLocation": "Merthyr Leisure Village juniors", + "EventLongName": "Merthyr Leisure Village junior parkrun", + "EventShortName": "Merthyr Leisure Village juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "merthyrleisurevillage-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 176.119443, + -37.687581 + ], + "type": "Point" + }, + "id": 3444, + "properties": { + "EventLocation": "Gordon Carmichael Reserve", + "EventLongName": "Gordon Carmichael Reserve parkrun", + "EventShortName": "Gordon Carmichael Reserve", + "LocalisedEventLongName": null, + "countrycode": 65, + "eventname": "gordoncarmichaelreserve", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -5.899066, + 54.393274 + ], + "type": "Point" + }, + "id": 3445, + "properties": { + "EventLocation": "Montalto Estate", + "EventLongName": "Montalto Estate parkrun", + "EventShortName": "Montalto Estate", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "montaltoestate", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.088633, + 51.066755 + ], + "type": "Point" + }, + "id": 3446, + "properties": { + "EventLocation": "Wakehurst", + "EventLongName": "Wakehurst parkrun", + "EventShortName": "Wakehurst", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "wakehurst", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 172.769775, + -43.57302 + ], + "type": "Point" + }, + "id": 3447, + "properties": { + "EventLocation": "Scarborough", + "EventLongName": "Scarborough parkrun", + "EventShortName": "Scarborough", + "LocalisedEventLongName": null, + "countrycode": 65, + "eventname": "scarborough", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 31.970637, + -25.438527 + ], + "type": "Point" + }, + "id": 3448, + "properties": { + "EventLocation": "Kambaku Golf Club", + "EventLongName": "Kambaku Golf Club parkrun", + "EventShortName": "Kambaku Golf Club", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "kambakugolfclub", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 137.585902, + -33.040603 + ], + "type": "Point" + }, + "id": 3449, + "properties": { + "EventLocation": "Whyalla Foreshore", + "EventLongName": "Whyalla Foreshore parkrun", + "EventShortName": "Whyalla Foreshore", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "whyallaforeshore", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 115.714384, + -33.275814 + ], + "type": "Point" + }, + "id": 3450, + "properties": { + "EventLocation": "Ridley Place Foreshore", + "EventLongName": "Ridley Place Foreshore parkrun", + "EventShortName": "Ridley Place Foreshore", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "ridleyplaceforeshore", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 121.893784, + -33.863295 + ], + "type": "Point" + }, + "id": 3451, + "properties": { + "EventLocation": "Esperance Foreshore", + "EventLongName": "Esperance Foreshore parkrun", + "EventShortName": "Esperance Foreshore", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "esperanceforeshore", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 175.862373, + -37.197017 + ], + "type": "Point" + }, + "id": 3452, + "properties": { + "EventLocation": "Moana Point Reserve", + "EventLongName": "Moana Point Reserve parkrun", + "EventShortName": "Moana Point Reserve", + "LocalisedEventLongName": null, + "countrycode": 65, + "eventname": "moanapointreserve", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -7.265494, + 52.696337 + ], + "type": "Point" + }, + "id": 3453, + "properties": { + "EventLocation": "Kilkenny Countryside Park juniors", + "EventLongName": "Kilkenny Countryside Park junior parkrun", + "EventShortName": "Kilkenny Countryside Park juniors", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "kilkennycountrysidepark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 152.01537, + -29.054042 + ], + "type": "Point" + }, + "id": 3454, + "properties": { + "EventLocation": "Jubilee, Tenterfield", + "EventLongName": "Jubilee parkrun, Tenterfield", + "EventShortName": "Jubilee, Tenterfield", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "jubileetenterfield", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 152.992548, + -27.993368 + ], + "type": "Point" + }, + "id": 3455, + "properties": { + "EventLocation": "Jeune Park", + "EventLongName": "Jeune Park parkrun", + "EventShortName": "Jeune Park", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "jeunepark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.174603, + 53.128883 + ], + "type": "Point" + }, + "id": 3456, + "properties": { + "EventLocation": "Berry Hill juniors", + "EventLongName": "Berry Hill junior parkrun", + "EventShortName": "Berry Hill juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "berryhill-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.057944, + 53.206025 + ], + "type": "Point" + }, + "id": 3457, + "properties": { + "EventLocation": "Wepre juniors", + "EventLongName": "Wepre junior parkrun", + "EventShortName": "Wepre juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "wepre-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.789728, + 51.755941 + ], + "type": "Point" + }, + "id": 3458, + "properties": { + "EventLocation": "Cycle Route 43, Ystalyfera", + "EventLongName": "Cycle Route 43 parkrun, Ystalyfera", + "EventShortName": "Cycle Route 43, Ystalyfera", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "cycleroute43ystalyfera", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 150.981697, + -34.188779 + ], + "type": "Point" + }, + "id": 3459, + "properties": { + "EventLocation": "Rex Jackson Oval", + "EventLongName": "Rex Jackson Oval parkrun", + "EventShortName": "Rex Jackson Oval", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "rexjacksonoval", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.939551, + 53.448255 + ], + "type": "Point" + }, + "id": 3460, + "properties": { + "EventLocation": "Manor Park, Glossop", + "EventLongName": "Manor Park junior parkrun, Glossop", + "EventShortName": "Manor Park juniors, Glossop", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "manorparkglossop-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 19.412511, + 53.260214 + ], + "type": "Point" + }, + "id": 3461, + "properties": { + "EventLocation": "Lasek Miejski", + "EventLongName": "parkrun Lasek Miejski", + "EventShortName": "Lasek Miejski", + "LocalisedEventLongName": null, + "countrycode": 74, + "eventname": "lasekmiejski", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 9.544284, + 61.770948 + ], + "type": "Point" + }, + "id": 3462, + "properties": { + "EventLocation": "Loftsgardsbrua", + "EventLongName": "Loftsgardsbrua parkrun", + "EventShortName": "Loftsgardsbrua", + "LocalisedEventLongName": null, + "countrycode": 67, + "eventname": "loftsgardsbrua", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -75.905183, + 45.267695 + ], + "type": "Point" + }, + "id": 3463, + "properties": { + "EventLocation": "Ottawa-Carleton Trailway", + "EventLongName": "Ottawa-Carleton Trailway parkrun", + "EventShortName": "Ottawa-Carleton Trailway", + "LocalisedEventLongName": null, + "countrycode": 14, + "eventname": "ottawacarletontrailway", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -122.756237, + 49.184318 + ], + "type": "Point" + }, + "id": 3464, + "properties": { + "EventLocation": "Tynehead Regional", + "EventLongName": "Tynehead Regional parkrun", + "EventShortName": "Tynehead Regional", + "LocalisedEventLongName": null, + "countrycode": 14, + "eventname": "tyneheadregional", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -78.881377, + 38.428261 + ], + "type": "Point" + }, + "id": 3465, + "properties": { + "EventLocation": "Purcell", + "EventLongName": "Purcell parkrun", + "EventShortName": "Purcell", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "purcell", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -88.266416, + 40.086144 + ], + "type": "Point" + }, + "id": 3466, + "properties": { + "EventLocation": "Morrissey Park", + "EventLongName": "Morrissey Park parkrun", + "EventShortName": "Morrissey Park", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "morrisseypark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -7.986112, + 54.287475 + ], + "type": "Point" + }, + "id": 3467, + "properties": { + "EventLocation": "Glenfarne Wood", + "EventLongName": "Glenfarne Wood parkrun", + "EventShortName": "Glenfarne Wood", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "glenfarnewood", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.007716, + 51.44823 + ], + "type": "Point" + }, + "id": 3468, + "properties": { + "EventLocation": "Prospect juniors", + "EventLongName": "Prospect junior parkrun", + "EventShortName": "Prospect juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "prospect-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 145.148185, + -36.786149 + ], + "type": "Point" + }, + "id": 3470, + "properties": { + "EventLocation": "Nagambie Lake", + "EventLongName": "Nagambie Lake parkrun", + "EventShortName": "Nagambie Lake", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "nagambielake", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 149.446987, + -35.250379 + ], + "type": "Point" + }, + "id": 3471, + "properties": { + "EventLocation": "Bungendore Common", + "EventLongName": "Bungendore Common parkrun", + "EventShortName": "Bungendore Common", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "bungendorecommon", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.319064, + 52.514615 + ], + "type": "Point" + }, + "id": 3472, + "properties": { + "EventLocation": "Hafan Yr Afon juniors", + "EventLongName": "Hafan Yr Afon junior parkrun", + "EventShortName": "Hafan Yr Afon juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "hafanyrafon-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -4.069961, + 55.679393 + ], + "type": "Point" + }, + "id": 3473, + "properties": { + "EventLocation": "Strathaven juniors", + "EventLongName": "Strathaven junior parkrun", + "EventShortName": "Strathaven juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "strathaven-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 174.812349, + -36.863563 + ], + "type": "Point" + }, + "id": 3474, + "properties": { + "EventLocation": "\u014cr\u0101kei Bay", + "EventLongName": "\u014cr\u0101kei Bay parkrun", + "EventShortName": "\u014cr\u0101kei Bay", + "LocalisedEventLongName": null, + "countrycode": 65, + "eventname": "orakeibay", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -74.669171, + 40.21262 + ], + "type": "Point" + }, + "id": 3475, + "properties": { + "EventLocation": "Veterans Park", + "EventLongName": "Veterans Park parkrun", + "EventShortName": "Veterans Park", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "veteranspark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 169.384943, + -45.236725 + ], + "type": "Point" + }, + "id": 3476, + "properties": { + "EventLocation": "Otago Central Rail Trail, Alexandra", + "EventLongName": "Otago Central Rail Trail parkrun, Alexandra", + "EventShortName": "Otago Central Rail Trail, Alexandra", + "LocalisedEventLongName": null, + "countrycode": 65, + "eventname": "otagocentralrailtrailalexandra", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -6.481169, + 54.868789 + ], + "type": "Point" + }, + "id": 3477, + "properties": { + "EventLocation": "The Fisherman\u2018s Walk", + "EventLongName": "The Fisherman\u2018s Walk parkrun", + "EventShortName": "The Fisherman\u2018s Walk", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "thefishermanswalk", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 20.39766, + 53.391852 + ], + "type": "Point" + }, + "id": 3478, + "properties": { + "EventLocation": "Las Miejski", + "EventLongName": "parkrun Las Miejski", + "EventShortName": "Las Miejski", + "LocalisedEventLongName": null, + "countrycode": 74, + "eventname": "lasmiejski", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.46929, + 53.253722 + ], + "type": "Point" + }, + "id": 3479, + "properties": { + "EventLocation": "Holmebrook Valley juniors", + "EventLongName": "Holmebrook Valley junior parkrun", + "EventShortName": "Holmebrook Valley juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "holmebrookvalley-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.396723, + 54.9329 + ], + "type": "Point" + }, + "id": 3480, + "properties": { + "EventLocation": "Fulwell Quarry", + "EventLongName": "Fulwell Quarry parkrun", + "EventShortName": "Fulwell Quarry", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "fulwellquarry", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.208072, + 51.392759 + ], + "type": "Point" + }, + "id": 3481, + "properties": { + "EventLocation": "Morden", + "EventLongName": "Morden parkrun", + "EventShortName": "Morden", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "morden", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -89.524757, + 44.448915 + ], + "type": "Point" + }, + "id": 3482, + "properties": { + "EventLocation": "Lake Pacawa", + "EventLongName": "Lake Pacawa parkrun", + "EventShortName": "Lake Pacawa", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "lakepacawa", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -81.87031, + 30.33788 + ], + "type": "Point" + }, + "id": 3483, + "properties": { + "EventLocation": "Halsema Trailhead", + "EventLongName": "Halsema Trailhead parkrun", + "EventShortName": "Halsema Trailhead", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "halsematrailhead", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.158938, + 51.477324 + ], + "type": "Point" + }, + "id": 3484, + "properties": { + "EventLocation": "Battersea juniors", + "EventLongName": "Battersea junior parkrun", + "EventShortName": "Battersea juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "battersea-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -7.922188, + 53.428665 + ], + "type": "Point" + }, + "id": 3485, + "properties": { + "EventLocation": "Athlone RSC", + "EventLongName": "Athlone RSC parkrun", + "EventShortName": "Athlone RSC", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "athlonersc", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 27.873641, + -26.73561 + ], + "type": "Point" + }, + "id": 3486, + "properties": { + "EventLocation": "Emerald Resort", + "EventLongName": "Emerald Resort parkrun", + "EventShortName": "Emerald Resort", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "emeraldresort", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -112.452331, + 34.602931 + ], + "type": "Point" + }, + "id": 3487, + "properties": { + "EventLocation": "Jan Alfano Trail", + "EventLongName": "Jan Alfano Trail parkrun", + "EventShortName": "Jan Alfano Trail", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "janalfanotrail", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 29.237276, + -26.476844 + ], + "type": "Point" + }, + "id": 3488, + "properties": { + "EventLocation": "Terra Nova", + "EventLongName": "Terra Nova parkrun", + "EventShortName": "Terra Nova", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "terranova", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 103.866771, + 1.294155 + ], + "type": "Point" + }, + "id": 3489, + "properties": { + "EventLocation": "Bay East Garden", + "EventLongName": "Bay East Garden parkrun", + "EventShortName": "Bay East Garden", + "LocalisedEventLongName": null, + "countrycode": 82, + "eventname": "bayeastgarden", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.401145, + 51.950753 + ], + "type": "Point" + }, + "id": 3490, + "properties": { + "EventLocation": "Y Promen\u00e2d, Aberhonddu\t", + "EventLongName": "Y Promen\u00e2d parkrun, Aberhonddu", + "EventShortName": "Y Promen\u00e2d", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "ypromenad", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -121.799587, + 47.50298 + ], + "type": "Point" + }, + "id": 3491, + "properties": { + "EventLocation": "Tollgate Farm Park, baq\u02b7ab", + "EventLongName": "Tollgate Farm Park parkrun, baq\u02b7ab", + "EventShortName": "Tollgate Farm Park, baq\u02b7ab", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "tollgatefarmparkbaqwab", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 147.97849, + -29.418312 + ], + "type": "Point" + }, + "id": 3492, + "properties": { + "EventLocation": "Lightning Ridge", + "EventLongName": "Lightning Ridge parkrun", + "EventShortName": "Lightning Ridge", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "lightningridge", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -7.697038, + 52.470845 + ], + "type": "Point" + }, + "id": 3493, + "properties": { + "EventLocation": "Fethard juniors", + "EventLongName": "Fethard junior parkrun", + "EventShortName": "Fethard juniors", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "fethard-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 145.825156, + -38.432179 + ], + "type": "Point" + }, + "id": 3494, + "properties": { + "EventLocation": "Great Southern Rail Trail, Korumburra", + "EventLongName": "Great Southern Rail Trail parkrun, Korumburra", + "EventShortName": "Great Southern Rail Trail, Korumburra", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "greatsouthernrailtrailkorumburra", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 4.69623, + 51.813845 + ], + "type": "Point" + }, + "id": 3495, + "properties": { + "EventLocation": "Wantijpark", + "EventLongName": "Wantijpark parkrun", + "EventShortName": "Wantijpark", + "LocalisedEventLongName": null, + "countrycode": 64, + "eventname": "wantijpark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 175.397451, + -39.414945 + ], + "type": "Point" + }, + "id": 3496, + "properties": { + "EventLocation": "Mangawhero River Walk, Ohakune", + "EventLongName": "Mangawhero River Walk parkrun, Ohakune", + "EventShortName": "Mangawhero River Walk, Ohakune", + "LocalisedEventLongName": null, + "countrycode": 65, + "eventname": "mangawheroriverwalkohakune", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 0.794846, + 51.554492 + ], + "type": "Point" + }, + "id": 3497, + "properties": { + "EventLocation": "Great Wakering Rec juniors", + "EventLongName": "Great Wakering Rec junior parkrun", + "EventShortName": "Great Wakering Rec juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "greatwakeringrec-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 0.065252, + 52.28625 + ], + "type": "Point" + }, + "id": 3498, + "properties": { + "EventLocation": "Bug Hunter Waters", + "EventLongName": "Bug Hunter Waters parkrun", + "EventShortName": "Bug Hunter Waters", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "bughunterwaters", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 148.037729, + -22.004623 + ], + "type": "Point" + }, + "id": 3499, + "properties": { + "EventLocation": "Binda Park", + "EventLongName": "Binda Park parkrun", + "EventShortName": "Binda Park", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "bindapark", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.124903, + 50.824962 + ], + "type": "Point" + }, + "id": 3500, + "properties": { + "EventLocation": "Queen\u2019s Park juniors, Brighton", + "EventLongName": "Queen\u2019s Park junior parkrun, Brighton", + "EventShortName": "Queen\u2019s Park juniors, Brighton", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "queensparkbrighton-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 150.766217, + -34.066408 + ], + "type": "Point" + }, + "id": 3501, + "properties": { + "EventLocation": "Australian Botanic Garden Mount Annan", + "EventLongName": "Australian Botanic Garden Mount Annan parkrun", + "EventShortName": "Australian Botanic Garden Mount Annan", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "aubotanicgardenmountannan", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -82.633675, + 46.402282 + ], + "type": "Point" + }, + "id": 3502, + "properties": { + "EventLocation": "Sheriff Creek Wildlife Sanctuary", + "EventLongName": "Sheriff Creek Wildlife Sanctuary parkrun", + "EventShortName": "Sheriff Creek Wildlife Sanctuary", + "LocalisedEventLongName": null, + "countrycode": 14, + "eventname": "sheriffcreekwildlifesanctuary", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 0.011973, + 50.880478 + ], + "type": "Point" + }, + "id": 3503, + "properties": { + "EventLocation": "Malling Rec", + "EventLongName": "Malling Rec parkrun", + "EventShortName": "Malling Rec", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "mallingrec", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.287818, + 51.65874 + ], + "type": "Point" + }, + "id": 3504, + "properties": { + "EventLocation": "Southern Town juniors", + "EventLongName": "Southern Town junior parkrun", + "EventShortName": "Southern Town juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "southerntown-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 10.609747, + 59.42457 + ], + "type": "Point" + }, + "id": 3505, + "properties": { + "EventLocation": "Alby G\u00e5rd", + "EventLongName": "Alby G\u00e5rd parkrun", + "EventShortName": "Alby G\u00e5rd", + "LocalisedEventLongName": null, + "countrycode": 67, + "eventname": "albygard", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.508851, + 52.121891 + ], + "type": "Point" + }, + "id": 3506, + "properties": { + "EventLocation": "Great Denham juniors", + "EventLongName": "Great Denham junior parkrun", + "EventShortName": "Great Denham juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "greatdenham-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -4.056196, + 52.7208 + ], + "type": "Point" + }, + "id": 3507, + "properties": { + "EventLocation": "Y Promen\u00e2d, Abermaw", + "EventLongName": "Y Promen\u00e2d parkrun, Abermaw", + "EventShortName": "Y Promen\u00e2d, Abermaw", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "ypromenadabermaw", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.773264, + 53.757146 + ], + "type": "Point" + }, + "id": 3509, + "properties": { + "EventLocation": "Harold Park juniors", + "EventLongName": "Harold Park junior parkrun", + "EventShortName": "Harold Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "haroldpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 139.881048, + 35.759764 + ], + "type": "Point" + }, + "id": 3510, + "properties": { + "EventLocation": "Shibamata koen kadan", + "EventLongName": "Shibamata koen kadan parkrun", + "EventShortName": "Shibamata koen kadan", + "LocalisedEventLongName": "\u67f4\u53c8\u516c\u5712\u82b1\u58c7parkrun", + "countrycode": 46, + "eventname": "shibamatakoenkadan", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.81857, + 52.446215 + ], + "type": "Point" + }, + "id": 3511, + "properties": { + "EventLocation": "The Plens", + "EventLongName": "The Plens parkrun", + "EventShortName": "The Plens", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "theplens", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.53918, + 51.531366 + ], + "type": "Point" + }, + "id": 3512, + "properties": { + "EventLocation": "Three Brooks", + "EventLongName": "Three Brooks parkrun", + "EventShortName": "Three Brooks", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "threebrooks", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -79.19456, + 43.155544 + ], + "type": "Point" + }, + "id": 3513, + "properties": { + "EventLocation": "Welland Canals Trail", + "EventLongName": "Welland Canals Trail parkrun", + "EventShortName": "Welland Canals Trail", + "LocalisedEventLongName": null, + "countrycode": 14, + "eventname": "wellandcanalstrail", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 1.171274, + 51.084168 + ], + "type": "Point" + }, + "id": 3514, + "properties": { + "EventLocation": "Radnor Park juniors", + "EventLongName": "Radnor Park junior parkrun", + "EventShortName": "Radnor Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "radnorpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 149.165504, + -21.035236 + ], + "type": "Point" + }, + "id": 3515, + "properties": { + "EventLocation": "Seaview", + "EventLongName": "Seaview parkrun", + "EventShortName": "Seaview", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "seaview", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 151.191857, + -33.865396 + ], + "type": "Point" + }, + "id": 3516, + "properties": { + "EventLocation": "Pirrama", + "EventLongName": "Pirrama parkrun", + "EventShortName": "Pirrama", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "pirrama", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.378495, + 57.279397 + ], + "type": "Point" + }, + "id": 3517, + "properties": { + "EventLocation": "Kellands Park juniors", + "EventLongName": "Kellands Park junior parkrun", + "EventShortName": "Kellands Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "kellandspark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -1.963881, + 51.961777 + ], + "type": "Point" + }, + "id": 3518, + "properties": { + "EventLocation": "Winchcombe juniors", + "EventLongName": "Winchcombe junior parkrun", + "EventShortName": "Winchcombe juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "winchcombe-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 0.038024, + 53.728574 + ], + "type": "Point" + }, + "id": 3519, + "properties": { + "EventLocation": "Withernsea Promenade", + "EventLongName": "Withernsea Promenade parkrun", + "EventShortName": "Withernsea Promenade", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "withernseapromenade", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.986136, + 53.656229 + ], + "type": "Point" + }, + "id": 3520, + "properties": { + "EventLocation": "Hesketh Park juniors", + "EventLongName": "Hesketh Park junior parkrun", + "EventShortName": "Hesketh Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "heskethpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 0.044621, + 51.476699 + ], + "type": "Point" + }, + "id": 3521, + "properties": { + "EventLocation": "Hornfair Park juniors", + "EventLongName": "Hornfair Park junior parkrun", + "EventShortName": "Hornfair Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "hornfairpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 0.96988, + 52.684276 + ], + "type": "Point" + }, + "id": 3522, + "properties": { + "EventLocation": "Dereham", + "EventLongName": "Dereham parkrun", + "EventShortName": "Dereham", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "dereham", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -7.617116, + 52.091937 + ], + "type": "Point" + }, + "id": 3523, + "properties": { + "EventLocation": "Walton Park juniors", + "EventLongName": "Walton Park junior parkrun", + "EventShortName": "Walton Park juniors", + "LocalisedEventLongName": null, + "countrycode": 42, + "eventname": "waltonpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 171.751749, + -43.894839 + ], + "type": "Point" + }, + "id": 3524, + "properties": { + "EventLocation": "Ashburton Domain", + "EventLongName": "Ashburton Domain parkrun", + "EventShortName": "Ashburton Domain", + "LocalisedEventLongName": null, + "countrycode": 65, + "eventname": "ashburtondomain", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -113.054042, + 37.677099 + ], + "type": "Point" + }, + "id": 3525, + "properties": { + "EventLocation": "Coal Creek Trail", + "EventLongName": "Coal Creek Trail parkrun", + "EventShortName": "Coal Creek Trail", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "coalcreektrail", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -5.941175, + 57.259099 + ], + "type": "Point" + }, + "id": 3527, + "properties": { + "EventLocation": "Skinadin", + "EventLongName": "Skinadin parkrun", + "EventShortName": "Skinadin", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "skinadin", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 11.068693, + 60.803464 + ], + "type": "Point" + }, + "id": 3530, + "properties": { + "EventLocation": "Ankerskogen", + "EventLongName": "Ankerskogen parkrun", + "EventShortName": "Ankerskogen", + "LocalisedEventLongName": null, + "countrycode": 67, + "eventname": "ankerskogen", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 175.526212, + -37.663175 + ], + "type": "Point" + }, + "id": 3531, + "properties": { + "EventLocation": "Morrinsville Recreation Ground", + "EventLongName": "Morrinsville Recreation Ground parkrun", + "EventShortName": "Morrinsville Recreation Ground", + "LocalisedEventLongName": null, + "countrycode": 65, + "eventname": "morrinsvillerecreationground", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 21.385804, + 52.149747 + ], + "type": "Point" + }, + "id": 3532, + "properties": { + "EventLocation": "Las Malcan\u00f3w", + "EventLongName": "parkrun Las Malcan\u00f3w", + "EventShortName": "Las Malcan\u00f3w", + "LocalisedEventLongName": null, + "countrycode": 74, + "eventname": "lasmalcanow", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -0.559223, + 53.208395 + ], + "type": "Point" + }, + "id": 3533, + "properties": { + "EventLocation": "Boultham Park juniors", + "EventLongName": "Boultham Park junior parkrun", + "EventShortName": "Boultham Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "boulthampark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -5.554954, + 56.090978 + ], + "type": "Point" + }, + "id": 3534, + "properties": { + "EventLocation": "Crinan Canal", + "EventLongName": "Crinan Canal parkrun", + "EventShortName": "Crinan Canal", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "crinancanal", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -2.919317, + 53.438154 + ], + "type": "Point" + }, + "id": 3535, + "properties": { + "EventLocation": "Norris Green Park juniors", + "EventLongName": "Norris Green Park junior parkrun", + "EventShortName": "Norris Green Park juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "norrisgreenpark-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -3.702867, + 51.474531 + ], + "type": "Point" + }, + "id": 3536, + "properties": { + "EventLocation": "Porthcawl Promenade juniors", + "EventLongName": "Porthcawl Promenade junior parkrun", + "EventShortName": "Porthcawl Promenade juniors", + "LocalisedEventLongName": null, + "countrycode": 97, + "eventname": "porthcawlpromenade-juniors", + "seriesid": 2 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 172.833177, + -42.526529 + ], + "type": "Point" + }, + "id": 3537, + "properties": { + "EventLocation": "Hanmer Forest", + "EventLongName": "Hanmer Forest parkrun", + "EventShortName": "Hanmer Forest", + "LocalisedEventLongName": null, + "countrycode": 65, + "eventname": "hanmerforest", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -123.213802, + 49.275962 + ], + "type": "Point" + }, + "id": 3538, + "properties": { + "EventLocation": "Spanish Banks Beach", + "EventLongName": "Spanish Banks Beach parkrun", + "EventShortName": "Spanish Banks Beach", + "LocalisedEventLongName": null, + "countrycode": 14, + "eventname": "spanishbanksbeach", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 6.106907, + 52.508571 + ], + "type": "Point" + }, + "id": 3539, + "properties": { + "EventLocation": "Wezenlanden", + "EventLongName": "Wezenlanden parkrun", + "EventShortName": "Wezenlanden", + "LocalisedEventLongName": null, + "countrycode": 64, + "eventname": "wezenlanden", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 9.993277, + 53.70882 + ], + "type": "Point" + }, + "id": 3540, + "properties": { + "EventLocation": "Moorbek", + "EventLongName": "Moorbek parkrun", + "EventShortName": "Moorbek", + "LocalisedEventLongName": null, + "countrycode": 32, + "eventname": "moorbek", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 12.901176, + 50.805049 + ], + "type": "Point" + }, + "id": 3541, + "properties": { + "EventLocation": "Stadtpark, Chemnitz", + "EventLongName": "Stadtpark parkrun, Chemnitz", + "EventShortName": "Stadtpark, Chemnitz", + "LocalisedEventLongName": null, + "countrycode": 32, + "eventname": "stadtparkchemnitz", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 28.290937, + -26.045339 + ], + "type": "Point" + }, + "id": 3542, + "properties": { + "EventLocation": "Serengeti Estate", + "EventLongName": "Serengeti Estate parkrun", + "EventShortName": "Serengeti Estate", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "serengetiestate", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 25.604333, + -33.966819 + ], + "type": "Point" + }, + "id": 3543, + "properties": { + "EventLocation": "St George\u2019s", + "EventLongName": "St George\u2019s parkrun", + "EventShortName": "St George\u2019s", + "LocalisedEventLongName": null, + "countrycode": 85, + "eventname": "stgeorges", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 19.203501, + 50.201943 + ], + "type": "Point" + }, + "id": 3544, + "properties": { + "EventLocation": "Zalew \u0141\u0119g", + "EventLongName": "parkrun Zalew \u0141\u0119g", + "EventShortName": "Zalew \u0141\u0119g", + "LocalisedEventLongName": null, + "countrycode": 74, + "eventname": "zalewleg", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 152.88284, + -27.356315 + ], + "type": "Point" + }, + "id": 3545, + "properties": { + "EventLocation": "Samford Parklands", + "EventLongName": "Samford Parklands parkrun", + "EventShortName": "Samford Parklands", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "samfordparklands", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -122.663147, + 45.708036 + ], + "type": "Point" + }, + "id": 3548, + "properties": { + "EventLocation": "Salmon Creek Trail", + "EventLongName": "Salmon Creek Trail parkrun", + "EventShortName": "Salmon Creek Trail", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "salmoncreektrail", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 25.245432, + 54.682498 + ], + "type": "Point" + }, + "id": 3549, + "properties": { + "EventLocation": "Vingis", + "EventLongName": "parkrun Vingis", + "EventShortName": "Vingis", + "LocalisedEventLongName": null, + "countrycode": 54, + "eventname": "vingis", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 152.41977, + -27.241567 + ], + "type": "Point" + }, + "id": 3550, + "properties": { + "EventLocation": "Old Esk Railway Station", + "EventLongName": "Old Esk Railway Station parkrun", + "EventShortName": "Old Esk Railway Station", + "LocalisedEventLongName": null, + "countrycode": 3, + "eventname": "oldeskrailwaystation", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 9.826912, + 55.864821 + ], + "type": "Point" + }, + "id": 3551, + "properties": { + "EventLocation": "Bygholm", + "EventLongName": "Bygholm parkrun", + "EventShortName": "Bygholm", + "LocalisedEventLongName": null, + "countrycode": 23, + "eventname": "bygholm", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 17.906337, + 59.341533 + ], + "type": "Point" + }, + "id": 3552, + "properties": { + "EventLocation": "Judarskogen", + "EventLongName": "Judarskogen parkrun", + "EventShortName": "Judarskogen", + "LocalisedEventLongName": null, + "countrycode": 88, + "eventname": "judarskogen", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 8.532644, + 50.555193 + ], + "type": "Point" + }, + "id": 3553, + "properties": { + "EventLocation": "Naturlehrpfad, Wetzlar", + "EventLongName": "Naturlehrpfad parkrun, Wetzlar", + "EventShortName": "Naturlehrpfad, Wetzlar", + "LocalisedEventLongName": null, + "countrycode": 32, + "eventname": "naturlehrpfadwetzlar", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + 172.579997, + -43.599389 + ], + "type": "Point" + }, + "id": 3555, + "properties": { + "EventLocation": "Halswell Quarry", + "EventLongName": "Halswell Quarry parkrun", + "EventShortName": "Halswell Quarry", + "LocalisedEventLongName": null, + "countrycode": 65, + "eventname": "halswellquarry", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -96.564031, + 33.740918 + ], + "type": "Point" + }, + "id": 3556, + "properties": { + "EventLocation": "Katy Trail", + "EventLongName": "Katy Trail parkrun", + "EventShortName": "Katy Trail", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "katytrail", + "seriesid": 1 + }, + "type": "Feature" + }, + { + "geometry": { + "coordinates": [ + -87.907605, + 41.805853 + ], + "type": "Point" + }, + "id": 3559, + "properties": { + "EventLocation": "Spring Rock", + "EventLongName": "Spring Rock parkrun", + "EventShortName": "Spring Rock", + "LocalisedEventLongName": null, + "countrycode": 98, + "eventname": "springrock", + "seriesid": 1 + }, + "type": "Feature" } ], "type": "FeatureCollection" diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/1309364/all/index.html index 9f0a2b4f..5d4d337b 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Canada - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@

@@ -70,34 +66,25 @@
@@ -120,543 +107,649 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM35-39 + Most recent age category was VM40-44

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time20:0628:4757:34
Age Grading64.51%47.44%23.54%
Overall Position5165.361021

+
FastestAverage
(mean)
Slowest
Time20:0629:2057:34
Age Grading64.51%46.67%23.54%
Overall Position5182.341021

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97%   -
Whiteley25/03/202321418332:2441.82% +
Winchester25/11/202346134636:0237.60%   -
Winchester11/03/202342821230:3744.26% +
Whiteley18/11/202324721037:0536.54%   -
Winchester04/03/202342730935:4537.90% +
Whiteley11/11/202324617430:3744.26%   -
Winchester25/02/202342632536:0937.48% +
Winchester21/10/202345731533:5140.03%   -
Winchester18/02/202342530336:3137.11% +
Winchester14/10/202345634233:5439.97%   -
Delamere31/12/202242331536:2537.21% +
Ganger Farm07/10/20234713233:4940.07%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester23/09/202345321928:2247.77%   -
Winchester26/11/202241229335:3137.87% +
Winchester16/09/202345235430:3244.38%   -
Whiteley12/11/202221016534:2839.02% +
Winchester09/09/202345129229:1146.43%   -
Winchester29/10/202240924429:5544.96% +
Delamere02/09/202345822633:2840.49%   -
Winchester22/10/202240833736:0837.22% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester17/09/202240326230:2944.12% +
Winchester29/07/202344622227:3649.09%   -
Winchester10/09/202240231134:3338.93% +
Winchester22/07/202344540537:0036.62%   -
Alice Holt03/09/202241817936:3236.82% +
Whiteley15/07/202322915731:1643.34%   -
Winchester27/08/202240042335:2138.05% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester13/08/202239823431:3042.70% +
Winchester17/06/202344128530:4144.16%   -
Tidworth30/07/2022615151:4226.02% +
Winchester10/06/202344032435:2138.33%   -
Uckfield23/07/20221006028:4346.84% +
Winchester20/05/202343822427:0949.91%   -
Winchester09/07/202239428633:1640.43% +
Winchester13/05/202343733232:4341.42%   -
Eastleigh28/05/202254015531:2042.93% +
Whiteley29/04/202321919635:3138.15%   -
Winchester21/05/202238930733:2840.19% +
Winchester22/04/202343431731:1143.45%   -
Alice Holt14/05/202240216932:0142.01% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Winchester07/05/202238734034:1339.31% +
Whiteley25/03/202321418332:2441.82%   -
Guildford30/04/202242825130:0144.81% +
Winchester11/03/202342821230:3744.26%   -
Winchester23/04/202238522932:0241.99% +
Winchester04/03/202342730935:4537.90%   -
Winchester16/04/202238431033:2340.29% +
Winchester25/02/202342632536:0937.48%   -
Winchester19/03/202238025033:5439.68% +
Winchester18/02/202342530336:3137.11%   -
Alice Holt01/01/202238524237:4635.61% +
Delamere31/12/202242331536:2537.21%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester20/11/202136338445:0729.59% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester09/10/202135739843:0730.96% +
Winchester26/11/202241229335:3137.87%   -
Winchester25/09/202135538955:0324.25% +
Whiteley12/11/202221016534:2839.02%   -
Winchester18/09/202135433938:1234.95% +
Winchester29/10/202240924429:5544.96%   -
Winchester04/09/202135233838:2434.77% +
Winchester22/10/202240833736:0837.22%   -
Winchester28/08/202135139841:0132.55% +
Winchester17/09/202240326230:2944.12%   -
Winchester14/08/202134936055:4623.94% +
Winchester10/09/202240231134:3338.93%   -
Winchester31/07/202134832845:2029.45% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester14/03/202034625851:3825.69% +
Winchester27/08/202240042335:2138.05%   -
Winchester07/03/202034510325:5251.29% +
Winchester13/08/202239823431:3042.70%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Tidworth30/07/2022615151:4226.02%   -
Newbury22/02/202043434631:1142.54% +
Uckfield23/07/20221006028:4346.84%   -
Alice Holt08/02/202036010727:1948.57% +
Winchester09/07/202239428633:1640.43% +   +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -687,63 +780,61 @@

Andrew TAYLOR (A13093
- Locations: 43 -
-
- Finishers: 31,231 + Locations: 51
- Finishes: 169,120 + Finishers: 55058
- All-time events: 5,571 + Finishes: 326068
- Volunteers: 4,773 + All-time events: 8853
- PBs: 27,153 + Volunteers: 7404
- Average finish time: 00:32:30 + PBs: 51108
- Average finishes per participant: 5.4 + Average finish time: 00:32:49
- Groups: 1,469 + Groups: 2001
-
+
- Stats last updated: Fri 14 Apr 2023 00:35:14 UTC + Stats last updated: Mon 30 Sep 2024 00:36:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -777,8 +878,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/1309364/index.html index 04ad6d95..e0bf54b9 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + results | parkrun Canada - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -120,178 +107,188 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club -

245 parkruns total

+

297 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM35-39 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun146121300:20:18 + Most recent age category was VM40-44 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun173121320:18 + All +
Whiteley parkrun1410714629:06 + All +
Delamere parkrun11232321:42 All - Graph It!
Delamere parkrun8232300:21:42 +
Eastleigh parkrun6242524:08 All - Graph It!
Whiteley parkrun610714600:29:06 +
Alice Holt parkrun59010727:19 All - Graph It!
Alice Holt parkrun59010700:27:19 +
Southampton parkrun5687021:17 All - Graph It!
Southampton parkrun5687000:21:17 +
Fell Foot parkrun, Newby Bridge4212223:48 All - Graph It!
Eastleigh parkrun5242500:24:08 +
Witton parkrun4303525:40 All - Graph It!
Congleton parkrun49900:20:06 +
Northwich parkrun4485224:55 All - Graph It!
Witton parkrun4303500:25:40 +
Newbury parkrun4829123:49 All - Graph It!
Northwich parkrun4485200:24:55 +
Congleton parkrun49920:06 All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Medina I.O.W. parkrun4667525:13 All - Graph It!
Andover parkrun2242600:22:24 +
Ganger Farm parkrun38013229:25 All - Graph It!
Ganger Farm parkrun29713500:29:25 +
Burnley parkrun212718929:06 All - Graph It!
Hanley parkrun2333900:22:31 +
Queen Elizabeth parkrun2364026:36 All - Graph It!
Newbury parkrun2829100:23:49 +
Andover parkrun2242622:24 All - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Hanley parkrun2333922:31 All - Graph It!
Hagley parkrun1182000:22:38 +
Netley Abbey parkrun1586424:21 All -  
Ormskirk parkrun120930300:31:04 +
Hilly Fields parkrun1859925:03 All -  
Basingstoke parkrun111212900:24:31 +
Brockenhurst parkrun112718632:41 All -  
Cuerden Valley parkrun1192000:24:47 +
Wimpole Estate parkrun112916928:07 All -  
Seven Fields parkrun1546700:28:28 +
Clumber Park parkrun112117629:51 All -  
Netley Abbey parkrun1586400:24:21 +
Cuerden Valley parkrun1192024:47 All -  
Mountbatten School parkrun17110100:31:29 +
Hamilton Lake parkrun1151621:47 All -  
Clitheroe Castle parkrun1639700:35:46 +
Fountains Abbey parkrun1283020:33 All -  
Medina I.O.W. parkrun19513900:30:57 +
Ormskirk parkrun120930331:04 All -  
Hogmoor Inclosure parkrun111314000:29:34 +
Pendle parkrun1465926:37 All -  
Milano Nord parkrun1475300:27:49 +
Woking parkrun1485824:01 All -  
Jersey parkrun111018500:30:53 +
Hagley parkrun1182022:38 All -  
Canterbury parkrun1323600:27:29 +
Penrhyn parkrun1232624:33 All -  
Penrhyn parkrun1232600:24:33 +
Salisbury parkrun119326729:45 All -  
Hyndburn parkrun1425300:29:55 +
Jersey parkrun111018530:53 All -  
Woking parkrun1485800:24:01 +
Haigh Woodland parkrun18916837:04 All -  
Fountains Abbey parkrun1283000:20:33 +
Stretford parkrun127540530:23 All -  
Bushy parkrun1681102100:33:01 +
Portsmouth Lakeside parkrun1818726:32 All -  
Clumber Park parkrun112117600:29:51 +
Fareham parkrun19011428:52 All -  
Wimpole Estate parkrun112916900:28:07 +
Milano Nord parkrun1475327:49 All -  
Tidworth parkrun18615100:51:42 +
Richmond Olympic parkrun15521:59 All -  
Hilly Fields parkrun1859900:25:03 +
Crewe parkrun112315430:05 All -  
Tawd Valley parkrun18111000:29:25 +
Hogmoor Inclosure parkrun111314029:34 All -  
Watermeadows parkrun1151500:23:51 +
Catford parkrun19512527:24 All -  
Eden Project parkrun111116200:30:21 +
Clitheroe Castle parkrun1639735:46 All -  
Catford parkrun19512500:27:24 +
Pocket parkrun112419533:47 All -  
Crewe parkrun112315400:30:05 +
Ford parkrun1477432:29 All -  
Long Eaton parkrun118122900:28:06 +
Watermeadows parkrun1151523:51 All -  
Fareham parkrun19511400:28:52 +
Mountbatten School parkrun17110131:29 All -  
Phoenix parkrun1232600:27:31 +
Uckfield parkrun1416028:43 All -  
Guildford parkrun117125100:30:01 +
Tawd Valley parkrun18111029:25 All -  
Pendle parkrun1465900:26:37 +
Seven Fields parkrun1546728:28 All -  
Heaton parkrun133846700:31:01 +
Itchen Valley Country parkrun110613529:53 All -  
Hamilton Lake parkrun1151600:21:47 +
Bartley Park parkrun1628430:26 All -  
Brockenhurst parkrun112718600:32:41 +
Tidworth parkrun18615151:42 All -  
Itchen Valley Country parkrun110713500:29:53 +
Bushy parkrun1681102133:01 All -  
Burnley parkrun114120400:29:06 +
Basingstoke parkrun111212924:31 All -  
Uckfield parkrun1416000:28:43 +
Heaton parkrun133846731:01 All -  
Abingdon parkrun114220200:29:14 +
Guildford parkrun117125130:01 All -  
Pocket parkrun112419500:33:47 +
Hyndburn parkrun1425329:55 All -  
Bolton parkrun116221800:31:49 +
Phoenix parkrun1232627:31 All -  
Richmond Olympic parkrun15500:21:59 +
Canterbury parkrun1323627:29 All -  
Poole parkrun121328400:28:59 +
Valentines parkrun1698025:14 All -  
Portsmouth Lakeside parkrun1818700:26:32 +
Poole parkrun121328428:59 All -  
Salisbury parkrun119326700:29:45 +
Long Eaton parkrun118122928:06 All -  
2455500:20:06 +
Bolton parkrun116221831:49 + All +
Eden Project parkrun111116230:21 + All +
Abingdon parkrun114220229:14 + All +
2975520:06 All  


Volunteer Summary

RoleOccasions
- Run Director - 21
- Timekeeper - 2
- Token Sorting - 8
- Results Processor - 6
- Photographer - 4
- Marshal - 4
- Pre-event Setup - 6
- Equipment Storage and Delivery - 2
- Barcode Scanning - 2
- Post-event Close Down - 10
- Finish Tokens - 1
- Number Checker - 2
- First Timers Welcome - 1
- Funnel Manager - 1
- Tail Walker - 4
- Volunteer Co-ordinator - 1
- Report Writer - 10
- Pacer (5k only) - 1
Total Credits58

+ Run Director +

21
+ Timekeeper + 2
+ Token Sorting + 8
+ Results Processor + 6
+ Photographer + 4
+ Marshal + 5
+ Pre-event Setup + 6
+ Equipment Storage and Delivery + 2
+ Barcode Scanning + 3
+ Post-event Close Down + 10
+ Finish Tokens + 1
+ Number Checker + 2
+ First Timers Welcome + 1
+ Funnel Manager + 1
+ Tail Walker + 4
+ Volunteer Co-ordinator + 1
+ Report Writer + 10
+ Pacer (5k only) + 1
Total Credits60

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -321,63 +318,61 @@

Andrew TAYLOR (A13093
- Locations: 43 -
-
- Finishers: 31,231 + Locations: 51
- Finishes: 169,120 + Finishers: 55058
- All-time events: 5,571 + Finishes: 326068
- Volunteers: 4,773 + All-time events: 8853
- PBs: 27,153 + Volunteers: 7404
- Average finish time: 00:32:30 + PBs: 51108
- Average finishes per participant: 5.4 + Average finish time: 00:32:49
- Groups: 1,469 + Groups: 2001
-
+

- Stats last updated: Fri 14 Apr 2023 00:35:14 UTC + Stats last updated: Mon 30 Sep 2024 00:36:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -411,8 +416,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/2705084/all/index.html index 0ae00290..930ac503 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Canada - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -120,10 +107,10 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -155,63 +142,61 @@

Duncan BOOTH (A270508
- Locations: 43 -
-
- Finishers: 31,475 + Locations: 51
- Finishes: 170,773 + Finishers: 55058
- All-time events: 5,611 + Finishes: 326068
- Volunteers: 4,786 + All-time events: 8853
- PBs: 27,445 + Volunteers: 7404
- Average finish time: 00:32:30 + PBs: 51108
- Average finishes per participant: 5.4 + Average finish time: 00:32:49
- Groups: 1,477 + Groups: 2001
-
+
- Stats last updated: Mon 17 Apr 2023 00:35:19 UTC + Stats last updated: Mon 30 Sep 2024 00:36:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -245,8 +240,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/2705084/index.html index 1fa234ad..ca8120fd 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + results | parkrun Canada - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -120,18 +107,18 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volunteer Summary

RoleOccasions
- Marshal - 260
- Lead Bike - 130
- Event Day Course Check - 9
Total Credits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Volunteer Summary

RoleOccasions
+ Marshal + 350
+ Lead Bike + 130
+ Event Day Course Check + 82
Total Credits540

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



@@ -161,63 +148,61 @@

Duncan BOOTH (A270508
- Locations: 43 -
-
- Finishers: 31,475 + Locations: 51
- Finishes: 170,773 + Finishers: 55058
- All-time events: 5,611 + Finishes: 326068
- Volunteers: 4,786 + All-time events: 8853
- PBs: 27,445 + Volunteers: 7404
- Average finish time: 00:32:30 + PBs: 51108
- Average finishes per participant: 5.4 + Average finish time: 00:32:49
- Groups: 1,477 + Groups: 2001
-
+

- Stats last updated: Mon 17 Apr 2023 00:35:19 UTC + Stats last updated: Mon 30 Sep 2024 00:36:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -251,8 +246,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/482/all/index.html index b5235bd9..a15a7f1e 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Canada - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -125,1650 +112,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM40-44 + Most recent age category was VM45-49

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time16:2521:0459:17
Age Grading79.25%65.45%23.56%
Overall Position134.831692

+
FastestAverage
(mean)
Slowest
Time16:2521:2659:17
Age Grading79.25%64.63%23.56%
Overall Position138.841692

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Harleston Magpies08/04/2023793525:1255.42% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34%   -
Cannock Chase01/04/20232434425:4954.10% +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Kingston25/03/202360216430:0946.32% +
Quakers Walk25/11/2023126825:0556.08%   -
Wolford Wood18/03/202352730:2445.94% +
Aston Hall18/11/202352225:0156.23%   -
Kingston11/03/202360015027:1851.16% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Stockley Country04/03/2023817935:3239.31% +
Belvoir Castle04/11/2023911925:4254.73%   -
Chasewater25/02/202310010026:1953.07% +
Five Arches28/10/202365422:5861.25%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Dover Waterfront21/10/202374525:2255.45%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Rushcliffe14/10/20235087323:5458.86%   -
Worcester04/02/202354318529:3047.34% +
Kingston07/10/202363033150:2927.86%   -
Crane Park28/01/202349014550:3727.59% +
Maaraue03/10/20231012522:3462.33%   -
Kingston21/01/202359431139:3935.22% +
University of Northampton30/09/2023112223:2460.11%   -
Brooklands14/01/202313018830:4445.44% +
Clifton23/09/20231911025:1455.75%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Wisbech16/09/202351523:0361.03%   -
Kingston01/01/202359113340:3134.47% +
Holbrooks09/09/202362223:4359.31%   -
Kingston31/12/202259026442:4432.68% +
Wyre Forest02/09/20233404825:5654.24%   -
Bushy Park25/12/2022909169244:3931.28% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Riverfront19/08/20232594622:5761.29%   -
Kingston17/12/202258818059:1723.56% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston10/12/202258723255:4025.09% +
Kingston05/08/20236216723:2160.24%   -
Beacon03/12/2022737326:4152.34% +
Kingston29/07/20236208725:0955.93%   -
Ganger Farm26/11/2022211426:3452.57% +
Kingston22/07/20236199224:2457.65%   -
Bushy Park19/11/2022903110553:2326.16% +
Severn Valley Country15/07/20231411626:1353.66%   -
Leavesden Country12/11/202246928:3248.95% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Thornham Walks01/07/202353826:5251.99%   -
Durlston Country Park29/10/2022335032:4542.65% +
Kingston24/06/20236156524:0957.83% +   +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1799,63 +1952,61 @@

Danny NORMAN (A482)
- Locations: 43 -
-
- Finishers: 31,231 + Locations: 51
- Finishes: 169,120 + Finishers: 55058
- All-time events: 5,571 + Finishes: 326068
- Volunteers: 4,773 + All-time events: 8853
- PBs: 27,153 + Volunteers: 7404
- Average finish time: 00:32:30 + PBs: 51108
- Average finishes per participant: 5.4 + Average finish time: 00:32:49
- Groups: 1,469 + Groups: 2001
- +
- Stats last updated: Fri 14 Apr 2023 00:35:14 UTC + Stats last updated: Mon 30 Sep 2024 00:36:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1889,8 +2050,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/482/index.html index 585091b4..454c799c 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + results | parkrun Canada - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -124,878 +111,1004 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns total

+

867 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM40-44 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2321100:16:25 + Most recent age category was VM45-49 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2341116:25 + All +
Kingston parkrun471116:51 + All +
Bedfont Lakes parkrun81117:04 + All +
Nonsuch parkrun71116:52 + All +
Richmond parkrun71117:13 + All +
Crane Park parkrun61116:48 + All +
Riddlesdown parkrun42217:01 + All +
Brockwell parkrun, Herne Hill31116:56 + All +
Southwark parkrun34417:27 + All +
Fulham Palace parkrun33317:47 + All +
Cannon Hill parkrun, Birmingham3111118:04 + All +
Gunnersbury parkrun31116:51 + All +
Wimbledon Common parkrun35517:27 + All +
Brighton & Hove parkrun31116:27 + All +
Basingstoke parkrun35517:48 + All +
Black Park parkrun31117:25 + All +
Dulwich parkrun33317:11 + All +
Bexley parkrun31117:48 + All +
Tilgate parkrun31117:10 + All +
Frimley Lodge parkrun31117:11 + All +
Hilly Fields parkrun31117:50 + All +
Old Deer Park parkrun31117:41 + All +
Guildford parkrun31117:17 + All +
Homewood parkrun3151722:21 + All +
Chelmsford Central parkrun22217:24 + All +
Mole Valley parkrun2262622:56 + All +
Durlston Country Park parkrun2355032:45 + All +
Hazelwood parkrun2182222:21 + All +
Southsea parkrun23317:55 + All +
St Albans parkrun21116:37 + All +
Havant parkrun21117:46 + All +
Ashford parkrun22217:57 + All +
Bedford parkrun21116:55 + All +
Margate parkrun21118:16 + All +
Milton Keynes parkrun23317:26 + All +
Preston Park parkrun, Brighton22217:40 All - Graph It!
Kingston parkrun351100:16:51 +
Shorne Woods parkrun21118:14 All - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Canons Park parkrun27720:50 All - Graph It!
Richmond parkrun71100:17:13 +
Osterley parkrun21117:57 All - Graph It!
Nonsuch parkrun71100:16:52 +
Eastleigh parkrun27719:14 All - Graph It!
Crane Park parkrun61100:16:48 +
Brooklands parkrun2394223:22 All - Graph It!
Brighton & Hove parkrun31100:16:27 +
Great Lines parkrun, Medway25518:25 All - Graph It!
Fulham Palace parkrun33300:17:47 +
Malling Rec parkrun2738526:59 All - Graph It!
Frimley Lodge parkrun31100:17:11 +
Crystal Palace parkrun21117:24 All - Graph It!
Gunnersbury parkrun31100:16:51 +
Northala Fields parkrun22218:06 All - Graph It!
Bexley parkrun31100:17:48 +
Northampton parkrun21116:56 All - Graph It!
Tilgate parkrun31100:17:10 +
Oak Hill parkrun21117:13 All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Lloyd parkrun, Croydon21118:01 All - Graph It!
Southwark parkrun34400:17:27 +
Newbury parkrun21117:20 All - Graph It!
Basingstoke parkrun35500:17:48 +
Cranleigh parkrun26620:49 All - Graph It!
Hilly Fields parkrun31100:17:50 +
Littlehampton Prom parkrun2384324:22 All - Graph It!
Black Park parkrun31100:17:25 +
Whitstable parkrun23318:12 All - Graph It!
Riddlesdown parkrun32200:17:01 +
Bethlem Royal Hospital parkrun2263223:22 All - Graph It!
Dulwich parkrun33300:17:11 +
Cyclopark parkrun2353824:01 All - Graph It!
Guildford parkrun31100:17:17 +
Hockley Woods parkrun26621:09 All - Graph It!
Old Deer Park parkrun31100:17:41 +
South Oxhey parkrun21119:13 All - Graph It!
Wimbledon Common parkrun35500:17:27 +
Pymmes parkrun21117:06 All - Graph It!
Homewood parkrun3151700:22:21 +
Hastings parkrun291120:41 All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Wycombe Rye parkrun22217:17 All - Graph It!
Pymmes parkrun21100:17:06 +
Hove Promenade parkrun27719:23 All - Graph It!
Hove Promenade parkrun27700:19:23 +
Banstead Woods parkrun21117:31 All - Graph It!
Netley Abbey parkrun21100:17:21 +
Wormwood Scrubs parkrun21118:00 All - Graph It!
Mile End parkrun21100:16:53 +
Roundshaw Downs parkrun23318:14 All - Graph It!
Southampton parkrun23300:16:44 +
Mile End parkrun21116:53 All - Graph It!
Northala Fields parkrun22200:18:06 +
Bevendean Down parkrun28923:21 All - Graph It!
Hockley Woods parkrun26600:21:09 +
Finsbury parkrun22217:15 All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Tooting Common parkrun2181819:14 All - Graph It!
Upton Court parkrun22200:17:24 +
Bedgebury Pinetum parkrun28921:24 All - Graph It!
Alice Holt parkrun21100:17:59 +
Harrow parkrun25520:23 All - Graph It!
Osterley parkrun21100:17:57 +
Netley Abbey parkrun21117:21 All - Graph It!
Burgess parkrun22200:16:45 +
Ellenbrook Fields parkrun2141519:58 All - Graph It!
Gladstone parkrun21100:17:09 +
Worthing parkrun28918:44 All - Graph It!
Havant parkrun21100:17:46 +
Grovelands parkrun, Enfield22217:21 All - Graph It!
Cranleigh parkrun26600:20:49 +
Beckton parkrun23317:24 All - Graph It!
Finsbury parkrun22200:17:15 +
Gladstone parkrun21117:09 All - Graph It!
Southsea parkrun23300:17:55 +
Hackney Marshes parkrun22216:46 All - Graph It!
Margate parkrun21100:18:16 +
Burgess parkrun22216:45 All - Graph It!
Northampton parkrun21100:16:56 +
Orpington parkrun22217:27 All - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Barking parkrun22216:45 All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Southampton parkrun23316:44 All - Graph It!
Crystal Palace parkrun21100:17:24 +
Alice Holt parkrun21117:59 All - Graph It!
Eastleigh parkrun27700:19:14 +
Woodley parkrun21117:02 All - Graph It!
Hastings parkrun291100:20:41 +
Upton Court parkrun22217:24 All - Graph It!
Banstead Woods parkrun21100:17:31 +
Frogmary Green Farm parkrun1597225:58 All - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Harrow Lodge parkrun11118:48 All - Graph It!
Hackney Marshes parkrun22200:16:46 +
Witney parkrun1202022:34 All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Leamington parkrun12218:52 All - Graph It!
Woodley parkrun21100:17:02 +
Brockenhurst parkrun13318:23 All - Graph It!
Tooting Common parkrun2181800:19:14 +
Hogmoor Inclosure parkrun1262625:26 All - Graph It!
Milton Keynes parkrun23300:17:26 +
Hastings High School parkrun1637827:33 All - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Cannock Chase parkrun1384425:49 All - Graph It!
Barking parkrun22200:16:45 +
Wimpole Estate parkrun1202122:14 All - Graph It!
Canons Park parkrun27700:20:50 +
Haverhill parkrun1121323:32 All - Graph It!
Newbury parkrun21100:17:20 +
Edenbrook Country parkrun110514828:01 All - Graph It!
Shorne Woods parkrun21100:18:14 +
Maidstone River Park parkrun13318:00 All - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Cheltenham parkrun12217:24 All - Graph It!
Mole Valley parkrun2262600:22:56 +
Victoria Dock parkrun1273020:04 All - Graph It!
Oak Hill parkrun21100:17:13 +
Ekebergsletta parkrun1304325:57 All - Graph It!
Cyclopark parkrun2353800:24:01 +
Oxford parkrun11117:18 All - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Aylesbury parkrun11117:51 All - Graph It!
South Oxhey parkrun21100:19:13 +
Mote Park parkrun19712231:28 All - Graph It!
Chelmsford Central parkrun22200:17:24 +
Riverfront parkrun1404622:57 All - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Newent parkrun1182225:27 All - Graph It!
Bevendean Down parkrun28900:23:21 +
Clapham Common parkrun1404220:22 All - Graph It!
Bedford parkrun21100:16:55 +
Llanishen Park parkrun1303323:48 All - Graph It!
Whitstable parkrun23300:18:12 +
Heartwood Forest parkrun1252721:41 All - Graph It!
Orpington parkrun22200:17:27 +
Walthamstow parkrun11117:48 All - Graph It!
Ashford parkrun22200:17:57 +
Malmö Ribersborg parkrun111215128:46 All - Graph It!
Hazelwood parkrun2182200:22:21 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 All - Graph It!
Brooklands parkrun2394200:23:22 +
Huntingdon parkrun1202121:10 All - Graph It!
Wycombe Rye parkrun22200:17:17 +
Felixstowe parkrun1121221:07 All - Graph It!
Harrow parkrun25500:20:23 +
Tidworth parkrun110815535:14 All - Graph It!
Beckton parkrun23300:17:24 +
Brandon Country Park parkrun11118:30 All - Graph It!
St Albans parkrun21100:16:37 +
Prospect parkrun1232322:42 All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Mildenhall Hub parkrun1273124:33 All -  
Buckingham parkrun12200:18:37 +
York parkrun12217:12 All -  
Thomas Mills parkrun1486500:30:19 +
Thetford parkrun1161721:45 All -  
Leamington parkrun12200:18:52 +
Great Dunmow parkrun14420:25 All -  
Church Mead parkrun16610200:32:53 +
Leavesden Country parkrun1506928:32 All -  
Letchworth parkrun1141400:23:13 +
Catford parkrun1303322:32 All -  
Mulbarton parkrun12200:19:55 +
Lordship Recreation Ground parkrun19112425:22 All -  
Arrow Valley parkrun13300:18:05 +
Rugby parkrun1181822:26 All -  
Frogmary Green Farm parkrun1597200:25:58 +
Mulbarton parkrun12219:55 All -  
Sutton Park parkrun1475500:24:54 +
Swaffham parkrun191022:19 All -  
Reigate Priory parkrun16600:19:06 +
Ganger Farm parkrun19811426:34 All -  
Bury St Edmunds parkrun13300:18:17 +
Beckenham Place parkrun1121220:28 All -  
Pollok parkrun, Glasgow11100:17:00 +
Forest Rec parkrun1677626:35 All -  
Kingdom parkrun1222500:24:39 +
Street parkrun1283525:52 All -  
Barclay parkrun15600:23:13 +
Market Bosworth Country Park parkrun110614435:35 All -  
Chippenham parkrun1212100:20:08 +
Whiteley parkrun1141520:56 All -  
Ipswich parkrun11100:17:34 +
Kingsbury Water parkrun1394725:05 All -  
Itchen Valley Country parkrun1476100:27:37 +
Springhill parkrun14422:18 All -  
Neckarau parkrun1243000:27:11 +
Wolford Wood parkrun1212730:24 All -  
Brandon Country Park parkrun11100:18:30 +
Pontypridd parkrun12217:54 All -  
Boston parkrun17700:21:18 +
Pocket parkrun1222321:38 All -  
University Parks parkrun119032600:31:42 +
Stockley Country parkrun111917935:32 All -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Braunstone parkrun1262720:41 All -  
Lullingstone parkrun17700:21:21 +
Didcot parkrun1101121:28 All -  
Coventry parkrun1292900:20:51 +
Littleport parkrun1445125:16 All -  
Berkeley Green parkrun1233100:28:31 +
Yarborough Leisure Centre parkrun1466125:59 All -  
Mersea Island parkrun1121200:20:59 +
Roding Valley parkrun1111321:26 All -  
Aylesbury parkrun11100:17:51 +
Clair parkrun13318:36 All -  
Royal Tunbridge Wells parkrun18900:19:23 +
Dinton Pastures parkrun1131321:23 All -  
Southall parkrun1557500:31:38 +
Beacon Hill Country Park parkrun1273725:54 All -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Severn Bridge parkrun1353921:32 All -  
Pomphrey Hill parkrun1364100:23:02 +
Abbey Park parkrun1779425:21 All -  
Henley-on-Thames parkrun1111100:22:25 +
Dudley parkrun1445626:35 All -  
Aachener Weiher parkrun1101100:24:55 +
Pegwell Bay parkrun12217:40 All -  
Penrose parkrun1151600:19:40 +
Manor Field parkrun, Whittlesey1121324:25 All -  
King’s Lynn parkrun1151500:20:07 +
Blaise Castle parkrun112816326:20 All -  
Fulbourn Hospital parkrun1344700:24:59 +
Chipping Sodbury parkrun1303221:20 All -  
Fareham parkrun16600:19:21 +
Foots Cray Meadows parkrun1212323:17 All -  
Brockenhurst parkrun13300:18:23 +
Thames Path parkrun, Woolwich1789023:42 All -  
Canterbury parkrun16600:21:56 +
Bath Skyline parkrun1192021:08 All -  
Alton Water parkrun1538300:35:09 +
Dishley parkrun, Loughborough110311424:30 All -  
Littleport parkrun1445100:25:16 +
Thornham Walks parkrun1363826:52 All -  
Newport parkrun11100:17:29 +
Moors Valley parkrun19919:40 All -  
California Country parkrun1649000:28:49 +
East Grinstead parkrun1131423:10 All -  
Thornbury parkrun1323400:28:19 +
Sutton Park parkrun1475524:54 All -  
Greenwich parkrun12200:18:07 +
University of Northampton parkrun1192223:24 All -  
Seven Fields parkrun1475500:26:28 +
Shipley Country parkrun1232424:45 All -  
Highbury Fields parkrun11100:17:25 +
Lancing Beach Green parkrun1141421:08 All -  
The Great Field parkrun19313500:29:12 +
Dover Waterfront parkrun1374525:22 All -  
Street parkrun1283500:25:52 +
Rickmansworth parkrun1242721:39 All -  
South Norwood parkrun1121200:21:11 +
Queen Elizabeth parkrun12219:08 All -  
Dunstable Downs parkrun1374300:24:58 +
Sizewell parkrun1172023:30 All -  
Melton Mowbray parkrun1192200:22:38 +
Holbrooks parkrun1202223:43 All -  
Horsham parkrun14500:18:16 +
Highbury Fields parkrun11117:25 All -  
Irchester Country parkrun1586200:25:13 +
Clacton Seafront parkrun19920:35 All -  
Stratford-upon-Avon parkrun1202500:21:14 +
Delaware and Raritan Canal parkrun12221:06 All -  
Wotton parkrun1182100:24:45 +
Wisbech parkrun1111523:03 All -  
Bath Skyline parkrun1192000:21:08 +
Milton Country parkrun13317:43 All -  
Great Dunmow parkrun14400:20:25 +
Seaton parkrun1394824:09 All -  
Corby parkrun18800:23:09 +
Higginson parkrun, Marlow1272922:17 All -  
Bracknell parkrun18800:20:04 +
Quakers Walk parkrun1566825:05 All -  
Cromhall parkrun1151600:24:20 +
Lister Park parkrun, Bradford1313621:55 All -  
Perry Hall parkrun1464900:24:58 +
Wendover Woods parkrun1262623:51 All -  
Gunpowder parkrun12200:17:34 +
Sence Valley Forest Park parkrun1232526:28 All -  
Luton Wardown parkrun191000:19:36 +
Canterbury parkrun16621:56 All -  
Ifield Mill Pond parkrun1373800:24:33 +
Henstridge Airfield parkrun18821:41 All -  
March parkrun15500:21:11 +
Five Arches parkrun1455422:58 All -  
Roding Valley parkrun1111300:21:26 +
Yeovil Montacute parkrun1707525:51 All -  
Charlton parkrun18213000:32:05 +
Watermeadows parkrun1283124:57 All -  
Malmö Ribersborg parkrun111215100:28:46 +
Tamworth Castle Grounds parkrun1333523:26 All -  
Worcester parkrun114418500:29:30 +
St Helens parkrun1606824:27 All -  
Wolford Wood parkrun1212700:30:24 +
Weymouth parkrun1141420:45 All -  
Fire Service College parkrun1181900:22:12 +
Walmer and Deal Seafront parkrun18821:38 All -  
Panshanger parkrun17700:20:14 +
Aston Hall parkrun1202225:01 All -  
Conkers parkrun12200:17:46 +
Royal Tunbridge Wells parkrun18919:23 All -  
Banbury parkrun1222300:21:16 +
Corby parkrun18823:09 All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Marlborough Common parkrun1202122:48 All -  
Rushmere parkrun1131400:22:39 +
Battlestead Croft parkrun1111122:53 All -  
Whiteley parkrun1141500:20:56 +
Shepton Mallet parkrun1121421:50 All -  
Sandringham parkrun1466300:30:18 +
Clare Castle parkrun1252723:04 All -  
Victoria Dock parkrun1283000:20:04 +
Coldham’s Common parkrun1535923:04 All -  
Queen Elizabeth parkrun12200:19:08 +
Brunswick Park parkrun1212223:58 All -  
Lordship Recreation Ground parkrun19112400:25:22 +
Brentwood parkrun17722:28 All -  
Somerdale Pavilion parkrun1384600:31:17 +
Somerdale Pavilion parkrun1384631:17 All -  
Dartford parkrun11100:17:59 +
Wakehurst parkrun18810525:00 All -  
Winchester parkrun14500:18:28 +
Boston parkrun17721:18 All -  
Stratford Park parkrun, Stroud1566500:27:51 +
Morden parkrun111715526:58 All -  
Sherwood Pines parkrun1161800:21:33 +
Pontefract parkrun1718724:10 All -  
Grove Fields parkrun1578500:28:03 +
Jersey Farm parkrun1252723:11 All -  
Witney parkrun1202000:22:34 +
Bug Hunter Waters parkrun1455022:41 All -  
Preston Park parkrun, Brighton12200:17:40 +
Rosliston parkrun1333624:41 All -  
Colchester Castle parkrun14400:18:04 +
Longrun Meadow parkrun111416532:01 All -  
Tidworth parkrun110815500:35:14 +
Fire Service College parkrun1181922:12 All -  
Walmer and Deal Seafront parkrun18800:21:38 +
Woolacombe Dunes parkrun19410931:20 All -  
Ferry Meadows parkrun15500:17:27 +
The Plens parkrun1303124:04 All -  
St Mary’s parkrun1587400:29:14 +
Arrow Valley parkrun13318:05 All -  
Dartford Heath parkrun1171700:22:06 +
Tonbridge parkrun14418:40 All -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
East Brighton parkrun1182123:56 All -  
Great Denham parkrun16600:19:27 +
Three Brooks parkrun1697223:46 All -  
Hastings High School parkrun1637800:27:33 +
Peacehaven parkrun17721:07 All -  
Wendover Woods parkrun1262600:23:51 +
Pontypool parkrun1232323:51 All -  
Peckham Rye parkrun11100:17:49 +
Cromhall parkrun1151624:20 All -  
Upton House parkrun1252700:22:34 +
Dereham parkrun1323323:47 All -  
Lee-on-the-Solent parkrun17700:19:40 +
Bournemouth parkrun14417:43 All -  
Graves parkrun11100:18:18 +
Pomphrey Hill parkrun1364123:02 All -  
Maidstone parkrun13300:18:00 +
Seaford Beach parkrun1535622:25 All -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Mansfield parkrun11117:09 All -  
South Woodham Ferrers parkrun18800:21:14 +
Fountains Abbey parkrun11118:03 All -  
Pontypridd parkrun12200:17:54 +
Loch Neaton parkrun, Watton1171725:49 All -  
Bournemouth parkrun14400:17:43 +
Brueton parkrun1475021:33 All -  
Sizewell parkrun1172000:23:30 +
Great Cornard parkrun1192020:33 All -  
Rushmoor parkrun19900:18:29 +
Dunstable Downs parkrun1374324:58 All -  
Walsall Arboretum parkrun19810600:25:31 +
Beeston parkrun1374023:53 All -  
Gorleston Cliffs parkrun12200:17:43 +
Feltham parkrun13424:56 All -  
Uckfield parkrun1404300:24:12 +
Markeaton parkrun1576422:56 All -  
Aldenham parkrun1141400:21:37 +
Reigate Priory parkrun16619:06 All -  
Gadebridge parkrun1141400:22:22 +
Highwoods parkrun1252624:49 All -  
Horspath parkrun17410600:28:12 +
Valentines parkrun11116:49 All -  
Rogiet parkrun1151600:24:27 +
Springburn parkrun, Glasgow13318:05 All -  
Rendlesham Forest parkrun1264600:37:01 +
California Country parkrun1649028:49 All -  
Dishley parkrun, Loughborough110311400:24:30 +
Rushmoor parkrun19918:29 All -  
Great Cornard parkrun1192000:20:33 +
Mountbatten School parkrun1323424:11 All -  
Kettering parkrun1232600:22:50 +
Colchester Castle parkrun14418:04 All -  
Pont y Bala parkrun15700:23:18 +
Buckingham parkrun12218:37 All -  
Burnham and Highbridge parkrun17510000:27:51 +
Sunny Hill parkrun1202424:39 All -  
Stonehouse parkrun1131300:20:09 +
Bognor Regis parkrun12218:12 All -  
Hampstead Heath parkrun11100:17:45 +
Aachener Weiher parkrun1101124:55 All -  
Wickford Memorial parkrun1436600:51:15 +
Peckham Rye parkrun11117:49 All -  
Castle Park parkrun1394100:22:34 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 All -  
Huntingdon parkrun1202100:21:10 +
Great Notley parkrun16620:16 All -  
Great Salterns parkrun19212400:30:27 +
Snowden Field parkrun1242624:15 All -  
Snowden Field parkrun1242600:24:15 +
Burnham-on-Crouch parkrun18822:01 All -  
Southend parkrun11100:16:28 +
Woking parkrun18818:19 All -  
Andover parkrun11100:17:33 +
Neckarufer parkrun, Esslingen1364425:12 All -  
parkrun Zalew Żyrardowski16700:24:38 +
Worcester parkrun114418529:30 All -  
Marecchia parkrun11100:19:50 +
Blandford parkrun18920:11 All -  
Cheltenham parkrun12200:17:24 +
Pont y Bala parkrun15723:18 All -  
St Helens parkrun1606800:24:27 +
Chichester parkrun13319:05 All -  
Bartley Park parkrun18415100:32:38 +
Kingdom parkrun1222524:39 All -  
Severn Bridge parkrun1353900:21:32 +
Westmill parkrun1101022:55 All -  
Pontypool parkrun1232300:23:51 +
Dartford parkrun11117:59 All -  
Poole parkrun14400:16:57 +
Hanworth parkrun1364024:26 All -  
Bramhall parkrun115924700:35:16 +
Bracknell parkrun18820:04 All -  
Sunny Hill parkrun1202400:24:39 +
Folkestone parkrun1212521:48 All -  
Cassiobury parkrun1111100:20:14 +
Uckfield parkrun1404324:12 All -  
Hoblingwell parkrun1202400:23:52 +
Harrogate parkrun13318:11 All -  
Colwick parkrun18800:19:46 +
Kesgrave parkrun1374021:18 All -  
Chipping Norton School parkrun1455100:26:40 +
Thomas Mills parkrun1486530:19 All -  
Worthing parkrun18900:18:44 +
Lymington Woodside parkrun15721:59 All -  
Harrow Lodge parkrun11100:18:48 +
Hereford parkrun1535323:07 All -  
Bradford parkrun1313600:21:55 +
Chasewater parkrun18210026:19 All -  
Bury Field parkrun1669000:33:07 +
South Norwood parkrun1121221:11 All -  
Pocket parkrun1222300:21:38 +
Panshanger parkrun17720:14 All -  
Longrun Meadow parkrun111416500:32:01 +
Wolverhampton parkrun1556624:54 All -  
Worcester Pitchcroft parkrun111814300:27:04 +
Harcourt Hill parkrun1171721:13 All -  
Highwoods parkrun1252600:24:49 +
Tetbury Goods Shed parkrun1253024:25 All -  
Maidenhead parkrun17700:18:49 +
Gloucester North parkrun1101022:14 All -  
Soham Village College parkrun1253200:28:03 +
Harlow parkrun1151523:00 All -  
Rickmansworth parkrun1242700:21:39 +
Alvaston parkrun1515922:24 All -  
Swaffham parkrun191000:22:19 +
Worcester Pitchcroft parkrun111814327:04 All -  
Brentwood parkrun17700:22:28 +
Perry Hall parkrun1464924:58 All -  
Lymington Woodside parkrun15700:21:59 +
Newport parkrun11117:29 All -  
Loch Neaton parkrun, Watton1171700:25:49 +
Tring parkrun1171823:38 All -  
Daventry parkrun1151500:21:10 +
Severn Valley Country parkrun1141626:13 All -  
Hatfield Forest parkrun1181800:20:36 +
Wanstead Flats parkrun13317:13 All -  
Kingsway parkrun, Gloucester1192000:21:20 +
Daventry parkrun1151521:10 All -  
Salcey Forest parkrun1384300:24:53 +
St Mary’s parkrun1587429:14 All -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Poole parkrun14416:57 All -  
Prospect parkrun1232300:22:42 +
Melton Mowbray parkrun1192222:38 All -  
Weymouth parkrun1141400:20:45 +
The Old Showfield parkrun1636923:30 All -  
Westmill parkrun1101000:22:55 +
Henley-on-Thames parkrun1111122:25 All -  
East Brighton parkrun1182100:23:56 +
Crissy Field parkrun1101220:40 All -  
Harlow parkrun1151500:23:00 +
Babbs Mill parkrun1405128:00 All -  
Linford Wood parkrun1222200:21:45 +
Maidenhead parkrun17718:49 All -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Ross-on-Wye parkrun1172124:22 All -  
Lydney parkrun1202100:23:19 +
Kettering parkrun1232622:50 All -  
Braunstone parkrun1262700:20:41 +
Stratford Park parkrun, Stroud1566527:51 All -  
Harleston Magpies parkrun1293500:25:12 +
Bury St Edmunds parkrun13318:17 All -  
Clapham Common parkrun1404200:20:22 +
Mallards Pike parkrun1324630:57 All -  
Market Bosworth Country Park parkrun110614400:35:35 +
Market Harborough parkrun1303121:17 All -  
Jersey Farm parkrun1252700:23:11 +
Cassiobury parkrun1111120:14 All -  
Kesgrave parkrun1374000:21:18 +
Squerryes Winery parkrun1323627:45 All -  
Stevenage parkrun17700:19:32 +
Walsall Arboretum parkrun19010625:31 All -  
Hadleigh parkrun, Essex1252600:24:27 +
Penrose parkrun1151619:40 All -  
Squerryes Winery parkrun1323600:27:45 +
King George V Playing Field parkrun, Cheltenham1232826:08 All -  
Rutland Water parkrun1293000:22:44 +
Evesham parkrun1111121:39 All -  
Beckenham Place parkrun1121200:20:28 +
Warwick Racecourse parkrun1486024:55 All -  
Sutcliffe parkrun113117200:30:34 +
Huddersfield parkrun1626722:02 All -  
Haverhill parkrun1121300:23:32 +
Clevedon Salthouse Fields parkrun1384925:13 All -  
Leavesden Country parkrun1506900:28:32 +
Long Eaton parkrun19912124:06 All -  
Coldham’s Common parkrun1535900:23:04 +
Barry Island parkrun1394223:51 All -  
Chichester parkrun13300:19:05 +
Ifield Mill Pond parkrun1373824:33 All -  
Billericay parkrun1121300:21:20 +
Upton House parkrun1252722:34 All -  
Bromley parkrun13300:17:18 +
Lullingstone parkrun17721:21 All -  
Babbs Mill parkrun1405100:28:00 +
The Leas parkrun, Minster1252524:37 All -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Medina I.O.W. parkrun11117:20 All -  
Bryn Bach parkrun11100:16:50 +
Uditore parkrun13320:28 All -  
York parkrun12200:17:12 +
Hunstanton Promenade parkrun1283523:45 All -  
Storeys Field parkrun115121100:28:49 +
Raphael parkrun13319:35 All -  
Chipping Sodbury parkrun1303200:21:20 +
Burnham and Highbridge parkrun17510027:51 All -  
Mote Park parkrun19712200:31:28 +
Salcey Forest parkrun1384324:53 All -  
Watermeadows parkrun1283100:24:57 +
Ferry Meadows parkrun15517:27 All -  
Woking parkrun18800:18:19 +
Barclay parkrun15623:13 All -  
Raphael parkrun13300:19:35 +
Irchester Country parkrun1586225:13 All -  
Harwich parkrun191000:21:22 +
Maldon Prom parkrun11118:04 All -  
Fritton Lake parkrun11100:18:26 +
Salisbury parkrun1111119:34 All -  
Heartwood Forest parkrun1252700:21:41 +
Tremorfa parkrun1272923:30 All -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Billericay parkrun1121321:20 All -  
Bedworth parkrun1171700:22:14 +
Gedling parkrun1273224:59 All -  
Clair parkrun13300:18:36 +
Oaklands parkrun111820336:10 All -  
Brueton parkrun1475000:21:33 +
Winchester parkrun14518:28 All -  
Higginson parkrun, Marlow1272900:22:17 +
Aldenham parkrun1141421:37 All -  
Bognor Regis parkrun12200:18:12 +
East Park parkrun1121424:18 All -  
Huddersfield parkrun1626700:22:02 +
Soham Village College parkrun1253228:03 All -  
Heaton parkrun13300:18:08 +
Stevenage parkrun17719:32 All -  
Chasewater parkrun18210000:26:19 +
Tewkesbury parkrun1111422:50 All -  
Tewkesbury parkrun1111400:22:50 +
Seven Fields parkrun1475526:28 All -  
Marple parkrun11100:17:15 +
Conkers parkrun12217:46 All -  
Cannock Chase parkrun1384400:25:49 +
Lee-on-the-Solent parkrun17719:40 All -  
Edgbaston Reservoir parkrun1658600:26:24 +
Brixworth Country parkrun1496126:53 All -  
Cirencester parkrun1222400:22:40 +
Abingdon parkrun15518:03 All -  
Kingsbury Water parkrun1394700:25:05 +
Lowestoft parkrun1232621:10 All -  
Peacehaven parkrun17700:21:07 +
Chipping Norton School parkrun1455126:40 All -  
Lancing Beach Green parkrun1141400:21:08 +
Linford Wood parkrun1222221:45 All -  
Springburn parkrun, Glasgow13300:18:05 +
Harwich parkrun191021:22 All -  
Market Harborough parkrun1303100:21:17 +
Fulbourn Hospital parkrun1344724:59 All -  
Amager Fælled parkrun1333700:24:23 +
Gunpowder parkrun12217:34 All -  
Hanworth parkrun1364000:24:26 +
Dartford Heath parkrun1171722:06 All -  
Salisbury parkrun1111100:19:34 +
Sandhurst Memorial parkrun1537328:54 All -  
Houghton Hall parkrun1131300:21:48 +
Woodhouse Moor parkrun11117:22 All -  
Chalkwell Beach parkrun1819600:24:40 +
Sandwell Valley parkrun1455930:43 All -  
Melksham parkrun1171700:24:31 +
Wyre Forest parkrun1434825:56 All -  
Thetford parkrun1161700:21:45 +
parkrun Zalew Żyrardowski16724:38 All -  
Pontefract parkrun1718700:24:10 +
Bramhall parkrun115924735:16 All -  
Downham Market Academy parkrun1121300:24:35 +
Hatfield Forest parkrun1181820:36 All -  
Fountains Abbey parkrun11100:18:03 +
Swansea Bay parkrun1748323:44 All -  
Cardiff parkrun111011700:22:02 +
Wollaton Hall parkrun1889723:51 All -  
Littlehampton Prom parkrun1384300:24:22 +
Horsham parkrun14518:16 All -  
Uditore parkrun13300:20:28 +
Jersey parkrun16619:41 All -  
Beacon parkrun1587300:26:41 +
Berkeley Green parkrun1233128:31 All -  
parkrun de Rouen15500:21:41 +
Cardiff parkrun111011722:02 All -  
Walthamstow parkrun11100:17:48 +
Ally Pally parkrun11118:09 All -  
Shepton Mallet parkrun1121400:21:50 +
Thurrock parkrun, Orsett Heath16620:41 All -  
Marine Parade parkrun17711100:29:24 +
Beacon parkrun1587326:41 All -  
Foots Cray Meadows parkrun1212300:23:17 +
Albert parkrun, Middlesbrough1515423:17 All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Sherwood Pines parkrun1161821:33 All -  
Evesham parkrun1111100:21:39 +
Wickford Memorial parkrun1436651:15 All -  
Southwick Country parkrun1272900:21:47 +
Thornbury parkrun1323428:19 All -  
Lydiard parkrun18800:18:25 +
Malling parkrun18314547:25 All -  
Sandhurst Memorial parkrun1537300:28:54 +
Itchen Valley Country parkrun1476127:37 All -  
Bicester parkrun14400:20:13 +
Pollok parkrun, Glasgow11117:00 All -  
Wimpole Estate parkrun1202100:22:14 +
Eastville parkrun120525325:12 All -  
Markshall Estate parkrun110315600:32:26 +
Rutland Water parkrun1293022:44 All -  
Dinton Pastures parkrun1131300:21:23 +
Chalkwell Beach parkrun1819624:40 All -  
Tonbridge parkrun14400:18:40 +
Amager Fælled parkrun1333724:23 All -  
Wanstead Flats parkrun13300:17:13 +
Hoblingwell parkrun1202423:52 All -  
Woodhouse Moor parkrun11100:17:22 +
Belton House parkrun1141523:48 All -  
Mountbatten School parkrun1323400:24:11 +
Kagerzoom parkrun1435824:39 All -  
Eastville parkrun120525300:25:12 +
Gorleston Cliffs parkrun12217:43 All -  
Brixworth Country parkrun1496100:26:53 +
King’s Lynn parkrun1151520:07 All -  
Portsmouth Lakeside parkrun19900:19:12 +
Holkham parkrun1506925:37 All -  
Milton Country parkrun13300:17:43 +
Horspath parkrun17410628:12 All -  
Swanley parkrun19712500:31:18 +
Southwick Country parkrun1272921:47 All -  
Springhill parkrun14400:22:18 +
Rushmere parkrun1131422:39 All -  
Gloucester North parkrun1101000:22:14 +
Zuiderpark parkrun, Den Haag1738124:07 All -  
Feltham parkrun13400:24:56 +
Heaton parkrun13318:08 All -  
Crissy Field parkrun1101200:20:40 +
Colney Lane parkrun1495524:01 All -  
Ally Pally parkrun11100:18:09 +
Leicester Victoria parkrun19711626:45 All -  
Ashton Court parkrun1859500:22:59 +
Church Mead parkrun16610232:53 All -  
Oaklands parkrun111820300:36:10 +
Southend parkrun11116:28 All -  
Sittingbourne parkrun18800:20:56 +
Lydney parkrun1202123:19 All -  
Moors Valley parkrun19900:19:40 +
Edgbaston Reservoir parkrun1658626:24 All -  
Catford parkrun1303300:22:32 +
Reading parkrun12217:18 All -  
Clare Castle parkrun1252700:23:04 +
March parkrun15521:11 All -  
Harrogate parkrun13300:18:11 +
Woodgate Valley Country Park parkrun16513245:50 All -  
Seaford Beach parkrun1535600:22:25 +
Maaraue parkrun1232522:34 All -  
Tring parkrun1171800:23:38 +
Stonehouse parkrun1131320:09 All -  
Sandwell Valley parkrun1455900:30:43 +
Rheinpark parkrun1151825:30 All -  
Basildon parkrun15500:18:13 +
Edinburgh parkrun12217:00 All -  
The Leas parkrun, Minster1252500:24:37 +
Chippenham parkrun1212120:08 All -  
Little Stoke parkrun11100:17:03 +
Stratford-upon-Avon parkrun1202521:14 All -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Henlow Bridge Lakes parkrun17511532:34 All -  
Felixstowe parkrun1121200:21:07 +
Bromley parkrun13317:18 All -  
Yeovil Montacute parkrun1707500:25:51 +
Houghton Hall parkrun1131321:48 All -  
Stockley Country parkrun111917900:35:32 +
Sittingbourne parkrun18820:56 All -  
Woolacombe Dunes parkrun19410900:31:20 +
Sharpham Road Playing Fields parkrun1253124:41 All -  
Harcourt Hill parkrun1171700:21:13 +
Gadebridge parkrun1141422:22 All -  
Abingdon parkrun15500:18:03 +
Chilton Fields parkrun1405428:26 All -  
Eastbourne parkrun12200:17:24 +
Storeys Field parkrun115121128:49 All -  
Warwick Racecourse parkrun1486000:24:55 +
Hadleigh parkrun, Essex1252624:27 All -  
Leicester Victoria parkrun19711600:26:45 +
Marple parkrun11117:15 All -  
Broadwater parkrun110321300:35:19 +
Portsmouth Lakeside parkrun19919:12 All -  
Clacton Seafront parkrun19900:20:35 +
Grove Fields parkrun1578528:03 All -  
Burnham-on-Crouch parkrun18800:22:01 +
Banbury parkrun1222321:16 All -  
Ganger Farm parkrun19811400:26:34 +
Graves parkrun11118:18 All -  
Folkestone parkrun1212500:21:48 +
Watermead Country Park parkrun110818235:52 All -  
Mallards Pike parkrun1324600:30:57 +
Eastbourne parkrun12217:24 All -  
Malling parkrun18314500:47:25 +
Malahide parkrun11116:54 All -  
Rugby parkrun1181800:22:26 +
Fareham parkrun16619:21 All -  
Watermead Country Park parkrun110818200:35:52 +
Sutcliffe parkrun113117230:34 All -  
Hogmoor Inclosure parkrun1262600:25:26 +
Fritton Lake parkrun11118:26 All -  
East Grinstead parkrun1131400:23:10 +
Bicester parkrun14420:13 All -  
Mildenhall Hub parkrun1273100:24:33 +
Sandringham parkrun1466330:18 All -  
Marlborough Common parkrun1202100:22:48 +
Luton Wardown parkrun191019:36 All -  
Blandford parkrun18900:20:11 +
Cwmbran parkrun1171723:29 All -  
Maldon Prom parkrun11100:18:04 +
Broadwater parkrun110321335:19 All -  
Edinburgh parkrun12200:17:00 +
Basildon parkrun15518:13 All -  
The Old Showfield parkrun1636900:23:30 +
Marecchia parkrun11119:50 All -  
Jersey parkrun16600:19:41 +
Harleston Magpies parkrun1293525:12 All -  
Chilton Fields parkrun1405400:28:26 +
Kingsway parkrun, Gloucester1192021:20 All -  
Sixfields Upton parkrun18800:19:58 +
Bryn Bach parkrun11116:50 All -  
Pegwell Bay parkrun12200:17:40 +
Mersea Island parkrun1121220:59 All -  
Valentines parkrun11100:16:49 +
Charlton parkrun18213032:05 All -  
Edenbrook Country parkrun110514800:28:01 +
parkrun de Rouen15521:41 All -  
Henstridge Airfield parkrun18800:21:41 +
Dallas Burston Polo Club parkrun19614732:26 All -  
Great Notley parkrun16600:20:16 +
Ashton Court parkrun1859522:59 All -  
Medina I.O.W. parkrun11100:17:20 +
Tøyen parkrun1668526:32 All -  
Reading parkrun12200:17:18 +
The Great Field parkrun19313529:12 All -  
Tetbury Goods Shed parkrun1253000:24:25 +
Castle Park parkrun1394122:34 All -  
Lowestoft parkrun1232600:21:10 +
Swanley parkrun19712531:18 All -  
Malahide parkrun11100:16:54 +
Greenwich parkrun12218:07 All -  
Oxford parkrun11100:17:18 +
Neckarau parkrun1243027:11 All -  
Rheinpark parkrun1151800:25:30 +
Bury Field parkrun1669033:07 All -  
Gloucester City parkrun1171900:22:35 +
Clifton parkrun1101025:14 All -  
Didcot parkrun1101100:21:28 +
Alton Water parkrun1538335:09 All -  
Mansfield parkrun11100:17:09 +
Colwick parkrun18819:46 All -  
7851100:16:25 +
Melksham parkrun1171724:31 + All +
Markshall Estate parkrun110315632:26 + All +
Rogiet parkrun1151624:27 + All +
Bartley Park parkrun18415132:38 + All +
Lydiard parkrun18818:25 + All +
Little Stoke parkrun11117:03 + All +
Letchworth parkrun1141423:13 + All +
Belvoir Castle parkrun1131925:42 + All +
Andover parkrun11117:33 + All +
Rushcliffe parkrun1617323:54 + All +
Cirencester parkrun1222422:40 + All +
Southall parkrun1557531:38 + All +
Forest of Dean parkrun1182224:51 + All +
parkrun des Dougnes, Cubnezais12219:42 + All +
South Woodham Ferrers parkrun18821:14 + All +
Marine Parade parkrun17711129:24 + All +
Coventry parkrun1292920:51 + All +
Wotton parkrun1182124:45 + All +
Gloucester City parkrun1171922:35 + All +
Great Salterns parkrun19212430:27 + All +
Bedworth parkrun1171722:14 + All +
University Parks parkrun119032631:42 + All +
Hampstead Heath parkrun11117:45 + All +
Great Denham parkrun16619:27 + All +
Downham Market Academy parkrun1121324:35 + All +
Ipswich parkrun11117:34 + All +
Sixfields Upton parkrun18819:58 + All +
Rendlesham Forest parkrun1264637:01 + All +
8671116:25 All  


Volunteer Summary

RoleOccasions
- Run Director - 94
- Timekeeper - 59
- Token Sorting - 3
- Results Processor - 87
- Photographer - 6
- Communications Person - 10
- Marshal - 39
- Pre-event Setup - 130
- Equipment Storage and Delivery - 128
- Other - 23
- Barcode Scanning - 55
- Post-event Close Down - 45
- Finish Tokens - 15
- Number Checker - 2
- First Timers Welcome - 68
- Funnel Manager - 15
- Finish Token Support - 9
- Tail Walker - 29
- Volunteer Co-ordinator - 146
- Report Writer - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Car Park Marshal - 1
- Event Day Course Check - 8
- parkwalker - 9
Total Credits396

+ Run Director +

99
+ Timekeeper + 94
+ Token Sorting + 12
+ Results Processor + 87
+ Photographer + 6
+ Communications Person + 10
+ Marshal + 54
+ Pre-event Setup + 148
+ Equipment Storage and Delivery + 130
+ Other + 26
+ Barcode Scanning + 78
+ Post-event Close Down + 51
+ Finish Tokens + 21
+ Number Checker + 2
+ First Timers Welcome + 82
+ Funnel Manager + 15
+ Finish Token Support + 12
+ Tail Walker + 29
+ Volunteer Co-ordinator + 148
+ Report Writer + 100
+ Backup Timer + 3
+ Warm Up Leader + 16
+ Car Park Marshal + 1
+ Event Day Course Check + 14
+ parkwalker + 10
Total Credits499

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1025,63 +1138,61 @@

Danny NORMAN (A482)
- Locations: 43 + Locations: 51
- Finishers: 31,231 + Finishers: 55058
- Finishes: 169,120 + Finishes: 326068
- All-time events: 5,571 + All-time events: 8853
- Volunteers: 4,773 + Volunteers: 7404
- PBs: 27,153 + PBs: 51108
- Average finish time: 00:32:30 + Average finish time: 00:32:49
- Average finishes per participant: 5.4 + Groups: 2001
-
- Groups: 1,469 -
-

+
- Stats last updated: Fri 14 Apr 2023 00:35:14 UTC + Stats last updated: Mon 30 Sep 2024 00:36:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1115,8 +1236,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/88720/all/index.html index f51d72b1..fe6fbb0f 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Canada - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -122,631 +109,729 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM55-59 + Most recent age category was VM60-64

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time21:4025:2552:00
Age Grading69.71%60.41%29.55%
Overall Position648.88374

+
FastestAverage
(mean)
Slowest
Time21:3625:2654:59
Age Grading72.99%60.80%28.92%
Overall Position648.44374

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Halifax08/04/20233313225:0063.07% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73%   -
Fulham Palace01/04/202339110924:0965.29% +
Halifax04/05/20243842924:2665.08%   -
Halifax25/03/20233291624:4363.79% +
Hyndburn27/04/20242593125:5161.51%   -
Halifax18/03/20233282326:4758.87% +
Zuiderpark20/04/20241261722:0372.11%   -
Halifax04/03/20233273825:1962.28% +
Halifax13/04/20243813524:3764.59%   -
Myrtle25/02/20231593824:5263.40% +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% PB   -
Halifax18/02/20233252926:0360.52% +
Conwy18/11/20233764424:5363.90%   -
Halifax11/02/20233243124:0365.56% +
Penistone28/10/20231393724:2065.34%   -
Bradford04/02/20235795022:3769.71% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Bowling Park28/01/202379924:1165.20% +
Halifax16/09/20233532123:4367.04%   -
Bramley21/01/20233004925:3461.67% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax14/01/20233213325:5260.95% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Halifax07/01/20233203026:2659.65% +
Glossop12/08/20233152824:2564.57%   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax05/08/20233473024:4363.79%   -
Nostell31/12/20223614325:0063.07% +
Huddersfield29/07/20235456722:4769.20%   -
Halifax24/12/20223173125:4661.19% +
Brighouse15/07/20232544223:5366.02% + PB + +   +
Stratford Park, Stroud01/07/20231253126:2959.53% +   +
Wetherby24/06/20233094124:4663.66%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax10/06/20233402524:0265.60%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax03/06/20233392124:1365.11% +   +
Long Eaton20/05/20233306921:3672.99% +   +
Halifax06/05/20233352423:4566.39% +   +
Keswick29/04/20233904121:3672.99% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax22/04/20233334725:0262.98%   -
Brighouse12/11/20222213725:1762.36% +
Halifax08/04/20233313225:0063.07%   -
Halifax05/11/20223122424:5163.45% +
Fulham Palace01/04/202339110924:0965.29%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax25/03/20233291624:4363.79%   -
Halifax15/10/202230910749:5431.60% +
Halifax18/03/20233282326:4758.87%   -
Crosby08/10/20222833525:3861.51% +
Halifax04/03/20233273825:1962.28%   -
Alness01/10/20221801024:0965.29% +
Myrtle25/02/20231593824:5263.40% + PB + +   +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71% +   +
Bowling Park28/01/202379924:1165.20% +   +
Bramley21/01/20233004925:3461.67% +   +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB + +   +
Conkers19/11/20225485624:1465.06%   -
Victoria24/09/20223736722:5468.85% +
Brighouse12/11/20222213725:1762.36%   -
Halifax17/09/20223052625:0063.07% +
Halifax05/11/20223122424:5163.45%   -
Centre Vale10/09/20221034428:4454.87% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax03/09/20223033125:3361.71% +
Halifax15/10/202230910749:5431.60%   -
Skipton27/08/20224035325:3561.11% +
Crosby08/10/20222833525:3861.51%   -
Halifax20/08/20223012824:5262.87% +
Alness01/10/20221801024:0965.29%   -
Halifax06/08/20222996426:0360.01% +
Victoria24/09/20223736722:5468.85%   -
Armley30/07/20221432724:2863.90% +
Halifax17/09/20223052625:0063.07%   -
Halifax16/07/20222962524:2663.98% +
Centre Vale10/09/20221034428:4454.87%   -
Halifax02/07/20222942524:4863.04% +
Halifax03/09/20223033125:3361.71%   -
Halifax18/06/20222922424:5462.78% +
Skipton27/08/20224035325:3561.11%   -
The Pastures11/06/2022991826:2159.33% +
Halifax20/08/20223012824:5262.87%   -
Halifax04/06/20222913826:4858.33% +
Halifax06/08/20222996426:0360.01%   -
Horton Park28/05/20222942225:1262.04% +
Armley30/07/20221432724:2863.90%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax16/07/20222962524:2663.98%   -
Halifax07/05/20222877529:3552.85% +
Halifax02/07/20222942524:4863.04%   -
Harrogate30/04/202246716226:4458.48% +
Halifax18/06/20222922424:5462.78%   -
Halifax23/04/20222854927:0057.90% +
The Pastures11/06/2022991826:2159.33%   -
Halifax09/04/20222834526:3758.74% +
Halifax04/06/20222913826:4858.33%   -
Halifax02/04/20222822924:4463.21% +
Horton Park28/05/20222942225:1262.04%   -
Pendle26/03/20223443126:1659.52% +
Bushy Park21/05/202287737424:0664.87%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax07/05/20222877529:3552.85%   -
Halifax05/03/20222784925:3761.03% +
Harrogate30/04/202246716226:4458.48%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax23/04/20222854927:0057.90% +   +
Halifax09/04/20222834526:3758.74% +   +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -777,63 +862,61 @@

Phillip WHETTLOCK (A8
- Locations: 43 -
-
- Finishers: 31,475 + Locations: 51
- Finishes: 170,773 + Finishers: 55058
- All-time events: 5,611 + Finishes: 326068
- Volunteers: 4,786 + All-time events: 8853
- PBs: 27,445 + Volunteers: 7404
- Average finish time: 00:32:30 + PBs: 51108
- Average finishes per participant: 5.4 + Average finish time: 00:32:49
- Groups: 1,477 + Groups: 2001
-
+
- Stats last updated: Mon 17 Apr 2023 00:35:19 UTC + Stats last updated: Mon 30 Sep 2024 00:36:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -867,8 +960,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/88720/index.html index 2f396342..463f7cd0 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + results | parkrun Canada - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -122,185 +109,241 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns total

+ + Member of the Volunteer 250 club +

345 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM55-59 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bradford parkrun1166600:21:40 + Most recent age category was VM60-64 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Halifax parkrun1268822:13 + All +
Lister Park parkrun, Bradford1166621:40 + All +
Horton Park parkrun9131322:18 + All +
Keswick parkrun4253321:36 + All +
Sewerby parkrun3121222:08 + All +
Pontefract parkrun2273222:08 + All +
Brighouse parkrun2333723:53 + All +
Temple Newsam parkrun2272925:14 + All +
Fountains Abbey parkrun2394822:26 + All +
Oakwell Hall parkrun2293626:10 + All +
Whinlatter Forest parkrun2283227:23 + All +
Bramley parkrun2252524:06 + All +
Middleton Woods parkrun2121424:55 + All +
Myrtle parkrun2333824:52 + All +
Centre Vale parkrun2303626:37 + All +
Bushy parkrun130137424:06 + All +
Woodhouse Moor parkrun1778222:18 + All +
Pollok parkrun, Glasgow1667223:58 + All +
Edinburgh parkrun1646721:54 All - Graph It!
Halifax parkrun1148800:22:13 +
Wakefield Thornes parkrun1545824:29 All - Graph It!
Horton Park parkrun9131300:22:18 +
Hyndburn parkrun1253125:51 All - Graph It!
Sewerby parkrun3121200:22:08 +
York parkrun111413522:55 All - Graph It!
Keswick parkrun3253300:23:33 +
Milton Country parkrun1707522:40 All - Graph It!
Pontefract parkrun2273200:22:08 +
Carlisle parkrun1567126:05 All - Graph It!
Temple Newsam parkrun2272900:25:14 +
Harrogate parkrun112316226:44 All - Graph It!
Myrtle parkrun2333800:24:52 +
Southport parkrun1545723:57 All - Graph It!
Middleton Woods parkrun2121400:24:55 +
Barnsley parkrun1414325:05 All - Graph It!
Bramley parkrun2252500:24:06 +
Rothwell parkrun1535724:20 All - Graph It!
Druridge Bay parkrun1354200:23:35 +
Huddersfield parkrun1596722:47 All -  
Fountains Abbey parkrun1394800:22:26 +
Long Eaton parkrun1556921:36 All -  
Victoria parkrun, Glasgow1546700:22:54 +
Wycombe Rye parkrun1232622:35 All -  
Clumber Park parkrun1101100:21:46 +
Conkers parkrun1525624:14 All -  
Rothay Park parkrun1202700:24:48 +
Roundhay parkrun112815726:55 All -  
Warwick Racecourse parkrun1638200:24:06 +
Hanley parkrun16622:03 All -  
Conkers parkrun1525600:24:14 +
Worsley Woods parkrun1728824:46 All -  
The Pastures parkrun1161800:26:21 +
Burnley parkrun1545725:21 All -  
Harrogate parkrun112316200:26:44 +
Dewsbury parkrun18610128:15 All -  
Dishley parkrun, Loughborough1535700:24:25 +
Cross Flatts parkrun1303724:16 All -  
Dalby Forest parkrun1283200:23:06 +
Clumber Park parkrun1101121:46 All -  
Woodhouse Moor parkrun1778200:22:18 +
Skipton parkrun1505325:35 All -  
Whinlatter Forest parkrun1283200:27:23 +
Flatts Lane parkrun1171826:53 All -  
Watergrove parkrun, Rochdale1111200:27:57 +
Victoria parkrun, Glasgow1546722:54 All -  
Springburn parkrun, Glasgow1161600:23:14 +
Alness parkrun171024:09 All -  
Fulham Palace parkrun18610900:24:09 +
Fulham Palace parkrun18610924:09 All -  
Flatts Lane parkrun1171800:26:53 +
Springburn parkrun, Glasgow1161623:14 All -  
Roberts Park parkrun1657500:24:54 +
Druridge Bay parkrun1354223:35 All -  
Bowling Park parkrun18900:24:11 +
Pendle parkrun1263126:16 All -  
Hanley parkrun16600:22:03 +
Watergrove parkrun, Rochdale1111227:57 All -  
Centre Vale parkrun1304400:28:44 +
Wetherby parkrun1374124:46 All -  
Wycombe Rye parkrun1232600:22:35 +
Portobello parkrun, Edinburgh1668024:16 All -  
Carlisle parkrun1567100:26:05 +
Nostell parkrun1374325:00 All -  
Armley parkrun1262700:24:28 +
Fell Foot parkrun, Newby Bridge1161722:57 All -  
Crosby parkrun1293500:25:38 +
Conwy parkrun1394424:53 All -  
Edinburgh parkrun1646700:21:54 +
Glossop parkrun1242824:25 All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Crosby parkrun1293525:38 All -  
Bushy parkrun130137400:24:06 +
Dolgellau parkrun1459954:59 All -  
Oakwell Hall parkrun1344000:26:10 +
Dalby Forest parkrun1283223:06 All -  
Pendle parkrun1263100:26:16 +
Clitheroe Castle parkrun1192525:41 All -  
Alness parkrun171000:24:09 +
Armley parkrun1262724:28 All -  
Skipton parkrun1505300:25:35 +
Dishley parkrun, Loughborough1535724:25 All -  
Chevin Forest parkrun1213000:26:47 +
Ford parkrun1202525:00 All -  
Burnley parkrun1545700:25:21 +
Cliffe Castle parkrun1151725:18 All -  
Queen’s parkrun, Glasgow1677900:25:29 +
Potternewton parkrun1293625:04 All -  
Roundhay parkrun112815700:26:55 +
Isabel Trail parkrun1293422:02 All -  
Storthes Hall parkrun1263000:26:20 +
The Pastures parkrun1161826:21 All -  
Southport parkrun1545700:23:57 +
Storthes Hall parkrun1263026:20 All -  
Cliffe Castle parkrun1151700:25:18 +
Hafan Pwllheli parkrun1212726:48 All -  
Brighouse parkrun1333700:25:17 +
Penistone parkrun1343724:20 All -  
Milton Country parkrun1707500:22:40 +
Conyngham Hall parkrun1363824:55 All -  
Pollok parkrun, Glasgow1667200:23:58 +
Stratford Park parkrun, Stroud1303126:29 All -  
Nostell parkrun1384300:25:00 +
Warwick Racecourse parkrun1638224:06 All -  
Portobello parkrun, Edinburgh1668000:24:16 +
University of Stirling parkrun1343723:52 All -  
2996600:21:40 +
Jubilee parkrun1121926:42 + All +
Queen’s parkrun, Glasgow1677925:29 + All +
Bowling Park parkrun18924:11 + All +
Rothay Park parkrun1202724:48 + All +
Zuiderpark parkrun, Den Haag1151722:03 + All +
Carlisle Park parkrun, Morpeth1293325:44 + All +
Chevin Forest parkrun1213026:47 + All +
Roberts Park parkrun1657524:54 + All +
Beacon Hill Country Park parkrun1192325:36 + All +
Thames Path parkrun, Woolwich1586323:49 + All +
3456621:36 All  


Volunteer Summary

RoleOccasions
- Run Director - 32
- Timekeeper - 17
- Token Sorting - 5
- Results Processor - 1
- Photographer - 1
- Communications Person - 5
- Marshal - 35
- Pre-event Setup - 28
- Equipment Storage and Delivery - 5
- Other - 1
- Barcode Scanning - 27
- Post-event Close Down - 24
- Finish Tokens - 11
- Number Checker - 1
- First Timers Welcome - 77
- Funnel Manager - 12
- Finish Token Support - 10
- Tail Walker - 5
- Volunteer Co-ordinator - 10
- Report Writer - 1
- Pacer (5k only) - 5
- Backup Timer - 14
- VI Guide - 1
- Warm Up Leader - 5
- Sign Language Support - 1
- Car Park Marshal - 1
- Event Day Course Check - 25
- parkwalker - 1
Total Credits249

+ Run Director +

33
+ Timekeeper + 28
+ Token Sorting + 5
+ Results Processor + 4
+ Photographer + 1
+ Communications Person + 6
+ Marshal + 35
+ Pre-event Setup + 29
+ Equipment Storage and Delivery + 6
+ Other + 2
+ Barcode Scanning + 46
+ Post-event Close Down + 25
+ Finish Tokens + 16
+ Number Checker + 1
+ First Timers Welcome + 82
+ Funnel Manager + 16
+ Finish Token Support + 16
+ Tail Walker + 15
+ Volunteer Co-ordinator + 11
+ Report Writer + 1
+ Pacer (5k only) + 10
+ Backup Timer + 14
+ VI Guide + 1
+ Warm Up Leader + 15
+ Sign Language Support + 1
+ Car Park Marshal + 1
+ Event Day Course Check + 57
+ parkwalker + 1
Total Credits316

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. -



Freedom parkruns

DateTimeLocation
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here. +



Freedom parkruns

DateTimeLocation
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -329,63 +372,61 @@

Phillip WHETTLOCK (A8
- Locations: 43 + Locations: 51
- Finishers: 31,475 + Finishers: 55058
- Finishes: 170,773 + Finishes: 326068
- All-time events: 5,611 + All-time events: 8853
- Volunteers: 4,786 + Volunteers: 7404
- PBs: 27,445 + PBs: 51108
- Average finish time: 00:32:30 + Average finish time: 00:32:49
- Average finishes per participant: 5.4 + Groups: 2001
-
- Groups: 1,477 -
-
+

- Stats last updated: Mon 17 Apr 2023 00:35:19 UTC + Stats last updated: Mon 30 Sep 2024 00:36:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -419,8 +470,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/999999/all/index.html index de8e422f..a846285e 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Canada @@ -238,8 +238,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/999999/index.html index d21e8032..d8eb8706 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ca/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + results | parkrun Canada @@ -234,8 +234,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/1309364/all/index.html index ad0853b4..38c1108f 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/1309364/all/index.html @@ -1,6 +1,6 @@  - + @@ -14,6 +14,7 @@ + ergebnisse | parkrun Austria - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - @@ -57,8 +52,8 @@
@@ -70,34 +65,25 @@
@@ -113,543 +99,649 @@ -

Andrew TAYLOR (A1309364)

- Mitglied im parkrun-100-Klub +

Andrew TAYLOR (A1309364)

+ Mitglied im parkrun-250-Klub Member of the Volunteer 50 club

- 245 parkruns insgesamt + 297 parkruns insgesamt

Gesamtstatistiken für diese/n parkrunner*in anzeigen
- Die letzte Altersklasse war VM35-39 + Die letzte Altersklasse war VM40-44

Zusammenfassung der Statistiken für alle Standorte -
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit20:0628:4757:34
Alterskorrigierte Leistung64.51%47.44%23.54%
Position insgesamt5165.361021

+
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit20:0629:2057:34
Alterskorrigierte Leistung64.51%46.67%23.54%
Position insgesamt5182.341021

Beste jährliche Leistungen gesamt -
JahrBeste ZeitBeste alterskorrigierte Leistung
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
JahrBeste ZeitBeste alterskorrigierte Leistung
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

Alle Ergebnisse bei -
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Clitheroe Castle08/04/20231789735:4637.88% +
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60%   -
Whiteley25/03/202321418332:2441.82% +
Whiteley18/11/202324721037:0536.54%   -
Winchester11/03/202342821230:3744.26% +
Whiteley11/11/202324617430:3744.26%   -
Winchester04/03/202342730935:4537.90% +
Winchester21/10/202345731533:5140.03%   -
Winchester25/02/202342632536:0937.48% +
Winchester14/10/202345634233:5439.97%   -
Winchester18/02/202342530336:3137.11% +
Ganger Farm07/10/20234713233:4940.07%   -
Delamere31/12/202242331536:2537.21% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester23/09/202345321928:2247.77%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester16/09/202345235430:3244.38%   -
Winchester26/11/202241229335:3137.87% +
Winchester09/09/202345129229:1146.43%   -
Whiteley12/11/202221016534:2839.02% +
Delamere02/09/202345822633:2840.49%   -
Winchester29/10/202240924429:5544.96% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester22/10/202240833736:0837.22% +
Winchester29/07/202344622227:3649.09%   -
Winchester17/09/202240326230:2944.12% +
Winchester22/07/202344540537:0036.62%   -
Winchester10/09/202240231134:3338.93% +
Whiteley15/07/202322915731:1643.34%   -
Alice Holt03/09/202241817936:3236.82% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester27/08/202240042335:2138.05% +
Winchester17/06/202344128530:4144.16%   -
Winchester13/08/202239823431:3042.70% +
Winchester10/06/202344032435:2138.33%   -
Tidworth30/07/2022615151:4226.02% +
Winchester20/05/202343822427:0949.91%   -
Uckfield23/07/20221006028:4346.84% +
Winchester13/05/202343733232:4341.42%   -
Winchester09/07/202239428633:1640.43% +
Whiteley29/04/202321919635:3138.15%   -
Eastleigh28/05/202254015531:2042.93% +
Winchester22/04/202343431731:1143.45%   -
Winchester21/05/202238930733:2840.19% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Alice Holt14/05/202240216932:0142.01% +
Whiteley25/03/202321418332:2441.82%   -
Winchester07/05/202238734034:1339.31% +
Winchester11/03/202342821230:3744.26%   -
Guildford30/04/202242825130:0144.81% +
Winchester04/03/202342730935:4537.90%   -
Winchester23/04/202238522932:0241.99% +
Winchester25/02/202342632536:0937.48%   -
Winchester16/04/202238431033:2340.29% +
Winchester18/02/202342530336:3137.11%   -
Winchester19/03/202238025033:5439.68% +
Delamere31/12/202242331536:2537.21%   -
Alice Holt01/01/202238524237:4635.61% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester20/11/202136338445:0729.59% +
Winchester26/11/202241229335:3137.87%   -
Winchester09/10/202135739843:0730.96% +
Whiteley12/11/202221016534:2839.02%   -
Winchester25/09/202135538955:0324.25% +
Winchester29/10/202240924429:5544.96%   -
Winchester18/09/202135433938:1234.95% +
Winchester22/10/202240833736:0837.22%   -
Winchester04/09/202135233838:2434.77% +
Winchester17/09/202240326230:2944.12%   -
Winchester28/08/202135139841:0132.55% +
Winchester10/09/202240231134:3338.93%   -
Winchester14/08/202134936055:4623.94% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester31/07/202134832845:2029.45% +
Winchester27/08/202240042335:2138.05%   -
Winchester14/03/202034625851:3825.69% +
Winchester13/08/202239823431:3042.70%   -
Winchester07/03/202034510325:5251.29% +
Tidworth30/07/2022615151:4226.02%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Uckfield23/07/20221006028:4346.84%   -
Newbury22/02/202043434631:1142.54% +
Winchester09/07/202239428633:1640.43%   -
Alice Holt08/02/202036010727:1948.57% +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -680,73 +772,56 @@

Andrew TAYLOR (A13093
- Standorte: 3 + Standorte: 4
- Läufer*innen: 2.734 + Läufer*innen: 8492
- Zieleinläufe: 6.087 + Zieleinläufe: 21131
- Austragungen landesweit: 202 + Austragungen landesweit: 477
- Helfer*innen: 222 + Helfer*innen: 520
- Persönliche Bestzeiten: 917 + Persönliche Bestzeiten: 2781
- Durchschnittl. Zielzeit: 00:29:21 + Durchschnittl. Zielzeit: 00:29:17
- Läufe per Läufer*in: 2,2 + Gruppen: 1148
-
- Gruppen: 480 -
-
-
- Rekord - Frauen: - Sophie GRABNER – 18:28 - (16 Apr 2022) -
-
- Rekord - Männer: - Julius OTT – 15:30 - (25 Mär 2023) -
-
- Altersklassenrekord: - Liz KILLIP - 92,9 % 20:53 - ( 5 Nov 2022) -
+
- Zuletzt aktualisiert: Fr 14 Apr 2023 00:35:08 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:35:59 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -775,8 +860,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/1309364/index.html index 052561f3..ce539d6e 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/1309364/index.html @@ -1,6 +1,6 @@  - + @@ -14,6 +14,7 @@ + ergebnisse | parkrun Austria - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - @@ -57,8 +52,8 @@
@@ -70,34 +65,25 @@
@@ -113,177 +99,187 @@ -

Andrew TAYLOR (A1309364)

- Mitglied im parkrun-100-Klub +

Andrew TAYLOR (A1309364)

+ Mitglied im parkrun-250-Klub Member of the Volunteer 50 club -

245 parkruns insgesamt

+

297 parkruns insgesamt

Statistiken für alle parkruns dieses parkrunners ansehen
- Die letzte Altersklasse war VM35-39 -

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Winchester parkrun146121300:20:18 + Die letzte Altersklasse war VM40-44 +

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Winchester parkrun173121320:18 + Alle +
Whiteley parkrun1410714629:06 + Alle +
Delamere parkrun11232321:42 + Alle +
Eastleigh parkrun6242524:08 Alle - Graph It!
Delamere parkrun8232300:21:42 +
Alice Holt parkrun59010727:19 Alle - Graph It!
Whiteley parkrun610714600:29:06 +
Southampton parkrun5687021:17 Alle - Graph It!
Alice Holt parkrun59010700:27:19 +
Fell Foot parkrun, Newby Bridge4212223:48 Alle - Graph It!
Southampton parkrun5687000:21:17 +
Witton parkrun4303525:40 Alle - Graph It!
Eastleigh parkrun5242500:24:08 +
Northwich parkrun4485224:55 Alle - Graph It!
Congleton parkrun49900:20:06 +
Newbury parkrun4829123:49 Alle - Graph It!
Witton parkrun4303500:25:40 +
Congleton parkrun49920:06 Alle - Graph It!
Northwich parkrun4485200:24:55 +
Medina I.O.W. parkrun4667525:13 Alle - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Ganger Farm parkrun38013229:25 Alle - Graph It!
Andover parkrun2242600:22:24 +
Hanley parkrun2333922:31 Alle - Graph It!
Ganger Farm parkrun29713500:29:25 +
Burnley parkrun212718929:06 Alle - Graph It!
Hanley parkrun2333900:22:31 +
Queen Elizabeth parkrun2364026:36 Alle - Graph It!
Newbury parkrun2829100:23:49 +
Andover parkrun2242622:24 Alle - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Abingdon parkrun114220229:14 Alle - Graph It!
Hagley parkrun1182000:22:38 +
Netley Abbey parkrun1586424:21 Alle -  
Ormskirk parkrun120930300:31:04 +
Hilly Fields parkrun1859925:03 Alle -  
Basingstoke parkrun111212900:24:31 +
Brockenhurst parkrun112718632:41 Alle -  
Cuerden Valley parkrun1192000:24:47 +
Wimpole Estate parkrun112916928:07 Alle -  
Seven Fields parkrun1546700:28:28 +
Clumber Park parkrun112117629:51 Alle -  
Netley Abbey parkrun1586400:24:21 +
Cuerden Valley parkrun1192024:47 Alle -  
Mountbatten School parkrun17110100:31:29 +
Hamilton Lake parkrun1151621:47 Alle -  
Clitheroe Castle parkrun1639700:35:46 +
Fountains Abbey parkrun1283020:33 Alle -  
Medina I.O.W. parkrun19513900:30:57 +
Ormskirk parkrun120930331:04 Alle -  
Hogmoor Inclosure parkrun111314000:29:34 +
Pendle parkrun1465926:37 Alle -  
Milano Nord parkrun1475300:27:49 +
Woking parkrun1485824:01 Alle -  
Jersey parkrun111018500:30:53 +
Hagley parkrun1182022:38 Alle -  
Canterbury parkrun1323600:27:29 +
Penrhyn parkrun1232624:33 Alle -  
Penrhyn parkrun1232600:24:33 +
Salisbury parkrun119326729:45 Alle -  
Hyndburn parkrun1425300:29:55 +
Jersey parkrun111018530:53 Alle -  
Woking parkrun1485800:24:01 +
Haigh Woodland parkrun18916837:04 Alle -  
Fountains Abbey parkrun1283000:20:33 +
Stretford parkrun127540530:23 Alle -  
Bushy parkrun1681102100:33:01 +
Portsmouth Lakeside parkrun1818726:32 Alle -  
Clumber Park parkrun112117600:29:51 +
Fareham parkrun19011428:52 Alle -  
Wimpole Estate parkrun112916900:28:07 +
Milano Nord parkrun1475327:49 Alle -  
Tidworth parkrun18615100:51:42 +
Richmond Olympic parkrun15521:59 Alle -  
Hilly Fields parkrun1859900:25:03 +
Crewe parkrun112315430:05 Alle -  
Tawd Valley parkrun18111000:29:25 +
Hogmoor Inclosure parkrun111314029:34 Alle -  
Watermeadows parkrun1151500:23:51 +
Catford parkrun19512527:24 Alle -  
Eden Project parkrun111116200:30:21 +
Clitheroe Castle parkrun1639735:46 Alle -  
Catford parkrun19512500:27:24 +
Pocket parkrun112419533:47 Alle -  
Crewe parkrun112315400:30:05 +
Ford parkrun1477432:29 Alle -  
Long Eaton parkrun118122900:28:06 +
Watermeadows parkrun1151523:51 Alle -  
Fareham parkrun19511400:28:52 +
Mountbatten School parkrun17110131:29 Alle -  
Phoenix parkrun1232600:27:31 +
Uckfield parkrun1416028:43 Alle -  
Guildford parkrun117125100:30:01 +
Tawd Valley parkrun18111029:25 Alle -  
Pendle parkrun1465900:26:37 +
Seven Fields parkrun1546728:28 Alle -  
Heaton parkrun133846700:31:01 +
Itchen Valley Country parkrun110613529:53 Alle -  
Hamilton Lake parkrun1151600:21:47 +
Bartley Park parkrun1628430:26 Alle -  
Brockenhurst parkrun112718600:32:41 +
Tidworth parkrun18615151:42 Alle -  
Itchen Valley Country parkrun110713500:29:53 +
Bushy parkrun1681102133:01 Alle -  
Burnley parkrun114120400:29:06 +
Basingstoke parkrun111212924:31 Alle -  
Uckfield parkrun1416000:28:43 +
Heaton parkrun133846731:01 Alle -  
Abingdon parkrun114220200:29:14 +
Guildford parkrun117125130:01 Alle -  
Pocket parkrun112419500:33:47 +
Hyndburn parkrun1425329:55 Alle -  
Bolton parkrun116221800:31:49 +
Phoenix parkrun1232627:31 Alle -  
Richmond Olympic parkrun15500:21:59 +
Canterbury parkrun1323627:29 Alle -  
Poole parkrun121328400:28:59 +
Valentines parkrun1698025:14 Alle -  
Portsmouth Lakeside parkrun1818700:26:32 +
Poole parkrun121328428:59 Alle -  
Salisbury parkrun119326700:29:45 +
Long Eaton parkrun118122928:06 Alle -  
2455500:20:06 +
Bolton parkrun116221831:49 + Alle +
Eden Project parkrun111116230:21 + Alle +
2975520:06 Alle  




Freie Läufe

DatumZeitStandort
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
+ Laufleitung +
21
+ Zeitnahme + 2
+ Zielmarkenverwaltung + 8
+ Ergebnisauswertung + 6
+ Fotos + 4
+ Streckenposten + 5
+ Ausrüstung Aufbau + 6
+ Ausrüstung Lagerung und Lieferung + 2
+ Barcode einlesen + 3
+ Ausrüstung Abbau + 10
+ Zielmarkenausgabe + 1
+ Nummern-Kontrolle + 2
+ Einweisung für Erstläufer*innen + 1
+ Leitung Einlaufgasse + 1
+ Schlussbegleitung + 4
+ Koordination Helfer*innen + 1
+ Berichterstattung + 10
+ Tempoläufer*in + 1
Gesamtanzahl60

+ Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du hier. +



Freie parkruns

DatumZeitStandort
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -312,73 +308,56 @@

Andrew TAYLOR (A13093
- Standorte: 3 + Standorte: 4
- Läufer*innen: 2.734 + Läufer*innen: 8492
- Zieleinläufe: 6.087 + Zieleinläufe: 21131
- Austragungen landesweit: 202 + Austragungen landesweit: 477
- Helfer*innen: 222 + Helfer*innen: 520
- Persönliche Bestzeiten: 917 + Persönliche Bestzeiten: 2781
- Durchschnittl. Zielzeit: 00:29:21 + Durchschnittl. Zielzeit: 00:29:17
- Läufe per Läufer*in: 2,2 + Gruppen: 1148
-
- Gruppen: 480 -
-
-
- Rekord - Frauen: - Sophie GRABNER – 18:28 - (16 Apr 2022) -
-
- Rekord - Männer: - Julius OTT – 15:30 - (25 Mär 2023) -
-
- Altersklassenrekord: - Liz KILLIP - 92,9 % 20:53 - ( 5 Nov 2022) -
+

- Zuletzt aktualisiert: Fr 14 Apr 2023 00:35:08 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:35:59 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -407,8 +396,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/2705084/all/index.html index 4656f4e0..df022ffc 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/2705084/all/index.html @@ -1,6 +1,6 @@  - + @@ -14,6 +14,7 @@ + ergebnisse | parkrun Austria - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - @@ -57,8 +52,8 @@
@@ -70,34 +65,25 @@
@@ -113,10 +99,10 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- Für diesen parkrunner wurden noch keine Ergebnisse erfasst. + ​

Gesamtstatistik für diese/n parkrunner*in anzeigen

@@ -148,73 +134,56 @@

Duncan BOOTH (A270508
- Standorte: 3 -
-
- Läufer*innen: 2.772 + Standorte: 4
- Zieleinläufe: 6.200 + Läufer*innen: 8492
- Austragungen landesweit: 205 + Zieleinläufe: 21131
- Helfer*innen: 224 + Austragungen landesweit: 477
- Persönliche Bestzeiten: 935 + Helfer*innen: 520
- Durchschnittl. Zielzeit: 00:29:22 + Persönliche Bestzeiten: 2781
- Läufe per Läufer*in: 2,2 + Durchschnittl. Zielzeit: 00:29:17
- Gruppen: 488 + Gruppen: 1148
-
-
- Rekord - Frauen: - Sophie GRABNER – 18:28 - (16 Apr 2022) -
-
- Rekord - Männer: - Julius OTT – 15:30 - (25 Mär 2023) -
-
- Altersklassenrekord: - Liz KILLIP - 92,9 % 20:53 - ( 5 Nov 2022) -
+
- Zuletzt aktualisiert: Mo 17 Apr 2023 00:35:13 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:35:59 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -243,8 +222,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/2705084/index.html index 53d8ca0f..52c85764 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/2705084/index.html @@ -1,6 +1,6 @@  - + @@ -14,6 +14,7 @@ + ergebnisse | parkrun Austria - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - @@ -57,8 +52,8 @@
@@ -70,34 +65,25 @@
@@ -113,16 +99,16 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

Für diesen parkrunner wurden noch keine Ergebnisse erfasst.

Zusammenfassung - Helfende

FunktionAnzahl
- Streckenposten - 260
- Führungsfahrrad - 130
- Streckenprüfung am parkrun-Tag - 9
Gesamtanzahl393

- Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du hier. +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Zusammenfassung - Helfende

FunktionAnzahl
+ Streckenposten + 350
+ Führungsfahrrad + 130
+ Streckenprüfung am parkrun-Tag + 82
Gesamtanzahl540

+ Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du hier.



@@ -152,73 +138,56 @@

Duncan BOOTH (A270508
- Standorte: 3 -
-
- Läufer*innen: 2.772 + Standorte: 4
- Zieleinläufe: 6.200 + Läufer*innen: 8492
- Austragungen landesweit: 205 + Zieleinläufe: 21131
- Helfer*innen: 224 + Austragungen landesweit: 477
- Persönliche Bestzeiten: 935 + Helfer*innen: 520
- Durchschnittl. Zielzeit: 00:29:22 + Persönliche Bestzeiten: 2781
- Läufe per Läufer*in: 2,2 + Durchschnittl. Zielzeit: 00:29:17
- Gruppen: 488 + Gruppen: 1148
-
-
- Rekord - Frauen: - Sophie GRABNER – 18:28 - (16 Apr 2022) -
-
- Rekord - Männer: - Julius OTT – 15:30 - (25 Mär 2023) -
-
- Altersklassenrekord: - Liz KILLIP - 92,9 % 20:53 - ( 5 Nov 2022) -
+

- Zuletzt aktualisiert: Mo 17 Apr 2023 00:35:13 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:35:59 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -247,8 +226,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/482/all/index.html index f8488f43..1bf0aafc 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/482/all/index.html @@ -1,6 +1,6 @@  - + @@ -14,6 +14,7 @@ + ergebnisse | parkrun Austria - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - @@ -57,8 +52,8 @@
@@ -70,34 +65,25 @@
@@ -118,1650 +104,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns insgesamt + 867 parkruns insgesamt

Gesamtstatistiken für diese/n parkrunner*in anzeigen
- Die letzte Altersklasse war VM40-44 + Die letzte Altersklasse war VM45-49

Zusammenfassung der Statistiken für alle Standorte -
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit16:2521:0459:17
Alterskorrigierte Leistung79.25%65.45%23.56%
Position insgesamt134.831692

+
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit16:2521:2659:17
Alterskorrigierte Leistung79.25%64.63%23.56%
Position insgesamt138.841692

Beste jährliche Leistungen gesamt -
JahrBeste ZeitBeste alterskorrigierte Leistung
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
JahrBeste ZeitBeste alterskorrigierte Leistung
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

Alle Ergebnisse bei -
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Harleston Magpies08/04/2023793525:1255.42% +
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Cannock Chase01/04/20232434425:4954.10% +
Quakers Walk25/11/2023126825:0556.08%   -
Kingston25/03/202360216430:0946.32% +
Aston Hall18/11/202352225:0156.23%   -
Wolford Wood18/03/202352730:2445.94% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Kingston11/03/202360015027:1851.16% +
Belvoir Castle04/11/2023911925:4254.73%   -
Stockley Country04/03/2023817935:3239.31% +
Five Arches28/10/202365422:5861.25%   -
Chasewater25/02/202310010026:1953.07% +
Dover Waterfront21/10/202374525:2255.45%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Rushcliffe14/10/20235087323:5458.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Kingston07/10/202363033150:2927.86%   -
Worcester04/02/202354318529:3047.34% +
Maaraue03/10/20231012522:3462.33%   -
Crane Park28/01/202349014550:3727.59% +
University of Northampton30/09/2023112223:2460.11%   -
Kingston21/01/202359431139:3935.22% +
Clifton23/09/20231911025:1455.75%   -
Brooklands14/01/202313018830:4445.44% +
Wisbech16/09/202351523:0361.03%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Holbrooks09/09/202362223:4359.31%   -
Kingston01/01/202359113340:3134.47% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston31/12/202259026442:4432.68% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Bushy Park25/12/2022909169244:3931.28% +
Riverfront19/08/20232594622:5761.29%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston17/12/202258818059:1723.56% +
Kingston05/08/20236216723:2160.24%   -
Kingston10/12/202258723255:4025.09% +
Kingston29/07/20236208725:0955.93%   -
Beacon03/12/2022737326:4152.34% +
Kingston22/07/20236199224:2457.65%   -
Ganger Farm26/11/2022211426:3452.57% +
Severn Valley Country15/07/20231411626:1353.66%   -
Bushy Park19/11/2022903110553:2326.16% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Leavesden Country12/11/202246928:3248.95% +
Thornham Walks01/07/202353826:5251.99%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Kingston24/06/20236156524:0957.83%   -
Durlston Country Park29/10/2022335032:4542.65% +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1792,73 +1944,56 @@

Danny NORMAN (A482)
- Standorte: 3 + Standorte: 4
- Läufer*innen: 2.734 + Läufer*innen: 8492
- Zieleinläufe: 6.087 + Zieleinläufe: 21131
- Austragungen landesweit: 202 + Austragungen landesweit: 477
- Helfer*innen: 222 + Helfer*innen: 520
- Persönliche Bestzeiten: 917 + Persönliche Bestzeiten: 2781
- Durchschnittl. Zielzeit: 00:29:21 + Durchschnittl. Zielzeit: 00:29:17
- Läufe per Läufer*in: 2,2 + Gruppen: 1148
-
- Gruppen: 480 -
- -
- Rekord - Frauen: - Sophie GRABNER – 18:28 - (16 Apr 2022) -
-
- Rekord - Männer: - Julius OTT – 15:30 - (25 Mär 2023) -
-
- Altersklassenrekord: - Liz KILLIP - 92,9 % 20:53 - ( 5 Nov 2022) -
+
- Zuletzt aktualisiert: Fr 14 Apr 2023 00:35:08 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:35:59 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1887,8 +2032,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/482/index.html index cd75e627..7d8a722c 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/482/index.html @@ -1,6 +1,6 @@  - + @@ -14,6 +14,7 @@ + ergebnisse | parkrun Austria - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - @@ -57,8 +52,8 @@
@@ -70,34 +65,25 @@
@@ -117,877 +103,1003 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns insgesamt

+

867 parkruns insgesamt

Statistiken für alle parkruns dieses parkrunners ansehen
- Die letzte Altersklasse war VM40-44 -

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Bushy parkrun2321100:16:25 + Die letzte Altersklasse war VM45-49 +

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Bushy parkrun2341116:25 + Alle +
Kingston parkrun471116:51 + Alle +
Bedfont Lakes parkrun81117:04 + Alle +
Nonsuch parkrun71116:52 + Alle +
Richmond parkrun71117:13 + Alle +
Crane Park parkrun61116:48 + Alle +
Riddlesdown parkrun42217:01 + Alle +
Bexley parkrun31117:48 + Alle +
Tilgate parkrun31117:10 + Alle +
Frimley Lodge parkrun31117:11 + Alle +
Hilly Fields parkrun31117:50 + Alle +
Old Deer Park parkrun31117:41 + Alle +
Guildford parkrun31117:17 + Alle +
Homewood parkrun3151722:21 + Alle +
Brockwell parkrun, Herne Hill31116:56 + Alle +
Southwark parkrun34417:27 + Alle +
Fulham Palace parkrun33317:47 + Alle +
Cannon Hill parkrun, Birmingham3111118:04 + Alle +
Gunnersbury parkrun31116:51 + Alle +
Wimbledon Common parkrun35517:27 + Alle +
Brighton & Hove parkrun31116:27 + Alle +
Basingstoke parkrun35517:48 + Alle +
Black Park parkrun31117:25 + Alle +
Dulwich parkrun33317:11 + Alle +
Bedgebury Pinetum parkrun28921:24 + Alle +
Harrow parkrun25520:23 + Alle +
Netley Abbey parkrun21117:21 + Alle +
Ellenbrook Fields parkrun2141519:58 + Alle +
Worthing parkrun28918:44 + Alle +
Grovelands parkrun, Enfield22217:21 + Alle +
Beckton parkrun23317:24 + Alle +
Gladstone parkrun21117:09 + Alle +
Hackney Marshes parkrun22216:46 + Alle +
Burgess parkrun22216:45 + Alle +
Orpington parkrun22217:27 + Alle +
Barking parkrun22216:45 + Alle +
Southampton parkrun23316:44 + Alle +
Alice Holt parkrun21117:59 Alle - Graph It!
Kingston parkrun351100:16:51 +
Woodley parkrun21117:02 Alle - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Upton Court parkrun22217:24 Alle - Graph It!
Richmond parkrun71100:17:13 +
Chelmsford Central parkrun22217:24 Alle - Graph It!
Nonsuch parkrun71100:16:52 +
Mole Valley parkrun2262622:56 Alle - Graph It!
Crane Park parkrun61100:16:48 +
Durlston Country Park parkrun2355032:45 Alle - Graph It!
Brighton & Hove parkrun31100:16:27 +
Hazelwood parkrun2182222:21 Alle - Graph It!
Fulham Palace parkrun33300:17:47 +
Southsea parkrun23317:55 Alle - Graph It!
Frimley Lodge parkrun31100:17:11 +
St Albans parkrun21116:37 Alle - Graph It!
Gunnersbury parkrun31100:16:51 +
Havant parkrun21117:46 Alle - Graph It!
Bexley parkrun31100:17:48 +
Ashford parkrun22217:57 Alle - Graph It!
Tilgate parkrun31100:17:10 +
Bedford parkrun21116:55 Alle - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Margate parkrun21118:16 Alle - Graph It!
Southwark parkrun34400:17:27 +
Milton Keynes parkrun23317:26 Alle - Graph It!
Basingstoke parkrun35500:17:48 +
Preston Park parkrun, Brighton22217:40 Alle - Graph It!
Hilly Fields parkrun31100:17:50 +
Shorne Woods parkrun21118:14 Alle - Graph It!
Black Park parkrun31100:17:25 +
Canons Park parkrun27720:50 Alle - Graph It!
Riddlesdown parkrun32200:17:01 +
Osterley parkrun21117:57 Alle - Graph It!
Dulwich parkrun33300:17:11 +
Eastleigh parkrun27719:14 Alle - Graph It!
Guildford parkrun31100:17:17 +
Brooklands parkrun2394223:22 Alle - Graph It!
Old Deer Park parkrun31100:17:41 +
Great Lines parkrun, Medway25518:25 Alle - Graph It!
Wimbledon Common parkrun35500:17:27 +
Malling Rec parkrun2738526:59 Alle - Graph It!
Homewood parkrun3151700:22:21 +
Crystal Palace parkrun21117:24 Alle - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Northala Fields parkrun22218:06 Alle - Graph It!
Pymmes parkrun21100:17:06 +
Northampton parkrun21116:56 Alle - Graph It!
Hove Promenade parkrun27700:19:23 +
Oak Hill parkrun21117:13 Alle - Graph It!
Netley Abbey parkrun21100:17:21 +
Lloyd parkrun, Croydon21118:01 Alle - Graph It!
Mile End parkrun21100:16:53 +
Newbury parkrun21117:20 Alle - Graph It!
Southampton parkrun23300:16:44 +
Cranleigh parkrun26620:49 Alle - Graph It!
Northala Fields parkrun22200:18:06 +
Littlehampton Prom parkrun2384324:22 Alle - Graph It!
Hockley Woods parkrun26600:21:09 +
Whitstable parkrun23318:12 Alle - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Bethlem Royal Hospital parkrun2263223:22 Alle - Graph It!
Upton Court parkrun22200:17:24 +
Cyclopark parkrun2353824:01 Alle - Graph It!
Alice Holt parkrun21100:17:59 +
Hockley Woods parkrun26621:09 Alle - Graph It!
Osterley parkrun21100:17:57 +
South Oxhey parkrun21119:13 Alle - Graph It!
Burgess parkrun22200:16:45 +
Pymmes parkrun21117:06 Alle - Graph It!
Gladstone parkrun21100:17:09 +
Hastings parkrun291120:41 Alle - Graph It!
Havant parkrun21100:17:46 +
Wycombe Rye parkrun22217:17 Alle - Graph It!
Cranleigh parkrun26600:20:49 +
Hove Promenade parkrun27719:23 Alle - Graph It!
Finsbury parkrun22200:17:15 +
Banstead Woods parkrun21117:31 Alle - Graph It!
Southsea parkrun23300:17:55 +
Wormwood Scrubs parkrun21118:00 Alle - Graph It!
Margate parkrun21100:18:16 +
Roundshaw Downs parkrun23318:14 Alle - Graph It!
Northampton parkrun21100:16:56 +
Mile End parkrun21116:53 Alle - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Bevendean Down parkrun28923:21 Alle - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Finsbury parkrun22217:15 Alle - Graph It!
Crystal Palace parkrun21100:17:24 +
Tooting Common parkrun2181819:14 Alle - Graph It!
Eastleigh parkrun27700:19:14 +
Edinburgh parkrun12217:00 Alle - Graph It!
Hastings parkrun291100:20:41 +
Chippenham parkrun1212120:08 Alle - Graph It!
Banstead Woods parkrun21100:17:31 +
Stratford-upon-Avon parkrun1202521:14 Alle - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Henlow Bridge Lakes parkrun17511532:34 Alle - Graph It!
Hackney Marshes parkrun22200:16:46 +
Bromley parkrun13317:18 Alle - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Houghton Hall parkrun1131321:48 Alle - Graph It!
Woodley parkrun21100:17:02 +
Sittingbourne parkrun18820:56 Alle - Graph It!
Tooting Common parkrun2181800:19:14 +
Sharpham Road Playing Fields parkrun1253124:41 Alle - Graph It!
Milton Keynes parkrun23300:17:26 +
Gadebridge parkrun1141422:22 Alle - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Chilton Fields parkrun1405428:26 Alle - Graph It!
Barking parkrun22200:16:45 +
Storeys Field parkrun115121128:49 Alle - Graph It!
Canons Park parkrun27700:20:50 +
Hadleigh parkrun, Essex1252624:27 Alle - Graph It!
Newbury parkrun21100:17:20 +
Marple parkrun11117:15 Alle - Graph It!
Shorne Woods parkrun21100:18:14 +
Portsmouth Lakeside parkrun19919:12 Alle - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Grove Fields parkrun1578528:03 Alle - Graph It!
Mole Valley parkrun2262600:22:56 +
Banbury parkrun1222321:16 Alle - Graph It!
Oak Hill parkrun21100:17:13 +
Graves parkrun11118:18 Alle - Graph It!
Cyclopark parkrun2353800:24:01 +
Watermead Country Park parkrun110818235:52 Alle - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Eastbourne parkrun12217:24 Alle - Graph It!
South Oxhey parkrun21100:19:13 +
Malahide parkrun11116:54 Alle - Graph It!
Chelmsford Central parkrun22200:17:24 +
Fareham parkrun16619:21 Alle - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Sutcliffe parkrun113117230:34 Alle - Graph It!
Bevendean Down parkrun28900:23:21 +
Fritton Lake parkrun11118:26 Alle - Graph It!
Bedford parkrun21100:16:55 +
Bicester parkrun14420:13 Alle - Graph It!
Whitstable parkrun23300:18:12 +
Sandringham parkrun1466330:18 Alle - Graph It!
Orpington parkrun22200:17:27 +
Luton Wardown parkrun191019:36 Alle - Graph It!
Ashford parkrun22200:17:57 +
Cwmbran parkrun1171723:29 Alle - Graph It!
Hazelwood parkrun2182200:22:21 +
Broadwater parkrun110321335:19 Alle - Graph It!
Brooklands parkrun2394200:23:22 +
Basildon parkrun15518:13 Alle - Graph It!
Wycombe Rye parkrun22200:17:17 +
Marecchia parkrun11119:50 Alle - Graph It!
Harrow parkrun25500:20:23 +
Harleston Magpies parkrun1293525:12 Alle - Graph It!
Beckton parkrun23300:17:24 +
Kingsway parkrun, Gloucester1192021:20 Alle - Graph It!
St Albans parkrun21100:16:37 +
Bryn Bach parkrun11116:50 Alle - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Mersea Island parkrun1121220:59 Alle -  
Buckingham parkrun12200:18:37 +
Charlton parkrun18213032:05 Alle -  
Thomas Mills parkrun1486500:30:19 +
parkrun de Rouen15521:41 Alle -  
Leamington parkrun12200:18:52 +
Dallas Burston Polo Club parkrun19614732:26 Alle -  
Church Mead parkrun16610200:32:53 +
Ashton Court parkrun1859522:59 Alle -  
Letchworth parkrun1141400:23:13 +
Tøyen parkrun1668526:32 Alle -  
Mulbarton parkrun12200:19:55 +
The Great Field parkrun19313529:12 Alle -  
Arrow Valley parkrun13300:18:05 +
Castle Park parkrun1394122:34 Alle -  
Frogmary Green Farm parkrun1597200:25:58 +
Swanley parkrun19712531:18 Alle -  
Sutton Park parkrun1475500:24:54 +
Greenwich parkrun12218:07 Alle -  
Reigate Priory parkrun16600:19:06 +
Neckarau parkrun1243027:11 Alle -  
Bury St Edmunds parkrun13300:18:17 +
Bury Field parkrun1669033:07 Alle -  
Pollok parkrun, Glasgow11100:17:00 +
Clifton parkrun1101025:14 Alle -  
Kingdom parkrun1222500:24:39 +
Alton Water parkrun1538335:09 Alle -  
Barclay parkrun15600:23:13 +
Colwick parkrun18819:46 Alle -  
Chippenham parkrun1212100:20:08 +
Melksham parkrun1171724:31 Alle -  
Ipswich parkrun11100:17:34 +
Markshall Estate parkrun110315632:26 Alle -  
Itchen Valley Country parkrun1476100:27:37 +
Rogiet parkrun1151624:27 Alle -  
Neckarau parkrun1243000:27:11 +
Bartley Park parkrun18415132:38 Alle -  
Brandon Country Park parkrun11100:18:30 +
Lydiard parkrun18818:25 Alle -  
Boston parkrun17700:21:18 +
Little Stoke parkrun11117:03 Alle -  
University Parks parkrun119032600:31:42 +
Letchworth parkrun1141423:13 Alle -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Belvoir Castle parkrun1131925:42 Alle -  
Lullingstone parkrun17700:21:21 +
Andover parkrun11117:33 Alle -  
Coventry parkrun1292900:20:51 +
Rushcliffe parkrun1617323:54 Alle -  
Berkeley Green parkrun1233100:28:31 +
Cirencester parkrun1222422:40 Alle -  
Mersea Island parkrun1121200:20:59 +
Southall parkrun1557531:38 Alle -  
Aylesbury parkrun11100:17:51 +
Forest of Dean parkrun1182224:51 Alle -  
Royal Tunbridge Wells parkrun18900:19:23 +
parkrun des Dougnes, Cubnezais12219:42 Alle -  
Southall parkrun1557500:31:38 +
South Woodham Ferrers parkrun18821:14 Alle -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Marine Parade parkrun17711129:24 Alle -  
Pomphrey Hill parkrun1364100:23:02 +
Coventry parkrun1292920:51 Alle -  
Henley-on-Thames parkrun1111100:22:25 +
Wotton parkrun1182124:45 Alle -  
Aachener Weiher parkrun1101100:24:55 +
Gloucester City parkrun1171922:35 Alle -  
Penrose parkrun1151600:19:40 +
Great Salterns parkrun19212430:27 Alle -  
King’s Lynn parkrun1151500:20:07 +
Bedworth parkrun1171722:14 Alle -  
Fulbourn Hospital parkrun1344700:24:59 +
University Parks parkrun119032631:42 Alle -  
Fareham parkrun16600:19:21 +
Hampstead Heath parkrun11117:45 Alle -  
Brockenhurst parkrun13300:18:23 +
Great Denham parkrun16619:27 Alle -  
Canterbury parkrun16600:21:56 +
Downham Market Academy parkrun1121324:35 Alle -  
Alton Water parkrun1538300:35:09 +
Ipswich parkrun11117:34 Alle -  
Littleport parkrun1445100:25:16 +
Sixfields Upton parkrun18819:58 Alle -  
Newport parkrun11100:17:29 +
Rendlesham Forest parkrun1264637:01 Alle -  
California Country parkrun1649000:28:49 +
Frogmary Green Farm parkrun1597225:58 Alle -  
Thornbury parkrun1323400:28:19 +
Harrow Lodge parkrun11118:48 Alle -  
Greenwich parkrun12200:18:07 +
Witney parkrun1202022:34 Alle -  
Seven Fields parkrun1475500:26:28 +
Leamington parkrun12218:52 Alle -  
Highbury Fields parkrun11100:17:25 +
Brockenhurst parkrun13318:23 Alle -  
The Great Field parkrun19313500:29:12 +
Hogmoor Inclosure parkrun1262625:26 Alle -  
Street parkrun1283500:25:52 +
Hastings High School parkrun1637827:33 Alle -  
South Norwood parkrun1121200:21:11 +
Cannock Chase parkrun1384425:49 Alle -  
Dunstable Downs parkrun1374300:24:58 +
Wimpole Estate parkrun1202122:14 Alle -  
Melton Mowbray parkrun1192200:22:38 +
Haverhill parkrun1121323:32 Alle -  
Horsham parkrun14500:18:16 +
Edenbrook Country parkrun110514828:01 Alle -  
Irchester Country parkrun1586200:25:13 +
Maidstone River Park parkrun13318:00 Alle -  
Stratford-upon-Avon parkrun1202500:21:14 +
Cheltenham parkrun12217:24 Alle -  
Wotton parkrun1182100:24:45 +
Victoria Dock parkrun1273020:04 Alle -  
Bath Skyline parkrun1192000:21:08 +
Ekebergsletta parkrun1304325:57 Alle -  
Great Dunmow parkrun14400:20:25 +
Oxford parkrun11117:18 Alle -  
Corby parkrun18800:23:09 +
Aylesbury parkrun11117:51 Alle -  
Bracknell parkrun18800:20:04 +
Mote Park parkrun19712231:28 Alle -  
Cromhall parkrun1151600:24:20 +
Riverfront parkrun1404622:57 Alle -  
Perry Hall parkrun1464900:24:58 +
Newent parkrun1182225:27 Alle -  
Gunpowder parkrun12200:17:34 +
Clapham Common parkrun1404220:22 Alle -  
Luton Wardown parkrun191000:19:36 +
Llanishen Park parkrun1303323:48 Alle -  
Ifield Mill Pond parkrun1373800:24:33 +
Heartwood Forest parkrun1252721:41 Alle -  
March parkrun15500:21:11 +
Walthamstow parkrun11117:48 Alle -  
Roding Valley parkrun1111300:21:26 +
Malmö Ribersborg parkrun111215128:46 Alle -  
Charlton parkrun18213000:32:05 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 Alle -  
Malmö Ribersborg parkrun111215100:28:46 +
Huntingdon parkrun1202121:10 Alle -  
Worcester parkrun114418500:29:30 +
Felixstowe parkrun1121221:07 Alle -  
Wolford Wood parkrun1212700:30:24 +
Tidworth parkrun110815535:14 Alle -  
Fire Service College parkrun1181900:22:12 +
Brandon Country Park parkrun11118:30 Alle -  
Panshanger parkrun17700:20:14 +
Prospect parkrun1232322:42 Alle -  
Conkers parkrun12200:17:46 +
Mildenhall Hub parkrun1273124:33 Alle -  
Banbury parkrun1222300:21:16 +
York parkrun12217:12 Alle -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Thetford parkrun1161721:45 Alle -  
Rushmere parkrun1131400:22:39 +
Great Dunmow parkrun14420:25 Alle -  
Whiteley parkrun1141500:20:56 +
Leavesden Country parkrun1506928:32 Alle -  
Sandringham parkrun1466300:30:18 +
Catford parkrun1303322:32 Alle -  
Victoria Dock parkrun1283000:20:04 +
Lordship Recreation Ground parkrun19112425:22 Alle -  
Queen Elizabeth parkrun12200:19:08 +
Rugby parkrun1181822:26 Alle -  
Lordship Recreation Ground parkrun19112400:25:22 +
Mulbarton parkrun12219:55 Alle -  
Somerdale Pavilion parkrun1384600:31:17 +
Swaffham parkrun191022:19 Alle -  
Dartford parkrun11100:17:59 +
Ganger Farm parkrun19811426:34 Alle -  
Winchester parkrun14500:18:28 +
Beckenham Place parkrun1121220:28 Alle -  
Stratford Park parkrun, Stroud1566500:27:51 +
Forest Rec parkrun1677626:35 Alle -  
Sherwood Pines parkrun1161800:21:33 +
Street parkrun1283525:52 Alle -  
Grove Fields parkrun1578500:28:03 +
Market Bosworth Country Park parkrun110614435:35 Alle -  
Witney parkrun1202000:22:34 +
Whiteley parkrun1141520:56 Alle -  
Preston Park parkrun, Brighton12200:17:40 +
Kingsbury Water parkrun1394725:05 Alle -  
Colchester Castle parkrun14400:18:04 +
Springhill parkrun14422:18 Alle -  
Tidworth parkrun110815500:35:14 +
Wolford Wood parkrun1212730:24 Alle -  
Walmer and Deal Seafront parkrun18800:21:38 +
Pontypridd parkrun12217:54 Alle -  
Ferry Meadows parkrun15500:17:27 +
Pocket parkrun1222321:38 Alle -  
St Mary’s parkrun1587400:29:14 +
Stockley Country parkrun111917935:32 Alle -  
Dartford Heath parkrun1171700:22:06 +
Braunstone parkrun1262720:41 Alle -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Didcot parkrun1101121:28 Alle -  
Great Denham parkrun16600:19:27 +
Littleport parkrun1445125:16 Alle -  
Hastings High School parkrun1637800:27:33 +
Yarborough Leisure Centre parkrun1466125:59 Alle -  
Wendover Woods parkrun1262600:23:51 +
Roding Valley parkrun1111321:26 Alle -  
Peckham Rye parkrun11100:17:49 +
Clair parkrun13318:36 Alle -  
Upton House parkrun1252700:22:34 +
Dinton Pastures parkrun1131321:23 Alle -  
Lee-on-the-Solent parkrun17700:19:40 +
Beacon Hill Country Park parkrun1273725:54 Alle -  
Graves parkrun11100:18:18 +
Severn Bridge parkrun1353921:32 Alle -  
Maidstone parkrun13300:18:00 +
Abbey Park parkrun1779425:21 Alle -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Dudley parkrun1445626:35 Alle -  
South Woodham Ferrers parkrun18800:21:14 +
Pegwell Bay parkrun12217:40 Alle -  
Pontypridd parkrun12200:17:54 +
Manor Field parkrun, Whittlesey1121324:25 Alle -  
Bournemouth parkrun14400:17:43 +
Blaise Castle parkrun112816326:20 Alle -  
Sizewell parkrun1172000:23:30 +
Chipping Sodbury parkrun1303221:20 Alle -  
Rushmoor parkrun19900:18:29 +
Foots Cray Meadows parkrun1212323:17 Alle -  
Walsall Arboretum parkrun19810600:25:31 +
Thames Path parkrun, Woolwich1789023:42 Alle -  
Gorleston Cliffs parkrun12200:17:43 +
Bath Skyline parkrun1192021:08 Alle -  
Uckfield parkrun1404300:24:12 +
Dishley parkrun, Loughborough110311424:30 Alle -  
Aldenham parkrun1141400:21:37 +
Thornham Walks parkrun1363826:52 Alle -  
Gadebridge parkrun1141400:22:22 +
Moors Valley parkrun19919:40 Alle -  
Horspath parkrun17410600:28:12 +
East Grinstead parkrun1131423:10 Alle -  
Rogiet parkrun1151600:24:27 +
Sutton Park parkrun1475524:54 Alle -  
Rendlesham Forest parkrun1264600:37:01 +
University of Northampton parkrun1192223:24 Alle -  
Dishley parkrun, Loughborough110311400:24:30 +
Shipley Country parkrun1232424:45 Alle -  
Great Cornard parkrun1192000:20:33 +
Lancing Beach Green parkrun1141421:08 Alle -  
Kettering parkrun1232600:22:50 +
Dover Waterfront parkrun1374525:22 Alle -  
Pont y Bala parkrun15700:23:18 +
Rickmansworth parkrun1242721:39 Alle -  
Burnham and Highbridge parkrun17510000:27:51 +
Queen Elizabeth parkrun12219:08 Alle -  
Stonehouse parkrun1131300:20:09 +
Sizewell parkrun1172023:30 Alle -  
Hampstead Heath parkrun11100:17:45 +
Holbrooks parkrun1202223:43 Alle -  
Wickford Memorial parkrun1436600:51:15 +
Highbury Fields parkrun11117:25 Alle -  
Castle Park parkrun1394100:22:34 +
Clacton Seafront parkrun19920:35 Alle -  
Huntingdon parkrun1202100:21:10 +
Delaware and Raritan Canal parkrun12221:06 Alle -  
Great Salterns parkrun19212400:30:27 +
Wisbech parkrun1111523:03 Alle -  
Snowden Field parkrun1242600:24:15 +
Milton Country parkrun13317:43 Alle -  
Southend parkrun11100:16:28 +
Seaton parkrun1394824:09 Alle -  
Andover parkrun11100:17:33 +
Higginson parkrun, Marlow1272922:17 Alle -  
parkrun Zalew Żyrardowski16700:24:38 +
Quakers Walk parkrun1566825:05 Alle -  
Marecchia parkrun11100:19:50 +
Lister Park parkrun, Bradford1313621:55 Alle -  
Cheltenham parkrun12200:17:24 +
Wendover Woods parkrun1262623:51 Alle -  
St Helens parkrun1606800:24:27 +
Sence Valley Forest Park parkrun1232526:28 Alle -  
Bartley Park parkrun18415100:32:38 +
Canterbury parkrun16621:56 Alle -  
Severn Bridge parkrun1353900:21:32 +
Henstridge Airfield parkrun18821:41 Alle -  
Pontypool parkrun1232300:23:51 +
Five Arches parkrun1455422:58 Alle -  
Poole parkrun14400:16:57 +
Yeovil Montacute parkrun1707525:51 Alle -  
Bramhall parkrun115924700:35:16 +
Watermeadows parkrun1283124:57 Alle -  
Sunny Hill parkrun1202400:24:39 +
Tamworth Castle Grounds parkrun1333523:26 Alle -  
Cassiobury parkrun1111100:20:14 +
St Helens parkrun1606824:27 Alle -  
Hoblingwell parkrun1202400:23:52 +
Weymouth parkrun1141420:45 Alle -  
Colwick parkrun18800:19:46 +
Walmer and Deal Seafront parkrun18821:38 Alle -  
Chipping Norton School parkrun1455100:26:40 +
Aston Hall parkrun1202225:01 Alle -  
Worthing parkrun18900:18:44 +
Royal Tunbridge Wells parkrun18919:23 Alle -  
Harrow Lodge parkrun11100:18:48 +
Corby parkrun18823:09 Alle -  
Bradford parkrun1313600:21:55 +
Marlborough Common parkrun1202122:48 Alle -  
Bury Field parkrun1669000:33:07 +
Battlestead Croft parkrun1111122:53 Alle -  
Pocket parkrun1222300:21:38 +
Shepton Mallet parkrun1121421:50 Alle -  
Longrun Meadow parkrun111416500:32:01 +
Clare Castle parkrun1252723:04 Alle -  
Worcester Pitchcroft parkrun111814300:27:04 +
Coldham’s Common parkrun1535923:04 Alle -  
Highwoods parkrun1252600:24:49 +
Brunswick Park parkrun1212223:58 Alle -  
Maidenhead parkrun17700:18:49 +
Brentwood parkrun17722:28 Alle -  
Soham Village College parkrun1253200:28:03 +
Somerdale Pavilion parkrun1384631:17 Alle -  
Rickmansworth parkrun1242700:21:39 +
Wakehurst parkrun18810525:00 Alle -  
Swaffham parkrun191000:22:19 +
Boston parkrun17721:18 Alle -  
Brentwood parkrun17700:22:28 +
Morden parkrun111715526:58 Alle -  
Lymington Woodside parkrun15700:21:59 +
Pontefract parkrun1718724:10 Alle -  
Loch Neaton parkrun, Watton1171700:25:49 +
Jersey Farm parkrun1252723:11 Alle -  
Daventry parkrun1151500:21:10 +
Bug Hunter Waters parkrun1455022:41 Alle -  
Hatfield Forest parkrun1181800:20:36 +
Rosliston parkrun1333624:41 Alle -  
Kingsway parkrun, Gloucester1192000:21:20 +
Longrun Meadow parkrun111416532:01 Alle -  
Salcey Forest parkrun1384300:24:53 +
Fire Service College parkrun1181922:12 Alle -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Woolacombe Dunes parkrun19410931:20 Alle -  
Prospect parkrun1232300:22:42 +
The Plens parkrun1303124:04 Alle -  
Weymouth parkrun1141400:20:45 +
Arrow Valley parkrun13318:05 Alle -  
Westmill parkrun1101000:22:55 +
Tonbridge parkrun14418:40 Alle -  
East Brighton parkrun1182100:23:56 +
East Brighton parkrun1182123:56 Alle -  
Harlow parkrun1151500:23:00 +
Three Brooks parkrun1697223:46 Alle -  
Linford Wood parkrun1222200:21:45 +
Peacehaven parkrun17721:07 Alle -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Pontypool parkrun1232323:51 Alle -  
Lydney parkrun1202100:23:19 +
Cromhall parkrun1151624:20 Alle -  
Braunstone parkrun1262700:20:41 +
Dereham parkrun1323323:47 Alle -  
Harleston Magpies parkrun1293500:25:12 +
Bournemouth parkrun14417:43 Alle -  
Clapham Common parkrun1404200:20:22 +
Pomphrey Hill parkrun1364123:02 Alle -  
Market Bosworth Country Park parkrun110614400:35:35 +
Seaford Beach parkrun1535622:25 Alle -  
Jersey Farm parkrun1252700:23:11 +
Mansfield parkrun11117:09 Alle -  
Kesgrave parkrun1374000:21:18 +
Fountains Abbey parkrun11118:03 Alle -  
Stevenage parkrun17700:19:32 +
Loch Neaton parkrun, Watton1171725:49 Alle -  
Hadleigh parkrun, Essex1252600:24:27 +
Brueton parkrun1475021:33 Alle -  
Squerryes Winery parkrun1323600:27:45 +
Great Cornard parkrun1192020:33 Alle -  
Rutland Water parkrun1293000:22:44 +
Dunstable Downs parkrun1374324:58 Alle -  
Beckenham Place parkrun1121200:20:28 +
Beeston parkrun1374023:53 Alle -  
Sutcliffe parkrun113117200:30:34 +
Feltham parkrun13424:56 Alle -  
Haverhill parkrun1121300:23:32 +
Markeaton parkrun1576422:56 Alle -  
Leavesden Country parkrun1506900:28:32 +
Reigate Priory parkrun16619:06 Alle -  
Coldham’s Common parkrun1535900:23:04 +
Highwoods parkrun1252624:49 Alle -  
Chichester parkrun13300:19:05 +
Valentines parkrun11116:49 Alle -  
Billericay parkrun1121300:21:20 +
Springburn parkrun, Glasgow13318:05 Alle -  
Bromley parkrun13300:17:18 +
California Country parkrun1649028:49 Alle -  
Babbs Mill parkrun1405100:28:00 +
Rushmoor parkrun19918:29 Alle -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Mountbatten School parkrun1323424:11 Alle -  
Bryn Bach parkrun11100:16:50 +
Colchester Castle parkrun14418:04 Alle -  
York parkrun12200:17:12 +
Buckingham parkrun12218:37 Alle -  
Storeys Field parkrun115121100:28:49 +
Sunny Hill parkrun1202424:39 Alle -  
Chipping Sodbury parkrun1303200:21:20 +
Bognor Regis parkrun12218:12 Alle -  
Mote Park parkrun19712200:31:28 +
Aachener Weiher parkrun1101124:55 Alle -  
Watermeadows parkrun1283100:24:57 +
Peckham Rye parkrun11117:49 Alle -  
Woking parkrun18800:18:19 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 Alle -  
Raphael parkrun13300:19:35 +
Great Notley parkrun16620:16 Alle -  
Harwich parkrun191000:21:22 +
Snowden Field parkrun1242624:15 Alle -  
Fritton Lake parkrun11100:18:26 +
Burnham-on-Crouch parkrun18822:01 Alle -  
Heartwood Forest parkrun1252700:21:41 +
Woking parkrun18818:19 Alle -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Neckarufer parkrun, Esslingen1364425:12 Alle -  
Bedworth parkrun1171700:22:14 +
Worcester parkrun114418529:30 Alle -  
Clair parkrun13300:18:36 +
Blandford parkrun18920:11 Alle -  
Brueton parkrun1475000:21:33 +
Pont y Bala parkrun15723:18 Alle -  
Higginson parkrun, Marlow1272900:22:17 +
Chichester parkrun13319:05 Alle -  
Bognor Regis parkrun12200:18:12 +
Kingdom parkrun1222524:39 Alle -  
Huddersfield parkrun1626700:22:02 +
Westmill parkrun1101022:55 Alle -  
Heaton parkrun13300:18:08 +
Dartford parkrun11117:59 Alle -  
Chasewater parkrun18210000:26:19 +
Hanworth parkrun1364024:26 Alle -  
Tewkesbury parkrun1111400:22:50 +
Bracknell parkrun18820:04 Alle -  
Marple parkrun11100:17:15 +
Folkestone parkrun1212521:48 Alle -  
Cannock Chase parkrun1384400:25:49 +
Uckfield parkrun1404324:12 Alle -  
Edgbaston Reservoir parkrun1658600:26:24 +
Harrogate parkrun13318:11 Alle -  
Cirencester parkrun1222400:22:40 +
Kesgrave parkrun1374021:18 Alle -  
Kingsbury Water parkrun1394700:25:05 +
Thomas Mills parkrun1486530:19 Alle -  
Peacehaven parkrun17700:21:07 +
Lymington Woodside parkrun15721:59 Alle -  
Lancing Beach Green parkrun1141400:21:08 +
Hereford parkrun1535323:07 Alle -  
Springburn parkrun, Glasgow13300:18:05 +
Chasewater parkrun18210026:19 Alle -  
Market Harborough parkrun1303100:21:17 +
South Norwood parkrun1121221:11 Alle -  
Amager Fælled parkrun1333700:24:23 +
Panshanger parkrun17720:14 Alle -  
Hanworth parkrun1364000:24:26 +
Wolverhampton parkrun1556624:54 Alle -  
Salisbury parkrun1111100:19:34 +
Harcourt Hill parkrun1171721:13 Alle -  
Houghton Hall parkrun1131300:21:48 +
Tetbury Goods Shed parkrun1253024:25 Alle -  
Chalkwell Beach parkrun1819600:24:40 +
Gloucester North parkrun1101022:14 Alle -  
Melksham parkrun1171700:24:31 +
Harlow parkrun1151523:00 Alle -  
Thetford parkrun1161700:21:45 +
Alvaston parkrun1515922:24 Alle -  
Pontefract parkrun1718700:24:10 +
Worcester Pitchcroft parkrun111814327:04 Alle -  
Downham Market Academy parkrun1121300:24:35 +
Perry Hall parkrun1464924:58 Alle -  
Fountains Abbey parkrun11100:18:03 +
Newport parkrun11117:29 Alle -  
Cardiff parkrun111011700:22:02 +
Tring parkrun1171823:38 Alle -  
Littlehampton Prom parkrun1384300:24:22 +
Severn Valley Country parkrun1141626:13 Alle -  
Uditore parkrun13300:20:28 +
Wanstead Flats parkrun13317:13 Alle -  
Beacon parkrun1587300:26:41 +
Daventry parkrun1151521:10 Alle -  
parkrun de Rouen15500:21:41 +
St Mary’s parkrun1587429:14 Alle -  
Walthamstow parkrun11100:17:48 +
Poole parkrun14416:57 Alle -  
Shepton Mallet parkrun1121400:21:50 +
Melton Mowbray parkrun1192222:38 Alle -  
Marine Parade parkrun17711100:29:24 +
The Old Showfield parkrun1636923:30 Alle -  
Foots Cray Meadows parkrun1212300:23:17 +
Henley-on-Thames parkrun1111122:25 Alle -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Crissy Field parkrun1101220:40 Alle -  
Evesham parkrun1111100:21:39 +
Babbs Mill parkrun1405128:00 Alle -  
Southwick Country parkrun1272900:21:47 +
Maidenhead parkrun17718:49 Alle -  
Lydiard parkrun18800:18:25 +
Ross-on-Wye parkrun1172124:22 Alle -  
Sandhurst Memorial parkrun1537300:28:54 +
Kettering parkrun1232622:50 Alle -  
Bicester parkrun14400:20:13 +
Stratford Park parkrun, Stroud1566527:51 Alle -  
Wimpole Estate parkrun1202100:22:14 +
Bury St Edmunds parkrun13318:17 Alle -  
Markshall Estate parkrun110315600:32:26 +
Mallards Pike parkrun1324630:57 Alle -  
Dinton Pastures parkrun1131300:21:23 +
Market Harborough parkrun1303121:17 Alle -  
Tonbridge parkrun14400:18:40 +
Cassiobury parkrun1111120:14 Alle -  
Wanstead Flats parkrun13300:17:13 +
Squerryes Winery parkrun1323627:45 Alle -  
Woodhouse Moor parkrun11100:17:22 +
Walsall Arboretum parkrun19010625:31 Alle -  
Mountbatten School parkrun1323400:24:11 +
Penrose parkrun1151619:40 Alle -  
Eastville parkrun120525300:25:12 +
King George V Playing Field parkrun, Cheltenham1232826:08 Alle -  
Brixworth Country parkrun1496100:26:53 +
Evesham parkrun1111121:39 Alle -  
Portsmouth Lakeside parkrun19900:19:12 +
Warwick Racecourse parkrun1486024:55 Alle -  
Milton Country parkrun13300:17:43 +
Huddersfield parkrun1626722:02 Alle -  
Swanley parkrun19712500:31:18 +
Clevedon Salthouse Fields parkrun1384925:13 Alle -  
Springhill parkrun14400:22:18 +
Long Eaton parkrun19912124:06 Alle -  
Gloucester North parkrun1101000:22:14 +
Barry Island parkrun1394223:51 Alle -  
Feltham parkrun13400:24:56 +
Ifield Mill Pond parkrun1373824:33 Alle -  
Crissy Field parkrun1101200:20:40 +
Upton House parkrun1252722:34 Alle -  
Ally Pally parkrun11100:18:09 +
Lullingstone parkrun17721:21 Alle -  
Ashton Court parkrun1859500:22:59 +
The Leas parkrun, Minster1252524:37 Alle -  
Oaklands parkrun111820300:36:10 +
Medina I.O.W. parkrun11117:20 Alle -  
Sittingbourne parkrun18800:20:56 +
Uditore parkrun13320:28 Alle -  
Moors Valley parkrun19900:19:40 +
Hunstanton Promenade parkrun1283523:45 Alle -  
Catford parkrun1303300:22:32 +
Raphael parkrun13319:35 Alle -  
Clare Castle parkrun1252700:23:04 +
Burnham and Highbridge parkrun17510027:51 Alle -  
Harrogate parkrun13300:18:11 +
Salcey Forest parkrun1384324:53 Alle -  
Seaford Beach parkrun1535600:22:25 +
Ferry Meadows parkrun15517:27 Alle -  
Tring parkrun1171800:23:38 +
Barclay parkrun15623:13 Alle -  
Sandwell Valley parkrun1455900:30:43 +
Irchester Country parkrun1586225:13 Alle -  
Basildon parkrun15500:18:13 +
Maldon Prom parkrun11118:04 Alle -  
The Leas parkrun, Minster1252500:24:37 +
Salisbury parkrun1111119:34 Alle -  
Little Stoke parkrun11100:17:03 +
Tremorfa parkrun1272923:30 Alle -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Billericay parkrun1121321:20 Alle -  
Felixstowe parkrun1121200:21:07 +
Gedling parkrun1273224:59 Alle -  
Yeovil Montacute parkrun1707500:25:51 +
Oaklands parkrun111820336:10 Alle -  
Stockley Country parkrun111917900:35:32 +
Winchester parkrun14518:28 Alle -  
Woolacombe Dunes parkrun19410900:31:20 +
Aldenham parkrun1141421:37 Alle -  
Harcourt Hill parkrun1171700:21:13 +
East Park parkrun1121424:18 Alle -  
Abingdon parkrun15500:18:03 +
Soham Village College parkrun1253228:03 Alle -  
Eastbourne parkrun12200:17:24 +
Stevenage parkrun17719:32 Alle -  
Warwick Racecourse parkrun1486000:24:55 +
Tewkesbury parkrun1111422:50 Alle -  
Leicester Victoria parkrun19711600:26:45 +
Seven Fields parkrun1475526:28 Alle -  
Broadwater parkrun110321300:35:19 +
Conkers parkrun12217:46 Alle -  
Clacton Seafront parkrun19900:20:35 +
Lee-on-the-Solent parkrun17719:40 Alle -  
Burnham-on-Crouch parkrun18800:22:01 +
Brixworth Country parkrun1496126:53 Alle -  
Ganger Farm parkrun19811400:26:34 +
Abingdon parkrun15518:03 Alle -  
Folkestone parkrun1212500:21:48 +
Lowestoft parkrun1232621:10 Alle -  
Mallards Pike parkrun1324600:30:57 +
Chipping Norton School parkrun1455126:40 Alle -  
Malling parkrun18314500:47:25 +
Linford Wood parkrun1222221:45 Alle -  
Rugby parkrun1181800:22:26 +
Harwich parkrun191021:22 Alle -  
Watermead Country Park parkrun110818200:35:52 +
Fulbourn Hospital parkrun1344724:59 Alle -  
Hogmoor Inclosure parkrun1262600:25:26 +
Gunpowder parkrun12217:34 Alle -  
East Grinstead parkrun1131400:23:10 +
Dartford Heath parkrun1171722:06 Alle -  
Mildenhall Hub parkrun1273100:24:33 +
Sandhurst Memorial parkrun1537328:54 Alle -  
Marlborough Common parkrun1202100:22:48 +
Woodhouse Moor parkrun11117:22 Alle -  
Blandford parkrun18900:20:11 +
Sandwell Valley parkrun1455930:43 Alle -  
Maldon Prom parkrun11100:18:04 +
Wyre Forest parkrun1434825:56 Alle -  
Edinburgh parkrun12200:17:00 +
parkrun Zalew Żyrardowski16724:38 Alle -  
The Old Showfield parkrun1636900:23:30 +
Bramhall parkrun115924735:16 Alle -  
Jersey parkrun16600:19:41 +
Hatfield Forest parkrun1181820:36 Alle -  
Chilton Fields parkrun1405400:28:26 +
Swansea Bay parkrun1748323:44 Alle -  
Sixfields Upton parkrun18800:19:58 +
Wollaton Hall parkrun1889723:51 Alle -  
Pegwell Bay parkrun12200:17:40 +
Horsham parkrun14518:16 Alle -  
Valentines parkrun11100:16:49 +
Jersey parkrun16619:41 Alle -  
Edenbrook Country parkrun110514800:28:01 +
Berkeley Green parkrun1233128:31 Alle -  
Henstridge Airfield parkrun18800:21:41 +
Cardiff parkrun111011722:02 Alle -  
Great Notley parkrun16600:20:16 +
Ally Pally parkrun11118:09 Alle -  
Medina I.O.W. parkrun11100:17:20 +
Thurrock parkrun, Orsett Heath16620:41 Alle -  
Reading parkrun12200:17:18 +
Beacon parkrun1587326:41 Alle -  
Tetbury Goods Shed parkrun1253000:24:25 +
Albert parkrun, Middlesbrough1515423:17 Alle -  
Lowestoft parkrun1232600:21:10 +
Sherwood Pines parkrun1161821:33 Alle -  
Malahide parkrun11100:16:54 +
Wickford Memorial parkrun1436651:15 Alle -  
Oxford parkrun11100:17:18 +
Thornbury parkrun1323428:19 Alle -  
Rheinpark parkrun1151800:25:30 +
Malling parkrun18314547:25 Alle -  
Gloucester City parkrun1171900:22:35 +
Itchen Valley Country parkrun1476127:37 Alle -  
Didcot parkrun1101100:21:28 +
Pollok parkrun, Glasgow11117:00 Alle -  
Mansfield parkrun11100:17:09 +
Eastville parkrun120525325:12 Alle -  
7851100:16:25 +
Rutland Water parkrun1293022:44 + Alle +
Chalkwell Beach parkrun1819624:40 + Alle +
Amager Fælled parkrun1333724:23 + Alle +
Hoblingwell parkrun1202423:52 + Alle +
Belton House parkrun1141523:48 + Alle +
Kagerzoom parkrun1435824:39 + Alle +
Gorleston Cliffs parkrun12217:43 + Alle +
King’s Lynn parkrun1151520:07 + Alle +
Holkham parkrun1506925:37 + Alle +
Horspath parkrun17410628:12 + Alle +
Southwick Country parkrun1272921:47 + Alle +
Rushmere parkrun1131422:39 + Alle +
Zuiderpark parkrun, Den Haag1738124:07 + Alle +
Heaton parkrun13318:08 + Alle +
Colney Lane parkrun1495524:01 + Alle +
Leicester Victoria parkrun19711626:45 + Alle +
Church Mead parkrun16610232:53 + Alle +
Southend parkrun11116:28 + Alle +
Lydney parkrun1202123:19 + Alle +
Edgbaston Reservoir parkrun1658626:24 + Alle +
Reading parkrun12217:18 + Alle +
March parkrun15521:11 + Alle +
Woodgate Valley Country Park parkrun16513245:50 + Alle +
Maaraue parkrun1232522:34 + Alle +
Stonehouse parkrun1131320:09 + Alle +
Rheinpark parkrun1151825:30 + Alle +
8671116:25 Alle  


Zusammenfassung - Helfende

FunktionAnzahl
- Laufleitung - 94
- Zeitnahme - 59
- Zielmarkenverwaltung - 3
- Ergebnisauswertung - 87
- Fotos - 6
- Kommunikation - 10
- Streckenposten - 39
- Ausrüstung Aufbau - 130
- Ausrüstung Lagerung und Lieferung - 128
- andere Aufgaben - 23
- Barcode einlesen - 55
- Ausrüstung Abbau - 45
- Zielmarkenausgabe - 15
- Nummern-Kontrolle - 2
- Einweisung für Erstläufer*innen - 68
- Leitung Einlaufgasse - 15
- Zielmarken Unterstützung - 9
- Schlussbegleitung - 29
- Koordination Helfer*innen - 146
- Berichterstattung - 97
- Backup Timer - 3
- (nicht anwendbar für parkrun Deutschland) - 16
- Parkplatzeinweisung - 1
- Streckenprüfung am parkrun-Tag - 8
- parkwalker - 9
Gesamtanzahl396

- Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du
hier. -



Freie Läufe

DatumZeitStandort
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
+ Laufleitung +
99
+ Zeitnahme + 94
+ Zielmarkenverwaltung + 12
+ Ergebnisauswertung + 87
+ Fotos + 6
+ Kommunikation + 10
+ Streckenposten + 54
+ Ausrüstung Aufbau + 148
+ Ausrüstung Lagerung und Lieferung + 130
+ andere Aufgaben + 26
+ Barcode einlesen + 78
+ Ausrüstung Abbau + 51
+ Zielmarkenausgabe + 21
+ Nummern-Kontrolle + 2
+ Einweisung für Erstläufer*innen + 82
+ Leitung Einlaufgasse + 15
+ Zielmarken Unterstützung + 12
+ Schlussbegleitung + 29
+ Koordination Helfer*innen + 148
+ Berichterstattung + 100
+ Backup Timer + 3
+ (nicht anwendbar für parkrun Deutschland) + 16
+ Parkplatzeinweisung + 1
+ Streckenprüfung am parkrun-Tag + 14
+ parkwalker + 10
Gesamtanzahl499

+ Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du hier. +



Freie parkruns

DatumZeitStandort
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1016,73 +1128,56 @@

Danny NORMAN (A482)
- Standorte: 3 + Standorte: 4
- Läufer*innen: 2.734 + Läufer*innen: 8492
- Zieleinläufe: 6.087 + Zieleinläufe: 21131
- Austragungen landesweit: 202 + Austragungen landesweit: 477
- Helfer*innen: 222 + Helfer*innen: 520
- Persönliche Bestzeiten: 917 + Persönliche Bestzeiten: 2781
- Durchschnittl. Zielzeit: 00:29:21 + Durchschnittl. Zielzeit: 00:29:17
- Läufe per Läufer*in: 2,2 + Gruppen: 1148
-
- Gruppen: 480 -
-

-
- Rekord - Frauen: - Sophie GRABNER – 18:28 - (16 Apr 2022) -
-
- Rekord - Männer: - Julius OTT – 15:30 - (25 Mär 2023) -
-
- Altersklassenrekord: - Liz KILLIP - 92,9 % 20:53 - ( 5 Nov 2022) -
+
- Zuletzt aktualisiert: Fr 14 Apr 2023 00:35:08 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:35:59 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1111,8 +1216,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/88720/all/index.html index 3368ff29..2a0d4396 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/88720/all/index.html @@ -1,6 +1,6 @@  - + @@ -14,6 +14,7 @@ + ergebnisse | parkrun Austria - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - @@ -57,8 +52,8 @@
@@ -70,34 +65,25 @@
@@ -115,631 +101,729 @@

Phillip WHETTLOCK (A88720)

Mitglied im parkrun-250-Klub - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns insgesamt + 345 parkruns insgesamt

Gesamtstatistiken für diese/n parkrunner*in anzeigen
- Die letzte Altersklasse war VM55-59 + Die letzte Altersklasse war VM60-64

Zusammenfassung der Statistiken für alle Standorte -
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit21:4025:2552:00
Alterskorrigierte Leistung69.71%60.41%29.55%
Position insgesamt648.88374

+
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit21:3625:2654:59
Alterskorrigierte Leistung72.99%60.80%28.92%
Position insgesamt648.44374

Beste jährliche Leistungen gesamt -
JahrBeste ZeitBeste alterskorrigierte Leistung
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
JahrBeste ZeitBeste alterskorrigierte Leistung
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

Alle Ergebnisse bei -
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Halifax08/04/20233313225:0063.07% +
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + PB + +   +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34%   -
Fulham Palace01/04/202339110924:0965.29% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Halifax25/03/20233291624:4363.79% +
Halifax16/09/20233532123:4367.04%   -
Halifax18/03/20233282326:4758.87% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax04/03/20233273825:1962.28% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Myrtle25/02/20231593824:5263.40% +
Glossop12/08/20233152824:2564.57% +   +
Halifax05/08/20233473024:4363.79% +   +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% PB   -
Halifax18/02/20233252926:0360.52% +
Stratford Park, Stroud01/07/20231253126:2959.53%   -
Halifax11/02/20233243124:0365.56% +
Wetherby24/06/20233094124:4663.66%   -
Bradford04/02/20235795022:3769.71% +
Halifax10/06/20233402524:0265.60%   -
Bowling Park28/01/202379924:1165.20% +
Halifax03/06/20233392124:1365.11%   -
Bramley21/01/20233004925:3461.67% +
Long Eaton20/05/20233306921:3672.99%   -
Halifax14/01/20233213325:5260.95% +
Halifax06/05/20233352423:4566.39%   -
Halifax07/01/20233203026:2659.65% +
Keswick29/04/20233904121:3672.99% + PB +   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax22/04/20233334725:0262.98%   -
Nostell31/12/20223614325:0063.07% +
Halifax08/04/20233313225:0063.07%   -
Halifax24/12/20223173125:4661.19% +
Fulham Palace01/04/202339110924:0965.29%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax25/03/20233291624:4363.79%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax18/03/20233282326:4758.87% +   +
Halifax04/03/20233273825:1962.28% +   +
Myrtle25/02/20231593824:5263.40% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71%   -
Brighouse12/11/20222213725:1762.36% +
Bowling Park28/01/202379924:1165.20%   -
Halifax05/11/20223122424:5163.45% +
Bramley21/01/20233004925:3461.67%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB +   -
Halifax15/10/202230910749:5431.60% +
Conkers19/11/20225485624:1465.06%   -
Crosby08/10/20222833525:3861.51% +
Brighouse12/11/20222213725:1762.36%   -
Alness01/10/20221801024:0965.29% +
Halifax05/11/20223122424:5163.45%   -
Victoria24/09/20223736722:5468.85% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax17/09/20223052625:0063.07% +
Halifax15/10/202230910749:5431.60%   -
Centre Vale10/09/20221034428:4454.87% +
Crosby08/10/20222833525:3861.51%   -
Halifax03/09/20223033125:3361.71% +
Alness01/10/20221801024:0965.29%   -
Skipton27/08/20224035325:3561.11% +
Victoria24/09/20223736722:5468.85%   -
Halifax20/08/20223012824:5262.87% +
Halifax17/09/20223052625:0063.07%   -
Halifax06/08/20222996426:0360.01% +
Centre Vale10/09/20221034428:4454.87%   -
Armley30/07/20221432724:2863.90% +
Halifax03/09/20223033125:3361.71%   -
Halifax16/07/20222962524:2663.98% +
Skipton27/08/20224035325:3561.11%   -
Halifax02/07/20222942524:4863.04% +
Halifax20/08/20223012824:5262.87%   -
Halifax18/06/20222922424:5462.78% +
Halifax06/08/20222996426:0360.01%   -
The Pastures11/06/2022991826:2159.33% +
Armley30/07/20221432724:2863.90%   -
Halifax04/06/20222913826:4858.33% +
Halifax16/07/20222962524:2663.98%   -
Horton Park28/05/20222942225:1262.04% +
Halifax02/07/20222942524:4863.04%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax18/06/20222922424:5462.78%   -
Halifax07/05/20222877529:3552.85% +
The Pastures11/06/2022991826:2159.33%   -
Harrogate30/04/202246716226:4458.48% +
Halifax04/06/20222913826:4858.33%   -
Halifax23/04/20222854927:0057.90% +
Horton Park28/05/20222942225:1262.04%   -
Halifax09/04/20222834526:3758.74% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax02/04/20222822924:4463.21% +
Halifax07/05/20222877529:3552.85%   -
Pendle26/03/20223443126:1659.52% +
Harrogate30/04/202246716226:4458.48%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax23/04/20222854927:0057.90%   -
Halifax05/03/20222784925:3761.03% +
Halifax09/04/20222834526:3758.74%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -770,73 +854,56 @@

Phillip WHETTLOCK (A8
- Standorte: 3 + Standorte: 4
- Läufer*innen: 2.772 + Läufer*innen: 8492
- Zieleinläufe: 6.200 + Zieleinläufe: 21131
- Austragungen landesweit: 205 + Austragungen landesweit: 477
- Helfer*innen: 224 + Helfer*innen: 520
- Persönliche Bestzeiten: 935 + Persönliche Bestzeiten: 2781
- Durchschnittl. Zielzeit: 00:29:22 + Durchschnittl. Zielzeit: 00:29:17
- Läufe per Läufer*in: 2,2 + Gruppen: 1148
-
- Gruppen: 488 -
-
-
- Rekord - Frauen: - Sophie GRABNER – 18:28 - (16 Apr 2022) -
-
- Rekord - Männer: - Julius OTT – 15:30 - (25 Mär 2023) -
-
- Altersklassenrekord: - Liz KILLIP - 92,9 % 20:53 - ( 5 Nov 2022) -
+
- Zuletzt aktualisiert: Mo 17 Apr 2023 00:35:13 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:35:59 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -865,8 +942,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/88720/index.html index 961bf73c..a4f32dd0 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/88720/index.html @@ -1,6 +1,6 @@  - + @@ -14,6 +14,7 @@ + ergebnisse | parkrun Austria - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - @@ -57,8 +52,8 @@
@@ -70,34 +65,25 @@
@@ -115,183 +101,239 @@

Phillip WHETTLOCK (A88720)

Mitglied im parkrun-250-Klub - - Member of the Volunteer 100 club -

299 parkruns insgesamt

+ + Member of the Volunteer 250 club +

345 parkruns insgesamt

Statistiken für alle parkruns dieses parkrunners ansehen
- Die letzte Altersklasse war VM55-59 -

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Bradford parkrun1166600:21:40 + Die letzte Altersklasse war VM60-64 +

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Halifax parkrun1268822:13 + Alle +
Lister Park parkrun, Bradford1166621:40 + Alle +
Horton Park parkrun9131322:18 + Alle +
Keswick parkrun4253321:36 + Alle +
Sewerby parkrun3121222:08 + Alle +
Fountains Abbey parkrun2394822:26 + Alle +
Oakwell Hall parkrun2293626:10 + Alle +
Whinlatter Forest parkrun2283227:23 + Alle +
Bramley parkrun2252524:06 + Alle +
Middleton Woods parkrun2121424:55 + Alle +
Myrtle parkrun2333824:52 + Alle +
Centre Vale parkrun2303626:37 + Alle +
Pontefract parkrun2273222:08 + Alle +
Brighouse parkrun2333723:53 + Alle +
Temple Newsam parkrun2272925:14 + Alle +
Skipton parkrun1505325:35 + Alle +
Flatts Lane parkrun1171826:53 + Alle +
Victoria parkrun, Glasgow1546722:54 + Alle +
Alness parkrun171024:09 + Alle +
Fulham Palace parkrun18610924:09 Alle - Graph It!
Halifax parkrun1148800:22:13 +
Springburn parkrun, Glasgow1161623:14 Alle - Graph It!
Horton Park parkrun9131300:22:18 +
Druridge Bay parkrun1354223:35 Alle - Graph It!
Keswick parkrun3253300:23:33 +
Pendle parkrun1263126:16 Alle - Graph It!
Sewerby parkrun3121200:22:08 +
Watergrove parkrun, Rochdale1111227:57 Alle - Graph It!
Temple Newsam parkrun2272900:25:14 +
Wetherby parkrun1374124:46 Alle - Graph It!
Myrtle parkrun2333800:24:52 +
Portobello parkrun, Edinburgh1668024:16 Alle - Graph It!
Middleton Woods parkrun2121400:24:55 +
Nostell parkrun1374325:00 Alle - Graph It!
Bramley parkrun2252500:24:06 +
Fell Foot parkrun, Newby Bridge1161722:57 Alle - Graph It!
Pontefract parkrun2273200:22:08 +
Conwy parkrun1394424:53 Alle - Graph It!
Whinlatter Forest parkrun1283200:27:23 +
Glossop parkrun1242824:25 Alle -  
Woodhouse Moor parkrun1778200:22:18 +
Crosby parkrun1293525:38 Alle -  
Watergrove parkrun, Rochdale1111200:27:57 +
Dolgellau parkrun1459954:59 Alle -  
Springburn parkrun, Glasgow1161600:23:14 +
Dalby Forest parkrun1283223:06 Alle -  
Fulham Palace parkrun18610900:24:09 +
Clitheroe Castle parkrun1192525:41 Alle -  
Flatts Lane parkrun1171800:26:53 +
Armley parkrun1262724:28 Alle -  
Roberts Park parkrun1657500:24:54 +
Dishley parkrun, Loughborough1535724:25 Alle -  
Bowling Park parkrun18900:24:11 +
Ford parkrun1202525:00 Alle -  
Centre Vale parkrun1304400:28:44 +
Cliffe Castle parkrun1151725:18 Alle -  
Hanley parkrun16600:22:03 +
Potternewton parkrun1293625:04 Alle -  
Wycombe Rye parkrun1232600:22:35 +
Isabel Trail parkrun1293422:02 Alle -  
Armley parkrun1262700:24:28 +
The Pastures parkrun1161826:21 Alle -  
Carlisle parkrun1567100:26:05 +
Storthes Hall parkrun1263026:20 Alle -  
Crosby parkrun1293500:25:38 +
Hafan Pwllheli parkrun1212726:48 Alle -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Penistone parkrun1343724:20 Alle -  
Edinburgh parkrun1646700:21:54 +
Conyngham Hall parkrun1363824:55 Alle -  
Oakwell Hall parkrun1344000:26:10 +
Stratford Park parkrun, Stroud1303126:29 Alle -  
Bushy parkrun130137400:24:06 +
Warwick Racecourse parkrun1638224:06 Alle -  
Pendle parkrun1263100:26:16 +
University of Stirling parkrun1343723:52 Alle -  
Alness parkrun171000:24:09 +
Jubilee parkrun1121926:42 Alle -  
Skipton parkrun1505300:25:35 +
Queen’s parkrun, Glasgow1677925:29 Alle -  
Chevin Forest parkrun1213000:26:47 +
Bowling Park parkrun18924:11 Alle -  
Queen’s parkrun, Glasgow1677900:25:29 +
Rothay Park parkrun1202724:48 Alle -  
Burnley parkrun1545700:25:21 +
Zuiderpark parkrun, Den Haag1151722:03 Alle -  
Storthes Hall parkrun1263000:26:20 +
Carlisle Park parkrun, Morpeth1293325:44 Alle -  
Roundhay parkrun112815700:26:55 +
Chevin Forest parkrun1213026:47 Alle -  
Cliffe Castle parkrun1151700:25:18 +
Roberts Park parkrun1657524:54 Alle -  
Southport parkrun1545700:23:57 +
Beacon Hill Country Park parkrun1192325:36 Alle -  
Brighouse parkrun1333700:25:17 +
Thames Path parkrun, Woolwich1586323:49 Alle -  
Milton Country parkrun1707500:22:40 +
Bushy parkrun130137424:06 Alle -  
Nostell parkrun1384300:25:00 +
Woodhouse Moor parkrun1778222:18 Alle -  
Pollok parkrun, Glasgow1667200:23:58 +
Pollok parkrun, Glasgow1667223:58 Alle -  
Portobello parkrun, Edinburgh1668000:24:16 +
Edinburgh parkrun1646721:54 Alle -  
Druridge Bay parkrun1354200:23:35 +
Wakefield Thornes parkrun1545824:29 Alle -  
Fountains Abbey parkrun1394800:22:26 +
Hyndburn parkrun1253125:51 Alle -  
Victoria parkrun, Glasgow1546700:22:54 +
York parkrun111413522:55 Alle -  
Clumber Park parkrun1101100:21:46 +
Milton Country parkrun1707522:40 Alle -  
Rothay Park parkrun1202700:24:48 +
Carlisle parkrun1567126:05 Alle -  
Warwick Racecourse parkrun1638200:24:06 +
Harrogate parkrun112316226:44 Alle -  
The Pastures parkrun1161800:26:21 +
Southport parkrun1545723:57 Alle -  
Conkers parkrun1525600:24:14 +
Barnsley parkrun1414325:05 Alle -  
Dishley parkrun, Loughborough1535700:24:25 +
Rothwell parkrun1535724:20 Alle -  
Harrogate parkrun112316200:26:44 +
Huddersfield parkrun1596722:47 Alle -  
Dalby Forest parkrun1283200:23:06 +
Long Eaton parkrun1556921:36 Alle -  
2996600:21:40 +
Wycombe Rye parkrun1232622:35 + Alle +
Conkers parkrun1525624:14 + Alle +
Roundhay parkrun112815726:55 + Alle +
Hanley parkrun16622:03 + Alle +
Worsley Woods parkrun1728824:46 + Alle +
Burnley parkrun1545725:21 + Alle +
Dewsbury parkrun18610128:15 + Alle +
Cross Flatts parkrun1303724:16 + Alle +
Clumber Park parkrun1101121:46 + Alle +
3456621:36 Alle  


Zusammenfassung - Helfende

FunktionAnzahl
- Laufleitung - 32
- Zeitnahme - 17
- Zielmarkenverwaltung - 5
- Ergebnisauswertung - 1
- Fotos - 1
- Kommunikation - 5
- Streckenposten - 35
- Ausrüstung Aufbau - 28
- Ausrüstung Lagerung und Lieferung - 5
- andere Aufgaben - 1
- Barcode einlesen - 27
- Ausrüstung Abbau - 24
- Zielmarkenausgabe - 11
- Nummern-Kontrolle - 1
- Einweisung für Erstläufer*innen - 77
- Leitung Einlaufgasse - 12
- Zielmarken Unterstützung - 10
- Schlussbegleitung - 5
- Koordination Helfer*innen - 10
- Berichterstattung - 1
- Tempoläufer*in - 5
- Backup Timer - 14
- Begleitung für Sehbehinderte - 1
- (nicht anwendbar für parkrun Deutschland) - 5
- Gebärdensprache Unterstützung - 1
- Parkplatzeinweisung - 1
- Streckenprüfung am parkrun-Tag - 25
- parkwalker - 1
Gesamtanzahl249

- Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du
hier. -



Freie Läufe

DatumZeitStandort
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+ Laufleitung +
33
+ Zeitnahme + 28
+ Zielmarkenverwaltung + 5
+ Ergebnisauswertung + 4
+ Fotos + 1
+ Kommunikation + 6
+ Streckenposten + 35
+ Ausrüstung Aufbau + 29
+ Ausrüstung Lagerung und Lieferung + 6
+ andere Aufgaben + 2
+ Barcode einlesen + 46
+ Ausrüstung Abbau + 25
+ Zielmarkenausgabe + 16
+ Nummern-Kontrolle + 1
+ Einweisung für Erstläufer*innen + 82
+ Leitung Einlaufgasse + 16
+ Zielmarken Unterstützung + 16
+ Schlussbegleitung + 15
+ Koordination Helfer*innen + 11
+ Berichterstattung + 1
+ Tempoläufer*in + 10
+ Backup Timer + 14
+ Begleitung für Sehbehinderte + 1
+ (nicht anwendbar für parkrun Deutschland) + 15
+ Gebärdensprache Unterstützung + 1
+ Parkplatzeinweisung + 1
+ Streckenprüfung am parkrun-Tag + 57
+ parkwalker + 1
Gesamtanzahl316

+ Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du hier. +



Freie parkruns

DatumZeitStandort
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -320,73 +362,56 @@

Phillip WHETTLOCK (A8
- Standorte: 3 -
-
- Läufer*innen: 2.772 + Standorte: 4
- Zieleinläufe: 6.200 + Läufer*innen: 8492
- Austragungen landesweit: 205 + Zieleinläufe: 21131
- Helfer*innen: 224 + Austragungen landesweit: 477
- Persönliche Bestzeiten: 935 + Helfer*innen: 520
- Durchschnittl. Zielzeit: 00:29:22 + Persönliche Bestzeiten: 2781
- Läufe per Läufer*in: 2,2 + Durchschnittl. Zielzeit: 00:29:17
- Gruppen: 488 + Gruppen: 1148
-
-
- Rekord - Frauen: - Sophie GRABNER – 18:28 - (16 Apr 2022) -
-
- Rekord - Männer: - Julius OTT – 15:30 - (25 Mär 2023) -
-
- Altersklassenrekord: - Liz KILLIP - 92,9 % 20:53 - ( 5 Nov 2022) -
+

- Zuletzt aktualisiert: Mo 17 Apr 2023 00:35:13 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:35:59 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -415,8 +450,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/999999/all/index.html index e680afbd..32259a15 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/999999/all/index.html @@ -1,6 +1,6 @@  - + @@ -14,6 +14,7 @@ + ergebnisse | parkrun Austria
@@ -65,34 +65,25 @@
@@ -109,7 +100,7 @@

Jakub WOLSKI (A999999)

- Für diesen parkrunner wurden noch keine Ergebnisse erfasst. + ​

Gesamtstatistik für diese/n parkrunner*in anzeigen

@@ -141,73 +132,56 @@

Jakub WOLSKI (A999999
- Standorte: 3 -
-
- Läufer*innen: 3.466 + Standorte: 4
- Zieleinläufe: 7.832 + Läufer*innen: 8492
- Austragungen landesweit: 235 + Zieleinläufe: 21131
- Helfer*innen: 256 + Austragungen landesweit: 477
- Persönliche Bestzeiten: 1.162 + Helfer*innen: 520
- Durchschnittl. Zielzeit: 00:29:19 + Persönliche Bestzeiten: 2781
- Läufe per Läufer*in: 2,3 + Durchschnittl. Zielzeit: 00:29:17
- Gruppen: 595 + Gruppen: 1148
-
-
- Rekord - Frauen: - Sophie GRABNER – 17:44 - (27 Mai 2023) -
-
- Rekord - Männer: - Harry BRODIE – 15:23 - (24 Jun 2023) -
-
- Altersklassenrekord: - Liz KILLIP - 92,9 % 20:53 - ( 5 Nov 2022) -
+
- Zuletzt aktualisiert: Do 29 Jun 2023 00:35:15 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:35:59 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -236,8 +220,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/999999/index.html index 86692cca..f1cdaeeb 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.at/contents/parkrunner/999999/index.html @@ -1,6 +1,6 @@  - + @@ -14,6 +14,7 @@ + ergebnisse | parkrun Austria
@@ -65,34 +65,25 @@
@@ -108,7 +99,7 @@ -

Jakub WOLSKI (A999999)

Für diesen parkrunner wurden noch keine Ergebnisse erfasst.

+

Jakub WOLSKI (A999999)

@@ -137,73 +128,56 @@

Jakub WOLSKI (A999999
- Standorte: 3 -
-
- Läufer*innen: 3.466 + Standorte: 4
- Zieleinläufe: 7.832 + Läufer*innen: 8492
- Austragungen landesweit: 235 + Zieleinläufe: 21131
- Helfer*innen: 256 + Austragungen landesweit: 477
- Persönliche Bestzeiten: 1.162 + Helfer*innen: 520
- Durchschnittl. Zielzeit: 00:29:19 + Persönliche Bestzeiten: 2781
- Läufe per Läufer*in: 2,3 + Durchschnittl. Zielzeit: 00:29:17
- Gruppen: 595 + Gruppen: 1148
-
-
- Rekord - Frauen: - Sophie GRABNER – 17:44 - (27 Mai 2023) -
-
- Rekord - Männer: - Harry BRODIE – 15:23 - (24 Jun 2023) -
-
- Altersklassenrekord: - Liz KILLIP - 92,9 % 20:53 - ( 5 Nov 2022) -
+

- Zuletzt aktualisiert: Do 29 Jun 2023 00:35:15 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:35:59 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -232,8 +216,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/1309364/all/index.html index 7755a719..dc13befc 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,7 @@ + resultaten | parkrun Netherlands - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +53,7 @@
@@ -70,34 +65,25 @@
@@ -112,544 +98,657 @@
- -

Andrew TAYLOR (A1309364)

- Lid van de parkrun 100 Club + + + + + + +

Andrew TAYLOR (A1309364)

+ Lid van de parkrun 250 Club Member of the Volunteer 50 club

- 245 parkruns in totaal + 297 parkruns in totaal

Bekijk de belangrijkste statistieken voor deze parkrunner
- Recentelijk gelopen in VM35-39 leeftijdscategorie + Recentelijk gelopen in de VM40-44 leeftijdscategorie

Belangrijkste statistieken voor alle locaties -
SnelsteGemiddelde
(mean)
Langzaamste
Tijd20:0628:4757:34
Leeftijdsindex64.51%47.44%23.54%
Algehele positie5165.361021

+
SnelsteGemiddelde
(mean)
Langzaamste
Tijd20:0629:2057:34
Leeftijdsindex64.51%46.67%23.54%
Algehele positie5182.341021

Beste jaarprestaties bij alle evenementen -
JaarBeste tijdBeste leeftijdsindex
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
JaarBeste tijdBeste leeftijdsindex
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

– Alle resultaten -
EvenementDatumEvenement nummerPositieTijdLeeftijdsindexPR?
Clitheroe Castle08/04/20231789735:4637.88% +
EvenementDatumEvenement nummerPositieTijdLeeftijdsindexPR?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PR + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60%   -
Whiteley25/03/202321418332:2441.82% +
Whiteley18/11/202324721037:0536.54%   -
Winchester11/03/202342821230:3744.26% +
Whiteley11/11/202324617430:3744.26%   -
Winchester04/03/202342730935:4537.90% +
Winchester21/10/202345731533:5140.03%   -
Winchester25/02/202342632536:0937.48% +
Winchester14/10/202345634233:5439.97%   -
Winchester18/02/202342530336:3137.11% +
Ganger Farm07/10/20234713233:4940.07%   -
Delamere31/12/202242331536:2537.21% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester23/09/202345321928:2247.77%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester16/09/202345235430:3244.38%   -
Winchester26/11/202241229335:3137.87% +
Winchester09/09/202345129229:1146.43%   -
Whiteley12/11/202221016534:2839.02% +
Delamere02/09/202345822633:2840.49%   -
Winchester29/10/202240924429:5544.96% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester22/10/202240833736:0837.22% +
Winchester29/07/202344622227:3649.09%   -
Winchester17/09/202240326230:2944.12% +
Winchester22/07/202344540537:0036.62%   -
Winchester10/09/202240231134:3338.93% +
Whiteley15/07/202322915731:1643.34%   -
Alice Holt03/09/202241817936:3236.82% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester27/08/202240042335:2138.05% +
Winchester17/06/202344128530:4144.16%   -
Winchester13/08/202239823431:3042.70% +
Winchester10/06/202344032435:2138.33%   -
Tidworth30/07/2022615151:4226.02% +
Winchester20/05/202343822427:0949.91%   -
Uckfield23/07/20221006028:4346.84% +
Winchester13/05/202343733232:4341.42%   -
Winchester09/07/202239428633:1640.43% +
Whiteley29/04/202321919635:3138.15%   -
Eastleigh28/05/202254015531:2042.93% +
Winchester22/04/202343431731:1143.45%   -
Winchester21/05/202238930733:2840.19% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Alice Holt14/05/202240216932:0142.01% +
Whiteley25/03/202321418332:2441.82%   -
Winchester07/05/202238734034:1339.31% +
Winchester11/03/202342821230:3744.26%   -
Guildford30/04/202242825130:0144.81% +
Winchester04/03/202342730935:4537.90%   -
Winchester23/04/202238522932:0241.99% +
Winchester25/02/202342632536:0937.48%   -
Winchester16/04/202238431033:2340.29% +
Winchester18/02/202342530336:3137.11%   -
Winchester19/03/202238025033:5439.68% +
Delamere31/12/202242331536:2537.21%   -
Alice Holt01/01/202238524237:4635.61% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester20/11/202136338445:0729.59% +
Winchester26/11/202241229335:3137.87%   -
Winchester09/10/202135739843:0730.96% +
Whiteley12/11/202221016534:2839.02%   -
Winchester25/09/202135538955:0324.25% +
Winchester29/10/202240924429:5544.96%   -
Winchester18/09/202135433938:1234.95% +
Winchester22/10/202240833736:0837.22%   -
Winchester04/09/202135233838:2434.77% +
Winchester17/09/202240326230:2944.12%   -
Winchester28/08/202135139841:0132.55% +
Winchester10/09/202240231134:3338.93%   -
Winchester14/08/202134936055:4623.94% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester31/07/202134832845:2029.45% +
Winchester27/08/202240042335:2138.05%   -
Winchester14/03/202034625851:3825.69% +
Winchester13/08/202239823431:3042.70%   -
Winchester07/03/202034510325:5251.29% +
Tidworth30/07/2022615151:4226.02%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Uckfield23/07/20221006028:4346.84%   -
Newbury22/02/202043434631:1142.54% +
Winchester09/07/202239428633:1640.43%   -
Alice Holt08/02/202036010727:1948.57% +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PR   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PR   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PR   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PR   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PR   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PR   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PR   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PR   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PR   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PR   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PR   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PR   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PR   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PR   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PR   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PR   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -680,78 +779,61 @@

Andrew TAYLOR (A1
- Locaties: 15 + Locaties: 25
- Totaal aantal finishers: 13.222 + Totaal aantal finishers: 36461
- Totaal aantal deelnames: 41.810 + Totaal aantal deelnames: 133520
- Totaal aantal evenementen: 1.026 + Totaal aantal evenementen: 2616
- Vrijwilligers: 1.195 + Vrijwilligers: 2537
- PRs: 6.497 + PRs: 19425
- Gemiddelde finishtijd: 00:29:16 + Gemiddelde finishtijd: 00:29:47
- Gemiddeld aantal deelnames per deelnemer: 3,2 + Groepen: 2325
-
- Groepen: 1.271 -
-
-
- Recordhouder vrouwen: - Lysanne WILKENS – 16:53 - (18 jun 2022) -
-
- Recordhouder mannen: - Luc ESSINK – 15:00 - (18 mrt 2023) -
-
- Recordhouders leeftijdsindex: - Alice RIDDELL-WEBSTER - 93,54% 19:06 - (16 apr 2022) -
+

- Statistieken laatst geüpdatet op: vr 14 apr 2023 00:39:56 UTC + Statistieken laatst geüpdatet op: ma 30 sep 2024 00:40:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Geen enkel onderdeel van deze website mag worden overgenomen, helemaal of ten dele, zonder toestemming van de copyright-bezitter.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -785,8 +877,8 @@

Andrew TAYLOR (A1 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/1309364/index.html index c7c94496..bd8e5df4 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/1309364/index.html @@ -14,6 +14,7 @@ + resultaten | parkrun Netherlands - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +53,7 @@
@@ -70,34 +65,25 @@
@@ -112,177 +98,194 @@
- -

Andrew TAYLOR (A1309364)

- Lid van de parkrun 100 Club + + + + + + +

Andrew TAYLOR (A1309364)

+ Lid van de parkrun 250 Club Member of the Volunteer 50 club -

245 parkruns in totaal

+

297 parkruns in totaal

Bekijk de statistieken van alle parkruns voor deze parkrunner
- Recentelijk gelopen in VM35-39 leeftijdscategorie -

Meest recente evenementen

EvenementDatumGeslacht finishpositieAlgehele positieTijdLeeftijdsindex
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Evenementoverzicht

EvenementEvenementenBeste positie geslachtBeste positie algeheelBeste tijd  
Winchester parkrun146121300:20:18 + Recentelijk gelopen in de VM40-44 leeftijdscategorie +

Meest recente evenementen

EvenementDatumGeslacht finishpositieAlgehele positieTijdLeeftijdsindex
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Evenementoverzicht

EvenementparkrunsBeste positie geslachtBeste positie algeheelBeste tijd  
Winchester parkrun173121320:18 + Alle +
Whiteley parkrun1410714629:06 + Alle +
Delamere parkrun11232321:42 + Alle +
Eastleigh parkrun6242524:08 Alle - Graph It!
Delamere parkrun8232300:21:42 +
Alice Holt parkrun59010727:19 Alle - Graph It!
Whiteley parkrun610714600:29:06 +
Southampton parkrun5687021:17 Alle - Graph It!
Alice Holt parkrun59010700:27:19 +
Fell Foot parkrun, Newby Bridge4212223:48 Alle - Graph It!
Southampton parkrun5687000:21:17 +
Witton parkrun4303525:40 Alle - Graph It!
Eastleigh parkrun5242500:24:08 +
Northwich parkrun4485224:55 Alle - Graph It!
Congleton parkrun49900:20:06 +
Newbury parkrun4829123:49 Alle - Graph It!
Witton parkrun4303500:25:40 +
Congleton parkrun49920:06 Alle - Graph It!
Northwich parkrun4485200:24:55 +
Medina I.O.W. parkrun4667525:13 Alle - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Ganger Farm parkrun38013229:25 Alle - Graph It!
Andover parkrun2242600:22:24 +
Hanley parkrun2333922:31 Alle - Graph It!
Ganger Farm parkrun29713500:29:25 +
Burnley parkrun212718929:06 Alle - Graph It!
Hanley parkrun2333900:22:31 +
Queen Elizabeth parkrun2364026:36 Alle - Graph It!
Newbury parkrun2829100:23:49 +
Andover parkrun2242622:24 Alle - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Abingdon parkrun114220229:14 Alle - Graph It!
Hagley parkrun1182000:22:38 +
Netley Abbey parkrun1586424:21 Alle -  
Ormskirk parkrun120930300:31:04 +
Hilly Fields parkrun1859925:03 Alle -  
Basingstoke parkrun111212900:24:31 +
Brockenhurst parkrun112718632:41 Alle -  
Cuerden Valley parkrun1192000:24:47 +
Wimpole Estate parkrun112916928:07 Alle -  
Seven Fields parkrun1546700:28:28 +
Clumber Park parkrun112117629:51 Alle -  
Netley Abbey parkrun1586400:24:21 +
Cuerden Valley parkrun1192024:47 Alle -  
Mountbatten School parkrun17110100:31:29 +
Hamilton Lake parkrun1151621:47 Alle -  
Clitheroe Castle parkrun1639700:35:46 +
Fountains Abbey parkrun1283020:33 Alle -  
Medina I.O.W. parkrun19513900:30:57 +
Ormskirk parkrun120930331:04 Alle -  
Hogmoor Inclosure parkrun111314000:29:34 +
Pendle parkrun1465926:37 Alle -  
Milano Nord parkrun1475300:27:49 +
Woking parkrun1485824:01 Alle -  
Jersey parkrun111018500:30:53 +
Hagley parkrun1182022:38 Alle -  
Canterbury parkrun1323600:27:29 +
Penrhyn parkrun1232624:33 Alle -  
Penrhyn parkrun1232600:24:33 +
Salisbury parkrun119326729:45 Alle -  
Hyndburn parkrun1425300:29:55 +
Jersey parkrun111018530:53 Alle -  
Woking parkrun1485800:24:01 +
Haigh Woodland parkrun18916837:04 Alle -  
Fountains Abbey parkrun1283000:20:33 +
Stretford parkrun127540530:23 Alle -  
Bushy parkrun1681102100:33:01 +
Portsmouth Lakeside parkrun1818726:32 Alle -  
Clumber Park parkrun112117600:29:51 +
Fareham parkrun19011428:52 Alle -  
Wimpole Estate parkrun112916900:28:07 +
Milano Nord parkrun1475327:49 Alle -  
Tidworth parkrun18615100:51:42 +
Richmond Olympic parkrun15521:59 Alle -  
Hilly Fields parkrun1859900:25:03 +
Crewe parkrun112315430:05 Alle -  
Tawd Valley parkrun18111000:29:25 +
Hogmoor Inclosure parkrun111314029:34 Alle -  
Watermeadows parkrun1151500:23:51 +
Catford parkrun19512527:24 Alle -  
Eden Project parkrun111116200:30:21 +
Clitheroe Castle parkrun1639735:46 Alle -  
Catford parkrun19512500:27:24 +
Pocket parkrun112419533:47 Alle -  
Crewe parkrun112315400:30:05 +
Ford parkrun1477432:29 Alle -  
Long Eaton parkrun118122900:28:06 +
Watermeadows parkrun1151523:51 Alle -  
Fareham parkrun19511400:28:52 +
Mountbatten School parkrun17110131:29 Alle -  
Phoenix parkrun1232600:27:31 +
Uckfield parkrun1416028:43 Alle -  
Guildford parkrun117125100:30:01 +
Tawd Valley parkrun18111029:25 Alle -  
Pendle parkrun1465900:26:37 +
Seven Fields parkrun1546728:28 Alle -  
Heaton parkrun133846700:31:01 +
Itchen Valley Country parkrun110613529:53 Alle -  
Hamilton Lake parkrun1151600:21:47 +
Bartley Park parkrun1628430:26 Alle -  
Brockenhurst parkrun112718600:32:41 +
Tidworth parkrun18615151:42 Alle -  
Itchen Valley Country parkrun110713500:29:53 +
Bushy parkrun1681102133:01 Alle -  
Burnley parkrun114120400:29:06 +
Basingstoke parkrun111212924:31 Alle -  
Uckfield parkrun1416000:28:43 +
Heaton parkrun133846731:01 Alle -  
Abingdon parkrun114220200:29:14 +
Guildford parkrun117125130:01 Alle -  
Pocket parkrun112419500:33:47 +
Hyndburn parkrun1425329:55 Alle -  
Bolton parkrun116221800:31:49 +
Phoenix parkrun1232627:31 Alle -  
Richmond Olympic parkrun15500:21:59 +
Canterbury parkrun1323627:29 Alle -  
Poole parkrun121328400:28:59 +
Valentines parkrun1698025:14 Alle -  
Portsmouth Lakeside parkrun1818700:26:32 +
Poole parkrun121328428:59 Alle -  
Salisbury parkrun119326700:29:45 +
Long Eaton parkrun118122928:06 Alle -  
2455500:20:06 +
Bolton parkrun116221831:49 + Alle +
Eden Project parkrun111116230:21 + Alle +
2975520:06 Alle  


21
+ Tijdwaarnemer + 2
+ Tokensorteerder + 8
+ Resultaatverwerking + 6
+ Fotograaf + 4
+ Routeregelaar + 5
+ Opbouw evenement + 6
+ Materiaalbeheerder + 2
+ Barcodescanner + 3
+ Afbouw evenement + 10
+ Uitdeler tokens + 1
+ Controle nummers + 2
+ Briefing nieuwe lopers + 1
+ Fuikregelaar + 1
+ Sluitloper + 4
+ Coördinator vrijwilligers + 1
+ Loopverslag + 10
+ Pacer + 1
Totaal deelnames als vrijwilliger60

+ Deze tabel toont het aantal keren dat een vrijwilligers' taak is vervuld.
Het totaal kan afwijken van het totaal aantal deelnames als vrijwilliger; als je op de zelfde dag meerdere taken vervuld hebt.
Lees hier meer.



Vrije lopen

DatumTijdLocatie
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekDatumDatum(not)parkrunsBeste tijd
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -312,78 +315,61 @@

Andrew TAYLOR (A1
- Locaties: 15 + Locaties: 25
- Totaal aantal finishers: 13.222 + Totaal aantal finishers: 36461
- Totaal aantal deelnames: 41.810 + Totaal aantal deelnames: 133520
- Totaal aantal evenementen: 1.026 + Totaal aantal evenementen: 2616
- Vrijwilligers: 1.195 + Vrijwilligers: 2537
- PRs: 6.497 + PRs: 19425
- Gemiddelde finishtijd: 00:29:16 + Gemiddelde finishtijd: 00:29:47
- Gemiddeld aantal deelnames per deelnemer: 3,2 + Groepen: 2325
-
- Groepen: 1.271 -
-
-
- Recordhouder vrouwen: - Lysanne WILKENS – 16:53 - (18 jun 2022) -
-
- Recordhouder mannen: - Luc ESSINK – 15:00 - (18 mrt 2023) -
-
- Recordhouders leeftijdsindex: - Alice RIDDELL-WEBSTER - 93,54% 19:06 - (16 apr 2022) -
+

- Statistieken laatst geüpdatet op: vr 14 apr 2023 00:39:56 UTC + Statistieken laatst geüpdatet op: ma 30 sep 2024 00:40:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Geen enkel onderdeel van deze website mag worden overgenomen, helemaal of ten dele, zonder toestemming van de copyright-bezitter.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -417,8 +413,8 @@

Andrew TAYLOR (A1 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/2705084/all/index.html index 548eb912..3510ba59 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,7 @@ + resultaten | parkrun Netherlands - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +53,7 @@
@@ -70,34 +65,25 @@
@@ -112,11 +98,18 @@
- -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club + + + + + + +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- Er zijn nog geen resultaten voor deze parkrunner. + ​

Bekijk de belangrijkste statistieken voor deze parkrunner

@@ -148,78 +141,61 @@

Duncan BOOTH (A27
- Locaties: 16 -
-
- Totaal aantal finishers: 13.526 + Locaties: 25
- Totaal aantal deelnames: 42.705 + Totaal aantal finishers: 36461
- Totaal aantal evenementen: 1.042 + Totaal aantal deelnames: 133520
- Vrijwilligers: 1.209 + Totaal aantal evenementen: 2616
- PRs: 6.606 + Vrijwilligers: 2537
- Gemiddelde finishtijd: 00:29:17 + PRs: 19425
- Gemiddeld aantal deelnames per deelnemer: 3,2 + Gemiddelde finishtijd: 00:29:47
- Groepen: 1.286 + Groepen: 2325
-
-
- Recordhouder vrouwen: - Lysanne WILKENS – 16:53 - (18 jun 2022) -
-
- Recordhouder mannen: - Luc ESSINK – 15:00 - (18 mrt 2023) -
-
- Recordhouders leeftijdsindex: - Alice RIDDELL-WEBSTER - 93,54% 19:06 - (16 apr 2022) -
+

- Statistieken laatst geüpdatet op: ma 17 apr 2023 00:40:08 UTC + Statistieken laatst geüpdatet op: ma 30 sep 2024 00:40:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Geen enkel onderdeel van deze website mag worden overgenomen, helemaal of ten dele, zonder toestemming van de copyright-bezitter.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -253,8 +239,8 @@

Duncan BOOTH (A27 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/2705084/index.html index b45ae53b..0a66d3a1 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/2705084/index.html @@ -14,6 +14,7 @@ + resultaten | parkrun Netherlands - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +53,7 @@
@@ -70,34 +65,25 @@
@@ -112,17 +98,24 @@
- -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

Er zijn nog geen resultaten voor deze parkrunner.

Vrijwilligersoverzicht

RolAantal keer
- Routeregelaar - 260
- Kopfietser - 130
- Routecontroleur - 9
Totaal deelnames als vrijwilliger393

- Deze tabel toont het aantal keren dat een vrijwilligers' taak is vervuld.
Het totaal kan afwijken van het totaal aantal deelnames als vrijwilliger; als je op de zelfde dag meerdere taken vervuld hebt.
Lees hier meer. + + + + + + +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Vrijwilligersoverzicht

RolAantal keer
+ Routeregelaar + 350
+ Kopfietser + 130
+ Routecontroleur + 82
Totaal deelnames als vrijwilliger540

+ Deze tabel toont het aantal keren dat een vrijwilligers' taak is vervuld.
Het totaal kan afwijken van het totaal aantal deelnames als vrijwilliger; als je op de zelfde dag meerdere taken vervuld hebt.
Lees hier meer.



@@ -152,78 +145,61 @@

Duncan BOOTH (A27
- Locaties: 16 -
-
- Totaal aantal finishers: 13.526 + Locaties: 25
- Totaal aantal deelnames: 42.705 + Totaal aantal finishers: 36461
- Totaal aantal evenementen: 1.042 + Totaal aantal deelnames: 133520
- Vrijwilligers: 1.209 + Totaal aantal evenementen: 2616
- PRs: 6.606 + Vrijwilligers: 2537
- Gemiddelde finishtijd: 00:29:17 + PRs: 19425
- Gemiddeld aantal deelnames per deelnemer: 3,2 + Gemiddelde finishtijd: 00:29:47
- Groepen: 1.286 + Groepen: 2325
-
-
- Recordhouder vrouwen: - Lysanne WILKENS – 16:53 - (18 jun 2022) -
-
- Recordhouder mannen: - Luc ESSINK – 15:00 - (18 mrt 2023) -
-
- Recordhouders leeftijdsindex: - Alice RIDDELL-WEBSTER - 93,54% 19:06 - (16 apr 2022) -
+

- Statistieken laatst geüpdatet op: ma 17 apr 2023 00:40:08 UTC + Statistieken laatst geüpdatet op: ma 30 sep 2024 00:40:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Geen enkel onderdeel van deze website mag worden overgenomen, helemaal of ten dele, zonder toestemming van de copyright-bezitter.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -257,8 +243,8 @@

Duncan BOOTH (A27 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/482/all/index.html index c5e68edc..63e363fd 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/482/all/index.html @@ -14,6 +14,7 @@ + resultaten | parkrun Netherlands - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +53,7 @@
@@ -70,34 +65,25 @@
@@ -112,1656 +98,1829 @@
- + + + + + +

Danny NORMAN (A482)

Lid van de parkrun 500 Club Member of the Volunteer 250 club

- 785 parkruns in totaal + 867 parkruns in totaal

Bekijk de belangrijkste statistieken voor deze parkrunner
- Recentelijk gelopen in VM40-44 leeftijdscategorie + Recentelijk gelopen in de VM45-49 leeftijdscategorie

Belangrijkste statistieken voor alle locaties -
SnelsteGemiddelde
(mean)
Langzaamste
Tijd16:2521:0459:17
Leeftijdsindex79.25%65.45%23.56%
Algehele positie134.831692

+
SnelsteGemiddelde
(mean)
Langzaamste
Tijd16:2521:2659:17
Leeftijdsindex79.25%64.63%23.56%
Algehele positie138.841692

Beste jaarprestaties bij alle evenementen -
JaarBeste tijdBeste leeftijdsindex
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
JaarBeste tijdBeste leeftijdsindex
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

– Alle resultaten -
EvenementDatumEvenement nummerPositieTijdLeeftijdsindexPR?
Harleston Magpies08/04/2023793525:1255.42% +
EvenementDatumEvenement nummerPositieTijdLeeftijdsindexPR?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PR + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Cannock Chase01/04/20232434425:4954.10% +
Quakers Walk25/11/2023126825:0556.08%   -
Kingston25/03/202360216430:0946.32% +
Aston Hall18/11/202352225:0156.23%   -
Wolford Wood18/03/202352730:2445.94% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Kingston11/03/202360015027:1851.16% +
Belvoir Castle04/11/2023911925:4254.73%   -
Stockley Country04/03/2023817935:3239.31% +
Five Arches28/10/202365422:5861.25%   -
Chasewater25/02/202310010026:1953.07% +
Dover Waterfront21/10/202374525:2255.45%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Rushcliffe14/10/20235087323:5458.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Kingston07/10/202363033150:2927.86%   -
Worcester04/02/202354318529:3047.34% +
Maaraue03/10/20231012522:3462.33%   -
Crane Park28/01/202349014550:3727.59% +
University of Northampton30/09/2023112223:2460.11%   -
Kingston21/01/202359431139:3935.22% +
Clifton23/09/20231911025:1455.75%   -
Brooklands14/01/202313018830:4445.44% +
Wisbech16/09/202351523:0361.03%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Holbrooks09/09/202362223:4359.31%   -
Kingston01/01/202359113340:3134.47% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston31/12/202259026442:4432.68% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Bushy Park25/12/2022909169244:3931.28% +
Riverfront19/08/20232594622:5761.29%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston17/12/202258818059:1723.56% +
Kingston05/08/20236216723:2160.24%   -
Kingston10/12/202258723255:4025.09% +
Kingston29/07/20236208725:0955.93%   -
Beacon03/12/2022737326:4152.34% +
Kingston22/07/20236199224:2457.65%   -
Ganger Farm26/11/2022211426:3452.57% +
Severn Valley Country15/07/20231411626:1353.66%   -
Bushy Park19/11/2022903110553:2326.16% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Leavesden Country12/11/202246928:3248.95% +
Thornham Walks01/07/202353826:5251.99%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Kingston24/06/20236156524:0957.83%   -
Durlston Country Park29/10/2022335032:4542.65% +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PR   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PR   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PR   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PR   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PR   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PR   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PR   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PR   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PR   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PR   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PR   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PR   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PR   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PR   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PR   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PR   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PR   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PR   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PR   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PR   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PR   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PR   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PR   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PR   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PR   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PR   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PR   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PR   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PR   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PR   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PR   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PR   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1792,78 +1951,61 @@

Danny NORMAN (A48
- Locaties: 15 + Locaties: 25
- Totaal aantal finishers: 13.222 + Totaal aantal finishers: 36461
- Totaal aantal deelnames: 41.810 + Totaal aantal deelnames: 133520
- Totaal aantal evenementen: 1.026 + Totaal aantal evenementen: 2616
- Vrijwilligers: 1.195 + Vrijwilligers: 2537
- PRs: 6.497 + PRs: 19425
- Gemiddelde finishtijd: 00:29:16 + Gemiddelde finishtijd: 00:29:47
- Gemiddeld aantal deelnames per deelnemer: 3,2 + Groepen: 2325
-
- Groepen: 1.271 -
-
-
- Recordhouder vrouwen: - Lysanne WILKENS – 16:53 - (18 jun 2022) -
-
- Recordhouder mannen: - Luc ESSINK – 15:00 - (18 mrt 2023) -
-
- Recordhouders leeftijdsindex: - Alice RIDDELL-WEBSTER - 93,54% 19:06 - (16 apr 2022) -
+

- Statistieken laatst geüpdatet op: vr 14 apr 2023 00:39:56 UTC + Statistieken laatst geüpdatet op: ma 30 sep 2024 00:40:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Geen enkel onderdeel van deze website mag worden overgenomen, helemaal of ten dele, zonder toestemming van de copyright-bezitter.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1897,8 +2049,8 @@

Danny NORMAN (A48 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/482/index.html index e92acff2..e4892670 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/482/index.html @@ -14,6 +14,7 @@ + resultaten | parkrun Netherlands - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +53,7 @@
@@ -70,34 +65,25 @@
@@ -112,881 +98,1014 @@
- + + + + + +

Danny NORMAN (A482)

Lid van de parkrun 500 Club Member of the Volunteer 250 club -

785 parkruns in totaal

+

867 parkruns in totaal

Bekijk de statistieken van alle parkruns voor deze parkrunner
- Recentelijk gelopen in VM40-44 leeftijdscategorie -

Meest recente evenementen

EvenementDatumGeslacht finishpositieAlgehele positieTijdLeeftijdsindex
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Evenementoverzicht

EvenementEvenementenBeste positie geslachtBeste positie algeheelBeste tijd  
Bushy parkrun2321100:16:25 + Recentelijk gelopen in de VM45-49 leeftijdscategorie +

Meest recente evenementen

EvenementDatumGeslacht finishpositieAlgehele positieTijdLeeftijdsindex
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Evenementoverzicht

EvenementparkrunsBeste positie geslachtBeste positie algeheelBeste tijd  
Bushy parkrun2341116:25 + Alle +
Kingston parkrun471116:51 + Alle +
Bedfont Lakes parkrun81117:04 + Alle +
Nonsuch parkrun71116:52 + Alle +
Richmond parkrun71117:13 + Alle +
Crane Park parkrun61116:48 + Alle +
Riddlesdown parkrun42217:01 + Alle +
Bexley parkrun31117:48 + Alle +
Tilgate parkrun31117:10 + Alle +
Frimley Lodge parkrun31117:11 + Alle +
Hilly Fields parkrun31117:50 + Alle +
Old Deer Park parkrun31117:41 + Alle +
Guildford parkrun31117:17 + Alle +
Homewood parkrun3151722:21 + Alle +
Brockwell parkrun, Herne Hill31116:56 + Alle +
Southwark parkrun34417:27 + Alle +
Fulham Palace parkrun33317:47 + Alle +
Cannon Hill parkrun, Birmingham3111118:04 + Alle +
Gunnersbury parkrun31116:51 + Alle +
Wimbledon Common parkrun35517:27 + Alle +
Brighton & Hove parkrun31116:27 + Alle +
Basingstoke parkrun35517:48 + Alle +
Black Park parkrun31117:25 + Alle +
Dulwich parkrun33317:11 + Alle +
Bedgebury Pinetum parkrun28921:24 + Alle +
Harrow parkrun25520:23 + Alle +
Netley Abbey parkrun21117:21 + Alle +
Ellenbrook Fields parkrun2141519:58 + Alle +
Worthing parkrun28918:44 + Alle +
Grovelands parkrun, Enfield22217:21 + Alle +
Beckton parkrun23317:24 + Alle +
Gladstone parkrun21117:09 + Alle +
Hackney Marshes parkrun22216:46 + Alle +
Burgess parkrun22216:45 + Alle +
Orpington parkrun22217:27 + Alle +
Barking parkrun22216:45 + Alle +
Southampton parkrun23316:44 + Alle +
Alice Holt parkrun21117:59 Alle - Graph It!
Kingston parkrun351100:16:51 +
Woodley parkrun21117:02 Alle - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Upton Court parkrun22217:24 Alle - Graph It!
Richmond parkrun71100:17:13 +
Chelmsford Central parkrun22217:24 Alle - Graph It!
Nonsuch parkrun71100:16:52 +
Mole Valley parkrun2262622:56 Alle - Graph It!
Crane Park parkrun61100:16:48 +
Durlston Country Park parkrun2355032:45 Alle - Graph It!
Brighton & Hove parkrun31100:16:27 +
Hazelwood parkrun2182222:21 Alle - Graph It!
Fulham Palace parkrun33300:17:47 +
Southsea parkrun23317:55 Alle - Graph It!
Frimley Lodge parkrun31100:17:11 +
St Albans parkrun21116:37 Alle - Graph It!
Gunnersbury parkrun31100:16:51 +
Havant parkrun21117:46 Alle - Graph It!
Bexley parkrun31100:17:48 +
Ashford parkrun22217:57 Alle - Graph It!
Tilgate parkrun31100:17:10 +
Bedford parkrun21116:55 Alle - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Margate parkrun21118:16 Alle - Graph It!
Southwark parkrun34400:17:27 +
Milton Keynes parkrun23317:26 Alle - Graph It!
Basingstoke parkrun35500:17:48 +
Preston Park parkrun, Brighton22217:40 Alle - Graph It!
Hilly Fields parkrun31100:17:50 +
Shorne Woods parkrun21118:14 Alle - Graph It!
Black Park parkrun31100:17:25 +
Canons Park parkrun27720:50 Alle - Graph It!
Riddlesdown parkrun32200:17:01 +
Osterley parkrun21117:57 Alle - Graph It!
Dulwich parkrun33300:17:11 +
Eastleigh parkrun27719:14 Alle - Graph It!
Guildford parkrun31100:17:17 +
Brooklands parkrun2394223:22 Alle - Graph It!
Old Deer Park parkrun31100:17:41 +
Great Lines parkrun, Medway25518:25 Alle - Graph It!
Wimbledon Common parkrun35500:17:27 +
Malling Rec parkrun2738526:59 Alle - Graph It!
Homewood parkrun3151700:22:21 +
Crystal Palace parkrun21117:24 Alle - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Northala Fields parkrun22218:06 Alle - Graph It!
Pymmes parkrun21100:17:06 +
Northampton parkrun21116:56 Alle - Graph It!
Hove Promenade parkrun27700:19:23 +
Oak Hill parkrun21117:13 Alle - Graph It!
Netley Abbey parkrun21100:17:21 +
Lloyd parkrun, Croydon21118:01 Alle - Graph It!
Mile End parkrun21100:16:53 +
Newbury parkrun21117:20 Alle - Graph It!
Southampton parkrun23300:16:44 +
Cranleigh parkrun26620:49 Alle - Graph It!
Northala Fields parkrun22200:18:06 +
Littlehampton Prom parkrun2384324:22 Alle - Graph It!
Hockley Woods parkrun26600:21:09 +
Whitstable parkrun23318:12 Alle - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Bethlem Royal Hospital parkrun2263223:22 Alle - Graph It!
Upton Court parkrun22200:17:24 +
Cyclopark parkrun2353824:01 Alle - Graph It!
Alice Holt parkrun21100:17:59 +
Hockley Woods parkrun26621:09 Alle - Graph It!
Osterley parkrun21100:17:57 +
South Oxhey parkrun21119:13 Alle - Graph It!
Burgess parkrun22200:16:45 +
Pymmes parkrun21117:06 Alle - Graph It!
Gladstone parkrun21100:17:09 +
Hastings parkrun291120:41 Alle - Graph It!
Havant parkrun21100:17:46 +
Wycombe Rye parkrun22217:17 Alle - Graph It!
Cranleigh parkrun26600:20:49 +
Hove Promenade parkrun27719:23 Alle - Graph It!
Finsbury parkrun22200:17:15 +
Banstead Woods parkrun21117:31 Alle - Graph It!
Southsea parkrun23300:17:55 +
Wormwood Scrubs parkrun21118:00 Alle - Graph It!
Margate parkrun21100:18:16 +
Roundshaw Downs parkrun23318:14 Alle - Graph It!
Northampton parkrun21100:16:56 +
Mile End parkrun21116:53 Alle - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Bevendean Down parkrun28923:21 Alle - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Finsbury parkrun22217:15 Alle - Graph It!
Crystal Palace parkrun21100:17:24 +
Tooting Common parkrun2181819:14 Alle - Graph It!
Eastleigh parkrun27700:19:14 +
Edinburgh parkrun12217:00 Alle - Graph It!
Hastings parkrun291100:20:41 +
Chippenham parkrun1212120:08 Alle - Graph It!
Banstead Woods parkrun21100:17:31 +
Stratford-upon-Avon parkrun1202521:14 Alle - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Henlow Bridge Lakes parkrun17511532:34 Alle - Graph It!
Hackney Marshes parkrun22200:16:46 +
Bromley parkrun13317:18 Alle - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Houghton Hall parkrun1131321:48 Alle - Graph It!
Woodley parkrun21100:17:02 +
Sittingbourne parkrun18820:56 Alle - Graph It!
Tooting Common parkrun2181800:19:14 +
Sharpham Road Playing Fields parkrun1253124:41 Alle - Graph It!
Milton Keynes parkrun23300:17:26 +
Gadebridge parkrun1141422:22 Alle - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Chilton Fields parkrun1405428:26 Alle - Graph It!
Barking parkrun22200:16:45 +
Storeys Field parkrun115121128:49 Alle - Graph It!
Canons Park parkrun27700:20:50 +
Hadleigh parkrun, Essex1252624:27 Alle - Graph It!
Newbury parkrun21100:17:20 +
Marple parkrun11117:15 Alle - Graph It!
Shorne Woods parkrun21100:18:14 +
Portsmouth Lakeside parkrun19919:12 Alle - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Grove Fields parkrun1578528:03 Alle - Graph It!
Mole Valley parkrun2262600:22:56 +
Banbury parkrun1222321:16 Alle - Graph It!
Oak Hill parkrun21100:17:13 +
Graves parkrun11118:18 Alle - Graph It!
Cyclopark parkrun2353800:24:01 +
Watermead Country Park parkrun110818235:52 Alle - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Eastbourne parkrun12217:24 Alle - Graph It!
South Oxhey parkrun21100:19:13 +
Malahide parkrun11116:54 Alle - Graph It!
Chelmsford Central parkrun22200:17:24 +
Fareham parkrun16619:21 Alle - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Sutcliffe parkrun113117230:34 Alle - Graph It!
Bevendean Down parkrun28900:23:21 +
Fritton Lake parkrun11118:26 Alle - Graph It!
Bedford parkrun21100:16:55 +
Bicester parkrun14420:13 Alle - Graph It!
Whitstable parkrun23300:18:12 +
Sandringham parkrun1466330:18 Alle - Graph It!
Orpington parkrun22200:17:27 +
Luton Wardown parkrun191019:36 Alle - Graph It!
Ashford parkrun22200:17:57 +
Cwmbran parkrun1171723:29 Alle - Graph It!
Hazelwood parkrun2182200:22:21 +
Broadwater parkrun110321335:19 Alle - Graph It!
Brooklands parkrun2394200:23:22 +
Basildon parkrun15518:13 Alle - Graph It!
Wycombe Rye parkrun22200:17:17 +
Marecchia parkrun11119:50 Alle - Graph It!
Harrow parkrun25500:20:23 +
Harleston Magpies parkrun1293525:12 Alle - Graph It!
Beckton parkrun23300:17:24 +
Kingsway parkrun, Gloucester1192021:20 Alle - Graph It!
St Albans parkrun21100:16:37 +
Bryn Bach parkrun11116:50 Alle - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Mersea Island parkrun1121220:59 Alle -  
Buckingham parkrun12200:18:37 +
Charlton parkrun18213032:05 Alle -  
Thomas Mills parkrun1486500:30:19 +
parkrun de Rouen15521:41 Alle -  
Leamington parkrun12200:18:52 +
Dallas Burston Polo Club parkrun19614732:26 Alle -  
Church Mead parkrun16610200:32:53 +
Ashton Court parkrun1859522:59 Alle -  
Letchworth parkrun1141400:23:13 +
Tøyen parkrun1668526:32 Alle -  
Mulbarton parkrun12200:19:55 +
The Great Field parkrun19313529:12 Alle -  
Arrow Valley parkrun13300:18:05 +
Castle Park parkrun1394122:34 Alle -  
Frogmary Green Farm parkrun1597200:25:58 +
Swanley parkrun19712531:18 Alle -  
Sutton Park parkrun1475500:24:54 +
Greenwich parkrun12218:07 Alle -  
Reigate Priory parkrun16600:19:06 +
Neckarau parkrun1243027:11 Alle -  
Bury St Edmunds parkrun13300:18:17 +
Bury Field parkrun1669033:07 Alle -  
Pollok parkrun, Glasgow11100:17:00 +
Clifton parkrun1101025:14 Alle -  
Kingdom parkrun1222500:24:39 +
Alton Water parkrun1538335:09 Alle -  
Barclay parkrun15600:23:13 +
Colwick parkrun18819:46 Alle -  
Chippenham parkrun1212100:20:08 +
Melksham parkrun1171724:31 Alle -  
Ipswich parkrun11100:17:34 +
Markshall Estate parkrun110315632:26 Alle -  
Itchen Valley Country parkrun1476100:27:37 +
Rogiet parkrun1151624:27 Alle -  
Neckarau parkrun1243000:27:11 +
Bartley Park parkrun18415132:38 Alle -  
Brandon Country Park parkrun11100:18:30 +
Lydiard parkrun18818:25 Alle -  
Boston parkrun17700:21:18 +
Little Stoke parkrun11117:03 Alle -  
University Parks parkrun119032600:31:42 +
Letchworth parkrun1141423:13 Alle -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Belvoir Castle parkrun1131925:42 Alle -  
Lullingstone parkrun17700:21:21 +
Andover parkrun11117:33 Alle -  
Coventry parkrun1292900:20:51 +
Rushcliffe parkrun1617323:54 Alle -  
Berkeley Green parkrun1233100:28:31 +
Cirencester parkrun1222422:40 Alle -  
Mersea Island parkrun1121200:20:59 +
Southall parkrun1557531:38 Alle -  
Aylesbury parkrun11100:17:51 +
Forest of Dean parkrun1182224:51 Alle -  
Royal Tunbridge Wells parkrun18900:19:23 +
parkrun des Dougnes, Cubnezais12219:42 Alle -  
Southall parkrun1557500:31:38 +
South Woodham Ferrers parkrun18821:14 Alle -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Marine Parade parkrun17711129:24 Alle -  
Pomphrey Hill parkrun1364100:23:02 +
Coventry parkrun1292920:51 Alle -  
Henley-on-Thames parkrun1111100:22:25 +
Wotton parkrun1182124:45 Alle -  
Aachener Weiher parkrun1101100:24:55 +
Gloucester City parkrun1171922:35 Alle -  
Penrose parkrun1151600:19:40 +
Great Salterns parkrun19212430:27 Alle -  
King’s Lynn parkrun1151500:20:07 +
Bedworth parkrun1171722:14 Alle -  
Fulbourn Hospital parkrun1344700:24:59 +
University Parks parkrun119032631:42 Alle -  
Fareham parkrun16600:19:21 +
Hampstead Heath parkrun11117:45 Alle -  
Brockenhurst parkrun13300:18:23 +
Great Denham parkrun16619:27 Alle -  
Canterbury parkrun16600:21:56 +
Downham Market Academy parkrun1121324:35 Alle -  
Alton Water parkrun1538300:35:09 +
Ipswich parkrun11117:34 Alle -  
Littleport parkrun1445100:25:16 +
Sixfields Upton parkrun18819:58 Alle -  
Newport parkrun11100:17:29 +
Rendlesham Forest parkrun1264637:01 Alle -  
California Country parkrun1649000:28:49 +
Frogmary Green Farm parkrun1597225:58 Alle -  
Thornbury parkrun1323400:28:19 +
Harrow Lodge parkrun11118:48 Alle -  
Greenwich parkrun12200:18:07 +
Witney parkrun1202022:34 Alle -  
Seven Fields parkrun1475500:26:28 +
Leamington parkrun12218:52 Alle -  
Highbury Fields parkrun11100:17:25 +
Brockenhurst parkrun13318:23 Alle -  
The Great Field parkrun19313500:29:12 +
Hogmoor Inclosure parkrun1262625:26 Alle -  
Street parkrun1283500:25:52 +
Hastings High School parkrun1637827:33 Alle -  
South Norwood parkrun1121200:21:11 +
Cannock Chase parkrun1384425:49 Alle -  
Dunstable Downs parkrun1374300:24:58 +
Wimpole Estate parkrun1202122:14 Alle -  
Melton Mowbray parkrun1192200:22:38 +
Haverhill parkrun1121323:32 Alle -  
Horsham parkrun14500:18:16 +
Edenbrook Country parkrun110514828:01 Alle -  
Irchester Country parkrun1586200:25:13 +
Maidstone River Park parkrun13318:00 Alle -  
Stratford-upon-Avon parkrun1202500:21:14 +
Cheltenham parkrun12217:24 Alle -  
Wotton parkrun1182100:24:45 +
Victoria Dock parkrun1273020:04 Alle -  
Bath Skyline parkrun1192000:21:08 +
Ekebergsletta parkrun1304325:57 Alle -  
Great Dunmow parkrun14400:20:25 +
Oxford parkrun11117:18 Alle -  
Corby parkrun18800:23:09 +
Aylesbury parkrun11117:51 Alle -  
Bracknell parkrun18800:20:04 +
Mote Park parkrun19712231:28 Alle -  
Cromhall parkrun1151600:24:20 +
Riverfront parkrun1404622:57 Alle -  
Perry Hall parkrun1464900:24:58 +
Newent parkrun1182225:27 Alle -  
Gunpowder parkrun12200:17:34 +
Clapham Common parkrun1404220:22 Alle -  
Luton Wardown parkrun191000:19:36 +
Llanishen Park parkrun1303323:48 Alle -  
Ifield Mill Pond parkrun1373800:24:33 +
Heartwood Forest parkrun1252721:41 Alle -  
March parkrun15500:21:11 +
Walthamstow parkrun11117:48 Alle -  
Roding Valley parkrun1111300:21:26 +
Malmö Ribersborg parkrun111215128:46 Alle -  
Charlton parkrun18213000:32:05 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 Alle -  
Malmö Ribersborg parkrun111215100:28:46 +
Huntingdon parkrun1202121:10 Alle -  
Worcester parkrun114418500:29:30 +
Felixstowe parkrun1121221:07 Alle -  
Wolford Wood parkrun1212700:30:24 +
Tidworth parkrun110815535:14 Alle -  
Fire Service College parkrun1181900:22:12 +
Brandon Country Park parkrun11118:30 Alle -  
Panshanger parkrun17700:20:14 +
Prospect parkrun1232322:42 Alle -  
Conkers parkrun12200:17:46 +
Mildenhall Hub parkrun1273124:33 Alle -  
Banbury parkrun1222300:21:16 +
York parkrun12217:12 Alle -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Thetford parkrun1161721:45 Alle -  
Rushmere parkrun1131400:22:39 +
Great Dunmow parkrun14420:25 Alle -  
Whiteley parkrun1141500:20:56 +
Leavesden Country parkrun1506928:32 Alle -  
Sandringham parkrun1466300:30:18 +
Catford parkrun1303322:32 Alle -  
Victoria Dock parkrun1283000:20:04 +
Lordship Recreation Ground parkrun19112425:22 Alle -  
Queen Elizabeth parkrun12200:19:08 +
Rugby parkrun1181822:26 Alle -  
Lordship Recreation Ground parkrun19112400:25:22 +
Mulbarton parkrun12219:55 Alle -  
Somerdale Pavilion parkrun1384600:31:17 +
Swaffham parkrun191022:19 Alle -  
Dartford parkrun11100:17:59 +
Ganger Farm parkrun19811426:34 Alle -  
Winchester parkrun14500:18:28 +
Beckenham Place parkrun1121220:28 Alle -  
Stratford Park parkrun, Stroud1566500:27:51 +
Forest Rec parkrun1677626:35 Alle -  
Sherwood Pines parkrun1161800:21:33 +
Street parkrun1283525:52 Alle -  
Grove Fields parkrun1578500:28:03 +
Market Bosworth Country Park parkrun110614435:35 Alle -  
Witney parkrun1202000:22:34 +
Whiteley parkrun1141520:56 Alle -  
Preston Park parkrun, Brighton12200:17:40 +
Kingsbury Water parkrun1394725:05 Alle -  
Colchester Castle parkrun14400:18:04 +
Springhill parkrun14422:18 Alle -  
Tidworth parkrun110815500:35:14 +
Wolford Wood parkrun1212730:24 Alle -  
Walmer and Deal Seafront parkrun18800:21:38 +
Pontypridd parkrun12217:54 Alle -  
Ferry Meadows parkrun15500:17:27 +
Pocket parkrun1222321:38 Alle -  
St Mary’s parkrun1587400:29:14 +
Stockley Country parkrun111917935:32 Alle -  
Dartford Heath parkrun1171700:22:06 +
Braunstone parkrun1262720:41 Alle -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Didcot parkrun1101121:28 Alle -  
Great Denham parkrun16600:19:27 +
Littleport parkrun1445125:16 Alle -  
Hastings High School parkrun1637800:27:33 +
Yarborough Leisure Centre parkrun1466125:59 Alle -  
Wendover Woods parkrun1262600:23:51 +
Roding Valley parkrun1111321:26 Alle -  
Peckham Rye parkrun11100:17:49 +
Clair parkrun13318:36 Alle -  
Upton House parkrun1252700:22:34 +
Dinton Pastures parkrun1131321:23 Alle -  
Lee-on-the-Solent parkrun17700:19:40 +
Beacon Hill Country Park parkrun1273725:54 Alle -  
Graves parkrun11100:18:18 +
Severn Bridge parkrun1353921:32 Alle -  
Maidstone parkrun13300:18:00 +
Abbey Park parkrun1779425:21 Alle -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Dudley parkrun1445626:35 Alle -  
South Woodham Ferrers parkrun18800:21:14 +
Pegwell Bay parkrun12217:40 Alle -  
Pontypridd parkrun12200:17:54 +
Manor Field parkrun, Whittlesey1121324:25 Alle -  
Bournemouth parkrun14400:17:43 +
Blaise Castle parkrun112816326:20 Alle -  
Sizewell parkrun1172000:23:30 +
Chipping Sodbury parkrun1303221:20 Alle -  
Rushmoor parkrun19900:18:29 +
Foots Cray Meadows parkrun1212323:17 Alle -  
Walsall Arboretum parkrun19810600:25:31 +
Thames Path parkrun, Woolwich1789023:42 Alle -  
Gorleston Cliffs parkrun12200:17:43 +
Bath Skyline parkrun1192021:08 Alle -  
Uckfield parkrun1404300:24:12 +
Dishley parkrun, Loughborough110311424:30 Alle -  
Aldenham parkrun1141400:21:37 +
Thornham Walks parkrun1363826:52 Alle -  
Gadebridge parkrun1141400:22:22 +
Moors Valley parkrun19919:40 Alle -  
Horspath parkrun17410600:28:12 +
East Grinstead parkrun1131423:10 Alle -  
Rogiet parkrun1151600:24:27 +
Sutton Park parkrun1475524:54 Alle -  
Rendlesham Forest parkrun1264600:37:01 +
University of Northampton parkrun1192223:24 Alle -  
Dishley parkrun, Loughborough110311400:24:30 +
Shipley Country parkrun1232424:45 Alle -  
Great Cornard parkrun1192000:20:33 +
Lancing Beach Green parkrun1141421:08 Alle -  
Kettering parkrun1232600:22:50 +
Dover Waterfront parkrun1374525:22 Alle -  
Pont y Bala parkrun15700:23:18 +
Rickmansworth parkrun1242721:39 Alle -  
Burnham and Highbridge parkrun17510000:27:51 +
Queen Elizabeth parkrun12219:08 Alle -  
Stonehouse parkrun1131300:20:09 +
Sizewell parkrun1172023:30 Alle -  
Hampstead Heath parkrun11100:17:45 +
Holbrooks parkrun1202223:43 Alle -  
Wickford Memorial parkrun1436600:51:15 +
Highbury Fields parkrun11117:25 Alle -  
Castle Park parkrun1394100:22:34 +
Clacton Seafront parkrun19920:35 Alle -  
Huntingdon parkrun1202100:21:10 +
Delaware and Raritan Canal parkrun12221:06 Alle -  
Great Salterns parkrun19212400:30:27 +
Wisbech parkrun1111523:03 Alle -  
Snowden Field parkrun1242600:24:15 +
Milton Country parkrun13317:43 Alle -  
Southend parkrun11100:16:28 +
Seaton parkrun1394824:09 Alle -  
Andover parkrun11100:17:33 +
Higginson parkrun, Marlow1272922:17 Alle -  
parkrun Zalew Żyrardowski16700:24:38 +
Quakers Walk parkrun1566825:05 Alle -  
Marecchia parkrun11100:19:50 +
Lister Park parkrun, Bradford1313621:55 Alle -  
Cheltenham parkrun12200:17:24 +
Wendover Woods parkrun1262623:51 Alle -  
St Helens parkrun1606800:24:27 +
Sence Valley Forest Park parkrun1232526:28 Alle -  
Bartley Park parkrun18415100:32:38 +
Canterbury parkrun16621:56 Alle -  
Severn Bridge parkrun1353900:21:32 +
Henstridge Airfield parkrun18821:41 Alle -  
Pontypool parkrun1232300:23:51 +
Five Arches parkrun1455422:58 Alle -  
Poole parkrun14400:16:57 +
Yeovil Montacute parkrun1707525:51 Alle -  
Bramhall parkrun115924700:35:16 +
Watermeadows parkrun1283124:57 Alle -  
Sunny Hill parkrun1202400:24:39 +
Tamworth Castle Grounds parkrun1333523:26 Alle -  
Cassiobury parkrun1111100:20:14 +
St Helens parkrun1606824:27 Alle -  
Hoblingwell parkrun1202400:23:52 +
Weymouth parkrun1141420:45 Alle -  
Colwick parkrun18800:19:46 +
Walmer and Deal Seafront parkrun18821:38 Alle -  
Chipping Norton School parkrun1455100:26:40 +
Aston Hall parkrun1202225:01 Alle -  
Worthing parkrun18900:18:44 +
Royal Tunbridge Wells parkrun18919:23 Alle -  
Harrow Lodge parkrun11100:18:48 +
Corby parkrun18823:09 Alle -  
Bradford parkrun1313600:21:55 +
Marlborough Common parkrun1202122:48 Alle -  
Bury Field parkrun1669000:33:07 +
Battlestead Croft parkrun1111122:53 Alle -  
Pocket parkrun1222300:21:38 +
Shepton Mallet parkrun1121421:50 Alle -  
Longrun Meadow parkrun111416500:32:01 +
Clare Castle parkrun1252723:04 Alle -  
Worcester Pitchcroft parkrun111814300:27:04 +
Coldham’s Common parkrun1535923:04 Alle -  
Highwoods parkrun1252600:24:49 +
Brunswick Park parkrun1212223:58 Alle -  
Maidenhead parkrun17700:18:49 +
Brentwood parkrun17722:28 Alle -  
Soham Village College parkrun1253200:28:03 +
Somerdale Pavilion parkrun1384631:17 Alle -  
Rickmansworth parkrun1242700:21:39 +
Wakehurst parkrun18810525:00 Alle -  
Swaffham parkrun191000:22:19 +
Boston parkrun17721:18 Alle -  
Brentwood parkrun17700:22:28 +
Morden parkrun111715526:58 Alle -  
Lymington Woodside parkrun15700:21:59 +
Pontefract parkrun1718724:10 Alle -  
Loch Neaton parkrun, Watton1171700:25:49 +
Jersey Farm parkrun1252723:11 Alle -  
Daventry parkrun1151500:21:10 +
Bug Hunter Waters parkrun1455022:41 Alle -  
Hatfield Forest parkrun1181800:20:36 +
Rosliston parkrun1333624:41 Alle -  
Kingsway parkrun, Gloucester1192000:21:20 +
Longrun Meadow parkrun111416532:01 Alle -  
Salcey Forest parkrun1384300:24:53 +
Fire Service College parkrun1181922:12 Alle -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Woolacombe Dunes parkrun19410931:20 Alle -  
Prospect parkrun1232300:22:42 +
The Plens parkrun1303124:04 Alle -  
Weymouth parkrun1141400:20:45 +
Arrow Valley parkrun13318:05 Alle -  
Westmill parkrun1101000:22:55 +
Tonbridge parkrun14418:40 Alle -  
East Brighton parkrun1182100:23:56 +
East Brighton parkrun1182123:56 Alle -  
Harlow parkrun1151500:23:00 +
Three Brooks parkrun1697223:46 Alle -  
Linford Wood parkrun1222200:21:45 +
Peacehaven parkrun17721:07 Alle -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Pontypool parkrun1232323:51 Alle -  
Lydney parkrun1202100:23:19 +
Cromhall parkrun1151624:20 Alle -  
Braunstone parkrun1262700:20:41 +
Dereham parkrun1323323:47 Alle -  
Harleston Magpies parkrun1293500:25:12 +
Bournemouth parkrun14417:43 Alle -  
Clapham Common parkrun1404200:20:22 +
Pomphrey Hill parkrun1364123:02 Alle -  
Market Bosworth Country Park parkrun110614400:35:35 +
Seaford Beach parkrun1535622:25 Alle -  
Jersey Farm parkrun1252700:23:11 +
Mansfield parkrun11117:09 Alle -  
Kesgrave parkrun1374000:21:18 +
Fountains Abbey parkrun11118:03 Alle -  
Stevenage parkrun17700:19:32 +
Loch Neaton parkrun, Watton1171725:49 Alle -  
Hadleigh parkrun, Essex1252600:24:27 +
Brueton parkrun1475021:33 Alle -  
Squerryes Winery parkrun1323600:27:45 +
Great Cornard parkrun1192020:33 Alle -  
Rutland Water parkrun1293000:22:44 +
Dunstable Downs parkrun1374324:58 Alle -  
Beckenham Place parkrun1121200:20:28 +
Beeston parkrun1374023:53 Alle -  
Sutcliffe parkrun113117200:30:34 +
Feltham parkrun13424:56 Alle -  
Haverhill parkrun1121300:23:32 +
Markeaton parkrun1576422:56 Alle -  
Leavesden Country parkrun1506900:28:32 +
Reigate Priory parkrun16619:06 Alle -  
Coldham’s Common parkrun1535900:23:04 +
Highwoods parkrun1252624:49 Alle -  
Chichester parkrun13300:19:05 +
Valentines parkrun11116:49 Alle -  
Billericay parkrun1121300:21:20 +
Springburn parkrun, Glasgow13318:05 Alle -  
Bromley parkrun13300:17:18 +
California Country parkrun1649028:49 Alle -  
Babbs Mill parkrun1405100:28:00 +
Rushmoor parkrun19918:29 Alle -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Mountbatten School parkrun1323424:11 Alle -  
Bryn Bach parkrun11100:16:50 +
Colchester Castle parkrun14418:04 Alle -  
York parkrun12200:17:12 +
Buckingham parkrun12218:37 Alle -  
Storeys Field parkrun115121100:28:49 +
Sunny Hill parkrun1202424:39 Alle -  
Chipping Sodbury parkrun1303200:21:20 +
Bognor Regis parkrun12218:12 Alle -  
Mote Park parkrun19712200:31:28 +
Aachener Weiher parkrun1101124:55 Alle -  
Watermeadows parkrun1283100:24:57 +
Peckham Rye parkrun11117:49 Alle -  
Woking parkrun18800:18:19 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 Alle -  
Raphael parkrun13300:19:35 +
Great Notley parkrun16620:16 Alle -  
Harwich parkrun191000:21:22 +
Snowden Field parkrun1242624:15 Alle -  
Fritton Lake parkrun11100:18:26 +
Burnham-on-Crouch parkrun18822:01 Alle -  
Heartwood Forest parkrun1252700:21:41 +
Woking parkrun18818:19 Alle -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Neckarufer parkrun, Esslingen1364425:12 Alle -  
Bedworth parkrun1171700:22:14 +
Worcester parkrun114418529:30 Alle -  
Clair parkrun13300:18:36 +
Blandford parkrun18920:11 Alle -  
Brueton parkrun1475000:21:33 +
Pont y Bala parkrun15723:18 Alle -  
Higginson parkrun, Marlow1272900:22:17 +
Chichester parkrun13319:05 Alle -  
Bognor Regis parkrun12200:18:12 +
Kingdom parkrun1222524:39 Alle -  
Huddersfield parkrun1626700:22:02 +
Westmill parkrun1101022:55 Alle -  
Heaton parkrun13300:18:08 +
Dartford parkrun11117:59 Alle -  
Chasewater parkrun18210000:26:19 +
Hanworth parkrun1364024:26 Alle -  
Tewkesbury parkrun1111400:22:50 +
Bracknell parkrun18820:04 Alle -  
Marple parkrun11100:17:15 +
Folkestone parkrun1212521:48 Alle -  
Cannock Chase parkrun1384400:25:49 +
Uckfield parkrun1404324:12 Alle -  
Edgbaston Reservoir parkrun1658600:26:24 +
Harrogate parkrun13318:11 Alle -  
Cirencester parkrun1222400:22:40 +
Kesgrave parkrun1374021:18 Alle -  
Kingsbury Water parkrun1394700:25:05 +
Thomas Mills parkrun1486530:19 Alle -  
Peacehaven parkrun17700:21:07 +
Lymington Woodside parkrun15721:59 Alle -  
Lancing Beach Green parkrun1141400:21:08 +
Hereford parkrun1535323:07 Alle -  
Springburn parkrun, Glasgow13300:18:05 +
Chasewater parkrun18210026:19 Alle -  
Market Harborough parkrun1303100:21:17 +
South Norwood parkrun1121221:11 Alle -  
Amager Fælled parkrun1333700:24:23 +
Panshanger parkrun17720:14 Alle -  
Hanworth parkrun1364000:24:26 +
Wolverhampton parkrun1556624:54 Alle -  
Salisbury parkrun1111100:19:34 +
Harcourt Hill parkrun1171721:13 Alle -  
Houghton Hall parkrun1131300:21:48 +
Tetbury Goods Shed parkrun1253024:25 Alle -  
Chalkwell Beach parkrun1819600:24:40 +
Gloucester North parkrun1101022:14 Alle -  
Melksham parkrun1171700:24:31 +
Harlow parkrun1151523:00 Alle -  
Thetford parkrun1161700:21:45 +
Alvaston parkrun1515922:24 Alle -  
Pontefract parkrun1718700:24:10 +
Worcester Pitchcroft parkrun111814327:04 Alle -  
Downham Market Academy parkrun1121300:24:35 +
Perry Hall parkrun1464924:58 Alle -  
Fountains Abbey parkrun11100:18:03 +
Newport parkrun11117:29 Alle -  
Cardiff parkrun111011700:22:02 +
Tring parkrun1171823:38 Alle -  
Littlehampton Prom parkrun1384300:24:22 +
Severn Valley Country parkrun1141626:13 Alle -  
Uditore parkrun13300:20:28 +
Wanstead Flats parkrun13317:13 Alle -  
Beacon parkrun1587300:26:41 +
Daventry parkrun1151521:10 Alle -  
parkrun de Rouen15500:21:41 +
St Mary’s parkrun1587429:14 Alle -  
Walthamstow parkrun11100:17:48 +
Poole parkrun14416:57 Alle -  
Shepton Mallet parkrun1121400:21:50 +
Melton Mowbray parkrun1192222:38 Alle -  
Marine Parade parkrun17711100:29:24 +
The Old Showfield parkrun1636923:30 Alle -  
Foots Cray Meadows parkrun1212300:23:17 +
Henley-on-Thames parkrun1111122:25 Alle -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Crissy Field parkrun1101220:40 Alle -  
Evesham parkrun1111100:21:39 +
Babbs Mill parkrun1405128:00 Alle -  
Southwick Country parkrun1272900:21:47 +
Maidenhead parkrun17718:49 Alle -  
Lydiard parkrun18800:18:25 +
Ross-on-Wye parkrun1172124:22 Alle -  
Sandhurst Memorial parkrun1537300:28:54 +
Kettering parkrun1232622:50 Alle -  
Bicester parkrun14400:20:13 +
Stratford Park parkrun, Stroud1566527:51 Alle -  
Wimpole Estate parkrun1202100:22:14 +
Bury St Edmunds parkrun13318:17 Alle -  
Markshall Estate parkrun110315600:32:26 +
Mallards Pike parkrun1324630:57 Alle -  
Dinton Pastures parkrun1131300:21:23 +
Market Harborough parkrun1303121:17 Alle -  
Tonbridge parkrun14400:18:40 +
Cassiobury parkrun1111120:14 Alle -  
Wanstead Flats parkrun13300:17:13 +
Squerryes Winery parkrun1323627:45 Alle -  
Woodhouse Moor parkrun11100:17:22 +
Walsall Arboretum parkrun19010625:31 Alle -  
Mountbatten School parkrun1323400:24:11 +
Penrose parkrun1151619:40 Alle -  
Eastville parkrun120525300:25:12 +
King George V Playing Field parkrun, Cheltenham1232826:08 Alle -  
Brixworth Country parkrun1496100:26:53 +
Evesham parkrun1111121:39 Alle -  
Portsmouth Lakeside parkrun19900:19:12 +
Warwick Racecourse parkrun1486024:55 Alle -  
Milton Country parkrun13300:17:43 +
Huddersfield parkrun1626722:02 Alle -  
Swanley parkrun19712500:31:18 +
Clevedon Salthouse Fields parkrun1384925:13 Alle -  
Springhill parkrun14400:22:18 +
Long Eaton parkrun19912124:06 Alle -  
Gloucester North parkrun1101000:22:14 +
Barry Island parkrun1394223:51 Alle -  
Feltham parkrun13400:24:56 +
Ifield Mill Pond parkrun1373824:33 Alle -  
Crissy Field parkrun1101200:20:40 +
Upton House parkrun1252722:34 Alle -  
Ally Pally parkrun11100:18:09 +
Lullingstone parkrun17721:21 Alle -  
Ashton Court parkrun1859500:22:59 +
The Leas parkrun, Minster1252524:37 Alle -  
Oaklands parkrun111820300:36:10 +
Medina I.O.W. parkrun11117:20 Alle -  
Sittingbourne parkrun18800:20:56 +
Uditore parkrun13320:28 Alle -  
Moors Valley parkrun19900:19:40 +
Hunstanton Promenade parkrun1283523:45 Alle -  
Catford parkrun1303300:22:32 +
Raphael parkrun13319:35 Alle -  
Clare Castle parkrun1252700:23:04 +
Burnham and Highbridge parkrun17510027:51 Alle -  
Harrogate parkrun13300:18:11 +
Salcey Forest parkrun1384324:53 Alle -  
Seaford Beach parkrun1535600:22:25 +
Ferry Meadows parkrun15517:27 Alle -  
Tring parkrun1171800:23:38 +
Barclay parkrun15623:13 Alle -  
Sandwell Valley parkrun1455900:30:43 +
Irchester Country parkrun1586225:13 Alle -  
Basildon parkrun15500:18:13 +
Maldon Prom parkrun11118:04 Alle -  
The Leas parkrun, Minster1252500:24:37 +
Salisbury parkrun1111119:34 Alle -  
Little Stoke parkrun11100:17:03 +
Tremorfa parkrun1272923:30 Alle -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Billericay parkrun1121321:20 Alle -  
Felixstowe parkrun1121200:21:07 +
Gedling parkrun1273224:59 Alle -  
Yeovil Montacute parkrun1707500:25:51 +
Oaklands parkrun111820336:10 Alle -  
Stockley Country parkrun111917900:35:32 +
Winchester parkrun14518:28 Alle -  
Woolacombe Dunes parkrun19410900:31:20 +
Aldenham parkrun1141421:37 Alle -  
Harcourt Hill parkrun1171700:21:13 +
East Park parkrun1121424:18 Alle -  
Abingdon parkrun15500:18:03 +
Soham Village College parkrun1253228:03 Alle -  
Eastbourne parkrun12200:17:24 +
Stevenage parkrun17719:32 Alle -  
Warwick Racecourse parkrun1486000:24:55 +
Tewkesbury parkrun1111422:50 Alle -  
Leicester Victoria parkrun19711600:26:45 +
Seven Fields parkrun1475526:28 Alle -  
Broadwater parkrun110321300:35:19 +
Conkers parkrun12217:46 Alle -  
Clacton Seafront parkrun19900:20:35 +
Lee-on-the-Solent parkrun17719:40 Alle -  
Burnham-on-Crouch parkrun18800:22:01 +
Brixworth Country parkrun1496126:53 Alle -  
Ganger Farm parkrun19811400:26:34 +
Abingdon parkrun15518:03 Alle -  
Folkestone parkrun1212500:21:48 +
Lowestoft parkrun1232621:10 Alle -  
Mallards Pike parkrun1324600:30:57 +
Chipping Norton School parkrun1455126:40 Alle -  
Malling parkrun18314500:47:25 +
Linford Wood parkrun1222221:45 Alle -  
Rugby parkrun1181800:22:26 +
Harwich parkrun191021:22 Alle -  
Watermead Country Park parkrun110818200:35:52 +
Fulbourn Hospital parkrun1344724:59 Alle -  
Hogmoor Inclosure parkrun1262600:25:26 +
Gunpowder parkrun12217:34 Alle -  
East Grinstead parkrun1131400:23:10 +
Dartford Heath parkrun1171722:06 Alle -  
Mildenhall Hub parkrun1273100:24:33 +
Sandhurst Memorial parkrun1537328:54 Alle -  
Marlborough Common parkrun1202100:22:48 +
Woodhouse Moor parkrun11117:22 Alle -  
Blandford parkrun18900:20:11 +
Sandwell Valley parkrun1455930:43 Alle -  
Maldon Prom parkrun11100:18:04 +
Wyre Forest parkrun1434825:56 Alle -  
Edinburgh parkrun12200:17:00 +
parkrun Zalew Żyrardowski16724:38 Alle -  
The Old Showfield parkrun1636900:23:30 +
Bramhall parkrun115924735:16 Alle -  
Jersey parkrun16600:19:41 +
Hatfield Forest parkrun1181820:36 Alle -  
Chilton Fields parkrun1405400:28:26 +
Swansea Bay parkrun1748323:44 Alle -  
Sixfields Upton parkrun18800:19:58 +
Wollaton Hall parkrun1889723:51 Alle -  
Pegwell Bay parkrun12200:17:40 +
Horsham parkrun14518:16 Alle -  
Valentines parkrun11100:16:49 +
Jersey parkrun16619:41 Alle -  
Edenbrook Country parkrun110514800:28:01 +
Berkeley Green parkrun1233128:31 Alle -  
Henstridge Airfield parkrun18800:21:41 +
Cardiff parkrun111011722:02 Alle -  
Great Notley parkrun16600:20:16 +
Ally Pally parkrun11118:09 Alle -  
Medina I.O.W. parkrun11100:17:20 +
Thurrock parkrun, Orsett Heath16620:41 Alle -  
Reading parkrun12200:17:18 +
Beacon parkrun1587326:41 Alle -  
Tetbury Goods Shed parkrun1253000:24:25 +
Albert parkrun, Middlesbrough1515423:17 Alle -  
Lowestoft parkrun1232600:21:10 +
Sherwood Pines parkrun1161821:33 Alle -  
Malahide parkrun11100:16:54 +
Wickford Memorial parkrun1436651:15 Alle -  
Oxford parkrun11100:17:18 +
Thornbury parkrun1323428:19 Alle -  
Rheinpark parkrun1151800:25:30 +
Malling parkrun18314547:25 Alle -  
Gloucester City parkrun1171900:22:35 +
Itchen Valley Country parkrun1476127:37 Alle -  
Didcot parkrun1101100:21:28 +
Pollok parkrun, Glasgow11117:00 Alle -  
Mansfield parkrun11100:17:09 +
Eastville parkrun120525325:12 Alle -  
7851100:16:25 +
Rutland Water parkrun1293022:44 + Alle +
Chalkwell Beach parkrun1819624:40 + Alle +
Amager Fælled parkrun1333724:23 + Alle +
Hoblingwell parkrun1202423:52 + Alle +
Belton House parkrun1141523:48 + Alle +
Kagerzoom parkrun1435824:39 + Alle +
Gorleston Cliffs parkrun12217:43 + Alle +
King’s Lynn parkrun1151520:07 + Alle +
Holkham parkrun1506925:37 + Alle +
Horspath parkrun17410628:12 + Alle +
Southwick Country parkrun1272921:47 + Alle +
Rushmere parkrun1131422:39 + Alle +
Zuiderpark parkrun, Den Haag1738124:07 + Alle +
Heaton parkrun13318:08 + Alle +
Colney Lane parkrun1495524:01 + Alle +
Leicester Victoria parkrun19711626:45 + Alle +
Church Mead parkrun16610232:53 + Alle +
Southend parkrun11116:28 + Alle +
Lydney parkrun1202123:19 + Alle +
Edgbaston Reservoir parkrun1658626:24 + Alle +
Reading parkrun12217:18 + Alle +
March parkrun15521:11 + Alle +
Woodgate Valley Country Park parkrun16513245:50 + Alle +
Maaraue parkrun1232522:34 + Alle +
Stonehouse parkrun1131320:09 + Alle +
Rheinpark parkrun1151825:30 + Alle +
8671116:25 Alle  


Vrijwilligersoverzicht

RolAantal keer
- Evenementleider - 94
- Tijdwaarnemer - 59
- Tokensorteerder - 3
- Resultaatverwerking - 87
- Fotograaf - 6
- Communicatiepersoon - 10
- Routeregelaar - 39
- Opbouw evenement - 130
- Materiaalbeheerder - 128
- Anders - 23
- Barcodescanner - 55
- Afbouw evenement - 45
- Uitdeler tokens - 15
- Controle nummers - 2
- Briefing nieuwe lopers - 68
- Fuikregelaar - 15
- Assistent tokens - 9
- Sluitloper - 29
- Coördinator vrijwilligers - 146
- Loopverslag - 97
- Backup tijdwaarnemer - 3
- Warm Up Leader - 16
- Parkeerregelaar - 1
- Routecontroleur - 8
- parkwalker - 9
Totaal deelnames als vrijwilliger396

- Deze tabel toont het aantal keren dat een vrijwilligers' taak is vervuld.
Het totaal kan afwijken van het totaal aantal deelnames als vrijwilliger; als je op de zelfde dag meerdere taken vervuld hebt.
Lees
hier meer. + Evenementleider +

99
+ Tijdwaarnemer + 94
+ Tokensorteerder + 12
+ Resultaatverwerking + 87
+ Fotograaf + 6
+ Communicatiepersoon + 10
+ Routeregelaar + 54
+ Opbouw evenement + 148
+ Materiaalbeheerder + 130
+ Anders + 26
+ Barcodescanner + 78
+ Afbouw evenement + 51
+ Uitdeler tokens + 21
+ Controle nummers + 2
+ Briefing nieuwe lopers + 82
+ Fuikregelaar + 15
+ Assistent tokens + 12
+ Sluitloper + 29
+ Coördinator vrijwilligers + 148
+ Loopverslag + 100
+ Backup tijdwaarnemer + 3
+ Warm-up leider + 16
+ Parkeerregelaar + 1
+ Routecontroleur + 14
+ parkwalker + 10
Totaal deelnames als vrijwilliger499

+ Deze tabel toont het aantal keren dat een vrijwilligers' taak is vervuld.
Het totaal kan afwijken van het totaal aantal deelnames als vrijwilliger; als je op de zelfde dag meerdere taken vervuld hebt.
Lees hier meer.



Vrije lopen

DatumTijdLocatie
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekDatumDatum(not)parkrunsBeste tijd
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1016,78 +1135,61 @@

Danny NORMAN (A48
- Locaties: 15 + Locaties: 25
- Totaal aantal finishers: 13.222 + Totaal aantal finishers: 36461
- Totaal aantal deelnames: 41.810 + Totaal aantal deelnames: 133520
- Totaal aantal evenementen: 1.026 + Totaal aantal evenementen: 2616
- Vrijwilligers: 1.195 + Vrijwilligers: 2537
- PRs: 6.497 + PRs: 19425
- Gemiddelde finishtijd: 00:29:16 + Gemiddelde finishtijd: 00:29:47
- Gemiddeld aantal deelnames per deelnemer: 3,2 + Groepen: 2325
-
- Groepen: 1.271 -
-
-
- Recordhouder vrouwen: - Lysanne WILKENS – 16:53 - (18 jun 2022) -
-
- Recordhouder mannen: - Luc ESSINK – 15:00 - (18 mrt 2023) -
-
- Recordhouders leeftijdsindex: - Alice RIDDELL-WEBSTER - 93,54% 19:06 - (16 apr 2022) -
+

- Statistieken laatst geüpdatet op: vr 14 apr 2023 00:39:56 UTC + Statistieken laatst geüpdatet op: ma 30 sep 2024 00:40:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Geen enkel onderdeel van deze website mag worden overgenomen, helemaal of ten dele, zonder toestemming van de copyright-bezitter.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1121,8 +1233,8 @@

Danny NORMAN (A48 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/88720/all/index.html index ebd5e995..8a655d78 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/88720/all/index.html @@ -14,6 +14,7 @@ + resultaten | parkrun Netherlands - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +53,7 @@
@@ -70,34 +65,25 @@
@@ -112,634 +98,739 @@
- + + + + + +

Phillip WHETTLOCK (A88720)

Lid van de parkrun 250 Club - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns in totaal + 345 parkruns in totaal

Bekijk de belangrijkste statistieken voor deze parkrunner
- Recentelijk gelopen in VM55-59 leeftijdscategorie + Recentelijk gelopen in de VM60-64 leeftijdscategorie

Belangrijkste statistieken voor alle locaties -
SnelsteGemiddelde
(mean)
Langzaamste
Tijd21:4025:2552:00
Leeftijdsindex69.71%60.41%29.55%
Algehele positie648.88374

+
SnelsteGemiddelde
(mean)
Langzaamste
Tijd21:3625:2654:59
Leeftijdsindex72.99%60.80%28.92%
Algehele positie648.44374

Beste jaarprestaties bij alle evenementen -
JaarBeste tijdBeste leeftijdsindex
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
JaarBeste tijdBeste leeftijdsindex
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

– Alle resultaten -
EvenementDatumEvenement nummerPositieTijdLeeftijdsindexPR?
Halifax08/04/20233313225:0063.07% +
EvenementDatumEvenement nummerPositieTijdLeeftijdsindexPR?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + PR + +   +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34%   -
Fulham Palace01/04/202339110924:0965.29% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Halifax25/03/20233291624:4363.79% +
Halifax16/09/20233532123:4367.04%   -
Halifax18/03/20233282326:4758.87% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax04/03/20233273825:1962.28% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Myrtle25/02/20231593824:5263.40% +
Glossop12/08/20233152824:2564.57% +   +
Halifax05/08/20233473024:4363.79% +   +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% PR   -
Halifax18/02/20233252926:0360.52% +
Stratford Park, Stroud01/07/20231253126:2959.53%   -
Halifax11/02/20233243124:0365.56% +
Wetherby24/06/20233094124:4663.66%   -
Bradford04/02/20235795022:3769.71% +
Halifax10/06/20233402524:0265.60%   -
Bowling Park28/01/202379924:1165.20% +
Halifax03/06/20233392124:1365.11%   -
Bramley21/01/20233004925:3461.67% +
Long Eaton20/05/20233306921:3672.99%   -
Halifax14/01/20233213325:5260.95% +
Halifax06/05/20233352423:4566.39%   -
Halifax07/01/20233203026:2659.65% +
Keswick29/04/20233904121:3672.99% + PR +   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax22/04/20233334725:0262.98%   -
Nostell31/12/20223614325:0063.07% +
Halifax08/04/20233313225:0063.07%   -
Halifax24/12/20223173125:4661.19% +
Fulham Palace01/04/202339110924:0965.29%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax25/03/20233291624:4363.79%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax18/03/20233282326:4758.87% +   +
Halifax04/03/20233273825:1962.28% +   +
Myrtle25/02/20231593824:5263.40% PR   -
Conkers19/11/20225485624:1465.06% +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71%   -
Brighouse12/11/20222213725:1762.36% +
Bowling Park28/01/202379924:1165.20%   -
Halifax05/11/20223122424:5163.45% +
Bramley21/01/20233004925:3461.67%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PR +   -
Halifax15/10/202230910749:5431.60% +
Conkers19/11/20225485624:1465.06%   -
Crosby08/10/20222833525:3861.51% +
Brighouse12/11/20222213725:1762.36%   -
Alness01/10/20221801024:0965.29% +
Halifax05/11/20223122424:5163.45%   -
Victoria24/09/20223736722:5468.85% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax17/09/20223052625:0063.07% +
Halifax15/10/202230910749:5431.60%   -
Centre Vale10/09/20221034428:4454.87% +
Crosby08/10/20222833525:3861.51%   -
Halifax03/09/20223033125:3361.71% +
Alness01/10/20221801024:0965.29%   -
Skipton27/08/20224035325:3561.11% +
Victoria24/09/20223736722:5468.85%   -
Halifax20/08/20223012824:5262.87% +
Halifax17/09/20223052625:0063.07%   -
Halifax06/08/20222996426:0360.01% +
Centre Vale10/09/20221034428:4454.87%   -
Armley30/07/20221432724:2863.90% +
Halifax03/09/20223033125:3361.71%   -
Halifax16/07/20222962524:2663.98% +
Skipton27/08/20224035325:3561.11%   -
Halifax02/07/20222942524:4863.04% +
Halifax20/08/20223012824:5262.87%   -
Halifax18/06/20222922424:5462.78% +
Halifax06/08/20222996426:0360.01%   -
The Pastures11/06/2022991826:2159.33% +
Armley30/07/20221432724:2863.90%   -
Halifax04/06/20222913826:4858.33% +
Halifax16/07/20222962524:2663.98%   -
Horton Park28/05/20222942225:1262.04% +
Halifax02/07/20222942524:4863.04%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax18/06/20222922424:5462.78%   -
Halifax07/05/20222877529:3552.85% +
The Pastures11/06/2022991826:2159.33%   -
Harrogate30/04/202246716226:4458.48% +
Halifax04/06/20222913826:4858.33%   -
Halifax23/04/20222854927:0057.90% +
Horton Park28/05/20222942225:1262.04%   -
Halifax09/04/20222834526:3758.74% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax02/04/20222822924:4463.21% +
Halifax07/05/20222877529:3552.85%   -
Pendle26/03/20223443126:1659.52% +
Harrogate30/04/202246716226:4458.48%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax23/04/20222854927:0057.90%   -
Halifax05/03/20222784925:3761.03% +
Halifax09/04/20222834526:3758.74%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PR   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PR   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PR   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PR   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PR   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -770,78 +861,61 @@

Phillip WHETTLOCK 
- Locaties: 16 + Locaties: 25
- Totaal aantal finishers: 13.526 + Totaal aantal finishers: 36461
- Totaal aantal deelnames: 42.705 + Totaal aantal deelnames: 133520
- Totaal aantal evenementen: 1.042 + Totaal aantal evenementen: 2616
- Vrijwilligers: 1.209 + Vrijwilligers: 2537
- PRs: 6.606 + PRs: 19425
- Gemiddelde finishtijd: 00:29:17 + Gemiddelde finishtijd: 00:29:47
- Gemiddeld aantal deelnames per deelnemer: 3,2 + Groepen: 2325
-
- Groepen: 1.286 -
-

-
- Recordhouder vrouwen: - Lysanne WILKENS – 16:53 - (18 jun 2022) -
-
- Recordhouder mannen: - Luc ESSINK – 15:00 - (18 mrt 2023) -
-
- Recordhouders leeftijdsindex: - Alice RIDDELL-WEBSTER - 93,54% 19:06 - (16 apr 2022) -
+
- Statistieken laatst geüpdatet op: ma 17 apr 2023 00:40:08 UTC + Statistieken laatst geüpdatet op: ma 30 sep 2024 00:40:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Geen enkel onderdeel van deze website mag worden overgenomen, helemaal of ten dele, zonder toestemming van de copyright-bezitter.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -875,8 +959,8 @@

Phillip WHETTLOCK  - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/88720/index.html index afa20c93..a308ca77 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/88720/index.html @@ -14,6 +14,7 @@ + resultaten | parkrun Netherlands - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +53,7 @@
@@ -70,34 +65,25 @@
@@ -112,186 +98,249 @@
- + + + + + +

Phillip WHETTLOCK (A88720)

Lid van de parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns in totaal

+ + Member of the Volunteer 250 club +

345 parkruns in totaal

Bekijk de statistieken van alle parkruns voor deze parkrunner
- Recentelijk gelopen in VM55-59 leeftijdscategorie -

Meest recente evenementen

EvenementDatumGeslacht finishpositieAlgehele positieTijdLeeftijdsindex
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Evenementoverzicht

EvenementEvenementenBeste positie geslachtBeste positie algeheelBeste tijd  
Bradford parkrun1166600:21:40 + Recentelijk gelopen in de VM60-64 leeftijdscategorie +

Meest recente evenementen

EvenementDatumGeslacht finishpositieAlgehele positieTijdLeeftijdsindex
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Evenementoverzicht

EvenementparkrunsBeste positie geslachtBeste positie algeheelBeste tijd  
Halifax parkrun1268822:13 + Alle +
Lister Park parkrun, Bradford1166621:40 + Alle +
Horton Park parkrun9131322:18 + Alle +
Keswick parkrun4253321:36 + Alle +
Sewerby parkrun3121222:08 + Alle +
Fountains Abbey parkrun2394822:26 + Alle +
Oakwell Hall parkrun2293626:10 + Alle +
Whinlatter Forest parkrun2283227:23 + Alle +
Bramley parkrun2252524:06 + Alle +
Middleton Woods parkrun2121424:55 + Alle +
Myrtle parkrun2333824:52 + Alle +
Centre Vale parkrun2303626:37 + Alle +
Pontefract parkrun2273222:08 + Alle +
Brighouse parkrun2333723:53 + Alle +
Temple Newsam parkrun2272925:14 + Alle +
Skipton parkrun1505325:35 + Alle +
Flatts Lane parkrun1171826:53 + Alle +
Victoria parkrun, Glasgow1546722:54 + Alle +
Alness parkrun171024:09 + Alle +
Fulham Palace parkrun18610924:09 Alle - Graph It!
Halifax parkrun1148800:22:13 +
Springburn parkrun, Glasgow1161623:14 Alle - Graph It!
Horton Park parkrun9131300:22:18 +
Druridge Bay parkrun1354223:35 Alle - Graph It!
Sewerby parkrun3121200:22:08 +
Pendle parkrun1263126:16 Alle - Graph It!
Keswick parkrun3253300:23:33 +
Watergrove parkrun, Rochdale1111227:57 Alle - Graph It!
Pontefract parkrun2273200:22:08 +
Wetherby parkrun1374124:46 Alle - Graph It!
Temple Newsam parkrun2272900:25:14 +
Portobello parkrun, Edinburgh1668024:16 Alle - Graph It!
Myrtle parkrun2333800:24:52 +
Nostell parkrun1374325:00 Alle - Graph It!
Middleton Woods parkrun2121400:24:55 +
Fell Foot parkrun, Newby Bridge1161722:57 Alle - Graph It!
Bramley parkrun2252500:24:06 +
Conwy parkrun1394424:53 Alle - Graph It!
Druridge Bay parkrun1354200:23:35 +
Glossop parkrun1242824:25 Alle -  
Fountains Abbey parkrun1394800:22:26 +
Crosby parkrun1293525:38 Alle -  
Victoria parkrun, Glasgow1546700:22:54 +
Dolgellau parkrun1459954:59 Alle -  
Clumber Park parkrun1101100:21:46 +
Dalby Forest parkrun1283223:06 Alle -  
Rothay Park parkrun1202700:24:48 +
Clitheroe Castle parkrun1192525:41 Alle -  
Warwick Racecourse parkrun1638200:24:06 +
Armley parkrun1262724:28 Alle -  
Conkers parkrun1525600:24:14 +
Dishley parkrun, Loughborough1535724:25 Alle -  
The Pastures parkrun1161800:26:21 +
Ford parkrun1202525:00 Alle -  
Harrogate parkrun112316200:26:44 +
Cliffe Castle parkrun1151725:18 Alle -  
Dishley parkrun, Loughborough1535700:24:25 +
Potternewton parkrun1293625:04 Alle -  
Dalby Forest parkrun1283200:23:06 +
Isabel Trail parkrun1293422:02 Alle -  
Woodhouse Moor parkrun1778200:22:18 +
The Pastures parkrun1161826:21 Alle -  
Whinlatter Forest parkrun1283200:27:23 +
Storthes Hall parkrun1263026:20 Alle -  
Watergrove parkrun, Rochdale1111200:27:57 +
Hafan Pwllheli parkrun1212726:48 Alle -  
Springburn parkrun, Glasgow1161600:23:14 +
Penistone parkrun1343724:20 Alle -  
Fulham Palace parkrun18610900:24:09 +
Conyngham Hall parkrun1363824:55 Alle -  
Flatts Lane parkrun1171800:26:53 +
Stratford Park parkrun, Stroud1303126:29 Alle -  
Roberts Park parkrun1657500:24:54 +
Warwick Racecourse parkrun1638224:06 Alle -  
Bowling Park parkrun18900:24:11 +
University of Stirling parkrun1343723:52 Alle -  
Hanley parkrun16600:22:03 +
Jubilee parkrun1121926:42 Alle -  
Centre Vale parkrun1304400:28:44 +
Queen’s parkrun, Glasgow1677925:29 Alle -  
Wycombe Rye parkrun1232600:22:35 +
Bowling Park parkrun18924:11 Alle -  
Carlisle parkrun1567100:26:05 +
Rothay Park parkrun1202724:48 Alle -  
Armley parkrun1262700:24:28 +
Zuiderpark parkrun, Den Haag1151722:03 Alle -  
Crosby parkrun1293500:25:38 +
Carlisle Park parkrun, Morpeth1293325:44 Alle -  
Edinburgh parkrun1646700:21:54 +
Chevin Forest parkrun1213026:47 Alle -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Roberts Park parkrun1657524:54 Alle -  
Bushy parkrun130137400:24:06 +
Beacon Hill Country Park parkrun1192325:36 Alle -  
Oakwell Hall parkrun1344000:26:10 +
Thames Path parkrun, Woolwich1586323:49 Alle -  
Pendle parkrun1263100:26:16 +
Bushy parkrun130137424:06 Alle -  
Alness parkrun171000:24:09 +
Woodhouse Moor parkrun1778222:18 Alle -  
Skipton parkrun1505300:25:35 +
Pollok parkrun, Glasgow1667223:58 Alle -  
Chevin Forest parkrun1213000:26:47 +
Edinburgh parkrun1646721:54 Alle -  
Burnley parkrun1545700:25:21 +
Wakefield Thornes parkrun1545824:29 Alle -  
Queen’s parkrun, Glasgow1677900:25:29 +
Hyndburn parkrun1253125:51 Alle -  
Roundhay parkrun112815700:26:55 +
York parkrun111413522:55 Alle -  
Storthes Hall parkrun1263000:26:20 +
Milton Country parkrun1707522:40 Alle -  
Southport parkrun1545700:23:57 +
Carlisle parkrun1567126:05 Alle -  
Cliffe Castle parkrun1151700:25:18 +
Harrogate parkrun112316226:44 Alle -  
Brighouse parkrun1333700:25:17 +
Southport parkrun1545723:57 Alle -  
Milton Country parkrun1707500:22:40 +
Barnsley parkrun1414325:05 Alle -  
Pollok parkrun, Glasgow1667200:23:58 +
Rothwell parkrun1535724:20 Alle -  
Nostell parkrun1384300:25:00 +
Huddersfield parkrun1596722:47 Alle -  
Portobello parkrun, Edinburgh1668000:24:16 +
Long Eaton parkrun1556921:36 Alle -  
2996600:21:40 +
Wycombe Rye parkrun1232622:35 + Alle +
Conkers parkrun1525624:14 + Alle +
Roundhay parkrun112815726:55 + Alle +
Hanley parkrun16622:03 + Alle +
Worsley Woods parkrun1728824:46 + Alle +
Burnley parkrun1545725:21 + Alle +
Dewsbury parkrun18610128:15 + Alle +
Cross Flatts parkrun1303724:16 + Alle +
Clumber Park parkrun1101121:46 + Alle +
3456621:36 Alle  


Vrijwilligersoverzicht

RolAantal keer
- Evenementleider - 32
- Tijdwaarnemer - 17
- Tokensorteerder - 5
- Resultaatverwerking - 1
- Fotograaf - 1
- Communicatiepersoon - 5
- Routeregelaar - 35
- Opbouw evenement - 28
- Materiaalbeheerder - 5
- Anders - 1
- Barcodescanner - 27
- Afbouw evenement - 24
- Uitdeler tokens - 11
- Controle nummers - 1
- Briefing nieuwe lopers - 77
- Fuikregelaar - 12
- Assistent tokens - 10
- Sluitloper - 5
- Coördinator vrijwilligers - 10
- Loopverslag - 1
- Pacer - 5
- Backup tijdwaarnemer - 14
- Buddy slechtziende loper - 1
- Warm Up Leader - 5
- Gebarentolk - 1
- Parkeerregelaar - 1
- Routecontroleur - 25
- parkwalker - 1
Totaal deelnames als vrijwilliger249

- Deze tabel toont het aantal keren dat een vrijwilligers' taak is vervuld.
Het totaal kan afwijken van het totaal aantal deelnames als vrijwilliger; als je op de zelfde dag meerdere taken vervuld hebt.
Lees
hier meer. -



Vrije lopen

DatumTijdLocatie
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekDatumDatum(not)parkrunsBeste tijd
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+ Evenementleider +
33
+ Tijdwaarnemer + 28
+ Tokensorteerder + 5
+ Resultaatverwerking + 4
+ Fotograaf + 1
+ Communicatiepersoon + 6
+ Routeregelaar + 35
+ Opbouw evenement + 29
+ Materiaalbeheerder + 6
+ Anders + 2
+ Barcodescanner + 46
+ Afbouw evenement + 25
+ Uitdeler tokens + 16
+ Controle nummers + 1
+ Briefing nieuwe lopers + 82
+ Fuikregelaar + 16
+ Assistent tokens + 16
+ Sluitloper + 15
+ Coördinator vrijwilligers + 11
+ Loopverslag + 1
+ Pacer + 10
+ Backup tijdwaarnemer + 14
+ Buddy slechtziende loper + 1
+ Warm-up leider + 15
+ Gebarentolk + 1
+ Parkeerregelaar + 1
+ Routecontroleur + 57
+ parkwalker + 1
Totaal deelnames als vrijwilliger316

+ Deze tabel toont het aantal keren dat een vrijwilligers' taak is vervuld.
Het totaal kan afwijken van het totaal aantal deelnames als vrijwilliger; als je op de zelfde dag meerdere taken vervuld hebt.
Lees hier meer. +



Vrije lopen

DatumTijdLocatie
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekDatumDatum(not)parkrunsBeste tijd
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -320,78 +369,61 @@

Phillip WHETTLOCK 
- Locaties: 16 -
-
- Totaal aantal finishers: 13.526 + Locaties: 25
- Totaal aantal deelnames: 42.705 + Totaal aantal finishers: 36461
- Totaal aantal evenementen: 1.042 + Totaal aantal deelnames: 133520
- Vrijwilligers: 1.209 + Totaal aantal evenementen: 2616
- PRs: 6.606 + Vrijwilligers: 2537
- Gemiddelde finishtijd: 00:29:17 + PRs: 19425
- Gemiddeld aantal deelnames per deelnemer: 3,2 + Gemiddelde finishtijd: 00:29:47
- Groepen: 1.286 + Groepen: 2325
-

-
- Recordhouder vrouwen: - Lysanne WILKENS – 16:53 - (18 jun 2022) -
-
- Recordhouder mannen: - Luc ESSINK – 15:00 - (18 mrt 2023) -
-
- Recordhouders leeftijdsindex: - Alice RIDDELL-WEBSTER - 93,54% 19:06 - (16 apr 2022) -
+
- Statistieken laatst geüpdatet op: ma 17 apr 2023 00:40:08 UTC + Statistieken laatst geüpdatet op: ma 30 sep 2024 00:40:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Geen enkel onderdeel van deze website mag worden overgenomen, helemaal of ten dele, zonder toestemming van de copyright-bezitter.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -425,8 +467,8 @@

Phillip WHETTLOCK  - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/999999/all/index.html index 4d2903d6..918891b9 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/999999/all/index.html @@ -14,6 +14,7 @@ + resultaten | parkrun Netherlands @@ -246,8 +237,8 @@

Jakub WOLSKI (A99 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/999999/index.html index e1e75273..e7e7d962 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nl/contents/parkrunner/999999/index.html @@ -14,6 +14,7 @@ + resultaten | parkrun Netherlands @@ -242,8 +233,8 @@

Jakub WOLSKI (A99 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/1309364/all/index.html index e4d15011..3aa2ecc4 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + results | parkrun New Zealand @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -113,551 +100,657 @@
- + - - + -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM35-39 + Most recent age category was VM40-44

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time20:0628:4757:34
Age Grading64.51%47.44%23.54%
Overall Position5165.361021

+
FastestAverage
(mean)
Slowest
Time20:0629:2057:34
Age Grading64.51%46.67%23.54%
Overall Position5182.341021

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60% +   +
Whiteley18/11/202324721037:0536.54%   -
Whiteley25/03/202321418332:2441.82% +
Whiteley11/11/202324617430:3744.26%   -
Winchester11/03/202342821230:3744.26% +
Winchester21/10/202345731533:5140.03%   -
Winchester04/03/202342730935:4537.90% +
Winchester14/10/202345634233:5439.97%   -
Winchester25/02/202342632536:0937.48% +
Ganger Farm07/10/20234713233:4940.07%   -
Winchester18/02/202342530336:3137.11% +
Winchester30/09/202345427529:3145.91%   -
Delamere31/12/202242331536:2537.21% +
Winchester23/09/202345321928:2247.77%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester16/09/202345235430:3244.38%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester09/09/202345129229:1146.43%   -
Winchester26/11/202241229335:3137.87% +
Delamere02/09/202345822633:2840.49%   -
Whiteley12/11/202221016534:2839.02% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester29/10/202240924429:5544.96% +
Winchester29/07/202344622227:3649.09%   -
Winchester22/10/202240833736:0837.22% +
Winchester22/07/202344540537:0036.62%   -
Winchester17/09/202240326230:2944.12% +
Whiteley15/07/202322915731:1643.34%   -
Winchester10/09/202240231134:3338.93% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Alice Holt03/09/202241817936:3236.82% +
Winchester17/06/202344128530:4144.16%   -
Winchester27/08/202240042335:2138.05% +
Winchester10/06/202344032435:2138.33%   -
Winchester13/08/202239823431:3042.70% +
Winchester20/05/202343822427:0949.91%   -
Tidworth30/07/2022615151:4226.02% +
Winchester13/05/202343733232:4341.42%   -
Uckfield23/07/20221006028:4346.84% +
Whiteley29/04/202321919635:3138.15%   -
Winchester09/07/202239428633:1640.43% +
Winchester22/04/202343431731:1143.45%   -
Eastleigh28/05/202254015531:2042.93% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Winchester21/05/202238930733:2840.19% +
Whiteley25/03/202321418332:2441.82%   -
Alice Holt14/05/202240216932:0142.01% +
Winchester11/03/202342821230:3744.26%   -
Winchester07/05/202238734034:1339.31% +
Winchester04/03/202342730935:4537.90%   -
Guildford30/04/202242825130:0144.81% +
Winchester25/02/202342632536:0937.48%   -
Winchester23/04/202238522932:0241.99% +
Winchester18/02/202342530336:3137.11%   -
Winchester16/04/202238431033:2340.29% +
Delamere31/12/202242331536:2537.21%   -
Winchester19/03/202238025033:5439.68% +
Ganger Farm10/12/2022418257:3423.54%   -
Alice Holt01/01/202238524237:4635.61% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester04/12/202136518229:2045.85% +
Winchester26/11/202241229335:3137.87%   -
Winchester20/11/202136338445:0729.59% +
Whiteley12/11/202221016534:2839.02%   -
Winchester09/10/202135739843:0730.96% +
Winchester29/10/202240924429:5544.96%   -
Winchester25/09/202135538955:0324.25% +
Winchester22/10/202240833736:0837.22%   -
Winchester18/09/202135433938:1234.95% +
Winchester17/09/202240326230:2944.12%   -
Winchester04/09/202135233838:2434.77% +
Winchester10/09/202240231134:3338.93%   -
Winchester28/08/202135139841:0132.55% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester14/08/202134936055:4623.94% +
Winchester27/08/202240042335:2138.05%   -
Winchester31/07/202134832845:2029.45% +
Winchester13/08/202239823431:3042.70%   -
Winchester14/03/202034625851:3825.69% +
Tidworth30/07/2022615151:4226.02%   -
Winchester07/03/202034510325:5251.29% +
Uckfield23/07/20221006028:4346.84%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Winchester09/07/202239428633:1640.43%   -
Newbury22/02/202043434631:1142.54% +
Eastleigh28/05/202254015531:2042.93%   -
Alice Holt08/02/202036010727:1948.57% +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -688,50 +781,32 @@

Andrew TAYLOR (A13093
- Locations: 41 + Locations: 52
- Finishers: 91,697 + Finishers: 130006
- Finishes: 1,006,752 + Finishes: 1477384
- All-time events: 9,678 + All-time events: 13134
- Volunteers: 11,273 + Volunteers: 15281
- PBs: 146,098 + PBs: 209409
- Average finish time: 00:31:28 + Average finish time: 00:31:59
- Average finishes per participant: 11 + Groups: 2705
-
- Groups: 2,264 -
-
-
- Female record: - Katrina ANDRW – 16:32 - (14 May 2022) -
-
- Male record: - Luke SCOTT – 14:26 - (26 Jun 2021) -
-
- Age graded record: - Colin THORNE - 117.61% 51:12 - (21 Jan 2023) -
+

- Stats last updated: Fri 14 Apr 2023 00:40:27 UTC + Stats last updated: Mon 30 Sep 2024 00:40:25 UTC
@@ -744,28 +819,32 @@

Andrew TAYLOR (A13093 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -799,8 +888,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/1309364/index.html index 3dca29c1..89e4c7c1 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + results | parkrun New Zealand @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -113,186 +100,196 @@
- + - - + -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club -

245 parkruns total

+

297 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM35-39 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun146121300:20:18 + Most recent age category was VM40-44 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun173121320:18 + All +
Whiteley parkrun1410714629:06 + All +
Delamere parkrun11232321:42 + All +
Eastleigh parkrun6242524:08 All - Graph It!
Delamere parkrun8232300:21:42 +
Alice Holt parkrun59010727:19 All - Graph It!
Whiteley parkrun610714600:29:06 +
Southampton parkrun5687021:17 All - Graph It!
Alice Holt parkrun59010700:27:19 +
Fell Foot parkrun, Newby Bridge4212223:48 All - Graph It!
Southampton parkrun5687000:21:17 +
Witton parkrun4303525:40 All - Graph It!
Eastleigh parkrun5242500:24:08 +
Northwich parkrun4485224:55 All - Graph It!
Congleton parkrun49900:20:06 +
Newbury parkrun4829123:49 All - Graph It!
Witton parkrun4303500:25:40 +
Congleton parkrun49920:06 All - Graph It!
Northwich parkrun4485200:24:55 +
Medina I.O.W. parkrun4667525:13 All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Ganger Farm parkrun38013229:25 All - Graph It!
Andover parkrun2242600:22:24 +
Burnley parkrun212718929:06 All - Graph It!
Ganger Farm parkrun29713500:29:25 +
Queen Elizabeth parkrun2364026:36 All - Graph It!
Hanley parkrun2333900:22:31 +
Andover parkrun2242622:24 All - Graph It!
Newbury parkrun2829100:23:49 +
Hanley parkrun2333922:31 All - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Netley Abbey parkrun1586424:21 All - Graph It!
Hagley parkrun1182000:22:38 +
Hilly Fields parkrun1859925:03 All -  
Ormskirk parkrun120930300:31:04 +
Brockenhurst parkrun112718632:41 All -  
Basingstoke parkrun111212900:24:31 +
Wimpole Estate parkrun112916928:07 All -  
Cuerden Valley parkrun1192000:24:47 +
Clumber Park parkrun112117629:51 All -  
Seven Fields parkrun1546700:28:28 +
Cuerden Valley parkrun1192024:47 All -  
Netley Abbey parkrun1586400:24:21 +
Hamilton Lake parkrun1151621:47 All -  
Mountbatten School parkrun17110100:31:29 +
Fountains Abbey parkrun1283020:33 All -  
Clitheroe Castle parkrun1639700:35:46 +
Ormskirk parkrun120930331:04 All -  
Medina I.O.W. parkrun19513900:30:57 +
Pendle parkrun1465926:37 All -  
Hogmoor Inclosure parkrun111314000:29:34 +
Woking parkrun1485824:01 All -  
Milano Nord parkrun1475300:27:49 +
Hagley parkrun1182022:38 All -  
Jersey parkrun111018500:30:53 +
Penrhyn parkrun1232624:33 All -  
Canterbury parkrun1323600:27:29 +
Salisbury parkrun119326729:45 All -  
Penrhyn parkrun1232600:24:33 +
Jersey parkrun111018530:53 All -  
Hyndburn parkrun1425300:29:55 +
Haigh Woodland parkrun18916837:04 All -  
Woking parkrun1485800:24:01 +
Stretford parkrun127540530:23 All -  
Fountains Abbey parkrun1283000:20:33 +
Portsmouth Lakeside parkrun1818726:32 All -  
Bushy parkrun1681102100:33:01 +
Fareham parkrun19011428:52 All -  
Clumber Park parkrun112117600:29:51 +
Milano Nord parkrun1475327:49 All -  
Wimpole Estate parkrun112916900:28:07 +
Richmond Olympic parkrun15521:59 All -  
Tidworth parkrun18615100:51:42 +
Crewe parkrun112315430:05 All -  
Hilly Fields parkrun1859900:25:03 +
Hogmoor Inclosure parkrun111314029:34 All -  
Tawd Valley parkrun18111000:29:25 +
Catford parkrun19512527:24 All -  
Watermeadows parkrun1151500:23:51 +
Clitheroe Castle parkrun1639735:46 All -  
Eden Project parkrun111116200:30:21 +
Pocket parkrun112419533:47 All -  
Catford parkrun19512500:27:24 +
Ford parkrun1477432:29 All -  
Crewe parkrun112315400:30:05 +
Watermeadows parkrun1151523:51 All -  
Long Eaton parkrun118122900:28:06 +
Mountbatten School parkrun17110131:29 All -  
Fareham parkrun19511400:28:52 +
Uckfield parkrun1416028:43 All -  
Phoenix parkrun1232600:27:31 +
Tawd Valley parkrun18111029:25 All -  
Guildford parkrun117125100:30:01 +
Seven Fields parkrun1546728:28 All -  
Pendle parkrun1465900:26:37 +
Itchen Valley Country parkrun110613529:53 All -  
Heaton parkrun133846700:31:01 +
Bartley Park parkrun1628430:26 All -  
Hamilton Lake parkrun1151600:21:47 +
Tidworth parkrun18615151:42 All -  
Brockenhurst parkrun112718600:32:41 +
Bushy parkrun1681102133:01 All -  
Itchen Valley Country parkrun110713500:29:53 +
Basingstoke parkrun111212924:31 All -  
Burnley parkrun114120400:29:06 +
Heaton parkrun133846731:01 All -  
Uckfield parkrun1416000:28:43 +
Guildford parkrun117125130:01 All -  
Abingdon parkrun114220200:29:14 +
Hyndburn parkrun1425329:55 All -  
Pocket parkrun112419500:33:47 +
Phoenix parkrun1232627:31 All -  
Bolton parkrun116221800:31:49 +
Canterbury parkrun1323627:29 All -  
Richmond Olympic parkrun15500:21:59 +
Valentines parkrun1698025:14 All -  
Poole parkrun121328400:28:59 +
Poole parkrun121328428:59 All -  
Portsmouth Lakeside parkrun1818700:26:32 +
Long Eaton parkrun118122928:06 All -  
Salisbury parkrun119326700:29:45 +
Bolton parkrun116221831:49 All -  
2455500:20:06 +
Eden Project parkrun111116230:21 + All +
Abingdon parkrun114220229:14 + All +
2975520:06 All  


Volunteer Summary

RoleOccasions
- Run Director - 21
- Timekeeper - 2
- Token Sorting - 8
- Results Processor - 6
- Photographer - 4
- Marshal - 4
- Pre-event Setup - 6
- Equipment Storage and Delivery - 2
- Barcode Scanning - 2
- Post-event Close Down - 10
- Finish Tokens - 1
- Number Checker - 2
- First Timers Welcome - 1
- Funnel Manager - 1
- Tail Walker - 4
- Volunteer Co-ordinator - 1
- Report Writer - 10
- Pacer (5k only) - 1
Total Credits58

+ Run Director +

21
+ Timekeeper + 2
+ Token Sorting + 8
+ Results Processor + 6
+ Photographer + 4
+ Marshal + 5
+ Pre-event Setup + 6
+ Equipment Storage and Delivery + 2
+ Barcode Scanning + 3
+ Post-event Close Down + 10
+ Finish Tokens + 1
+ Number Checker + 2
+ First Timers Welcome + 1
+ Funnel Manager + 1
+ Tail Walker + 4
+ Volunteer Co-ordinator + 1
+ Report Writer + 10
+ Pacer (5k only) + 1
Total Credits60

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -322,50 +319,32 @@

Andrew TAYLOR (A13093
- Locations: 41 + Locations: 52
- Finishers: 91,697 + Finishers: 130006
- Finishes: 1,006,752 + Finishes: 1477384
- All-time events: 9,678 + All-time events: 13134
- Volunteers: 11,273 + Volunteers: 15281
- PBs: 146,098 + PBs: 209409
- Average finish time: 00:31:28 + Average finish time: 00:31:59
- Average finishes per participant: 11 + Groups: 2705
-
- Groups: 2,264 -
-
-
- Female record: - Katrina ANDRW – 16:32 - (14 May 2022) -
-
- Male record: - Luke SCOTT – 14:26 - (26 Jun 2021) -
-
- Age graded record: - Colin THORNE - 117.61% 51:12 - (21 Jan 2023) -
+

- Stats last updated: Fri 14 Apr 2023 00:40:27 UTC + Stats last updated: Mon 30 Sep 2024 00:40:25 UTC
@@ -378,28 +357,32 @@

Andrew TAYLOR (A13093 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -433,8 +426,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/2705084/all/index.html index ea6ed83c..9a4816d3 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + results | parkrun New Zealand @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -121,10 +108,10 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -156,50 +143,32 @@

Duncan BOOTH (A270508
- Locations: 41 -
-
- Finishers: 92,220 + Locations: 52
- Finishes: 1,012,394 + Finishers: 130006
- All-time events: 9,719 + Finishes: 1477384
- Volunteers: 11,314 + All-time events: 13134
- PBs: 146,860 + Volunteers: 15281
- Average finish time: 00:31:28 + PBs: 209409
- Average finishes per participant: 11 + Average finish time: 00:31:59
- Groups: 2,270 + Groups: 2705
-
-
- Female record: - Katrina ANDRW – 16:32 - (14 May 2022) -
-
- Male record: - Luke SCOTT – 14:26 - (26 Jun 2021) -
-
- Age graded record: - Colin THORNE - 117.61% 51:12 - (21 Jan 2023) -
+
- Stats last updated: Mon 17 Apr 2023 00:40:41 UTC + Stats last updated: Mon 30 Sep 2024 00:40:25 UTC
@@ -212,28 +181,32 @@

Duncan BOOTH (A270508 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -267,8 +250,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/2705084/index.html index 4682a8df..5b470756 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + results | parkrun New Zealand @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -121,18 +108,18 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volunteer Summary

RoleOccasions
- Marshal - 260
- Lead Bike - 130
- Event Day Course Check - 9
Total Credits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Volunteer Summary

RoleOccasions
+ Marshal + 350
+ Lead Bike + 130
+ Event Day Course Check + 82
Total Credits540

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



@@ -162,50 +149,32 @@

Duncan BOOTH (A270508
- Locations: 41 -
-
- Finishers: 92,220 + Locations: 52
- Finishes: 1,012,394 + Finishers: 130006
- All-time events: 9,719 + Finishes: 1477384
- Volunteers: 11,314 + All-time events: 13134
- PBs: 146,860 + Volunteers: 15281
- Average finish time: 00:31:28 + PBs: 209409
- Average finishes per participant: 11 + Average finish time: 00:31:59
- Groups: 2,270 + Groups: 2705
-
-
- Female record: - Katrina ANDRW – 16:32 - (14 May 2022) -
-
- Male record: - Luke SCOTT – 14:26 - (26 Jun 2021) -
-
- Age graded record: - Colin THORNE - 117.61% 51:12 - (21 Jan 2023) -
+

- Stats last updated: Mon 17 Apr 2023 00:40:41 UTC + Stats last updated: Mon 30 Sep 2024 00:40:25 UTC
@@ -218,28 +187,32 @@

Duncan BOOTH (A270508 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -273,8 +256,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/482/all/index.html index 1657e8d1..91f351d9 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + results | parkrun New Zealand @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -126,1650 +113,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM40-44 + Most recent age category was VM45-49

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time16:2521:0459:17
Age Grading79.25%65.45%23.56%
Overall Position134.831692

+
FastestAverage
(mean)
Slowest
Time16:2521:2659:17
Age Grading79.25%64.63%23.56%
Overall Position138.841692

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Harleston Magpies08/04/2023793525:1255.42% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03% +   +
Quakers Walk25/11/2023126825:0556.08%   -
Cannock Chase01/04/20232434425:4954.10% +
Aston Hall18/11/202352225:0156.23%   -
Kingston25/03/202360216430:0946.32% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Wolford Wood18/03/202352730:2445.94% +
Belvoir Castle04/11/2023911925:4254.73%   -
Kingston11/03/202360015027:1851.16% +
Five Arches28/10/202365422:5861.25%   -
Stockley Country04/03/2023817935:3239.31% +
Dover Waterfront21/10/202374525:2255.45%   -
Chasewater25/02/202310010026:1953.07% +
Rushcliffe14/10/20235087323:5458.86%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Kingston07/10/202363033150:2927.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Maaraue03/10/20231012522:3462.33%   -
Worcester04/02/202354318529:3047.34% +
University of Northampton30/09/2023112223:2460.11%   -
Crane Park28/01/202349014550:3727.59% +
Clifton23/09/20231911025:1455.75%   -
Kingston21/01/202359431139:3935.22% +
Wisbech16/09/202351523:0361.03%   -
Brooklands14/01/202313018830:4445.44% +
Holbrooks09/09/202362223:4359.31%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston01/01/202359113340:3134.47% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Kingston31/12/202259026442:4432.68% +
Riverfront19/08/20232594622:5761.29%   -
Bushy Park25/12/2022909169244:3931.28% +
Long Eaton12/08/202334112124:0658.37%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Kingston05/08/20236216723:2160.24%   -
Kingston17/12/202258818059:1723.56% +
Kingston29/07/20236208725:0955.93%   -
Kingston10/12/202258723255:4025.09% +
Kingston22/07/20236199224:2457.65%   -
Beacon03/12/2022737326:4152.34% +
Severn Valley Country15/07/20231411626:1353.66%   -
Ganger Farm26/11/2022211426:3452.57% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Bushy Park19/11/2022903110553:2326.16% +
Thornham Walks01/07/202353826:5251.99%   -
Leavesden Country12/11/202246928:3248.95% +
Kingston24/06/20236156524:0957.83%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Rosliston17/06/20233073624:4156.58%   -
Durlston Country Park29/10/2022335032:4542.65% +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1800,50 +1953,32 @@

Danny NORMAN (A482)
- Locations: 41 -
-
- Finishers: 91,697 + Locations: 52
- Finishes: 1,006,752 + Finishers: 130006
- All-time events: 9,678 + Finishes: 1477384
- Volunteers: 11,273 + All-time events: 13134
- PBs: 146,098 + Volunteers: 15281
- Average finish time: 00:31:28 + PBs: 209409
- Average finishes per participant: 11 + Average finish time: 00:31:59
- Groups: 2,264 + Groups: 2705
- -
- Female record: - Katrina ANDRW – 16:32 - (14 May 2022) -
-
- Male record: - Luke SCOTT – 14:26 - (26 Jun 2021) -
-
- Age graded record: - Colin THORNE - 117.61% 51:12 - (21 Jan 2023) -
+
- Stats last updated: Fri 14 Apr 2023 00:40:27 UTC + Stats last updated: Mon 30 Sep 2024 00:40:25 UTC
@@ -1856,28 +1991,32 @@

Danny NORMAN (A482) - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1911,8 +2060,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/482/index.html index f7b2dd71..df7b2924 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + results | parkrun New Zealand @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -113,10 +100,10 @@
- + - - + @@ -125,878 +112,1004 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns total

+

867 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM40-44 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2321100:16:25 + Most recent age category was VM45-49 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2341116:25 + All +
Kingston parkrun471116:51 + All +
Bedfont Lakes parkrun81117:04 + All +
Nonsuch parkrun71116:52 + All +
Richmond parkrun71117:13 + All +
Crane Park parkrun61116:48 + All +
Riddlesdown parkrun42217:01 + All +
Brockwell parkrun, Herne Hill31116:56 + All +
Southwark parkrun34417:27 + All +
Fulham Palace parkrun33317:47 + All +
Cannon Hill parkrun, Birmingham3111118:04 + All +
Gunnersbury parkrun31116:51 + All +
Wimbledon Common parkrun35517:27 + All +
Brighton & Hove parkrun31116:27 + All +
Basingstoke parkrun35517:48 + All +
Black Park parkrun31117:25 + All +
Dulwich parkrun33317:11 + All +
Bexley parkrun31117:48 + All +
Tilgate parkrun31117:10 + All +
Frimley Lodge parkrun31117:11 + All +
Hilly Fields parkrun31117:50 + All +
Old Deer Park parkrun31117:41 + All +
Guildford parkrun31117:17 + All +
Homewood parkrun3151722:21 + All +
Chelmsford Central parkrun22217:24 + All +
Mole Valley parkrun2262622:56 + All +
Durlston Country Park parkrun2355032:45 + All +
Hazelwood parkrun2182222:21 + All +
Southsea parkrun23317:55 + All +
St Albans parkrun21116:37 + All +
Havant parkrun21117:46 + All +
Ashford parkrun22217:57 + All +
Bedford parkrun21116:55 + All +
Margate parkrun21118:16 + All +
Milton Keynes parkrun23317:26 + All +
Preston Park parkrun, Brighton22217:40 + All +
Shorne Woods parkrun21118:14 + All +
Canons Park parkrun27720:50 All - Graph It!
Kingston parkrun351100:16:51 +
Osterley parkrun21117:57 All - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Eastleigh parkrun27719:14 All - Graph It!
Richmond parkrun71100:17:13 +
Brooklands parkrun2394223:22 All - Graph It!
Nonsuch parkrun71100:16:52 +
Great Lines parkrun, Medway25518:25 All - Graph It!
Crane Park parkrun61100:16:48 +
Malling Rec parkrun2738526:59 All - Graph It!
Brighton & Hove parkrun31100:16:27 +
Crystal Palace parkrun21117:24 All - Graph It!
Fulham Palace parkrun33300:17:47 +
Northala Fields parkrun22218:06 All - Graph It!
Frimley Lodge parkrun31100:17:11 +
Northampton parkrun21116:56 All - Graph It!
Gunnersbury parkrun31100:16:51 +
Oak Hill parkrun21117:13 All - Graph It!
Bexley parkrun31100:17:48 +
Lloyd parkrun, Croydon21118:01 All - Graph It!
Tilgate parkrun31100:17:10 +
Newbury parkrun21117:20 All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Cranleigh parkrun26620:49 All - Graph It!
Southwark parkrun34400:17:27 +
Littlehampton Prom parkrun2384324:22 All - Graph It!
Basingstoke parkrun35500:17:48 +
Whitstable parkrun23318:12 All - Graph It!
Hilly Fields parkrun31100:17:50 +
Bethlem Royal Hospital parkrun2263223:22 All - Graph It!
Black Park parkrun31100:17:25 +
Cyclopark parkrun2353824:01 All - Graph It!
Riddlesdown parkrun32200:17:01 +
Hockley Woods parkrun26621:09 All - Graph It!
Dulwich parkrun33300:17:11 +
South Oxhey parkrun21119:13 All - Graph It!
Guildford parkrun31100:17:17 +
Pymmes parkrun21117:06 All - Graph It!
Old Deer Park parkrun31100:17:41 +
Hastings parkrun291120:41 All - Graph It!
Wimbledon Common parkrun35500:17:27 +
Wycombe Rye parkrun22217:17 All - Graph It!
Homewood parkrun3151700:22:21 +
Hove Promenade parkrun27719:23 All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Banstead Woods parkrun21117:31 All - Graph It!
Pymmes parkrun21100:17:06 +
Wormwood Scrubs parkrun21118:00 All - Graph It!
Hove Promenade parkrun27700:19:23 +
Roundshaw Downs parkrun23318:14 All - Graph It!
Netley Abbey parkrun21100:17:21 +
Mile End parkrun21116:53 All - Graph It!
Mile End parkrun21100:16:53 +
Bevendean Down parkrun28923:21 All - Graph It!
Southampton parkrun23300:16:44 +
Finsbury parkrun22217:15 All - Graph It!
Northala Fields parkrun22200:18:06 +
Tooting Common parkrun2181819:14 All - Graph It!
Hockley Woods parkrun26600:21:09 +
Bedgebury Pinetum parkrun28921:24 All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Harrow parkrun25520:23 All - Graph It!
Upton Court parkrun22200:17:24 +
Netley Abbey parkrun21117:21 All - Graph It!
Alice Holt parkrun21100:17:59 +
Ellenbrook Fields parkrun2141519:58 All - Graph It!
Osterley parkrun21100:17:57 +
Worthing parkrun28918:44 All - Graph It!
Burgess parkrun22200:16:45 +
Grovelands parkrun, Enfield22217:21 All - Graph It!
Gladstone parkrun21100:17:09 +
Beckton parkrun23317:24 All - Graph It!
Havant parkrun21100:17:46 +
Gladstone parkrun21117:09 All - Graph It!
Cranleigh parkrun26600:20:49 +
Hackney Marshes parkrun22216:46 All - Graph It!
Finsbury parkrun22200:17:15 +
Burgess parkrun22216:45 All - Graph It!
Southsea parkrun23300:17:55 +
Orpington parkrun22217:27 All - Graph It!
Margate parkrun21100:18:16 +
Barking parkrun22216:45 All - Graph It!
Northampton parkrun21100:16:56 +
Southampton parkrun23316:44 All - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Alice Holt parkrun21117:59 All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Woodley parkrun21117:02 All - Graph It!
Crystal Palace parkrun21100:17:24 +
Upton Court parkrun22217:24 All - Graph It!
Eastleigh parkrun27700:19:14 +
Frogmary Green Farm parkrun1597225:58 All - Graph It!
Hastings parkrun291100:20:41 +
Harrow Lodge parkrun11118:48 All - Graph It!
Banstead Woods parkrun21100:17:31 +
Witney parkrun1202022:34 All - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Leamington parkrun12218:52 All - Graph It!
Hackney Marshes parkrun22200:16:46 +
Brockenhurst parkrun13318:23 All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Hogmoor Inclosure parkrun1262625:26 All - Graph It!
Woodley parkrun21100:17:02 +
Hastings High School parkrun1637827:33 All - Graph It!
Tooting Common parkrun2181800:19:14 +
Cannock Chase parkrun1384425:49 All - Graph It!
Milton Keynes parkrun23300:17:26 +
Wimpole Estate parkrun1202122:14 All - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Haverhill parkrun1121323:32 All - Graph It!
Barking parkrun22200:16:45 +
Edenbrook Country parkrun110514828:01 All - Graph It!
Canons Park parkrun27700:20:50 +
Maidstone River Park parkrun13318:00 All - Graph It!
Newbury parkrun21100:17:20 +
Cheltenham parkrun12217:24 All - Graph It!
Shorne Woods parkrun21100:18:14 +
Victoria Dock parkrun1273020:04 All - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Ekebergsletta parkrun1304325:57 All - Graph It!
Mole Valley parkrun2262600:22:56 +
Oxford parkrun11117:18 All - Graph It!
Oak Hill parkrun21100:17:13 +
Aylesbury parkrun11117:51 All - Graph It!
Cyclopark parkrun2353800:24:01 +
Mote Park parkrun19712231:28 All - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Riverfront parkrun1404622:57 All - Graph It!
South Oxhey parkrun21100:19:13 +
Newent parkrun1182225:27 All - Graph It!
Chelmsford Central parkrun22200:17:24 +
Clapham Common parkrun1404220:22 All - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Llanishen Park parkrun1303323:48 All - Graph It!
Bevendean Down parkrun28900:23:21 +
Heartwood Forest parkrun1252721:41 All - Graph It!
Bedford parkrun21100:16:55 +
Walthamstow parkrun11117:48 All - Graph It!
Whitstable parkrun23300:18:12 +
Malmö Ribersborg parkrun111215128:46 All - Graph It!
Orpington parkrun22200:17:27 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 All - Graph It!
Ashford parkrun22200:17:57 +
Huntingdon parkrun1202121:10 All - Graph It!
Hazelwood parkrun2182200:22:21 +
Felixstowe parkrun1121221:07 All - Graph It!
Brooklands parkrun2394200:23:22 +
Tidworth parkrun110815535:14 All - Graph It!
Wycombe Rye parkrun22200:17:17 +
Brandon Country Park parkrun11118:30 All - Graph It!
Harrow parkrun25500:20:23 +
Prospect parkrun1232322:42 All - Graph It!
Beckton parkrun23300:17:24 +
Mildenhall Hub parkrun1273124:33 All - Graph It!
St Albans parkrun21100:16:37 +
York parkrun12217:12 All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Thetford parkrun1161721:45 All -  
Buckingham parkrun12200:18:37 +
Great Dunmow parkrun14420:25 All -  
Thomas Mills parkrun1486500:30:19 +
Leavesden Country parkrun1506928:32 All -  
Leamington parkrun12200:18:52 +
Catford parkrun1303322:32 All -  
Church Mead parkrun16610200:32:53 +
Lordship Recreation Ground parkrun19112425:22 All -  
Letchworth parkrun1141400:23:13 +
Rugby parkrun1181822:26 All -  
Mulbarton parkrun12200:19:55 +
Mulbarton parkrun12219:55 All -  
Arrow Valley parkrun13300:18:05 +
Swaffham parkrun191022:19 All -  
Frogmary Green Farm parkrun1597200:25:58 +
Ganger Farm parkrun19811426:34 All -  
Sutton Park parkrun1475500:24:54 +
Beckenham Place parkrun1121220:28 All -  
Reigate Priory parkrun16600:19:06 +
Forest Rec parkrun1677626:35 All -  
Bury St Edmunds parkrun13300:18:17 +
Street parkrun1283525:52 All -  
Pollok parkrun, Glasgow11100:17:00 +
Market Bosworth Country Park parkrun110614435:35 All -  
Kingdom parkrun1222500:24:39 +
Whiteley parkrun1141520:56 All -  
Barclay parkrun15600:23:13 +
Kingsbury Water parkrun1394725:05 All -  
Chippenham parkrun1212100:20:08 +
Springhill parkrun14422:18 All -  
Ipswich parkrun11100:17:34 +
Wolford Wood parkrun1212730:24 All -  
Itchen Valley Country parkrun1476100:27:37 +
Pontypridd parkrun12217:54 All -  
Neckarau parkrun1243000:27:11 +
Pocket parkrun1222321:38 All -  
Brandon Country Park parkrun11100:18:30 +
Stockley Country parkrun111917935:32 All -  
Boston parkrun17700:21:18 +
Braunstone parkrun1262720:41 All -  
University Parks parkrun119032600:31:42 +
Didcot parkrun1101121:28 All -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Littleport parkrun1445125:16 All -  
Lullingstone parkrun17700:21:21 +
Yarborough Leisure Centre parkrun1466125:59 All -  
Coventry parkrun1292900:20:51 +
Roding Valley parkrun1111321:26 All -  
Berkeley Green parkrun1233100:28:31 +
Clair parkrun13318:36 All -  
Mersea Island parkrun1121200:20:59 +
Dinton Pastures parkrun1131321:23 All -  
Aylesbury parkrun11100:17:51 +
Beacon Hill Country Park parkrun1273725:54 All -  
Royal Tunbridge Wells parkrun18900:19:23 +
Severn Bridge parkrun1353921:32 All -  
Southall parkrun1557500:31:38 +
Abbey Park parkrun1779425:21 All -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Dudley parkrun1445626:35 All -  
Pomphrey Hill parkrun1364100:23:02 +
Pegwell Bay parkrun12217:40 All -  
Henley-on-Thames parkrun1111100:22:25 +
Manor Field parkrun, Whittlesey1121324:25 All -  
Aachener Weiher parkrun1101100:24:55 +
Blaise Castle parkrun112816326:20 All -  
Penrose parkrun1151600:19:40 +
Chipping Sodbury parkrun1303221:20 All -  
King’s Lynn parkrun1151500:20:07 +
Foots Cray Meadows parkrun1212323:17 All -  
Fulbourn Hospital parkrun1344700:24:59 +
Thames Path parkrun, Woolwich1789023:42 All -  
Fareham parkrun16600:19:21 +
Bath Skyline parkrun1192021:08 All -  
Brockenhurst parkrun13300:18:23 +
Dishley parkrun, Loughborough110311424:30 All -  
Canterbury parkrun16600:21:56 +
Thornham Walks parkrun1363826:52 All -  
Alton Water parkrun1538300:35:09 +
Moors Valley parkrun19919:40 All -  
Littleport parkrun1445100:25:16 +
East Grinstead parkrun1131423:10 All -  
Newport parkrun11100:17:29 +
Sutton Park parkrun1475524:54 All -  
California Country parkrun1649000:28:49 +
University of Northampton parkrun1192223:24 All -  
Thornbury parkrun1323400:28:19 +
Shipley Country parkrun1232424:45 All -  
Greenwich parkrun12200:18:07 +
Lancing Beach Green parkrun1141421:08 All -  
Seven Fields parkrun1475500:26:28 +
Dover Waterfront parkrun1374525:22 All -  
Highbury Fields parkrun11100:17:25 +
Rickmansworth parkrun1242721:39 All -  
The Great Field parkrun19313500:29:12 +
Queen Elizabeth parkrun12219:08 All -  
Street parkrun1283500:25:52 +
Sizewell parkrun1172023:30 All -  
South Norwood parkrun1121200:21:11 +
Holbrooks parkrun1202223:43 All -  
Dunstable Downs parkrun1374300:24:58 +
Highbury Fields parkrun11117:25 All -  
Melton Mowbray parkrun1192200:22:38 +
Clacton Seafront parkrun19920:35 All -  
Horsham parkrun14500:18:16 +
Delaware and Raritan Canal parkrun12221:06 All -  
Irchester Country parkrun1586200:25:13 +
Wisbech parkrun1111523:03 All -  
Stratford-upon-Avon parkrun1202500:21:14 +
Milton Country parkrun13317:43 All -  
Wotton parkrun1182100:24:45 +
Seaton parkrun1394824:09 All -  
Bath Skyline parkrun1192000:21:08 +
Higginson parkrun, Marlow1272922:17 All -  
Great Dunmow parkrun14400:20:25 +
Quakers Walk parkrun1566825:05 All -  
Corby parkrun18800:23:09 +
Lister Park parkrun, Bradford1313621:55 All -  
Bracknell parkrun18800:20:04 +
Wendover Woods parkrun1262623:51 All -  
Cromhall parkrun1151600:24:20 +
Sence Valley Forest Park parkrun1232526:28 All -  
Perry Hall parkrun1464900:24:58 +
Canterbury parkrun16621:56 All -  
Gunpowder parkrun12200:17:34 +
Henstridge Airfield parkrun18821:41 All -  
Luton Wardown parkrun191000:19:36 +
Five Arches parkrun1455422:58 All -  
Ifield Mill Pond parkrun1373800:24:33 +
Yeovil Montacute parkrun1707525:51 All -  
March parkrun15500:21:11 +
Watermeadows parkrun1283124:57 All -  
Roding Valley parkrun1111300:21:26 +
Tamworth Castle Grounds parkrun1333523:26 All -  
Charlton parkrun18213000:32:05 +
St Helens parkrun1606824:27 All -  
Malmö Ribersborg parkrun111215100:28:46 +
Weymouth parkrun1141420:45 All -  
Worcester parkrun114418500:29:30 +
Walmer and Deal Seafront parkrun18821:38 All -  
Wolford Wood parkrun1212700:30:24 +
Aston Hall parkrun1202225:01 All -  
Fire Service College parkrun1181900:22:12 +
Royal Tunbridge Wells parkrun18919:23 All -  
Panshanger parkrun17700:20:14 +
Corby parkrun18823:09 All -  
Conkers parkrun12200:17:46 +
Marlborough Common parkrun1202122:48 All -  
Banbury parkrun1222300:21:16 +
Battlestead Croft parkrun1111122:53 All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Shepton Mallet parkrun1121421:50 All -  
Rushmere parkrun1131400:22:39 +
Clare Castle parkrun1252723:04 All -  
Whiteley parkrun1141500:20:56 +
Coldham’s Common parkrun1535923:04 All -  
Sandringham parkrun1466300:30:18 +
Brunswick Park parkrun1212223:58 All -  
Victoria Dock parkrun1283000:20:04 +
Brentwood parkrun17722:28 All -  
Queen Elizabeth parkrun12200:19:08 +
Somerdale Pavilion parkrun1384631:17 All -  
Lordship Recreation Ground parkrun19112400:25:22 +
Wakehurst parkrun18810525:00 All -  
Somerdale Pavilion parkrun1384600:31:17 +
Boston parkrun17721:18 All -  
Dartford parkrun11100:17:59 +
Morden parkrun111715526:58 All -  
Winchester parkrun14500:18:28 +
Pontefract parkrun1718724:10 All -  
Stratford Park parkrun, Stroud1566500:27:51 +
Jersey Farm parkrun1252723:11 All -  
Sherwood Pines parkrun1161800:21:33 +
Bug Hunter Waters parkrun1455022:41 All -  
Grove Fields parkrun1578500:28:03 +
Rosliston parkrun1333624:41 All -  
Witney parkrun1202000:22:34 +
Longrun Meadow parkrun111416532:01 All -  
Preston Park parkrun, Brighton12200:17:40 +
Fire Service College parkrun1181922:12 All -  
Colchester Castle parkrun14400:18:04 +
Woolacombe Dunes parkrun19410931:20 All -  
Tidworth parkrun110815500:35:14 +
The Plens parkrun1303124:04 All -  
Walmer and Deal Seafront parkrun18800:21:38 +
Arrow Valley parkrun13318:05 All -  
Ferry Meadows parkrun15500:17:27 +
Tonbridge parkrun14418:40 All -  
St Mary’s parkrun1587400:29:14 +
East Brighton parkrun1182123:56 All -  
Dartford Heath parkrun1171700:22:06 +
Three Brooks parkrun1697223:46 All -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Peacehaven parkrun17721:07 All -  
Great Denham parkrun16600:19:27 +
Pontypool parkrun1232323:51 All -  
Hastings High School parkrun1637800:27:33 +
Cromhall parkrun1151624:20 All -  
Wendover Woods parkrun1262600:23:51 +
Dereham parkrun1323323:47 All -  
Peckham Rye parkrun11100:17:49 +
Bournemouth parkrun14417:43 All -  
Upton House parkrun1252700:22:34 +
Pomphrey Hill parkrun1364123:02 All -  
Lee-on-the-Solent parkrun17700:19:40 +
Seaford Beach parkrun1535622:25 All -  
Graves parkrun11100:18:18 +
Mansfield parkrun11117:09 All -  
Maidstone parkrun13300:18:00 +
Fountains Abbey parkrun11118:03 All -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Loch Neaton parkrun, Watton1171725:49 All -  
South Woodham Ferrers parkrun18800:21:14 +
Brueton parkrun1475021:33 All -  
Pontypridd parkrun12200:17:54 +
Great Cornard parkrun1192020:33 All -  
Bournemouth parkrun14400:17:43 +
Dunstable Downs parkrun1374324:58 All -  
Sizewell parkrun1172000:23:30 +
Beeston parkrun1374023:53 All -  
Rushmoor parkrun19900:18:29 +
Feltham parkrun13424:56 All -  
Walsall Arboretum parkrun19810600:25:31 +
Markeaton parkrun1576422:56 All -  
Gorleston Cliffs parkrun12200:17:43 +
Reigate Priory parkrun16619:06 All -  
Uckfield parkrun1404300:24:12 +
Highwoods parkrun1252624:49 All -  
Aldenham parkrun1141400:21:37 +
Valentines parkrun11116:49 All -  
Gadebridge parkrun1141400:22:22 +
Springburn parkrun, Glasgow13318:05 All -  
Horspath parkrun17410600:28:12 +
California Country parkrun1649028:49 All -  
Rogiet parkrun1151600:24:27 +
Rushmoor parkrun19918:29 All -  
Rendlesham Forest parkrun1264600:37:01 +
Mountbatten School parkrun1323424:11 All -  
Dishley parkrun, Loughborough110311400:24:30 +
Colchester Castle parkrun14418:04 All -  
Great Cornard parkrun1192000:20:33 +
Buckingham parkrun12218:37 All -  
Kettering parkrun1232600:22:50 +
Sunny Hill parkrun1202424:39 All -  
Pont y Bala parkrun15700:23:18 +
Bognor Regis parkrun12218:12 All -  
Burnham and Highbridge parkrun17510000:27:51 +
Aachener Weiher parkrun1101124:55 All -  
Stonehouse parkrun1131300:20:09 +
Peckham Rye parkrun11117:49 All -  
Hampstead Heath parkrun11100:17:45 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 All -  
Wickford Memorial parkrun1436600:51:15 +
Great Notley parkrun16620:16 All -  
Castle Park parkrun1394100:22:34 +
Snowden Field parkrun1242624:15 All -  
Huntingdon parkrun1202100:21:10 +
Burnham-on-Crouch parkrun18822:01 All -  
Great Salterns parkrun19212400:30:27 +
Woking parkrun18818:19 All -  
Snowden Field parkrun1242600:24:15 +
Neckarufer parkrun, Esslingen1364425:12 All -  
Southend parkrun11100:16:28 +
Worcester parkrun114418529:30 All -  
Andover parkrun11100:17:33 +
Blandford parkrun18920:11 All -  
parkrun Zalew Żyrardowski16700:24:38 +
Pont y Bala parkrun15723:18 All -  
Marecchia parkrun11100:19:50 +
Chichester parkrun13319:05 All -  
Cheltenham parkrun12200:17:24 +
Kingdom parkrun1222524:39 All -  
St Helens parkrun1606800:24:27 +
Westmill parkrun1101022:55 All -  
Bartley Park parkrun18415100:32:38 +
Dartford parkrun11117:59 All -  
Severn Bridge parkrun1353900:21:32 +
Hanworth parkrun1364024:26 All -  
Pontypool parkrun1232300:23:51 +
Bracknell parkrun18820:04 All -  
Poole parkrun14400:16:57 +
Folkestone parkrun1212521:48 All -  
Bramhall parkrun115924700:35:16 +
Uckfield parkrun1404324:12 All -  
Sunny Hill parkrun1202400:24:39 +
Harrogate parkrun13318:11 All -  
Cassiobury parkrun1111100:20:14 +
Kesgrave parkrun1374021:18 All -  
Hoblingwell parkrun1202400:23:52 +
Thomas Mills parkrun1486530:19 All -  
Colwick parkrun18800:19:46 +
Lymington Woodside parkrun15721:59 All -  
Chipping Norton School parkrun1455100:26:40 +
Hereford parkrun1535323:07 All -  
Worthing parkrun18900:18:44 +
Chasewater parkrun18210026:19 All -  
Harrow Lodge parkrun11100:18:48 +
South Norwood parkrun1121221:11 All -  
Bradford parkrun1313600:21:55 +
Panshanger parkrun17720:14 All -  
Bury Field parkrun1669000:33:07 +
Wolverhampton parkrun1556624:54 All -  
Pocket parkrun1222300:21:38 +
Harcourt Hill parkrun1171721:13 All -  
Longrun Meadow parkrun111416500:32:01 +
Tetbury Goods Shed parkrun1253024:25 All -  
Worcester Pitchcroft parkrun111814300:27:04 +
Gloucester North parkrun1101022:14 All -  
Highwoods parkrun1252600:24:49 +
Harlow parkrun1151523:00 All -  
Maidenhead parkrun17700:18:49 +
Alvaston parkrun1515922:24 All -  
Soham Village College parkrun1253200:28:03 +
Worcester Pitchcroft parkrun111814327:04 All -  
Rickmansworth parkrun1242700:21:39 +
Perry Hall parkrun1464924:58 All -  
Swaffham parkrun191000:22:19 +
Newport parkrun11117:29 All -  
Brentwood parkrun17700:22:28 +
Tring parkrun1171823:38 All -  
Lymington Woodside parkrun15700:21:59 +
Severn Valley Country parkrun1141626:13 All -  
Loch Neaton parkrun, Watton1171700:25:49 +
Wanstead Flats parkrun13317:13 All -  
Daventry parkrun1151500:21:10 +
Daventry parkrun1151521:10 All -  
Hatfield Forest parkrun1181800:20:36 +
St Mary’s parkrun1587429:14 All -  
Kingsway parkrun, Gloucester1192000:21:20 +
Poole parkrun14416:57 All -  
Salcey Forest parkrun1384300:24:53 +
Melton Mowbray parkrun1192222:38 All -  
parkrun des Dougnes, Cubnezais12200:19:42 +
The Old Showfield parkrun1636923:30 All -  
Prospect parkrun1232300:22:42 +
Henley-on-Thames parkrun1111122:25 All -  
Weymouth parkrun1141400:20:45 +
Crissy Field parkrun1101220:40 All -  
Westmill parkrun1101000:22:55 +
Babbs Mill parkrun1405128:00 All -  
East Brighton parkrun1182100:23:56 +
Maidenhead parkrun17718:49 All -  
Harlow parkrun1151500:23:00 +
Ross-on-Wye parkrun1172124:22 All -  
Linford Wood parkrun1222200:21:45 +
Kettering parkrun1232622:50 All -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Stratford Park parkrun, Stroud1566527:51 All -  
Lydney parkrun1202100:23:19 +
Bury St Edmunds parkrun13318:17 All -  
Braunstone parkrun1262700:20:41 +
Mallards Pike parkrun1324630:57 All -  
Harleston Magpies parkrun1293500:25:12 +
Market Harborough parkrun1303121:17 All -  
Clapham Common parkrun1404200:20:22 +
Cassiobury parkrun1111120:14 All -  
Market Bosworth Country Park parkrun110614400:35:35 +
Squerryes Winery parkrun1323627:45 All -  
Jersey Farm parkrun1252700:23:11 +
Walsall Arboretum parkrun19010625:31 All -  
Kesgrave parkrun1374000:21:18 +
Penrose parkrun1151619:40 All -  
Stevenage parkrun17700:19:32 +
King George V Playing Field parkrun, Cheltenham1232826:08 All -  
Hadleigh parkrun, Essex1252600:24:27 +
Evesham parkrun1111121:39 All -  
Squerryes Winery parkrun1323600:27:45 +
Warwick Racecourse parkrun1486024:55 All -  
Rutland Water parkrun1293000:22:44 +
Huddersfield parkrun1626722:02 All -  
Beckenham Place parkrun1121200:20:28 +
Clevedon Salthouse Fields parkrun1384925:13 All -  
Sutcliffe parkrun113117200:30:34 +
Long Eaton parkrun19912124:06 All -  
Haverhill parkrun1121300:23:32 +
Barry Island parkrun1394223:51 All -  
Leavesden Country parkrun1506900:28:32 +
Ifield Mill Pond parkrun1373824:33 All -  
Coldham’s Common parkrun1535900:23:04 +
Upton House parkrun1252722:34 All -  
Chichester parkrun13300:19:05 +
Lullingstone parkrun17721:21 All -  
Billericay parkrun1121300:21:20 +
The Leas parkrun, Minster1252524:37 All -  
Bromley parkrun13300:17:18 +
Medina I.O.W. parkrun11117:20 All -  
Babbs Mill parkrun1405100:28:00 +
Uditore parkrun13320:28 All -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Hunstanton Promenade parkrun1283523:45 All -  
Bryn Bach parkrun11100:16:50 +
Raphael parkrun13319:35 All -  
York parkrun12200:17:12 +
Burnham and Highbridge parkrun17510027:51 All -  
Storeys Field parkrun115121100:28:49 +
Salcey Forest parkrun1384324:53 All -  
Chipping Sodbury parkrun1303200:21:20 +
Ferry Meadows parkrun15517:27 All -  
Mote Park parkrun19712200:31:28 +
Barclay parkrun15623:13 All -  
Watermeadows parkrun1283100:24:57 +
Irchester Country parkrun1586225:13 All -  
Woking parkrun18800:18:19 +
Maldon Prom parkrun11118:04 All -  
Raphael parkrun13300:19:35 +
Salisbury parkrun1111119:34 All -  
Harwich parkrun191000:21:22 +
Tremorfa parkrun1272923:30 All -  
Fritton Lake parkrun11100:18:26 +
Billericay parkrun1121321:20 All -  
Heartwood Forest parkrun1252700:21:41 +
Gedling parkrun1273224:59 All -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Oaklands parkrun111820336:10 All -  
Bedworth parkrun1171700:22:14 +
Winchester parkrun14518:28 All -  
Clair parkrun13300:18:36 +
Aldenham parkrun1141421:37 All -  
Brueton parkrun1475000:21:33 +
East Park parkrun1121424:18 All -  
Higginson parkrun, Marlow1272900:22:17 +
Soham Village College parkrun1253228:03 All -  
Bognor Regis parkrun12200:18:12 +
Stevenage parkrun17719:32 All -  
Huddersfield parkrun1626700:22:02 +
Tewkesbury parkrun1111422:50 All -  
Heaton parkrun13300:18:08 +
Seven Fields parkrun1475526:28 All -  
Chasewater parkrun18210000:26:19 +
Conkers parkrun12217:46 All -  
Tewkesbury parkrun1111400:22:50 +
Lee-on-the-Solent parkrun17719:40 All -  
Marple parkrun11100:17:15 +
Brixworth Country parkrun1496126:53 All -  
Cannock Chase parkrun1384400:25:49 +
Abingdon parkrun15518:03 All -  
Edgbaston Reservoir parkrun1658600:26:24 +
Lowestoft parkrun1232621:10 All -  
Cirencester parkrun1222400:22:40 +
Chipping Norton School parkrun1455126:40 All -  
Kingsbury Water parkrun1394700:25:05 +
Linford Wood parkrun1222221:45 All -  
Peacehaven parkrun17700:21:07 +
Harwich parkrun191021:22 All -  
Lancing Beach Green parkrun1141400:21:08 +
Fulbourn Hospital parkrun1344724:59 All -  
Springburn parkrun, Glasgow13300:18:05 +
Gunpowder parkrun12217:34 All -  
Market Harborough parkrun1303100:21:17 +
Dartford Heath parkrun1171722:06 All -  
Amager Fælled parkrun1333700:24:23 +
Sandhurst Memorial parkrun1537328:54 All -  
Hanworth parkrun1364000:24:26 +
Woodhouse Moor parkrun11117:22 All -  
Salisbury parkrun1111100:19:34 +
Sandwell Valley parkrun1455930:43 All -  
Houghton Hall parkrun1131300:21:48 +
Wyre Forest parkrun1434825:56 All -  
Chalkwell Beach parkrun1819600:24:40 +
parkrun Zalew Żyrardowski16724:38 All -  
Melksham parkrun1171700:24:31 +
Bramhall parkrun115924735:16 All -  
Thetford parkrun1161700:21:45 +
Hatfield Forest parkrun1181820:36 All -  
Pontefract parkrun1718700:24:10 +
Swansea Bay parkrun1748323:44 All -  
Downham Market Academy parkrun1121300:24:35 +
Wollaton Hall parkrun1889723:51 All -  
Fountains Abbey parkrun11100:18:03 +
Horsham parkrun14518:16 All -  
Cardiff parkrun111011700:22:02 +
Jersey parkrun16619:41 All -  
Littlehampton Prom parkrun1384300:24:22 +
Berkeley Green parkrun1233128:31 All -  
Uditore parkrun13300:20:28 +
Cardiff parkrun111011722:02 All -  
Beacon parkrun1587300:26:41 +
Ally Pally parkrun11118:09 All -  
parkrun de Rouen15500:21:41 +
Thurrock parkrun, Orsett Heath16620:41 All -  
Walthamstow parkrun11100:17:48 +
Beacon parkrun1587326:41 All -  
Shepton Mallet parkrun1121400:21:50 +
Albert parkrun, Middlesbrough1515423:17 All -  
Marine Parade parkrun17711100:29:24 +
Sherwood Pines parkrun1161821:33 All -  
Foots Cray Meadows parkrun1212300:23:17 +
Wickford Memorial parkrun1436651:15 All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Thornbury parkrun1323428:19 All -  
Evesham parkrun1111100:21:39 +
Malling parkrun18314547:25 All -  
Southwick Country parkrun1272900:21:47 +
Itchen Valley Country parkrun1476127:37 All -  
Lydiard parkrun18800:18:25 +
Pollok parkrun, Glasgow11117:00 All -  
Sandhurst Memorial parkrun1537300:28:54 +
Eastville parkrun120525325:12 All -  
Bicester parkrun14400:20:13 +
Rutland Water parkrun1293022:44 All -  
Wimpole Estate parkrun1202100:22:14 +
Chalkwell Beach parkrun1819624:40 All -  
Markshall Estate parkrun110315600:32:26 +
Amager Fælled parkrun1333724:23 All -  
Dinton Pastures parkrun1131300:21:23 +
Hoblingwell parkrun1202423:52 All -  
Tonbridge parkrun14400:18:40 +
Belton House parkrun1141523:48 All -  
Wanstead Flats parkrun13300:17:13 +
Kagerzoom parkrun1435824:39 All -  
Woodhouse Moor parkrun11100:17:22 +
Gorleston Cliffs parkrun12217:43 All -  
Mountbatten School parkrun1323400:24:11 +
King’s Lynn parkrun1151520:07 All -  
Eastville parkrun120525300:25:12 +
Holkham parkrun1506925:37 All -  
Brixworth Country parkrun1496100:26:53 +
Horspath parkrun17410628:12 All -  
Portsmouth Lakeside parkrun19900:19:12 +
Southwick Country parkrun1272921:47 All -  
Milton Country parkrun13300:17:43 +
Rushmere parkrun1131422:39 All -  
Swanley parkrun19712500:31:18 +
Zuiderpark parkrun, Den Haag1738124:07 All -  
Springhill parkrun14400:22:18 +
Heaton parkrun13318:08 All -  
Gloucester North parkrun1101000:22:14 +
Colney Lane parkrun1495524:01 All -  
Feltham parkrun13400:24:56 +
Leicester Victoria parkrun19711626:45 All -  
Crissy Field parkrun1101200:20:40 +
Church Mead parkrun16610232:53 All -  
Ally Pally parkrun11100:18:09 +
Southend parkrun11116:28 All -  
Ashton Court parkrun1859500:22:59 +
Lydney parkrun1202123:19 All -  
Oaklands parkrun111820300:36:10 +
Edgbaston Reservoir parkrun1658626:24 All -  
Sittingbourne parkrun18800:20:56 +
Reading parkrun12217:18 All -  
Moors Valley parkrun19900:19:40 +
March parkrun15521:11 All -  
Catford parkrun1303300:22:32 +
Woodgate Valley Country Park parkrun16513245:50 All -  
Clare Castle parkrun1252700:23:04 +
Maaraue parkrun1232522:34 All -  
Harrogate parkrun13300:18:11 +
Stonehouse parkrun1131320:09 All -  
Seaford Beach parkrun1535600:22:25 +
Rheinpark parkrun1151825:30 All -  
Tring parkrun1171800:23:38 +
Edinburgh parkrun12217:00 All -  
Sandwell Valley parkrun1455900:30:43 +
Chippenham parkrun1212120:08 All -  
Basildon parkrun15500:18:13 +
Stratford-upon-Avon parkrun1202521:14 All -  
The Leas parkrun, Minster1252500:24:37 +
Henlow Bridge Lakes parkrun17511532:34 All -  
Little Stoke parkrun11100:17:03 +
Bromley parkrun13317:18 All -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Houghton Hall parkrun1131321:48 All -  
Felixstowe parkrun1121200:21:07 +
Sittingbourne parkrun18820:56 All -  
Yeovil Montacute parkrun1707500:25:51 +
Sharpham Road Playing Fields parkrun1253124:41 All -  
Stockley Country parkrun111917900:35:32 +
Gadebridge parkrun1141422:22 All -  
Woolacombe Dunes parkrun19410900:31:20 +
Chilton Fields parkrun1405428:26 All -  
Harcourt Hill parkrun1171700:21:13 +
Storeys Field parkrun115121128:49 All -  
Abingdon parkrun15500:18:03 +
Hadleigh parkrun, Essex1252624:27 All -  
Eastbourne parkrun12200:17:24 +
Marple parkrun11117:15 All -  
Warwick Racecourse parkrun1486000:24:55 +
Portsmouth Lakeside parkrun19919:12 All -  
Leicester Victoria parkrun19711600:26:45 +
Grove Fields parkrun1578528:03 All -  
Broadwater parkrun110321300:35:19 +
Banbury parkrun1222321:16 All -  
Clacton Seafront parkrun19900:20:35 +
Graves parkrun11118:18 All -  
Burnham-on-Crouch parkrun18800:22:01 +
Watermead Country Park parkrun110818235:52 All -  
Ganger Farm parkrun19811400:26:34 +
Eastbourne parkrun12217:24 All -  
Folkestone parkrun1212500:21:48 +
Malahide parkrun11116:54 All -  
Mallards Pike parkrun1324600:30:57 +
Fareham parkrun16619:21 All -  
Malling parkrun18314500:47:25 +
Sutcliffe parkrun113117230:34 All -  
Rugby parkrun1181800:22:26 +
Fritton Lake parkrun11118:26 All -  
Watermead Country Park parkrun110818200:35:52 +
Bicester parkrun14420:13 All -  
Hogmoor Inclosure parkrun1262600:25:26 +
Sandringham parkrun1466330:18 All -  
East Grinstead parkrun1131400:23:10 +
Luton Wardown parkrun191019:36 All -  
Mildenhall Hub parkrun1273100:24:33 +
Cwmbran parkrun1171723:29 All -  
Marlborough Common parkrun1202100:22:48 +
Broadwater parkrun110321335:19 All -  
Blandford parkrun18900:20:11 +
Basildon parkrun15518:13 All -  
Maldon Prom parkrun11100:18:04 +
Marecchia parkrun11119:50 All -  
Edinburgh parkrun12200:17:00 +
Harleston Magpies parkrun1293525:12 All -  
The Old Showfield parkrun1636900:23:30 +
Kingsway parkrun, Gloucester1192021:20 All -  
Jersey parkrun16600:19:41 +
Bryn Bach parkrun11116:50 All -  
Chilton Fields parkrun1405400:28:26 +
Mersea Island parkrun1121220:59 All -  
Sixfields Upton parkrun18800:19:58 +
Charlton parkrun18213032:05 All -  
Pegwell Bay parkrun12200:17:40 +
parkrun de Rouen15521:41 All -  
Valentines parkrun11100:16:49 +
Dallas Burston Polo Club parkrun19614732:26 All -  
Edenbrook Country parkrun110514800:28:01 +
Ashton Court parkrun1859522:59 All -  
Henstridge Airfield parkrun18800:21:41 +
Tøyen parkrun1668526:32 All -  
Great Notley parkrun16600:20:16 +
The Great Field parkrun19313529:12 All -  
Medina I.O.W. parkrun11100:17:20 +
Castle Park parkrun1394122:34 All -  
Reading parkrun12200:17:18 +
Swanley parkrun19712531:18 All -  
Tetbury Goods Shed parkrun1253000:24:25 +
Greenwich parkrun12218:07 All -  
Lowestoft parkrun1232600:21:10 +
Neckarau parkrun1243027:11 All -  
Malahide parkrun11100:16:54 +
Bury Field parkrun1669033:07 All -  
Oxford parkrun11100:17:18 +
Clifton parkrun1101025:14 All -  
Rheinpark parkrun1151800:25:30 +
Alton Water parkrun1538335:09 All -  
Gloucester City parkrun1171900:22:35 +
Colwick parkrun18819:46 All -  
Didcot parkrun1101100:21:28 +
Melksham parkrun1171724:31 All -  
Mansfield parkrun11100:17:09 +
Markshall Estate parkrun110315632:26 All -  
7851100:16:25 +
Rogiet parkrun1151624:27 + All +
Bartley Park parkrun18415132:38 + All +
Lydiard parkrun18818:25 + All +
Little Stoke parkrun11117:03 + All +
Letchworth parkrun1141423:13 + All +
Belvoir Castle parkrun1131925:42 + All +
Andover parkrun11117:33 + All +
Rushcliffe parkrun1617323:54 + All +
Cirencester parkrun1222422:40 + All +
Southall parkrun1557531:38 + All +
Forest of Dean parkrun1182224:51 + All +
parkrun des Dougnes, Cubnezais12219:42 + All +
South Woodham Ferrers parkrun18821:14 + All +
Marine Parade parkrun17711129:24 + All +
Coventry parkrun1292920:51 + All +
Wotton parkrun1182124:45 + All +
Gloucester City parkrun1171922:35 + All +
Great Salterns parkrun19212430:27 + All +
Bedworth parkrun1171722:14 + All +
University Parks parkrun119032631:42 + All +
Hampstead Heath parkrun11117:45 + All +
Great Denham parkrun16619:27 + All +
Downham Market Academy parkrun1121324:35 + All +
Ipswich parkrun11117:34 + All +
Sixfields Upton parkrun18819:58 + All +
Rendlesham Forest parkrun1264637:01 + All +
8671116:25 All  


Volunteer Summary

RoleOccasions
- Run Director - 94
- Timekeeper - 59
- Token Sorting - 3
- Results Processor - 87
- Photographer - 6
- Communications Person - 10
- Marshal - 39
- Pre-event Setup - 130
- Equipment Storage and Delivery - 128
- Other - 23
- Barcode Scanning - 55
- Post-event Close Down - 45
- Finish Tokens - 15
- Number Checker - 2
- First Timers Welcome - 68
- Funnel Manager - 15
- Finish Token Support - 9
- Tail Walker - 29
- Volunteer Co-ordinator - 146
- Report Writer - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Car Park Marshal - 1
- Event Day Course Check - 8
- parkwalker - 9
Total Credits396

+ Run Director +

99
+ Timekeeper + 94
+ Token Sorting + 12
+ Results Processor + 87
+ Photographer + 6
+ Communications Person + 10
+ Marshal + 54
+ Pre-event Setup + 148
+ Equipment Storage and Delivery + 130
+ Other + 26
+ Barcode Scanning + 78
+ Post-event Close Down + 51
+ Finish Tokens + 21
+ Number Checker + 2
+ First Timers Welcome + 82
+ Funnel Manager + 15
+ Finish Token Support + 12
+ Tail Walker + 29
+ Volunteer Co-ordinator + 148
+ Report Writer + 100
+ Backup Timer + 3
+ Warm Up Leader + 16
+ Car Park Marshal + 1
+ Event Day Course Check + 14
+ parkwalker + 10
Total Credits499

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1026,50 +1139,32 @@

Danny NORMAN (A482)
- Locations: 41 -
-
- Finishers: 91,697 + Locations: 52
- Finishes: 1,006,752 + Finishers: 130006
- All-time events: 9,678 + Finishes: 1477384
- Volunteers: 11,273 + All-time events: 13134
- PBs: 146,098 + Volunteers: 15281
- Average finish time: 00:31:28 + PBs: 209409
- Average finishes per participant: 11 + Average finish time: 00:31:59
- Groups: 2,264 + Groups: 2705
-

-
- Female record: - Katrina ANDRW – 16:32 - (14 May 2022) -
-
- Male record: - Luke SCOTT – 14:26 - (26 Jun 2021) -
-
- Age graded record: - Colin THORNE - 117.61% 51:12 - (21 Jan 2023) -
+
- Stats last updated: Fri 14 Apr 2023 00:40:27 UTC + Stats last updated: Mon 30 Sep 2024 00:40:25 UTC
@@ -1082,28 +1177,32 @@

Danny NORMAN (A482) - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1137,8 +1246,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/88720/all/index.html index 5c320ddc..1530f945 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + results | parkrun New Zealand @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -123,631 +110,729 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM55-59 + Most recent age category was VM60-64

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time21:4025:2552:00
Age Grading69.71%60.41%29.55%
Overall Position648.88374

+
FastestAverage
(mean)
Slowest
Time21:3625:2654:59
Age Grading72.99%60.80%28.92%
Overall Position648.44374

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Halifax08/04/20233313225:0063.07% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08%   -
Fulham Palace01/04/202339110924:0965.29% +
Hyndburn27/04/20242593125:5161.51%   -
Halifax25/03/20233291624:4363.79% +
Zuiderpark20/04/20241261722:0372.11%   -
Halifax18/03/20233282326:4758.87% +
Halifax13/04/20243813524:3764.59%   -
Halifax04/03/20233273825:1962.28% +
Conyngham Hall30/03/20241773824:5563.81%   -
Myrtle25/02/20231593824:5263.40% +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% PB   -
Halifax18/02/20233252926:0360.52% +
Conwy18/11/20233764424:5363.90%   -
Halifax11/02/20233243124:0365.56% +
Penistone28/10/20231393724:2065.34%   -
Bradford04/02/20235795022:3769.71% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Bowling Park28/01/202379924:1165.20% +
Halifax16/09/20233532123:4367.04%   -
Bramley21/01/20233004925:3461.67% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax14/01/20233213325:5260.95% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Halifax07/01/20233203026:2659.65% +
Glossop12/08/20233152824:2564.57%   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax05/08/20233473024:4363.79%   -
Nostell31/12/20223614325:0063.07% +
Huddersfield29/07/20235456722:4769.20%   -
Halifax24/12/20223173125:4661.19% +
Brighouse15/07/20232544223:5366.02% + PB +   -
Rothay Park03/12/2022732724:4863.58% +
Stratford Park, Stroud01/07/20231253126:2959.53%   -
Temple Newsam26/11/20224172925:1462.48% +
Wetherby24/06/20233094124:4663.66% +   +
Halifax10/06/20233402524:0265.60% +   +
Halifax03/06/20233392124:1365.11% +   +
Long Eaton20/05/20233306921:3672.99% +   +
Halifax06/05/20233352423:4566.39% +   +
Keswick29/04/20233904121:3672.99% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax22/04/20233334725:0262.98%   -
Brighouse12/11/20222213725:1762.36% +
Halifax08/04/20233313225:0063.07%   -
Halifax05/11/20223122424:5163.45% +
Fulham Palace01/04/202339110924:0965.29%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax25/03/20233291624:4363.79%   -
Halifax15/10/202230910749:5431.60% +
Halifax18/03/20233282326:4758.87%   -
Crosby08/10/20222833525:3861.51% +
Halifax04/03/20233273825:1962.28%   -
Alness01/10/20221801024:0965.29% +
Myrtle25/02/20231593824:5263.40% + PB +   -
Victoria24/09/20223736722:5468.85% +
Halifax18/02/20233252926:0360.52%   -
Halifax17/09/20223052625:0063.07% +
Halifax11/02/20233243124:0365.56%   -
Centre Vale10/09/20221034428:4454.87% +
Lister Park, Bradford04/02/20235795022:3769.71%   -
Halifax03/09/20223033125:3361.71% +
Bowling Park28/01/202379924:1165.20%   -
Skipton27/08/20224035325:3561.11% +
Bramley21/01/20233004925:3461.67%   -
Halifax20/08/20223012824:5262.87% +
Halifax14/01/20233213325:5260.95%   -
Halifax06/08/20222996426:0360.01% +
Halifax07/01/20233203026:2659.65%   -
Armley30/07/20221432724:2863.90% +
Chevin Forest01/01/2023703026:4758.87%   -
Halifax16/07/20222962524:2663.98% +
Nostell31/12/20223614325:0063.07%   -
Halifax02/07/20222942524:4863.04% +
Halifax24/12/20223173125:4661.19%   -
Halifax18/06/20222922424:5462.78% +
Rothay Park03/12/2022732724:4863.58%   -
The Pastures11/06/2022991826:2159.33% +
Temple Newsam26/11/20224172925:1462.48% + PB + +   +
Conkers19/11/20225485624:1465.06% +   +
Brighouse12/11/20222213725:1762.36% +   +
Halifax05/11/20223122424:5163.45% +   +
Oakwell Hall22/10/20222974026:1060.25% +   +
Halifax15/10/202230910749:5431.60% +   +
Crosby08/10/20222833525:3861.51% +   +
Alness01/10/20221801024:0965.29% +   +
Victoria24/09/20223736722:5468.85% +   +
Halifax17/09/20223052625:0063.07% +   +
Centre Vale10/09/20221034428:4454.87% +   +
Halifax03/09/20223033125:3361.71% +   +
Skipton27/08/20224035325:3561.11% +   +
Halifax20/08/20223012824:5262.87% +   +
Halifax06/08/20222996426:0360.01% +   +
Armley30/07/20221432724:2863.90% +   +
Halifax16/07/20222962524:2663.98%   -
Halifax04/06/20222913826:4858.33% +
Halifax02/07/20222942524:4863.04%   -
Horton Park28/05/20222942225:1262.04% +
Halifax18/06/20222922424:5462.78%   -
Bushy Park21/05/202287737424:0664.87% +
The Pastures11/06/2022991826:2159.33%   -
Halifax07/05/20222877529:3552.85% +
Halifax04/06/20222913826:4858.33%   -
Harrogate30/04/202246716226:4458.48% +
Horton Park28/05/20222942225:1262.04%   -
Halifax23/04/20222854927:0057.90% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax09/04/20222834526:3758.74% +
Halifax07/05/20222877529:3552.85%   -
Halifax02/04/20222822924:4463.21% +
Harrogate30/04/202246716226:4458.48%   -
Pendle26/03/20223443126:1659.52% +
Halifax23/04/20222854927:0057.90%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax09/04/20222834526:3758.74%   -
Halifax05/03/20222784925:3761.03% +
Halifax02/04/20222822924:4463.21%   -
Middleton Woods26/02/20221221424:5562.74% +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -778,50 +863,32 @@

Phillip WHETTLOCK (A8
- Locations: 41 -
-
- Finishers: 92,220 + Locations: 52
- Finishes: 1,012,394 + Finishers: 130006
- All-time events: 9,719 + Finishes: 1477384
- Volunteers: 11,314 + All-time events: 13134
- PBs: 146,860 + Volunteers: 15281
- Average finish time: 00:31:28 + PBs: 209409
- Average finishes per participant: 11 + Average finish time: 00:31:59
- Groups: 2,270 + Groups: 2705
-
-
- Female record: - Katrina ANDRW – 16:32 - (14 May 2022) -
-
- Male record: - Luke SCOTT – 14:26 - (26 Jun 2021) -
-
- Age graded record: - Colin THORNE - 117.61% 51:12 - (21 Jan 2023) -
+
- Stats last updated: Mon 17 Apr 2023 00:40:41 UTC + Stats last updated: Mon 30 Sep 2024 00:40:25 UTC
@@ -834,28 +901,32 @@

Phillip WHETTLOCK (A8 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -889,8 +970,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/88720/index.html index 778feaa7..76b8f836 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + results | parkrun New Zealand @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -113,195 +100,251 @@
- + - - +

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns total

+ + Member of the Volunteer 250 club +

345 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM55-59 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bradford parkrun1166600:21:40 + Most recent age category was VM60-64 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Halifax parkrun1268822:13 + All +
Lister Park parkrun, Bradford1166621:40 + All +
Horton Park parkrun9131322:18 + All +
Keswick parkrun4253321:36 + All +
Sewerby parkrun3121222:08 + All +
Pontefract parkrun2273222:08 + All +
Brighouse parkrun2333723:53 + All +
Temple Newsam parkrun2272925:14 + All +
Fountains Abbey parkrun2394822:26 + All +
Oakwell Hall parkrun2293626:10 + All +
Whinlatter Forest parkrun2283227:23 + All +
Bramley parkrun2252524:06 + All +
Middleton Woods parkrun2121424:55 + All +
Myrtle parkrun2333824:52 + All +
Centre Vale parkrun2303626:37 + All +
Bushy parkrun130137424:06 + All +
Woodhouse Moor parkrun1778222:18 + All +
Pollok parkrun, Glasgow1667223:58 + All +
Edinburgh parkrun1646721:54 + All +
Wakefield Thornes parkrun1545824:29 + All +
Hyndburn parkrun1253125:51 All - Graph It!
Halifax parkrun1148800:22:13 +
York parkrun111413522:55 All - Graph It!
Horton Park parkrun9131300:22:18 +
Milton Country parkrun1707522:40 All - Graph It!
Sewerby parkrun3121200:22:08 +
Carlisle parkrun1567126:05 All - Graph It!
Keswick parkrun3253300:23:33 +
Harrogate parkrun112316226:44 All - Graph It!
Pontefract parkrun2273200:22:08 +
Southport parkrun1545723:57 All - Graph It!
Temple Newsam parkrun2272900:25:14 +
Barnsley parkrun1414325:05 All - Graph It!
Myrtle parkrun2333800:24:52 +
Rothwell parkrun1535724:20 All - Graph It!
Middleton Woods parkrun2121400:24:55 +
Huddersfield parkrun1596722:47 All - Graph It!
Bramley parkrun2252500:24:06 +
Long Eaton parkrun1556921:36 All - Graph It!
Druridge Bay parkrun1354200:23:35 +
Wycombe Rye parkrun1232622:35 All -  
Fountains Abbey parkrun1394800:22:26 +
Conkers parkrun1525624:14 All -  
Victoria parkrun, Glasgow1546700:22:54 +
Roundhay parkrun112815726:55 All -  
Clumber Park parkrun1101100:21:46 +
Hanley parkrun16622:03 All -  
Rothay Park parkrun1202700:24:48 +
Worsley Woods parkrun1728824:46 All -  
Warwick Racecourse parkrun1638200:24:06 +
Burnley parkrun1545725:21 All -  
Conkers parkrun1525600:24:14 +
Dewsbury parkrun18610128:15 All -  
The Pastures parkrun1161800:26:21 +
Cross Flatts parkrun1303724:16 All -  
Harrogate parkrun112316200:26:44 +
Clumber Park parkrun1101121:46 All -  
Dishley parkrun, Loughborough1535700:24:25 +
Skipton parkrun1505325:35 All -  
Dalby Forest parkrun1283200:23:06 +
Flatts Lane parkrun1171826:53 All -  
Woodhouse Moor parkrun1778200:22:18 +
Victoria parkrun, Glasgow1546722:54 All -  
Whinlatter Forest parkrun1283200:27:23 +
Alness parkrun171024:09 All -  
Watergrove parkrun, Rochdale1111200:27:57 +
Fulham Palace parkrun18610924:09 All -  
Springburn parkrun, Glasgow1161600:23:14 +
Springburn parkrun, Glasgow1161623:14 All -  
Fulham Palace parkrun18610900:24:09 +
Druridge Bay parkrun1354223:35 All -  
Flatts Lane parkrun1171800:26:53 +
Pendle parkrun1263126:16 All -  
Roberts Park parkrun1657500:24:54 +
Watergrove parkrun, Rochdale1111227:57 All -  
Bowling Park parkrun18900:24:11 +
Wetherby parkrun1374124:46 All -  
Hanley parkrun16600:22:03 +
Portobello parkrun, Edinburgh1668024:16 All -  
Centre Vale parkrun1304400:28:44 +
Nostell parkrun1374325:00 All -  
Wycombe Rye parkrun1232600:22:35 +
Fell Foot parkrun, Newby Bridge1161722:57 All -  
Carlisle parkrun1567100:26:05 +
Conwy parkrun1394424:53 All -  
Armley parkrun1262700:24:28 +
Glossop parkrun1242824:25 All -  
Crosby parkrun1293500:25:38 +
Crosby parkrun1293525:38 All -  
Edinburgh parkrun1646700:21:54 +
Dolgellau parkrun1459954:59 All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Dalby Forest parkrun1283223:06 All -  
Bushy parkrun130137400:24:06 +
Clitheroe Castle parkrun1192525:41 All -  
Oakwell Hall parkrun1344000:26:10 +
Armley parkrun1262724:28 All -  
Pendle parkrun1263100:26:16 +
Dishley parkrun, Loughborough1535724:25 All -  
Alness parkrun171000:24:09 +
Ford parkrun1202525:00 All -  
Skipton parkrun1505300:25:35 +
Cliffe Castle parkrun1151725:18 All -  
Chevin Forest parkrun1213000:26:47 +
Potternewton parkrun1293625:04 All -  
Burnley parkrun1545700:25:21 +
Isabel Trail parkrun1293422:02 All -  
Queen’s parkrun, Glasgow1677900:25:29 +
The Pastures parkrun1161826:21 All -  
Roundhay parkrun112815700:26:55 +
Storthes Hall parkrun1263026:20 All -  
Storthes Hall parkrun1263000:26:20 +
Hafan Pwllheli parkrun1212726:48 All -  
Southport parkrun1545700:23:57 +
Penistone parkrun1343724:20 All -  
Cliffe Castle parkrun1151700:25:18 +
Conyngham Hall parkrun1363824:55 All -  
Brighouse parkrun1333700:25:17 +
Stratford Park parkrun, Stroud1303126:29 All -  
Milton Country parkrun1707500:22:40 +
Warwick Racecourse parkrun1638224:06 All -  
Pollok parkrun, Glasgow1667200:23:58 +
University of Stirling parkrun1343723:52 All -  
Nostell parkrun1384300:25:00 +
Jubilee parkrun1121926:42 All -  
Portobello parkrun, Edinburgh1668000:24:16 +
Queen’s parkrun, Glasgow1677925:29 All -  
2996600:21:40 +
Bowling Park parkrun18924:11 + All +
Rothay Park parkrun1202724:48 + All +
Zuiderpark parkrun, Den Haag1151722:03 + All +
Carlisle Park parkrun, Morpeth1293325:44 + All +
Chevin Forest parkrun1213026:47 + All +
Roberts Park parkrun1657524:54 + All +
Beacon Hill Country Park parkrun1192325:36 + All +
Thames Path parkrun, Woolwich1586323:49 + All +
3456621:36 All  


Volunteer Summary

RoleOccasions
- Run Director - 32
- Timekeeper - 17
- Token Sorting - 5
- Results Processor - 1
- Photographer - 1
- Communications Person - 5
- Marshal - 35
- Pre-event Setup - 28
- Equipment Storage and Delivery - 5
- Other - 1
- Barcode Scanning - 27
- Post-event Close Down - 24
- Finish Tokens - 11
- Number Checker - 1
- First Timers Welcome - 77
- Funnel Manager - 12
- Finish Token Support - 10
- Tail Walker - 5
- Volunteer Co-ordinator - 10
- Report Writer - 1
- Pacer (5k only) - 5
- Backup Timer - 14
- VI Guide - 1
- Warm Up Leader - 5
- Sign Language Support - 1
- Car Park Marshal - 1
- Event Day Course Check - 25
- parkwalker - 1
Total Credits249

+ Run Director +

33
+ Timekeeper + 28
+ Token Sorting + 5
+ Results Processor + 4
+ Photographer + 1
+ Communications Person + 6
+ Marshal + 35
+ Pre-event Setup + 29
+ Equipment Storage and Delivery + 6
+ Other + 2
+ Barcode Scanning + 46
+ Post-event Close Down + 25
+ Finish Tokens + 16
+ Number Checker + 1
+ First Timers Welcome + 82
+ Funnel Manager + 16
+ Finish Token Support + 16
+ Tail Walker + 15
+ Volunteer Co-ordinator + 11
+ Report Writer + 1
+ Pacer (5k only) + 10
+ Backup Timer + 14
+ VI Guide + 1
+ Warm Up Leader + 15
+ Sign Language Support + 1
+ Car Park Marshal + 1
+ Event Day Course Check + 57
+ parkwalker + 1
Total Credits316

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. -



Freedom parkruns

DateTimeLocation
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here. +



Freedom parkruns

DateTimeLocation
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -330,50 +373,32 @@

Phillip WHETTLOCK (A8
- Locations: 41 + Locations: 52
- Finishers: 92,220 + Finishers: 130006
- Finishes: 1,012,394 + Finishes: 1477384
- All-time events: 9,719 + All-time events: 13134
- Volunteers: 11,314 + Volunteers: 15281
- PBs: 146,860 + PBs: 209409
- Average finish time: 00:31:28 + Average finish time: 00:31:59
- Average finishes per participant: 11 + Groups: 2705
-
- Groups: 2,270 -
-
-
- Female record: - Katrina ANDRW – 16:32 - (14 May 2022) -
-
- Male record: - Luke SCOTT – 14:26 - (26 Jun 2021) -
-
- Age graded record: - Colin THORNE - 117.61% 51:12 - (21 Jan 2023) -
+

- Stats last updated: Mon 17 Apr 2023 00:40:41 UTC + Stats last updated: Mon 30 Sep 2024 00:40:25 UTC
@@ -386,28 +411,32 @@

Phillip WHETTLOCK (A8 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -441,8 +480,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/999999/all/index.html index 5d43fafc..53d25f0a 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + results | parkrun New Zealand @@ -35,15 +37,14 @@ - + - + - @@ -53,7 +54,7 @@
@@ -65,35 +66,26 @@
@@ -108,16 +100,16 @@
- + - - +

Jakub WOLSKI (A999999)

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -149,50 +141,32 @@

Jakub WOLSKI (A999999
- Locations: 41 -
-
- Finishers: 95,413 + Locations: 52
- Finishes: 1,058,680 + Finishers: 130006
- All-time events: 10,122 + Finishes: 1477384
- Volunteers: 11,760 + All-time events: 13134
- PBs: 153,376 + Volunteers: 15281
- Average finish time: 00:31:31 + PBs: 209409
- Average finishes per participant: 11.1 + Average finish time: 00:31:59
- Groups: 2,307 + Groups: 2705
-
-
- Female record: - Katrina ANDRW – 16:32 - (14 May 2022) -
-
- Male record: - Luke SCOTT – 14:26 - (26 Jun 2021) -
-
- Age graded record: - Colin THORNE - 117.61% 51:12 - (21 Jan 2023) -
+

- Stats last updated: Thu 29 Jun 2023 00:40:52 UTC + Stats last updated: Mon 30 Sep 2024 00:40:25 UTC
@@ -205,28 +179,32 @@

Jakub WOLSKI (A999999 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -260,8 +248,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/999999/index.html index fa785c1b..a1743093 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.nz/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + results | parkrun New Zealand @@ -35,15 +37,14 @@ - + - + - @@ -53,7 +54,7 @@
@@ -65,35 +66,26 @@
@@ -108,15 +100,15 @@
- + - - + -

Jakub WOLSKI (A999999)

No results have been recorded yet for this parkrunner.

+

Jakub WOLSKI (A999999)

@@ -145,50 +137,32 @@

Jakub WOLSKI (A999999
- Locations: 41 -
-
- Finishers: 95,413 + Locations: 52
- Finishes: 1,058,680 + Finishers: 130006
- All-time events: 10,122 + Finishes: 1477384
- Volunteers: 11,760 + All-time events: 13134
- PBs: 153,376 + Volunteers: 15281
- Average finish time: 00:31:31 + PBs: 209409
- Average finishes per participant: 11.1 + Average finish time: 00:31:59
- Groups: 2,307 + Groups: 2705
-
-
- Female record: - Katrina ANDRW – 16:32 - (14 May 2022) -
-
- Male record: - Luke SCOTT – 14:26 - (26 Jun 2021) -
-
- Age graded record: - Colin THORNE - 117.61% 51:12 - (21 Jan 2023) -
+

- Stats last updated: Thu 29 Jun 2023 00:40:52 UTC + Stats last updated: Mon 30 Sep 2024 00:40:25 UTC
@@ -201,28 +175,32 @@

Jakub WOLSKI (A999999 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -256,8 +244,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/1309364/all/index.html index e94fa31b..245ddec0 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + results | parkrun South Africa @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -121,543 +108,649 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM35-39 + Most recent age category was VM40-44

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time20:0628:4757:34
Age Grading64.51%47.44%23.54%
Overall Position5165.361021

+
FastestAverage
(mean)
Slowest
Time20:0629:2057:34
Age Grading64.51%46.67%23.54%
Overall Position5182.341021

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60%   -
Whiteley25/03/202321418332:2441.82% +
Whiteley18/11/202324721037:0536.54%   -
Winchester11/03/202342821230:3744.26% +
Whiteley11/11/202324617430:3744.26%   -
Winchester04/03/202342730935:4537.90% +
Winchester21/10/202345731533:5140.03%   -
Winchester25/02/202342632536:0937.48% +
Winchester14/10/202345634233:5439.97%   -
Winchester18/02/202342530336:3137.11% +
Ganger Farm07/10/20234713233:4940.07%   -
Delamere31/12/202242331536:2537.21% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester23/09/202345321928:2247.77%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester16/09/202345235430:3244.38%   -
Winchester26/11/202241229335:3137.87% +
Winchester09/09/202345129229:1146.43%   -
Whiteley12/11/202221016534:2839.02% +
Delamere02/09/202345822633:2840.49%   -
Winchester29/10/202240924429:5544.96% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester22/10/202240833736:0837.22% +
Winchester29/07/202344622227:3649.09%   -
Winchester17/09/202240326230:2944.12% +
Winchester22/07/202344540537:0036.62%   -
Winchester10/09/202240231134:3338.93% +
Whiteley15/07/202322915731:1643.34%   -
Alice Holt03/09/202241817936:3236.82% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester27/08/202240042335:2138.05% +
Winchester17/06/202344128530:4144.16%   -
Winchester13/08/202239823431:3042.70% +
Winchester10/06/202344032435:2138.33%   -
Tidworth30/07/2022615151:4226.02% +
Winchester20/05/202343822427:0949.91%   -
Uckfield23/07/20221006028:4346.84% +
Winchester13/05/202343733232:4341.42%   -
Winchester09/07/202239428633:1640.43% +
Whiteley29/04/202321919635:3138.15%   -
Eastleigh28/05/202254015531:2042.93% +
Winchester22/04/202343431731:1143.45%   -
Winchester21/05/202238930733:2840.19% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Alice Holt14/05/202240216932:0142.01% +
Whiteley25/03/202321418332:2441.82%   -
Winchester07/05/202238734034:1339.31% +
Winchester11/03/202342821230:3744.26%   -
Guildford30/04/202242825130:0144.81% +
Winchester04/03/202342730935:4537.90%   -
Winchester23/04/202238522932:0241.99% +
Winchester25/02/202342632536:0937.48%   -
Winchester16/04/202238431033:2340.29% +
Winchester18/02/202342530336:3137.11%   -
Winchester19/03/202238025033:5439.68% +
Delamere31/12/202242331536:2537.21%   -
Alice Holt01/01/202238524237:4635.61% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester20/11/202136338445:0729.59% +
Winchester26/11/202241229335:3137.87%   -
Winchester09/10/202135739843:0730.96% +
Whiteley12/11/202221016534:2839.02%   -
Winchester25/09/202135538955:0324.25% +
Winchester29/10/202240924429:5544.96%   -
Winchester18/09/202135433938:1234.95% +
Winchester22/10/202240833736:0837.22%   -
Winchester04/09/202135233838:2434.77% +
Winchester17/09/202240326230:2944.12%   -
Winchester28/08/202135139841:0132.55% +
Winchester10/09/202240231134:3338.93%   -
Winchester14/08/202134936055:4623.94% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester31/07/202134832845:2029.45% +
Winchester27/08/202240042335:2138.05%   -
Winchester14/03/202034625851:3825.69% +
Winchester13/08/202239823431:3042.70%   -
Winchester07/03/202034510325:5251.29% +
Tidworth30/07/2022615151:4226.02%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Uckfield23/07/20221006028:4346.84%   -
Newbury22/02/202043434631:1142.54% +
Winchester09/07/202239428633:1640.43%   -
Alice Holt08/02/202036010727:1948.57% +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -688,50 +781,32 @@

Andrew TAYLOR (A13093
- Locations: 195 + Locations: 219
- Finishers: 863,011 + Finishers: 982870
- Finishes: 11,070,230 + Finishes: 13235920
- All-time events: 48,344 + All-time events: 63601
- Volunteers: 49,816 + Volunteers: 59667
- PBs: 1,745,380 + PBs: 2012125
- Average finish time: 00:41:35 + Average finish time: 00:41:54
- Average finishes per participant: 12.8 + Groups: 3068
-
- Groups: 2,823 -
-
-
- Female record: - Jenna CHALLENOR – 16:35 - ( 3 Aug 2013) -
-
- Male record: - Amos NYONGO – 14:02 - ( 2 Jun 2018) -
-
- Age graded record: - Nelson KGOSIMORE - 110.51% 19:30 - (14 May 2022) -
+
- Stats last updated: Fri 14 Apr 2023 00:42:35 UTC + Stats last updated: Mon 30 Sep 2024 00:42:51 UTC
@@ -741,28 +816,29 @@

Andrew TAYLOR (A13093 Discovery - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -796,8 +882,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/1309364/index.html index 07ffd4a7..dcc7f2a8 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + results | parkrun South Africa @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -121,178 +108,188 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club -

245 parkruns total

+

297 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM35-39 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun146121300:20:18 + Most recent age category was VM40-44 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun173121320:18 + All +
Whiteley parkrun1410714629:06 + All +
Delamere parkrun11232321:42 + All +
Eastleigh parkrun6242524:08 All - Graph It!
Delamere parkrun8232300:21:42 +
Southampton parkrun5687021:17 All - Graph It!
Whiteley parkrun610714600:29:06 +
Alice Holt parkrun59010727:19 All - Graph It!
Alice Holt parkrun59010700:27:19 +
Newbury parkrun4829123:49 All - Graph It!
Southampton parkrun5687000:21:17 +
Congleton parkrun49920:06 All - Graph It!
Eastleigh parkrun5242500:24:08 +
Medina I.O.W. parkrun4667525:13 All - Graph It!
Congleton parkrun49900:20:06 +
Fell Foot parkrun, Newby Bridge4212223:48 All - Graph It!
Witton parkrun4303500:25:40 +
Witton parkrun4303525:40 All - Graph It!
Northwich parkrun4485200:24:55 +
Northwich parkrun4485224:55 All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Ganger Farm parkrun38013229:25 All - Graph It!
Andover parkrun2242600:22:24 +
Andover parkrun2242622:24 All - Graph It!
Ganger Farm parkrun29713500:29:25 +
Hanley parkrun2333922:31 All - Graph It!
Hanley parkrun2333900:22:31 +
Burnley parkrun212718929:06 All - Graph It!
Newbury parkrun2829100:23:49 +
Queen Elizabeth parkrun2364026:36 All - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Heaton parkrun133846731:01 All - Graph It!
Hagley parkrun1182000:22:38 +
Guildford parkrun117125130:01 All -  
Ormskirk parkrun120930300:31:04 +
Hyndburn parkrun1425329:55 All -  
Basingstoke parkrun111212900:24:31 +
Phoenix parkrun1232627:31 All -  
Cuerden Valley parkrun1192000:24:47 +
Canterbury parkrun1323627:29 All -  
Seven Fields parkrun1546700:28:28 +
Valentines parkrun1698025:14 All -  
Netley Abbey parkrun1586400:24:21 +
Poole parkrun121328428:59 All -  
Mountbatten School parkrun17110100:31:29 +
Long Eaton parkrun118122928:06 All -  
Clitheroe Castle parkrun1639700:35:46 +
Bolton parkrun116221831:49 All -  
Medina I.O.W. parkrun19513900:30:57 +
Eden Project parkrun111116230:21 All -  
Hogmoor Inclosure parkrun111314000:29:34 +
Abingdon parkrun114220229:14 All -  
Milano Nord parkrun1475300:27:49 +
Netley Abbey parkrun1586424:21 All -  
Jersey parkrun111018500:30:53 +
Hilly Fields parkrun1859925:03 All -  
Canterbury parkrun1323600:27:29 +
Brockenhurst parkrun112718632:41 All -  
Penrhyn parkrun1232600:24:33 +
Wimpole Estate parkrun112916928:07 All -  
Hyndburn parkrun1425300:29:55 +
Clumber Park parkrun112117629:51 All -  
Woking parkrun1485800:24:01 +
Cuerden Valley parkrun1192024:47 All -  
Fountains Abbey parkrun1283000:20:33 +
Hamilton Lake parkrun1151621:47 All -  
Bushy parkrun1681102100:33:01 +
Fountains Abbey parkrun1283020:33 All -  
Clumber Park parkrun112117600:29:51 +
Ormskirk parkrun120930331:04 All -  
Wimpole Estate parkrun112916900:28:07 +
Pendle parkrun1465926:37 All -  
Tidworth parkrun18615100:51:42 +
Woking parkrun1485824:01 All -  
Hilly Fields parkrun1859900:25:03 +
Hagley parkrun1182022:38 All -  
Tawd Valley parkrun18111000:29:25 +
Penrhyn parkrun1232624:33 All -  
Watermeadows parkrun1151500:23:51 +
Salisbury parkrun119326729:45 All -  
Eden Project parkrun111116200:30:21 +
Jersey parkrun111018530:53 All -  
Catford parkrun19512500:27:24 +
Haigh Woodland parkrun18916837:04 All -  
Crewe parkrun112315400:30:05 +
Stretford parkrun127540530:23 All -  
Long Eaton parkrun118122900:28:06 +
Portsmouth Lakeside parkrun1818726:32 All -  
Fareham parkrun19511400:28:52 +
Fareham parkrun19011428:52 All -  
Phoenix parkrun1232600:27:31 +
Milano Nord parkrun1475327:49 All -  
Guildford parkrun117125100:30:01 +
Richmond Olympic parkrun15521:59 All -  
Pendle parkrun1465900:26:37 +
Crewe parkrun112315430:05 All -  
Heaton parkrun133846700:31:01 +
Hogmoor Inclosure parkrun111314029:34 All -  
Hamilton Lake parkrun1151600:21:47 +
Catford parkrun19512527:24 All -  
Brockenhurst parkrun112718600:32:41 +
Clitheroe Castle parkrun1639735:46 All -  
Itchen Valley Country parkrun110713500:29:53 +
Pocket parkrun112419533:47 All -  
Burnley parkrun114120400:29:06 +
Ford parkrun1477432:29 All -  
Uckfield parkrun1416000:28:43 +
Watermeadows parkrun1151523:51 All -  
Abingdon parkrun114220200:29:14 +
Mountbatten School parkrun17110131:29 All -  
Pocket parkrun112419500:33:47 +
Uckfield parkrun1416028:43 All -  
Bolton parkrun116221800:31:49 +
Tawd Valley parkrun18111029:25 All -  
Richmond Olympic parkrun15500:21:59 +
Seven Fields parkrun1546728:28 All -  
Poole parkrun121328400:28:59 +
Itchen Valley Country parkrun110613529:53 All -  
Portsmouth Lakeside parkrun1818700:26:32 +
Bartley Park parkrun1628430:26 All -  
Salisbury parkrun119326700:29:45 +
Tidworth parkrun18615151:42 All -  
2455500:20:06 +
Bushy parkrun1681102133:01 + All +
Basingstoke parkrun111212924:31 + All +
2975520:06 All  


Volunteer Summary

RoleOccasions
- Run Director - 21
- Timekeeper - 2
- Token Sorting - 8
- Results Processor - 6
- Photographer - 4
- Marshal - 4
- Pre-event Setup - 6
- Equipment Storage and Delivery - 2
- Barcode Scanning - 2
- Post-event Close Down - 10
- Finish Tokens - 1
- Number Checker - 2
- First Timers Welcome - 1
- Funnel Manager - 1
- Tail Walker - 4
- Volunteer Co-ordinator - 1
- Report Writer - 10
- Pacer (5k only) - 1
Total Credits58

+ Run Director +

21
+ Timekeeper + 2
+ Token Sorting + 8
+ Results Processor + 6
+ Photographer + 4
+ Marshal + 5
+ Pre-event Setup + 6
+ Equipment Storage and Delivery + 2
+ Barcode Scanning + 3
+ Post-event Close Down + 10
+ Finish Tokens + 1
+ Number Checker + 2
+ First Timers Welcome + 1
+ Funnel Manager + 1
+ Tail Walker + 4
+ Volunteer Co-ordinator + 1
+ Report Writer + 10
+ Pacer (5k only) + 1
Total Credits60

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -322,50 +319,32 @@

Andrew TAYLOR (A13093
- Locations: 195 + Locations: 219
- Finishers: 863,011 + Finishers: 982870
- Finishes: 11,070,230 + Finishes: 13235920
- All-time events: 48,344 + All-time events: 63601
- Volunteers: 49,816 + Volunteers: 59667
- PBs: 1,745,380 + PBs: 2012125
- Average finish time: 00:41:35 + Average finish time: 00:41:54
- Average finishes per participant: 12.8 + Groups: 3068
-
- Groups: 2,823 -
-
-
- Female record: - Jenna CHALLENOR – 16:35 - ( 3 Aug 2013) -
-
- Male record: - Amos NYONGO – 14:02 - ( 2 Jun 2018) -
-
- Age graded record: - Nelson KGOSIMORE - 110.51% 19:30 - (14 May 2022) -
+

- Stats last updated: Fri 14 Apr 2023 00:42:35 UTC + Stats last updated: Mon 30 Sep 2024 00:42:51 UTC
@@ -375,28 +354,29 @@

Andrew TAYLOR (A13093 Discovery - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -430,8 +420,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/2705084/all/index.html index 717218df..e65e914c 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + results | parkrun South Africa @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -121,10 +108,10 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -156,50 +143,32 @@

Duncan BOOTH (A270508
- Locations: 197 -
-
- Finishers: 864,475 + Locations: 219
- Finishes: 11,097,003 + Finishers: 982870
- All-time events: 48,523 + Finishes: 13235920
- Volunteers: 49,945 + All-time events: 63601
- PBs: 1,749,135 + Volunteers: 59667
- Average finish time: 00:41:35 + PBs: 2012125
- Average finishes per participant: 12.8 + Average finish time: 00:41:54
- Groups: 2,824 + Groups: 3068
-
-
- Female record: - Jenna CHALLENOR – 16:35 - ( 3 Aug 2013) -
-
- Male record: - Amos NYONGO – 14:02 - ( 2 Jun 2018) -
-
- Age graded record: - Nelson KGOSIMORE - 110.51% 19:30 - (14 May 2022) -
+
- Stats last updated: Mon 17 Apr 2023 00:43:06 UTC + Stats last updated: Mon 30 Sep 2024 00:42:51 UTC
@@ -209,28 +178,29 @@

Duncan BOOTH (A270508 Discovery - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -264,8 +244,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/2705084/index.html index aff0cb7b..799fde9b 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + results | parkrun South Africa @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -121,18 +108,18 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volunteer Summary

RoleOccasions
- Marshal - 260
- Lead Bike - 130
- Event Day Course Check - 9
Total Credits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Volunteer Summary

RoleOccasions
+ Marshal + 350
+ Lead Bike + 130
+ Event Day Course Check + 82
Total Credits540

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



@@ -162,50 +149,32 @@

Duncan BOOTH (A270508
- Locations: 197 -
-
- Finishers: 864,475 + Locations: 219
- Finishes: 11,097,003 + Finishers: 982870
- All-time events: 48,523 + Finishes: 13235920
- Volunteers: 49,945 + All-time events: 63601
- PBs: 1,749,135 + Volunteers: 59667
- Average finish time: 00:41:35 + PBs: 2012125
- Average finishes per participant: 12.8 + Average finish time: 00:41:54
- Groups: 2,824 + Groups: 3068
-
-
- Female record: - Jenna CHALLENOR – 16:35 - ( 3 Aug 2013) -
-
- Male record: - Amos NYONGO – 14:02 - ( 2 Jun 2018) -
-
- Age graded record: - Nelson KGOSIMORE - 110.51% 19:30 - (14 May 2022) -
+

- Stats last updated: Mon 17 Apr 2023 00:43:06 UTC + Stats last updated: Mon 30 Sep 2024 00:42:51 UTC
@@ -215,28 +184,29 @@

Duncan BOOTH (A270508 Discovery - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -270,8 +250,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/482/all/index.html index 492d57a7..64a64103 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + results | parkrun South Africa @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -126,1650 +113,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM40-44 + Most recent age category was VM45-49

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time16:2521:0459:17
Age Grading79.25%65.45%23.56%
Overall Position134.831692

+
FastestAverage
(mean)
Slowest
Time16:2521:2659:17
Age Grading79.25%64.63%23.56%
Overall Position138.841692

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Harleston Magpies08/04/2023793525:1255.42% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Cannock Chase01/04/20232434425:4954.10% +
Quakers Walk25/11/2023126825:0556.08%   -
Kingston25/03/202360216430:0946.32% +
Aston Hall18/11/202352225:0156.23%   -
Wolford Wood18/03/202352730:2445.94% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Kingston11/03/202360015027:1851.16% +
Belvoir Castle04/11/2023911925:4254.73%   -
Stockley Country04/03/2023817935:3239.31% +
Five Arches28/10/202365422:5861.25%   -
Chasewater25/02/202310010026:1953.07% +
Dover Waterfront21/10/202374525:2255.45%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Rushcliffe14/10/20235087323:5458.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Kingston07/10/202363033150:2927.86%   -
Worcester04/02/202354318529:3047.34% +
Maaraue03/10/20231012522:3462.33%   -
Crane Park28/01/202349014550:3727.59% +
University of Northampton30/09/2023112223:2460.11%   -
Kingston21/01/202359431139:3935.22% +
Clifton23/09/20231911025:1455.75%   -
Brooklands14/01/202313018830:4445.44% +
Wisbech16/09/202351523:0361.03%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Holbrooks09/09/202362223:4359.31%   -
Kingston01/01/202359113340:3134.47% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston31/12/202259026442:4432.68% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Bushy Park25/12/2022909169244:3931.28% +
Riverfront19/08/20232594622:5761.29%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston17/12/202258818059:1723.56% +
Kingston05/08/20236216723:2160.24%   -
Kingston10/12/202258723255:4025.09% +
Kingston29/07/20236208725:0955.93%   -
Beacon03/12/2022737326:4152.34% +
Kingston22/07/20236199224:2457.65%   -
Ganger Farm26/11/2022211426:3452.57% +
Severn Valley Country15/07/20231411626:1353.66%   -
Bushy Park19/11/2022903110553:2326.16% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Leavesden Country12/11/202246928:3248.95% +
Thornham Walks01/07/202353826:5251.99%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Kingston24/06/20236156524:0957.83%   -
Durlston Country Park29/10/2022335032:4542.65% +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1800,50 +1953,32 @@

Danny NORMAN (A482)
- Locations: 195 + Locations: 219
- Finishers: 863,011 + Finishers: 982870
- Finishes: 11,070,230 + Finishes: 13235920
- All-time events: 48,344 + All-time events: 63601
- Volunteers: 49,816 + Volunteers: 59667
- PBs: 1,745,380 + PBs: 2012125
- Average finish time: 00:41:35 + Average finish time: 00:41:54
- Average finishes per participant: 12.8 + Groups: 3068
-
- Groups: 2,823 -
- -
- Female record: - Jenna CHALLENOR – 16:35 - ( 3 Aug 2013) -
-
- Male record: - Amos NYONGO – 14:02 - ( 2 Jun 2018) -
-
- Age graded record: - Nelson KGOSIMORE - 110.51% 19:30 - (14 May 2022) -
+
- Stats last updated: Fri 14 Apr 2023 00:42:35 UTC + Stats last updated: Mon 30 Sep 2024 00:42:51 UTC
@@ -1853,28 +1988,29 @@

Danny NORMAN (A482) - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1908,8 +2054,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/482/index.html index 3a6932a4..1bb62ab8 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + results | parkrun South Africa @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -125,878 +112,1004 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns total

+

867 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM40-44 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2321100:16:25 + Most recent age category was VM45-49 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2341116:25 + All +
Kingston parkrun471116:51 + All +
Bedfont Lakes parkrun81117:04 + All +
Nonsuch parkrun71116:52 + All +
Richmond parkrun71117:13 + All +
Crane Park parkrun61116:48 + All +
Riddlesdown parkrun42217:01 + All +
Brockwell parkrun, Herne Hill31116:56 + All +
Southwark parkrun34417:27 + All +
Fulham Palace parkrun33317:47 + All +
Cannon Hill parkrun, Birmingham3111118:04 + All +
Gunnersbury parkrun31116:51 + All +
Wimbledon Common parkrun35517:27 + All +
Brighton & Hove parkrun31116:27 + All +
Basingstoke parkrun35517:48 + All +
Black Park parkrun31117:25 + All +
Dulwich parkrun33317:11 + All +
Bexley parkrun31117:48 + All +
Tilgate parkrun31117:10 + All +
Frimley Lodge parkrun31117:11 + All +
Hilly Fields parkrun31117:50 + All +
Old Deer Park parkrun31117:41 + All +
Guildford parkrun31117:17 + All +
Homewood parkrun3151722:21 + All +
Chelmsford Central parkrun22217:24 + All +
Mole Valley parkrun2262622:56 + All +
Durlston Country Park parkrun2355032:45 + All +
Hazelwood parkrun2182222:21 + All +
Southsea parkrun23317:55 + All +
St Albans parkrun21116:37 + All +
Havant parkrun21117:46 + All +
Ashford parkrun22217:57 + All +
Bedford parkrun21116:55 + All +
Margate parkrun21118:16 + All +
Milton Keynes parkrun23317:26 + All +
Preston Park parkrun, Brighton22217:40 + All +
Shorne Woods parkrun21118:14 + All +
Canons Park parkrun27720:50 All - Graph It!
Kingston parkrun351100:16:51 +
Osterley parkrun21117:57 All - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Eastleigh parkrun27719:14 All - Graph It!
Richmond parkrun71100:17:13 +
Brooklands parkrun2394223:22 All - Graph It!
Nonsuch parkrun71100:16:52 +
Great Lines parkrun, Medway25518:25 All - Graph It!
Crane Park parkrun61100:16:48 +
Malling Rec parkrun2738526:59 All - Graph It!
Brighton & Hove parkrun31100:16:27 +
Crystal Palace parkrun21117:24 All - Graph It!
Fulham Palace parkrun33300:17:47 +
Northala Fields parkrun22218:06 All - Graph It!
Frimley Lodge parkrun31100:17:11 +
Northampton parkrun21116:56 All - Graph It!
Gunnersbury parkrun31100:16:51 +
Oak Hill parkrun21117:13 All - Graph It!
Bexley parkrun31100:17:48 +
Lloyd parkrun, Croydon21118:01 All - Graph It!
Tilgate parkrun31100:17:10 +
Newbury parkrun21117:20 All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Cranleigh parkrun26620:49 All - Graph It!
Southwark parkrun34400:17:27 +
Littlehampton Prom parkrun2384324:22 All - Graph It!
Basingstoke parkrun35500:17:48 +
Whitstable parkrun23318:12 All - Graph It!
Hilly Fields parkrun31100:17:50 +
Bethlem Royal Hospital parkrun2263223:22 All - Graph It!
Black Park parkrun31100:17:25 +
Cyclopark parkrun2353824:01 All - Graph It!
Riddlesdown parkrun32200:17:01 +
Hockley Woods parkrun26621:09 All - Graph It!
Dulwich parkrun33300:17:11 +
South Oxhey parkrun21119:13 All - Graph It!
Guildford parkrun31100:17:17 +
Pymmes parkrun21117:06 All - Graph It!
Old Deer Park parkrun31100:17:41 +
Hastings parkrun291120:41 All - Graph It!
Wimbledon Common parkrun35500:17:27 +
Wycombe Rye parkrun22217:17 All - Graph It!
Homewood parkrun3151700:22:21 +
Hove Promenade parkrun27719:23 All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Banstead Woods parkrun21117:31 All - Graph It!
Pymmes parkrun21100:17:06 +
Wormwood Scrubs parkrun21118:00 All - Graph It!
Hove Promenade parkrun27700:19:23 +
Roundshaw Downs parkrun23318:14 All - Graph It!
Netley Abbey parkrun21100:17:21 +
Mile End parkrun21116:53 All - Graph It!
Mile End parkrun21100:16:53 +
Bevendean Down parkrun28923:21 All - Graph It!
Southampton parkrun23300:16:44 +
Finsbury parkrun22217:15 All - Graph It!
Northala Fields parkrun22200:18:06 +
Tooting Common parkrun2181819:14 All - Graph It!
Hockley Woods parkrun26600:21:09 +
Bedgebury Pinetum parkrun28921:24 All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Harrow parkrun25520:23 All - Graph It!
Upton Court parkrun22200:17:24 +
Netley Abbey parkrun21117:21 All - Graph It!
Alice Holt parkrun21100:17:59 +
Ellenbrook Fields parkrun2141519:58 All - Graph It!
Osterley parkrun21100:17:57 +
Worthing parkrun28918:44 All - Graph It!
Burgess parkrun22200:16:45 +
Grovelands parkrun, Enfield22217:21 All - Graph It!
Gladstone parkrun21100:17:09 +
Beckton parkrun23317:24 All - Graph It!
Havant parkrun21100:17:46 +
Gladstone parkrun21117:09 All - Graph It!
Cranleigh parkrun26600:20:49 +
Hackney Marshes parkrun22216:46 All - Graph It!
Finsbury parkrun22200:17:15 +
Burgess parkrun22216:45 All - Graph It!
Southsea parkrun23300:17:55 +
Orpington parkrun22217:27 All - Graph It!
Margate parkrun21100:18:16 +
Barking parkrun22216:45 All - Graph It!
Northampton parkrun21100:16:56 +
Southampton parkrun23316:44 All - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Alice Holt parkrun21117:59 All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Woodley parkrun21117:02 All - Graph It!
Crystal Palace parkrun21100:17:24 +
Upton Court parkrun22217:24 All - Graph It!
Eastleigh parkrun27700:19:14 +
Frogmary Green Farm parkrun1597225:58 All - Graph It!
Hastings parkrun291100:20:41 +
Harrow Lodge parkrun11118:48 All - Graph It!
Banstead Woods parkrun21100:17:31 +
Witney parkrun1202022:34 All - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Leamington parkrun12218:52 All - Graph It!
Hackney Marshes parkrun22200:16:46 +
Brockenhurst parkrun13318:23 All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Hogmoor Inclosure parkrun1262625:26 All - Graph It!
Woodley parkrun21100:17:02 +
Hastings High School parkrun1637827:33 All - Graph It!
Tooting Common parkrun2181800:19:14 +
Cannock Chase parkrun1384425:49 All - Graph It!
Milton Keynes parkrun23300:17:26 +
Wimpole Estate parkrun1202122:14 All - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Haverhill parkrun1121323:32 All - Graph It!
Barking parkrun22200:16:45 +
Edenbrook Country parkrun110514828:01 All - Graph It!
Canons Park parkrun27700:20:50 +
Maidstone River Park parkrun13318:00 All - Graph It!
Newbury parkrun21100:17:20 +
Cheltenham parkrun12217:24 All - Graph It!
Shorne Woods parkrun21100:18:14 +
Victoria Dock parkrun1273020:04 All - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Ekebergsletta parkrun1304325:57 All - Graph It!
Mole Valley parkrun2262600:22:56 +
Oxford parkrun11117:18 All - Graph It!
Oak Hill parkrun21100:17:13 +
Aylesbury parkrun11117:51 All - Graph It!
Cyclopark parkrun2353800:24:01 +
Mote Park parkrun19712231:28 All - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Riverfront parkrun1404622:57 All - Graph It!
South Oxhey parkrun21100:19:13 +
Newent parkrun1182225:27 All - Graph It!
Chelmsford Central parkrun22200:17:24 +
Clapham Common parkrun1404220:22 All - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Llanishen Park parkrun1303323:48 All - Graph It!
Bevendean Down parkrun28900:23:21 +
Heartwood Forest parkrun1252721:41 All - Graph It!
Bedford parkrun21100:16:55 +
Walthamstow parkrun11117:48 All - Graph It!
Whitstable parkrun23300:18:12 +
Malmö Ribersborg parkrun111215128:46 All - Graph It!
Orpington parkrun22200:17:27 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 All - Graph It!
Ashford parkrun22200:17:57 +
Huntingdon parkrun1202121:10 All - Graph It!
Hazelwood parkrun2182200:22:21 +
Felixstowe parkrun1121221:07 All - Graph It!
Brooklands parkrun2394200:23:22 +
Tidworth parkrun110815535:14 All - Graph It!
Wycombe Rye parkrun22200:17:17 +
Brandon Country Park parkrun11118:30 All - Graph It!
Harrow parkrun25500:20:23 +
Prospect parkrun1232322:42 All - Graph It!
Beckton parkrun23300:17:24 +
Mildenhall Hub parkrun1273124:33 All - Graph It!
St Albans parkrun21100:16:37 +
York parkrun12217:12 All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Thetford parkrun1161721:45 All -  
Buckingham parkrun12200:18:37 +
Great Dunmow parkrun14420:25 All -  
Thomas Mills parkrun1486500:30:19 +
Leavesden Country parkrun1506928:32 All -  
Leamington parkrun12200:18:52 +
Catford parkrun1303322:32 All -  
Church Mead parkrun16610200:32:53 +
Lordship Recreation Ground parkrun19112425:22 All -  
Letchworth parkrun1141400:23:13 +
Rugby parkrun1181822:26 All -  
Mulbarton parkrun12200:19:55 +
Mulbarton parkrun12219:55 All -  
Arrow Valley parkrun13300:18:05 +
Swaffham parkrun191022:19 All -  
Frogmary Green Farm parkrun1597200:25:58 +
Ganger Farm parkrun19811426:34 All -  
Sutton Park parkrun1475500:24:54 +
Beckenham Place parkrun1121220:28 All -  
Reigate Priory parkrun16600:19:06 +
Forest Rec parkrun1677626:35 All -  
Bury St Edmunds parkrun13300:18:17 +
Street parkrun1283525:52 All -  
Pollok parkrun, Glasgow11100:17:00 +
Market Bosworth Country Park parkrun110614435:35 All -  
Kingdom parkrun1222500:24:39 +
Whiteley parkrun1141520:56 All -  
Barclay parkrun15600:23:13 +
Kingsbury Water parkrun1394725:05 All -  
Chippenham parkrun1212100:20:08 +
Springhill parkrun14422:18 All -  
Ipswich parkrun11100:17:34 +
Wolford Wood parkrun1212730:24 All -  
Itchen Valley Country parkrun1476100:27:37 +
Pontypridd parkrun12217:54 All -  
Neckarau parkrun1243000:27:11 +
Pocket parkrun1222321:38 All -  
Brandon Country Park parkrun11100:18:30 +
Stockley Country parkrun111917935:32 All -  
Boston parkrun17700:21:18 +
Braunstone parkrun1262720:41 All -  
University Parks parkrun119032600:31:42 +
Didcot parkrun1101121:28 All -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Littleport parkrun1445125:16 All -  
Lullingstone parkrun17700:21:21 +
Yarborough Leisure Centre parkrun1466125:59 All -  
Coventry parkrun1292900:20:51 +
Roding Valley parkrun1111321:26 All -  
Berkeley Green parkrun1233100:28:31 +
Clair parkrun13318:36 All -  
Mersea Island parkrun1121200:20:59 +
Dinton Pastures parkrun1131321:23 All -  
Aylesbury parkrun11100:17:51 +
Beacon Hill Country Park parkrun1273725:54 All -  
Royal Tunbridge Wells parkrun18900:19:23 +
Severn Bridge parkrun1353921:32 All -  
Southall parkrun1557500:31:38 +
Abbey Park parkrun1779425:21 All -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Dudley parkrun1445626:35 All -  
Pomphrey Hill parkrun1364100:23:02 +
Pegwell Bay parkrun12217:40 All -  
Henley-on-Thames parkrun1111100:22:25 +
Manor Field parkrun, Whittlesey1121324:25 All -  
Aachener Weiher parkrun1101100:24:55 +
Blaise Castle parkrun112816326:20 All -  
Penrose parkrun1151600:19:40 +
Chipping Sodbury parkrun1303221:20 All -  
King’s Lynn parkrun1151500:20:07 +
Foots Cray Meadows parkrun1212323:17 All -  
Fulbourn Hospital parkrun1344700:24:59 +
Thames Path parkrun, Woolwich1789023:42 All -  
Fareham parkrun16600:19:21 +
Bath Skyline parkrun1192021:08 All -  
Brockenhurst parkrun13300:18:23 +
Dishley parkrun, Loughborough110311424:30 All -  
Canterbury parkrun16600:21:56 +
Thornham Walks parkrun1363826:52 All -  
Alton Water parkrun1538300:35:09 +
Moors Valley parkrun19919:40 All -  
Littleport parkrun1445100:25:16 +
East Grinstead parkrun1131423:10 All -  
Newport parkrun11100:17:29 +
Sutton Park parkrun1475524:54 All -  
California Country parkrun1649000:28:49 +
University of Northampton parkrun1192223:24 All -  
Thornbury parkrun1323400:28:19 +
Shipley Country parkrun1232424:45 All -  
Greenwich parkrun12200:18:07 +
Lancing Beach Green parkrun1141421:08 All -  
Seven Fields parkrun1475500:26:28 +
Dover Waterfront parkrun1374525:22 All -  
Highbury Fields parkrun11100:17:25 +
Rickmansworth parkrun1242721:39 All -  
The Great Field parkrun19313500:29:12 +
Queen Elizabeth parkrun12219:08 All -  
Street parkrun1283500:25:52 +
Sizewell parkrun1172023:30 All -  
South Norwood parkrun1121200:21:11 +
Holbrooks parkrun1202223:43 All -  
Dunstable Downs parkrun1374300:24:58 +
Highbury Fields parkrun11117:25 All -  
Melton Mowbray parkrun1192200:22:38 +
Clacton Seafront parkrun19920:35 All -  
Horsham parkrun14500:18:16 +
Delaware and Raritan Canal parkrun12221:06 All -  
Irchester Country parkrun1586200:25:13 +
Wisbech parkrun1111523:03 All -  
Stratford-upon-Avon parkrun1202500:21:14 +
Milton Country parkrun13317:43 All -  
Wotton parkrun1182100:24:45 +
Seaton parkrun1394824:09 All -  
Bath Skyline parkrun1192000:21:08 +
Higginson parkrun, Marlow1272922:17 All -  
Great Dunmow parkrun14400:20:25 +
Quakers Walk parkrun1566825:05 All -  
Corby parkrun18800:23:09 +
Lister Park parkrun, Bradford1313621:55 All -  
Bracknell parkrun18800:20:04 +
Wendover Woods parkrun1262623:51 All -  
Cromhall parkrun1151600:24:20 +
Sence Valley Forest Park parkrun1232526:28 All -  
Perry Hall parkrun1464900:24:58 +
Canterbury parkrun16621:56 All -  
Gunpowder parkrun12200:17:34 +
Henstridge Airfield parkrun18821:41 All -  
Luton Wardown parkrun191000:19:36 +
Five Arches parkrun1455422:58 All -  
Ifield Mill Pond parkrun1373800:24:33 +
Yeovil Montacute parkrun1707525:51 All -  
March parkrun15500:21:11 +
Watermeadows parkrun1283124:57 All -  
Roding Valley parkrun1111300:21:26 +
Tamworth Castle Grounds parkrun1333523:26 All -  
Charlton parkrun18213000:32:05 +
St Helens parkrun1606824:27 All -  
Malmö Ribersborg parkrun111215100:28:46 +
Weymouth parkrun1141420:45 All -  
Worcester parkrun114418500:29:30 +
Walmer and Deal Seafront parkrun18821:38 All -  
Wolford Wood parkrun1212700:30:24 +
Aston Hall parkrun1202225:01 All -  
Fire Service College parkrun1181900:22:12 +
Royal Tunbridge Wells parkrun18919:23 All -  
Panshanger parkrun17700:20:14 +
Corby parkrun18823:09 All -  
Conkers parkrun12200:17:46 +
Marlborough Common parkrun1202122:48 All -  
Banbury parkrun1222300:21:16 +
Battlestead Croft parkrun1111122:53 All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Shepton Mallet parkrun1121421:50 All -  
Rushmere parkrun1131400:22:39 +
Clare Castle parkrun1252723:04 All -  
Whiteley parkrun1141500:20:56 +
Coldham’s Common parkrun1535923:04 All -  
Sandringham parkrun1466300:30:18 +
Brunswick Park parkrun1212223:58 All -  
Victoria Dock parkrun1283000:20:04 +
Brentwood parkrun17722:28 All -  
Queen Elizabeth parkrun12200:19:08 +
Somerdale Pavilion parkrun1384631:17 All -  
Lordship Recreation Ground parkrun19112400:25:22 +
Wakehurst parkrun18810525:00 All -  
Somerdale Pavilion parkrun1384600:31:17 +
Boston parkrun17721:18 All -  
Dartford parkrun11100:17:59 +
Morden parkrun111715526:58 All -  
Winchester parkrun14500:18:28 +
Pontefract parkrun1718724:10 All -  
Stratford Park parkrun, Stroud1566500:27:51 +
Jersey Farm parkrun1252723:11 All -  
Sherwood Pines parkrun1161800:21:33 +
Bug Hunter Waters parkrun1455022:41 All -  
Grove Fields parkrun1578500:28:03 +
Rosliston parkrun1333624:41 All -  
Witney parkrun1202000:22:34 +
Longrun Meadow parkrun111416532:01 All -  
Preston Park parkrun, Brighton12200:17:40 +
Fire Service College parkrun1181922:12 All -  
Colchester Castle parkrun14400:18:04 +
Woolacombe Dunes parkrun19410931:20 All -  
Tidworth parkrun110815500:35:14 +
The Plens parkrun1303124:04 All -  
Walmer and Deal Seafront parkrun18800:21:38 +
Arrow Valley parkrun13318:05 All -  
Ferry Meadows parkrun15500:17:27 +
Tonbridge parkrun14418:40 All -  
St Mary’s parkrun1587400:29:14 +
East Brighton parkrun1182123:56 All -  
Dartford Heath parkrun1171700:22:06 +
Three Brooks parkrun1697223:46 All -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Peacehaven parkrun17721:07 All -  
Great Denham parkrun16600:19:27 +
Pontypool parkrun1232323:51 All -  
Hastings High School parkrun1637800:27:33 +
Cromhall parkrun1151624:20 All -  
Wendover Woods parkrun1262600:23:51 +
Dereham parkrun1323323:47 All -  
Peckham Rye parkrun11100:17:49 +
Bournemouth parkrun14417:43 All -  
Upton House parkrun1252700:22:34 +
Pomphrey Hill parkrun1364123:02 All -  
Lee-on-the-Solent parkrun17700:19:40 +
Seaford Beach parkrun1535622:25 All -  
Graves parkrun11100:18:18 +
Mansfield parkrun11117:09 All -  
Maidstone parkrun13300:18:00 +
Fountains Abbey parkrun11118:03 All -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Loch Neaton parkrun, Watton1171725:49 All -  
South Woodham Ferrers parkrun18800:21:14 +
Brueton parkrun1475021:33 All -  
Pontypridd parkrun12200:17:54 +
Great Cornard parkrun1192020:33 All -  
Bournemouth parkrun14400:17:43 +
Dunstable Downs parkrun1374324:58 All -  
Sizewell parkrun1172000:23:30 +
Beeston parkrun1374023:53 All -  
Rushmoor parkrun19900:18:29 +
Feltham parkrun13424:56 All -  
Walsall Arboretum parkrun19810600:25:31 +
Markeaton parkrun1576422:56 All -  
Gorleston Cliffs parkrun12200:17:43 +
Reigate Priory parkrun16619:06 All -  
Uckfield parkrun1404300:24:12 +
Highwoods parkrun1252624:49 All -  
Aldenham parkrun1141400:21:37 +
Valentines parkrun11116:49 All -  
Gadebridge parkrun1141400:22:22 +
Springburn parkrun, Glasgow13318:05 All -  
Horspath parkrun17410600:28:12 +
California Country parkrun1649028:49 All -  
Rogiet parkrun1151600:24:27 +
Rushmoor parkrun19918:29 All -  
Rendlesham Forest parkrun1264600:37:01 +
Mountbatten School parkrun1323424:11 All -  
Dishley parkrun, Loughborough110311400:24:30 +
Colchester Castle parkrun14418:04 All -  
Great Cornard parkrun1192000:20:33 +
Buckingham parkrun12218:37 All -  
Kettering parkrun1232600:22:50 +
Sunny Hill parkrun1202424:39 All -  
Pont y Bala parkrun15700:23:18 +
Bognor Regis parkrun12218:12 All -  
Burnham and Highbridge parkrun17510000:27:51 +
Aachener Weiher parkrun1101124:55 All -  
Stonehouse parkrun1131300:20:09 +
Peckham Rye parkrun11117:49 All -  
Hampstead Heath parkrun11100:17:45 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 All -  
Wickford Memorial parkrun1436600:51:15 +
Great Notley parkrun16620:16 All -  
Castle Park parkrun1394100:22:34 +
Snowden Field parkrun1242624:15 All -  
Huntingdon parkrun1202100:21:10 +
Burnham-on-Crouch parkrun18822:01 All -  
Great Salterns parkrun19212400:30:27 +
Woking parkrun18818:19 All -  
Snowden Field parkrun1242600:24:15 +
Neckarufer parkrun, Esslingen1364425:12 All -  
Southend parkrun11100:16:28 +
Worcester parkrun114418529:30 All -  
Andover parkrun11100:17:33 +
Blandford parkrun18920:11 All -  
parkrun Zalew Żyrardowski16700:24:38 +
Pont y Bala parkrun15723:18 All -  
Marecchia parkrun11100:19:50 +
Chichester parkrun13319:05 All -  
Cheltenham parkrun12200:17:24 +
Kingdom parkrun1222524:39 All -  
St Helens parkrun1606800:24:27 +
Westmill parkrun1101022:55 All -  
Bartley Park parkrun18415100:32:38 +
Dartford parkrun11117:59 All -  
Severn Bridge parkrun1353900:21:32 +
Hanworth parkrun1364024:26 All -  
Pontypool parkrun1232300:23:51 +
Bracknell parkrun18820:04 All -  
Poole parkrun14400:16:57 +
Folkestone parkrun1212521:48 All -  
Bramhall parkrun115924700:35:16 +
Uckfield parkrun1404324:12 All -  
Sunny Hill parkrun1202400:24:39 +
Harrogate parkrun13318:11 All -  
Cassiobury parkrun1111100:20:14 +
Kesgrave parkrun1374021:18 All -  
Hoblingwell parkrun1202400:23:52 +
Thomas Mills parkrun1486530:19 All -  
Colwick parkrun18800:19:46 +
Lymington Woodside parkrun15721:59 All -  
Chipping Norton School parkrun1455100:26:40 +
Hereford parkrun1535323:07 All -  
Worthing parkrun18900:18:44 +
Chasewater parkrun18210026:19 All -  
Harrow Lodge parkrun11100:18:48 +
South Norwood parkrun1121221:11 All -  
Bradford parkrun1313600:21:55 +
Panshanger parkrun17720:14 All -  
Bury Field parkrun1669000:33:07 +
Wolverhampton parkrun1556624:54 All -  
Pocket parkrun1222300:21:38 +
Harcourt Hill parkrun1171721:13 All -  
Longrun Meadow parkrun111416500:32:01 +
Tetbury Goods Shed parkrun1253024:25 All -  
Worcester Pitchcroft parkrun111814300:27:04 +
Gloucester North parkrun1101022:14 All -  
Highwoods parkrun1252600:24:49 +
Harlow parkrun1151523:00 All -  
Maidenhead parkrun17700:18:49 +
Alvaston parkrun1515922:24 All -  
Soham Village College parkrun1253200:28:03 +
Worcester Pitchcroft parkrun111814327:04 All -  
Rickmansworth parkrun1242700:21:39 +
Perry Hall parkrun1464924:58 All -  
Swaffham parkrun191000:22:19 +
Newport parkrun11117:29 All -  
Brentwood parkrun17700:22:28 +
Tring parkrun1171823:38 All -  
Lymington Woodside parkrun15700:21:59 +
Severn Valley Country parkrun1141626:13 All -  
Loch Neaton parkrun, Watton1171700:25:49 +
Wanstead Flats parkrun13317:13 All -  
Daventry parkrun1151500:21:10 +
Daventry parkrun1151521:10 All -  
Hatfield Forest parkrun1181800:20:36 +
St Mary’s parkrun1587429:14 All -  
Kingsway parkrun, Gloucester1192000:21:20 +
Poole parkrun14416:57 All -  
Salcey Forest parkrun1384300:24:53 +
Melton Mowbray parkrun1192222:38 All -  
parkrun des Dougnes, Cubnezais12200:19:42 +
The Old Showfield parkrun1636923:30 All -  
Prospect parkrun1232300:22:42 +
Henley-on-Thames parkrun1111122:25 All -  
Weymouth parkrun1141400:20:45 +
Crissy Field parkrun1101220:40 All -  
Westmill parkrun1101000:22:55 +
Babbs Mill parkrun1405128:00 All -  
East Brighton parkrun1182100:23:56 +
Maidenhead parkrun17718:49 All -  
Harlow parkrun1151500:23:00 +
Ross-on-Wye parkrun1172124:22 All -  
Linford Wood parkrun1222200:21:45 +
Kettering parkrun1232622:50 All -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Stratford Park parkrun, Stroud1566527:51 All -  
Lydney parkrun1202100:23:19 +
Bury St Edmunds parkrun13318:17 All -  
Braunstone parkrun1262700:20:41 +
Mallards Pike parkrun1324630:57 All -  
Harleston Magpies parkrun1293500:25:12 +
Market Harborough parkrun1303121:17 All -  
Clapham Common parkrun1404200:20:22 +
Cassiobury parkrun1111120:14 All -  
Market Bosworth Country Park parkrun110614400:35:35 +
Squerryes Winery parkrun1323627:45 All -  
Jersey Farm parkrun1252700:23:11 +
Walsall Arboretum parkrun19010625:31 All -  
Kesgrave parkrun1374000:21:18 +
Penrose parkrun1151619:40 All -  
Stevenage parkrun17700:19:32 +
King George V Playing Field parkrun, Cheltenham1232826:08 All -  
Hadleigh parkrun, Essex1252600:24:27 +
Evesham parkrun1111121:39 All -  
Squerryes Winery parkrun1323600:27:45 +
Warwick Racecourse parkrun1486024:55 All -  
Rutland Water parkrun1293000:22:44 +
Huddersfield parkrun1626722:02 All -  
Beckenham Place parkrun1121200:20:28 +
Clevedon Salthouse Fields parkrun1384925:13 All -  
Sutcliffe parkrun113117200:30:34 +
Long Eaton parkrun19912124:06 All -  
Haverhill parkrun1121300:23:32 +
Barry Island parkrun1394223:51 All -  
Leavesden Country parkrun1506900:28:32 +
Ifield Mill Pond parkrun1373824:33 All -  
Coldham’s Common parkrun1535900:23:04 +
Upton House parkrun1252722:34 All -  
Chichester parkrun13300:19:05 +
Lullingstone parkrun17721:21 All -  
Billericay parkrun1121300:21:20 +
The Leas parkrun, Minster1252524:37 All -  
Bromley parkrun13300:17:18 +
Medina I.O.W. parkrun11117:20 All -  
Babbs Mill parkrun1405100:28:00 +
Uditore parkrun13320:28 All -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Hunstanton Promenade parkrun1283523:45 All -  
Bryn Bach parkrun11100:16:50 +
Raphael parkrun13319:35 All -  
York parkrun12200:17:12 +
Burnham and Highbridge parkrun17510027:51 All -  
Storeys Field parkrun115121100:28:49 +
Salcey Forest parkrun1384324:53 All -  
Chipping Sodbury parkrun1303200:21:20 +
Ferry Meadows parkrun15517:27 All -  
Mote Park parkrun19712200:31:28 +
Barclay parkrun15623:13 All -  
Watermeadows parkrun1283100:24:57 +
Irchester Country parkrun1586225:13 All -  
Woking parkrun18800:18:19 +
Maldon Prom parkrun11118:04 All -  
Raphael parkrun13300:19:35 +
Salisbury parkrun1111119:34 All -  
Harwich parkrun191000:21:22 +
Tremorfa parkrun1272923:30 All -  
Fritton Lake parkrun11100:18:26 +
Billericay parkrun1121321:20 All -  
Heartwood Forest parkrun1252700:21:41 +
Gedling parkrun1273224:59 All -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Oaklands parkrun111820336:10 All -  
Bedworth parkrun1171700:22:14 +
Winchester parkrun14518:28 All -  
Clair parkrun13300:18:36 +
Aldenham parkrun1141421:37 All -  
Brueton parkrun1475000:21:33 +
East Park parkrun1121424:18 All -  
Higginson parkrun, Marlow1272900:22:17 +
Soham Village College parkrun1253228:03 All -  
Bognor Regis parkrun12200:18:12 +
Stevenage parkrun17719:32 All -  
Huddersfield parkrun1626700:22:02 +
Tewkesbury parkrun1111422:50 All -  
Heaton parkrun13300:18:08 +
Seven Fields parkrun1475526:28 All -  
Chasewater parkrun18210000:26:19 +
Conkers parkrun12217:46 All -  
Tewkesbury parkrun1111400:22:50 +
Lee-on-the-Solent parkrun17719:40 All -  
Marple parkrun11100:17:15 +
Brixworth Country parkrun1496126:53 All -  
Cannock Chase parkrun1384400:25:49 +
Abingdon parkrun15518:03 All -  
Edgbaston Reservoir parkrun1658600:26:24 +
Lowestoft parkrun1232621:10 All -  
Cirencester parkrun1222400:22:40 +
Chipping Norton School parkrun1455126:40 All -  
Kingsbury Water parkrun1394700:25:05 +
Linford Wood parkrun1222221:45 All -  
Peacehaven parkrun17700:21:07 +
Harwich parkrun191021:22 All -  
Lancing Beach Green parkrun1141400:21:08 +
Fulbourn Hospital parkrun1344724:59 All -  
Springburn parkrun, Glasgow13300:18:05 +
Gunpowder parkrun12217:34 All -  
Market Harborough parkrun1303100:21:17 +
Dartford Heath parkrun1171722:06 All -  
Amager Fælled parkrun1333700:24:23 +
Sandhurst Memorial parkrun1537328:54 All -  
Hanworth parkrun1364000:24:26 +
Woodhouse Moor parkrun11117:22 All -  
Salisbury parkrun1111100:19:34 +
Sandwell Valley parkrun1455930:43 All -  
Houghton Hall parkrun1131300:21:48 +
Wyre Forest parkrun1434825:56 All -  
Chalkwell Beach parkrun1819600:24:40 +
parkrun Zalew Żyrardowski16724:38 All -  
Melksham parkrun1171700:24:31 +
Bramhall parkrun115924735:16 All -  
Thetford parkrun1161700:21:45 +
Hatfield Forest parkrun1181820:36 All -  
Pontefract parkrun1718700:24:10 +
Swansea Bay parkrun1748323:44 All -  
Downham Market Academy parkrun1121300:24:35 +
Wollaton Hall parkrun1889723:51 All -  
Fountains Abbey parkrun11100:18:03 +
Horsham parkrun14518:16 All -  
Cardiff parkrun111011700:22:02 +
Jersey parkrun16619:41 All -  
Littlehampton Prom parkrun1384300:24:22 +
Berkeley Green parkrun1233128:31 All -  
Uditore parkrun13300:20:28 +
Cardiff parkrun111011722:02 All -  
Beacon parkrun1587300:26:41 +
Ally Pally parkrun11118:09 All -  
parkrun de Rouen15500:21:41 +
Thurrock parkrun, Orsett Heath16620:41 All -  
Walthamstow parkrun11100:17:48 +
Beacon parkrun1587326:41 All -  
Shepton Mallet parkrun1121400:21:50 +
Albert parkrun, Middlesbrough1515423:17 All -  
Marine Parade parkrun17711100:29:24 +
Sherwood Pines parkrun1161821:33 All -  
Foots Cray Meadows parkrun1212300:23:17 +
Wickford Memorial parkrun1436651:15 All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Thornbury parkrun1323428:19 All -  
Evesham parkrun1111100:21:39 +
Malling parkrun18314547:25 All -  
Southwick Country parkrun1272900:21:47 +
Itchen Valley Country parkrun1476127:37 All -  
Lydiard parkrun18800:18:25 +
Pollok parkrun, Glasgow11117:00 All -  
Sandhurst Memorial parkrun1537300:28:54 +
Eastville parkrun120525325:12 All -  
Bicester parkrun14400:20:13 +
Rutland Water parkrun1293022:44 All -  
Wimpole Estate parkrun1202100:22:14 +
Chalkwell Beach parkrun1819624:40 All -  
Markshall Estate parkrun110315600:32:26 +
Amager Fælled parkrun1333724:23 All -  
Dinton Pastures parkrun1131300:21:23 +
Hoblingwell parkrun1202423:52 All -  
Tonbridge parkrun14400:18:40 +
Belton House parkrun1141523:48 All -  
Wanstead Flats parkrun13300:17:13 +
Kagerzoom parkrun1435824:39 All -  
Woodhouse Moor parkrun11100:17:22 +
Gorleston Cliffs parkrun12217:43 All -  
Mountbatten School parkrun1323400:24:11 +
King’s Lynn parkrun1151520:07 All -  
Eastville parkrun120525300:25:12 +
Holkham parkrun1506925:37 All -  
Brixworth Country parkrun1496100:26:53 +
Horspath parkrun17410628:12 All -  
Portsmouth Lakeside parkrun19900:19:12 +
Southwick Country parkrun1272921:47 All -  
Milton Country parkrun13300:17:43 +
Rushmere parkrun1131422:39 All -  
Swanley parkrun19712500:31:18 +
Zuiderpark parkrun, Den Haag1738124:07 All -  
Springhill parkrun14400:22:18 +
Heaton parkrun13318:08 All -  
Gloucester North parkrun1101000:22:14 +
Colney Lane parkrun1495524:01 All -  
Feltham parkrun13400:24:56 +
Leicester Victoria parkrun19711626:45 All -  
Crissy Field parkrun1101200:20:40 +
Church Mead parkrun16610232:53 All -  
Ally Pally parkrun11100:18:09 +
Southend parkrun11116:28 All -  
Ashton Court parkrun1859500:22:59 +
Lydney parkrun1202123:19 All -  
Oaklands parkrun111820300:36:10 +
Edgbaston Reservoir parkrun1658626:24 All -  
Sittingbourne parkrun18800:20:56 +
Reading parkrun12217:18 All -  
Moors Valley parkrun19900:19:40 +
March parkrun15521:11 All -  
Catford parkrun1303300:22:32 +
Woodgate Valley Country Park parkrun16513245:50 All -  
Clare Castle parkrun1252700:23:04 +
Maaraue parkrun1232522:34 All -  
Harrogate parkrun13300:18:11 +
Stonehouse parkrun1131320:09 All -  
Seaford Beach parkrun1535600:22:25 +
Rheinpark parkrun1151825:30 All -  
Tring parkrun1171800:23:38 +
Edinburgh parkrun12217:00 All -  
Sandwell Valley parkrun1455900:30:43 +
Chippenham parkrun1212120:08 All -  
Basildon parkrun15500:18:13 +
Stratford-upon-Avon parkrun1202521:14 All -  
The Leas parkrun, Minster1252500:24:37 +
Henlow Bridge Lakes parkrun17511532:34 All -  
Little Stoke parkrun11100:17:03 +
Bromley parkrun13317:18 All -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Houghton Hall parkrun1131321:48 All -  
Felixstowe parkrun1121200:21:07 +
Sittingbourne parkrun18820:56 All -  
Yeovil Montacute parkrun1707500:25:51 +
Sharpham Road Playing Fields parkrun1253124:41 All -  
Stockley Country parkrun111917900:35:32 +
Gadebridge parkrun1141422:22 All -  
Woolacombe Dunes parkrun19410900:31:20 +
Chilton Fields parkrun1405428:26 All -  
Harcourt Hill parkrun1171700:21:13 +
Storeys Field parkrun115121128:49 All -  
Abingdon parkrun15500:18:03 +
Hadleigh parkrun, Essex1252624:27 All -  
Eastbourne parkrun12200:17:24 +
Marple parkrun11117:15 All -  
Warwick Racecourse parkrun1486000:24:55 +
Portsmouth Lakeside parkrun19919:12 All -  
Leicester Victoria parkrun19711600:26:45 +
Grove Fields parkrun1578528:03 All -  
Broadwater parkrun110321300:35:19 +
Banbury parkrun1222321:16 All -  
Clacton Seafront parkrun19900:20:35 +
Graves parkrun11118:18 All -  
Burnham-on-Crouch parkrun18800:22:01 +
Watermead Country Park parkrun110818235:52 All -  
Ganger Farm parkrun19811400:26:34 +
Eastbourne parkrun12217:24 All -  
Folkestone parkrun1212500:21:48 +
Malahide parkrun11116:54 All -  
Mallards Pike parkrun1324600:30:57 +
Fareham parkrun16619:21 All -  
Malling parkrun18314500:47:25 +
Sutcliffe parkrun113117230:34 All -  
Rugby parkrun1181800:22:26 +
Fritton Lake parkrun11118:26 All -  
Watermead Country Park parkrun110818200:35:52 +
Bicester parkrun14420:13 All -  
Hogmoor Inclosure parkrun1262600:25:26 +
Sandringham parkrun1466330:18 All -  
East Grinstead parkrun1131400:23:10 +
Luton Wardown parkrun191019:36 All -  
Mildenhall Hub parkrun1273100:24:33 +
Cwmbran parkrun1171723:29 All -  
Marlborough Common parkrun1202100:22:48 +
Broadwater parkrun110321335:19 All -  
Blandford parkrun18900:20:11 +
Basildon parkrun15518:13 All -  
Maldon Prom parkrun11100:18:04 +
Marecchia parkrun11119:50 All -  
Edinburgh parkrun12200:17:00 +
Harleston Magpies parkrun1293525:12 All -  
The Old Showfield parkrun1636900:23:30 +
Kingsway parkrun, Gloucester1192021:20 All -  
Jersey parkrun16600:19:41 +
Bryn Bach parkrun11116:50 All -  
Chilton Fields parkrun1405400:28:26 +
Mersea Island parkrun1121220:59 All -  
Sixfields Upton parkrun18800:19:58 +
Charlton parkrun18213032:05 All -  
Pegwell Bay parkrun12200:17:40 +
parkrun de Rouen15521:41 All -  
Valentines parkrun11100:16:49 +
Dallas Burston Polo Club parkrun19614732:26 All -  
Edenbrook Country parkrun110514800:28:01 +
Ashton Court parkrun1859522:59 All -  
Henstridge Airfield parkrun18800:21:41 +
Tøyen parkrun1668526:32 All -  
Great Notley parkrun16600:20:16 +
The Great Field parkrun19313529:12 All -  
Medina I.O.W. parkrun11100:17:20 +
Castle Park parkrun1394122:34 All -  
Reading parkrun12200:17:18 +
Swanley parkrun19712531:18 All -  
Tetbury Goods Shed parkrun1253000:24:25 +
Greenwich parkrun12218:07 All -  
Lowestoft parkrun1232600:21:10 +
Neckarau parkrun1243027:11 All -  
Malahide parkrun11100:16:54 +
Bury Field parkrun1669033:07 All -  
Oxford parkrun11100:17:18 +
Clifton parkrun1101025:14 All -  
Rheinpark parkrun1151800:25:30 +
Alton Water parkrun1538335:09 All -  
Gloucester City parkrun1171900:22:35 +
Colwick parkrun18819:46 All -  
Didcot parkrun1101100:21:28 +
Melksham parkrun1171724:31 All -  
Mansfield parkrun11100:17:09 +
Markshall Estate parkrun110315632:26 All -  
7851100:16:25 +
Rogiet parkrun1151624:27 + All +
Bartley Park parkrun18415132:38 + All +
Lydiard parkrun18818:25 + All +
Little Stoke parkrun11117:03 + All +
Letchworth parkrun1141423:13 + All +
Belvoir Castle parkrun1131925:42 + All +
Andover parkrun11117:33 + All +
Rushcliffe parkrun1617323:54 + All +
Cirencester parkrun1222422:40 + All +
Southall parkrun1557531:38 + All +
Forest of Dean parkrun1182224:51 + All +
parkrun des Dougnes, Cubnezais12219:42 + All +
South Woodham Ferrers parkrun18821:14 + All +
Marine Parade parkrun17711129:24 + All +
Coventry parkrun1292920:51 + All +
Wotton parkrun1182124:45 + All +
Gloucester City parkrun1171922:35 + All +
Great Salterns parkrun19212430:27 + All +
Bedworth parkrun1171722:14 + All +
University Parks parkrun119032631:42 + All +
Hampstead Heath parkrun11117:45 + All +
Great Denham parkrun16619:27 + All +
Downham Market Academy parkrun1121324:35 + All +
Ipswich parkrun11117:34 + All +
Sixfields Upton parkrun18819:58 + All +
Rendlesham Forest parkrun1264637:01 + All +
8671116:25 All  


Volunteer Summary

RoleOccasions
- Run Director - 94
- Timekeeper - 59
- Token Sorting - 3
- Results Processor - 87
- Photographer - 6
- Communications Person - 10
- Marshal - 39
- Pre-event Setup - 130
- Equipment Storage and Delivery - 128
- Other - 23
- Barcode Scanning - 55
- Post-event Close Down - 45
- Finish Tokens - 15
- Number Checker - 2
- First Timers Welcome - 68
- Funnel Manager - 15
- Finish Token Support - 9
- Tail Walker - 29
- Volunteer Co-ordinator - 146
- Report Writer - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Car Park Marshal - 1
- Event Day Course Check - 8
- parkwalker - 9
Total Credits396

+ Run Director +

99
+ Timekeeper + 94
+ Token Sorting + 12
+ Results Processor + 87
+ Photographer + 6
+ Communications Person + 10
+ Marshal + 54
+ Pre-event Setup + 148
+ Equipment Storage and Delivery + 130
+ Other + 26
+ Barcode Scanning + 78
+ Post-event Close Down + 51
+ Finish Tokens + 21
+ Number Checker + 2
+ First Timers Welcome + 82
+ Funnel Manager + 15
+ Finish Token Support + 12
+ Tail Walker + 29
+ Volunteer Co-ordinator + 148
+ Report Writer + 100
+ Backup Timer + 3
+ Warm Up Leader + 16
+ Car Park Marshal + 1
+ Event Day Course Check + 14
+ parkwalker + 10
Total Credits499

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1026,50 +1139,32 @@

Danny NORMAN (A482)
- Locations: 195 + Locations: 219
- Finishers: 863,011 + Finishers: 982870
- Finishes: 11,070,230 + Finishes: 13235920
- All-time events: 48,344 + All-time events: 63601
- Volunteers: 49,816 + Volunteers: 59667
- PBs: 1,745,380 + PBs: 2012125
- Average finish time: 00:41:35 + Average finish time: 00:41:54
- Average finishes per participant: 12.8 + Groups: 3068
-
- Groups: 2,823 -
-

-
- Female record: - Jenna CHALLENOR – 16:35 - ( 3 Aug 2013) -
-
- Male record: - Amos NYONGO – 14:02 - ( 2 Jun 2018) -
-
- Age graded record: - Nelson KGOSIMORE - 110.51% 19:30 - (14 May 2022) -
+
- Stats last updated: Fri 14 Apr 2023 00:42:35 UTC + Stats last updated: Mon 30 Sep 2024 00:42:51 UTC
@@ -1079,28 +1174,29 @@

Danny NORMAN (A482) - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1134,8 +1240,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/88720/all/index.html index 22a011df..1c31640e 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + results | parkrun South Africa @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -123,631 +110,729 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM55-59 + Most recent age category was VM60-64

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time21:4025:2552:00
Age Grading69.71%60.41%29.55%
Overall Position648.88374

+
FastestAverage
(mean)
Slowest
Time21:3625:2654:59
Age Grading72.99%60.80%28.92%
Overall Position648.44374

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Halifax08/04/20233313225:0063.07% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + PB + +   +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34%   -
Fulham Palace01/04/202339110924:0965.29% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Halifax25/03/20233291624:4363.79% +
Halifax16/09/20233532123:4367.04%   -
Halifax18/03/20233282326:4758.87% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax04/03/20233273825:1962.28% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Myrtle25/02/20231593824:5263.40% +
Glossop12/08/20233152824:2564.57% +   +
Halifax05/08/20233473024:4363.79% +   +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% PB   -
Halifax18/02/20233252926:0360.52% +
Stratford Park, Stroud01/07/20231253126:2959.53%   -
Halifax11/02/20233243124:0365.56% +
Wetherby24/06/20233094124:4663.66%   -
Bradford04/02/20235795022:3769.71% +
Halifax10/06/20233402524:0265.60%   -
Bowling Park28/01/202379924:1165.20% +
Halifax03/06/20233392124:1365.11%   -
Bramley21/01/20233004925:3461.67% +
Long Eaton20/05/20233306921:3672.99%   -
Halifax14/01/20233213325:5260.95% +
Halifax06/05/20233352423:4566.39%   -
Halifax07/01/20233203026:2659.65% +
Keswick29/04/20233904121:3672.99% + PB +   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax22/04/20233334725:0262.98%   -
Nostell31/12/20223614325:0063.07% +
Halifax08/04/20233313225:0063.07%   -
Halifax24/12/20223173125:4661.19% +
Fulham Palace01/04/202339110924:0965.29%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax25/03/20233291624:4363.79%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax18/03/20233282326:4758.87% +   +
Halifax04/03/20233273825:1962.28% +   +
Myrtle25/02/20231593824:5263.40% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71%   -
Brighouse12/11/20222213725:1762.36% +
Bowling Park28/01/202379924:1165.20%   -
Halifax05/11/20223122424:5163.45% +
Bramley21/01/20233004925:3461.67%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB +   -
Halifax15/10/202230910749:5431.60% +
Conkers19/11/20225485624:1465.06%   -
Crosby08/10/20222833525:3861.51% +
Brighouse12/11/20222213725:1762.36%   -
Alness01/10/20221801024:0965.29% +
Halifax05/11/20223122424:5163.45%   -
Victoria24/09/20223736722:5468.85% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax17/09/20223052625:0063.07% +
Halifax15/10/202230910749:5431.60%   -
Centre Vale10/09/20221034428:4454.87% +
Crosby08/10/20222833525:3861.51%   -
Halifax03/09/20223033125:3361.71% +
Alness01/10/20221801024:0965.29%   -
Skipton27/08/20224035325:3561.11% +
Victoria24/09/20223736722:5468.85%   -
Halifax20/08/20223012824:5262.87% +
Halifax17/09/20223052625:0063.07%   -
Halifax06/08/20222996426:0360.01% +
Centre Vale10/09/20221034428:4454.87%   -
Armley30/07/20221432724:2863.90% +
Halifax03/09/20223033125:3361.71%   -
Halifax16/07/20222962524:2663.98% +
Skipton27/08/20224035325:3561.11%   -
Halifax02/07/20222942524:4863.04% +
Halifax20/08/20223012824:5262.87%   -
Halifax18/06/20222922424:5462.78% +
Halifax06/08/20222996426:0360.01%   -
The Pastures11/06/2022991826:2159.33% +
Armley30/07/20221432724:2863.90%   -
Halifax04/06/20222913826:4858.33% +
Halifax16/07/20222962524:2663.98%   -
Horton Park28/05/20222942225:1262.04% +
Halifax02/07/20222942524:4863.04%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax18/06/20222922424:5462.78%   -
Halifax07/05/20222877529:3552.85% +
The Pastures11/06/2022991826:2159.33%   -
Harrogate30/04/202246716226:4458.48% +
Halifax04/06/20222913826:4858.33%   -
Halifax23/04/20222854927:0057.90% +
Horton Park28/05/20222942225:1262.04%   -
Halifax09/04/20222834526:3758.74% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax02/04/20222822924:4463.21% +
Halifax07/05/20222877529:3552.85%   -
Pendle26/03/20223443126:1659.52% +
Harrogate30/04/202246716226:4458.48%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax23/04/20222854927:0057.90%   -
Halifax05/03/20222784925:3761.03% +
Halifax09/04/20222834526:3758.74%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -778,50 +863,32 @@

Phillip WHETTLOCK (A8
- Locations: 197 + Locations: 219
- Finishers: 864,475 + Finishers: 982870
- Finishes: 11,097,003 + Finishes: 13235920
- All-time events: 48,523 + All-time events: 63601
- Volunteers: 49,945 + Volunteers: 59667
- PBs: 1,749,135 + PBs: 2012125
- Average finish time: 00:41:35 + Average finish time: 00:41:54
- Average finishes per participant: 12.8 + Groups: 3068
-
- Groups: 2,824 -
-
-
- Female record: - Jenna CHALLENOR – 16:35 - ( 3 Aug 2013) -
-
- Male record: - Amos NYONGO – 14:02 - ( 2 Jun 2018) -
-
- Age graded record: - Nelson KGOSIMORE - 110.51% 19:30 - (14 May 2022) -
+
- Stats last updated: Mon 17 Apr 2023 00:43:06 UTC + Stats last updated: Mon 30 Sep 2024 00:42:51 UTC
@@ -831,28 +898,29 @@

Phillip WHETTLOCK (A8 Discovery - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -886,8 +964,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/88720/index.html index a37b35a3..e8f1e8e4 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + results | parkrun South Africa @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,35 +66,26 @@
@@ -123,185 +110,241 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns total

+ + Member of the Volunteer 250 club +

345 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM55-59 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bradford parkrun1166600:21:40 + Most recent age category was VM60-64 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Halifax parkrun1268822:13 + All +
Lister Park parkrun, Bradford1166621:40 + All +
Horton Park parkrun9131322:18 + All +
Keswick parkrun4253321:36 + All +
Sewerby parkrun3121222:08 + All +
Pontefract parkrun2273222:08 + All +
Brighouse parkrun2333723:53 + All +
Temple Newsam parkrun2272925:14 + All +
Fountains Abbey parkrun2394822:26 + All +
Oakwell Hall parkrun2293626:10 + All +
Whinlatter Forest parkrun2283227:23 + All +
Bramley parkrun2252524:06 + All +
Middleton Woods parkrun2121424:55 + All +
Myrtle parkrun2333824:52 + All +
Centre Vale parkrun2303626:37 + All +
Bushy parkrun130137424:06 + All +
Woodhouse Moor parkrun1778222:18 + All +
Pollok parkrun, Glasgow1667223:58 + All +
Edinburgh parkrun1646721:54 + All +
Wakefield Thornes parkrun1545824:29 All - Graph It!
Halifax parkrun1148800:22:13 +
Hyndburn parkrun1253125:51 All - Graph It!
Horton Park parkrun9131300:22:18 +
York parkrun111413522:55 All - Graph It!
Sewerby parkrun3121200:22:08 +
Milton Country parkrun1707522:40 All - Graph It!
Keswick parkrun3253300:23:33 +
Carlisle parkrun1567126:05 All - Graph It!
Pontefract parkrun2273200:22:08 +
Harrogate parkrun112316226:44 All - Graph It!
Temple Newsam parkrun2272900:25:14 +
Southport parkrun1545723:57 All - Graph It!
Myrtle parkrun2333800:24:52 +
Barnsley parkrun1414325:05 All - Graph It!
Middleton Woods parkrun2121400:24:55 +
Rothwell parkrun1535724:20 All - Graph It!
Bramley parkrun2252500:24:06 +
Huddersfield parkrun1596722:47 All - Graph It!
Druridge Bay parkrun1354200:23:35 +
Long Eaton parkrun1556921:36 All -  
Fountains Abbey parkrun1394800:22:26 +
Wycombe Rye parkrun1232622:35 All -  
Victoria parkrun, Glasgow1546700:22:54 +
Conkers parkrun1525624:14 All -  
Clumber Park parkrun1101100:21:46 +
Roundhay parkrun112815726:55 All -  
Rothay Park parkrun1202700:24:48 +
Hanley parkrun16622:03 All -  
Warwick Racecourse parkrun1638200:24:06 +
Worsley Woods parkrun1728824:46 All -  
Conkers parkrun1525600:24:14 +
Burnley parkrun1545725:21 All -  
The Pastures parkrun1161800:26:21 +
Dewsbury parkrun18610128:15 All -  
Harrogate parkrun112316200:26:44 +
Cross Flatts parkrun1303724:16 All -  
Dishley parkrun, Loughborough1535700:24:25 +
Clumber Park parkrun1101121:46 All -  
Dalby Forest parkrun1283200:23:06 +
Skipton parkrun1505325:35 All -  
Woodhouse Moor parkrun1778200:22:18 +
Flatts Lane parkrun1171826:53 All -  
Whinlatter Forest parkrun1283200:27:23 +
Victoria parkrun, Glasgow1546722:54 All -  
Watergrove parkrun, Rochdale1111200:27:57 +
Alness parkrun171024:09 All -  
Springburn parkrun, Glasgow1161600:23:14 +
Fulham Palace parkrun18610924:09 All -  
Fulham Palace parkrun18610900:24:09 +
Springburn parkrun, Glasgow1161623:14 All -  
Flatts Lane parkrun1171800:26:53 +
Druridge Bay parkrun1354223:35 All -  
Roberts Park parkrun1657500:24:54 +
Pendle parkrun1263126:16 All -  
Bowling Park parkrun18900:24:11 +
Watergrove parkrun, Rochdale1111227:57 All -  
Hanley parkrun16600:22:03 +
Wetherby parkrun1374124:46 All -  
Centre Vale parkrun1304400:28:44 +
Portobello parkrun, Edinburgh1668024:16 All -  
Wycombe Rye parkrun1232600:22:35 +
Nostell parkrun1374325:00 All -  
Carlisle parkrun1567100:26:05 +
Fell Foot parkrun, Newby Bridge1161722:57 All -  
Armley parkrun1262700:24:28 +
Conwy parkrun1394424:53 All -  
Crosby parkrun1293500:25:38 +
Glossop parkrun1242824:25 All -  
Edinburgh parkrun1646700:21:54 +
Crosby parkrun1293525:38 All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Dolgellau parkrun1459954:59 All -  
Bushy parkrun130137400:24:06 +
Dalby Forest parkrun1283223:06 All -  
Oakwell Hall parkrun1344000:26:10 +
Clitheroe Castle parkrun1192525:41 All -  
Pendle parkrun1263100:26:16 +
Armley parkrun1262724:28 All -  
Alness parkrun171000:24:09 +
Dishley parkrun, Loughborough1535724:25 All -  
Skipton parkrun1505300:25:35 +
Ford parkrun1202525:00 All -  
Chevin Forest parkrun1213000:26:47 +
Cliffe Castle parkrun1151725:18 All -  
Burnley parkrun1545700:25:21 +
Potternewton parkrun1293625:04 All -  
Queen’s parkrun, Glasgow1677900:25:29 +
Isabel Trail parkrun1293422:02 All -  
Roundhay parkrun112815700:26:55 +
The Pastures parkrun1161826:21 All -  
Storthes Hall parkrun1263000:26:20 +
Storthes Hall parkrun1263026:20 All -  
Southport parkrun1545700:23:57 +
Hafan Pwllheli parkrun1212726:48 All -  
Cliffe Castle parkrun1151700:25:18 +
Penistone parkrun1343724:20 All -  
Brighouse parkrun1333700:25:17 +
Conyngham Hall parkrun1363824:55 All -  
Milton Country parkrun1707500:22:40 +
Stratford Park parkrun, Stroud1303126:29 All -  
Pollok parkrun, Glasgow1667200:23:58 +
Warwick Racecourse parkrun1638224:06 All -  
Nostell parkrun1384300:25:00 +
University of Stirling parkrun1343723:52 All -  
Portobello parkrun, Edinburgh1668000:24:16 +
Jubilee parkrun1121926:42 All -  
2996600:21:40 +
Queen’s parkrun, Glasgow1677925:29 + All +
Bowling Park parkrun18924:11 + All +
Rothay Park parkrun1202724:48 + All +
Zuiderpark parkrun, Den Haag1151722:03 + All +
Carlisle Park parkrun, Morpeth1293325:44 + All +
Chevin Forest parkrun1213026:47 + All +
Roberts Park parkrun1657524:54 + All +
Beacon Hill Country Park parkrun1192325:36 + All +
Thames Path parkrun, Woolwich1586323:49 + All +
3456621:36 All  


Volunteer Summary

RoleOccasions
- Run Director - 32
- Timekeeper - 17
- Token Sorting - 5
- Results Processor - 1
- Photographer - 1
- Communications Person - 5
- Marshal - 35
- Pre-event Setup - 28
- Equipment Storage and Delivery - 5
- Other - 1
- Barcode Scanning - 27
- Post-event Close Down - 24
- Finish Tokens - 11
- Number Checker - 1
- First Timers Welcome - 77
- Funnel Manager - 12
- Finish Token Support - 10
- Tail Walker - 5
- Volunteer Co-ordinator - 10
- Report Writer - 1
- Pacer (5k only) - 5
- Backup Timer - 14
- VI Guide - 1
- Warm Up Leader - 5
- Sign Language Support - 1
- Car Park Marshal - 1
- Event Day Course Check - 25
- parkwalker - 1
Total Credits249

+ Run Director +

33
+ Timekeeper + 28
+ Token Sorting + 5
+ Results Processor + 4
+ Photographer + 1
+ Communications Person + 6
+ Marshal + 35
+ Pre-event Setup + 29
+ Equipment Storage and Delivery + 6
+ Other + 2
+ Barcode Scanning + 46
+ Post-event Close Down + 25
+ Finish Tokens + 16
+ Number Checker + 1
+ First Timers Welcome + 82
+ Funnel Manager + 16
+ Finish Token Support + 16
+ Tail Walker + 15
+ Volunteer Co-ordinator + 11
+ Report Writer + 1
+ Pacer (5k only) + 10
+ Backup Timer + 14
+ VI Guide + 1
+ Warm Up Leader + 15
+ Sign Language Support + 1
+ Car Park Marshal + 1
+ Event Day Course Check + 57
+ parkwalker + 1
Total Credits316

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. -



Freedom parkruns

DateTimeLocation
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here. +



Freedom parkruns

DateTimeLocation
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -330,50 +373,32 @@

Phillip WHETTLOCK (A8
- Locations: 197 -
-
- Finishers: 864,475 + Locations: 219
- Finishes: 11,097,003 + Finishers: 982870
- All-time events: 48,523 + Finishes: 13235920
- Volunteers: 49,945 + All-time events: 63601
- PBs: 1,749,135 + Volunteers: 59667
- Average finish time: 00:41:35 + PBs: 2012125
- Average finishes per participant: 12.8 + Average finish time: 00:41:54
- Groups: 2,824 + Groups: 3068
-
-
- Female record: - Jenna CHALLENOR – 16:35 - ( 3 Aug 2013) -
-
- Male record: - Amos NYONGO – 14:02 - ( 2 Jun 2018) -
-
- Age graded record: - Nelson KGOSIMORE - 110.51% 19:30 - (14 May 2022) -
+

- Stats last updated: Mon 17 Apr 2023 00:43:06 UTC + Stats last updated: Mon 30 Sep 2024 00:42:51 UTC
@@ -383,28 +408,29 @@

Phillip WHETTLOCK (A8 Discovery - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -438,8 +474,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/999999/all/index.html index 37e14a11..0e84a5fd 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + results | parkrun South Africa @@ -35,15 +37,14 @@ - + - + - @@ -53,7 +54,7 @@
@@ -65,35 +66,26 @@
@@ -117,7 +109,7 @@

Jakub WOLSKI (A999999)

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -149,50 +141,32 @@

Jakub WOLSKI (A999999
- Locations: 199 -
-
- Finishers: 876,947 + Locations: 219
- Finishes: 11,340,271 + Finishers: 982870
- All-time events: 50,411 + Finishes: 13235920
- Volunteers: 51,161 + All-time events: 63601
- PBs: 1,781,301 + Volunteers: 59667
- Average finish time: 00:41:37 + PBs: 2012125
- Average finishes per participant: 12.9 + Average finish time: 00:41:54
- Groups: 2,848 + Groups: 3068
-
-
- Female record: - Jenna CHALLENOR – 16:35 - ( 3 Aug 2013) -
-
- Male record: - Amos NYONGO – 14:02 - ( 2 Jun 2018) -
-
- Age graded record: - Nelson KGOSIMORE - 110.51% 19:30 - (14 May 2022) -
+
- Stats last updated: Thu 29 Jun 2023 00:43:07 UTC + Stats last updated: Mon 30 Sep 2024 00:42:51 UTC
@@ -202,28 +176,29 @@

Jakub WOLSKI (A999999 Discovery - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -257,8 +242,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/999999/index.html index b19e19af..d0731e2f 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.co.za/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + results | parkrun South Africa @@ -35,15 +37,14 @@ - + - + - @@ -53,7 +54,7 @@
@@ -65,35 +66,26 @@
@@ -116,7 +108,7 @@ style='width:auto;margin-bottom: 20px;'> -

Jakub WOLSKI (A999999)

No results have been recorded yet for this parkrunner.

+

Jakub WOLSKI (A999999)

@@ -145,50 +137,32 @@

Jakub WOLSKI (A999999
- Locations: 199 -
-
- Finishers: 876,947 + Locations: 219
- Finishes: 11,340,271 + Finishers: 982870
- All-time events: 50,411 + Finishes: 13235920
- Volunteers: 51,161 + All-time events: 63601
- PBs: 1,781,301 + Volunteers: 59667
- Average finish time: 00:41:37 + PBs: 2012125
- Average finishes per participant: 12.9 + Average finish time: 00:41:54
- Groups: 2,848 + Groups: 3068
-
-
- Female record: - Jenna CHALLENOR – 16:35 - ( 3 Aug 2013) -
-
- Male record: - Amos NYONGO – 14:02 - ( 2 Jun 2018) -
-
- Age graded record: - Nelson KGOSIMORE - 110.51% 19:30 - (14 May 2022) -
+

- Stats last updated: Thu 29 Jun 2023 00:43:07 UTC + Stats last updated: Mon 30 Sep 2024 00:42:51 UTC
@@ -198,28 +172,29 @@

Jakub WOLSKI (A999999 Discovery - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -253,8 +238,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/1309364/all/index.html index 5ca82831..378adcdc 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Australia @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,46 +66,36 @@
@@ -124,551 +110,657 @@
- + - - parkrun shop + -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM35-39 + Most recent age category was VM40-44

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time20:0628:4757:34
Age Grading64.51%47.44%23.54%
Overall Position5165.361021

+
FastestAverage
(mean)
Slowest
Time20:0629:2057:34
Age Grading64.51%46.67%23.54%
Overall Position5182.341021

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60% +   +
Whiteley18/11/202324721037:0536.54%   -
Whiteley25/03/202321418332:2441.82% +
Whiteley11/11/202324617430:3744.26%   -
Winchester11/03/202342821230:3744.26% +
Winchester21/10/202345731533:5140.03%   -
Winchester04/03/202342730935:4537.90% +
Winchester14/10/202345634233:5439.97%   -
Winchester25/02/202342632536:0937.48% +
Ganger Farm07/10/20234713233:4940.07%   -
Winchester18/02/202342530336:3137.11% +
Winchester30/09/202345427529:3145.91%   -
Delamere31/12/202242331536:2537.21% +
Winchester23/09/202345321928:2247.77%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester16/09/202345235430:3244.38%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester09/09/202345129229:1146.43%   -
Winchester26/11/202241229335:3137.87% +
Delamere02/09/202345822633:2840.49%   -
Whiteley12/11/202221016534:2839.02% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester29/10/202240924429:5544.96% +
Winchester29/07/202344622227:3649.09%   -
Winchester22/10/202240833736:0837.22% +
Winchester22/07/202344540537:0036.62%   -
Winchester17/09/202240326230:2944.12% +
Whiteley15/07/202322915731:1643.34%   -
Winchester10/09/202240231134:3338.93% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Alice Holt03/09/202241817936:3236.82% +
Winchester17/06/202344128530:4144.16%   -
Winchester27/08/202240042335:2138.05% +
Winchester10/06/202344032435:2138.33%   -
Winchester13/08/202239823431:3042.70% +
Winchester20/05/202343822427:0949.91%   -
Tidworth30/07/2022615151:4226.02% +
Winchester13/05/202343733232:4341.42%   -
Uckfield23/07/20221006028:4346.84% +
Whiteley29/04/202321919635:3138.15%   -
Winchester09/07/202239428633:1640.43% +
Winchester22/04/202343431731:1143.45%   -
Eastleigh28/05/202254015531:2042.93% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Winchester21/05/202238930733:2840.19% +
Whiteley25/03/202321418332:2441.82%   -
Alice Holt14/05/202240216932:0142.01% +
Winchester11/03/202342821230:3744.26%   -
Winchester07/05/202238734034:1339.31% +
Winchester04/03/202342730935:4537.90%   -
Guildford30/04/202242825130:0144.81% +
Winchester25/02/202342632536:0937.48%   -
Winchester23/04/202238522932:0241.99% +
Winchester18/02/202342530336:3137.11%   -
Winchester16/04/202238431033:2340.29% +
Delamere31/12/202242331536:2537.21%   -
Winchester19/03/202238025033:5439.68% +
Ganger Farm10/12/2022418257:3423.54%   -
Alice Holt01/01/202238524237:4635.61% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester04/12/202136518229:2045.85% +
Winchester26/11/202241229335:3137.87%   -
Winchester20/11/202136338445:0729.59% +
Whiteley12/11/202221016534:2839.02%   -
Winchester09/10/202135739843:0730.96% +
Winchester29/10/202240924429:5544.96%   -
Winchester25/09/202135538955:0324.25% +
Winchester22/10/202240833736:0837.22%   -
Winchester18/09/202135433938:1234.95% +
Winchester17/09/202240326230:2944.12%   -
Winchester04/09/202135233838:2434.77% +
Winchester10/09/202240231134:3338.93%   -
Winchester28/08/202135139841:0132.55% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester14/08/202134936055:4623.94% +
Winchester27/08/202240042335:2138.05%   -
Winchester31/07/202134832845:2029.45% +
Winchester13/08/202239823431:3042.70%   -
Winchester14/03/202034625851:3825.69% +
Tidworth30/07/2022615151:4226.02%   -
Winchester07/03/202034510325:5251.29% +
Uckfield23/07/20221006028:4346.84%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Winchester09/07/202239428633:1640.43%   -
Newbury22/02/202043434631:1142.54% +
Eastleigh28/05/202254015531:2042.93%   -
Alice Holt08/02/202036010727:1948.57% +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -699,50 +791,32 @@

Andrew TAYLOR (A13093
- Locations: 461 + Locations: 497
- Finishers: 874,038 + Finishers: 1099859
- Finishes: 13,636,741 + Finishes: 18040066
- All-time events: 117,506 + All-time events: 153759
- Volunteers: 141,876 + Volunteers: 169010
- PBs: 2,025,680 + PBs: 2602220
- Average finish time: 00:33:07 + Average finish time: 00:33:18
- Average finishes per participant: 15.6 + Groups: 5038
-
- Groups: 4,461 -
-
-
- Female record: - Isobel BATT-DOYLE – 15:25 - (31 Dec 2022) -
-
- Male record: - James HANSEN – 13:53 - (27 Aug 2022) -
-
- Age graded record: - Norma WALLETT - 111.04% 35:37 - ( 5 Oct 2019) -
+

- Stats last updated: Fri 14 Apr 2023 00:35:08 UTC + Stats last updated: Mon 30 Sep 2024 00:35:59 UTC
@@ -758,28 +832,32 @@

Andrew TAYLOR (A13093 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -813,8 +901,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/1309364/index.html index 9796f566..e3268c2e 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + results | parkrun Australia @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,46 +66,36 @@
@@ -124,186 +110,196 @@
- + - - + -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club -

245 parkruns total

+

297 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM35-39 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun146121300:20:18 + Most recent age category was VM40-44 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun173121320:18 + All +
Whiteley parkrun1410714629:06 + All +
Delamere parkrun11232321:42 + All +
Eastleigh parkrun6242524:08 + All +
Southampton parkrun5687021:17 All - Graph It!
Delamere parkrun8232300:21:42 +
Alice Holt parkrun59010727:19 All - Graph It!
Whiteley parkrun610714600:29:06 +
Newbury parkrun4829123:49 All - Graph It!
Alice Holt parkrun59010700:27:19 +
Congleton parkrun49920:06 All - Graph It!
Southampton parkrun5687000:21:17 +
Medina I.O.W. parkrun4667525:13 All - Graph It!
Eastleigh parkrun5242500:24:08 +
Fell Foot parkrun, Newby Bridge4212223:48 All - Graph It!
Congleton parkrun49900:20:06 +
Witton parkrun4303525:40 All - Graph It!
Witton parkrun4303500:25:40 +
Northwich parkrun4485224:55 All - Graph It!
Northwich parkrun4485200:24:55 +
Ganger Farm parkrun38013229:25 All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Andover parkrun2242622:24 All - Graph It!
Andover parkrun2242600:22:24 +
Hanley parkrun2333922:31 All - Graph It!
Ganger Farm parkrun29713500:29:25 +
Burnley parkrun212718929:06 All - Graph It!
Hanley parkrun2333900:22:31 +
Queen Elizabeth parkrun2364026:36 All - Graph It!
Newbury parkrun2829100:23:49 +
Heaton parkrun133846731:01 All - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Guildford parkrun117125130:01 All - Graph It!
Hagley parkrun1182000:22:38 +
Hyndburn parkrun1425329:55 All -  
Ormskirk parkrun120930300:31:04 +
Phoenix parkrun1232627:31 All -  
Basingstoke parkrun111212900:24:31 +
Canterbury parkrun1323627:29 All -  
Cuerden Valley parkrun1192000:24:47 +
Valentines parkrun1698025:14 All -  
Seven Fields parkrun1546700:28:28 +
Poole parkrun121328428:59 All -  
Netley Abbey parkrun1586400:24:21 +
Long Eaton parkrun118122928:06 All -  
Mountbatten School parkrun17110100:31:29 +
Bolton parkrun116221831:49 All -  
Clitheroe Castle parkrun1639700:35:46 +
Eden Project parkrun111116230:21 All -  
Medina I.O.W. parkrun19513900:30:57 +
Abingdon parkrun114220229:14 All -  
Hogmoor Inclosure parkrun111314000:29:34 +
Netley Abbey parkrun1586424:21 All -  
Milano Nord parkrun1475300:27:49 +
Hilly Fields parkrun1859925:03 All -  
Jersey parkrun111018500:30:53 +
Brockenhurst parkrun112718632:41 All -  
Canterbury parkrun1323600:27:29 +
Wimpole Estate parkrun112916928:07 All -  
Penrhyn parkrun1232600:24:33 +
Clumber Park parkrun112117629:51 All -  
Hyndburn parkrun1425300:29:55 +
Cuerden Valley parkrun1192024:47 All -  
Woking parkrun1485800:24:01 +
Hamilton Lake parkrun1151621:47 All -  
Fountains Abbey parkrun1283000:20:33 +
Fountains Abbey parkrun1283020:33 All -  
Bushy parkrun1681102100:33:01 +
Ormskirk parkrun120930331:04 All -  
Clumber Park parkrun112117600:29:51 +
Pendle parkrun1465926:37 All -  
Wimpole Estate parkrun112916900:28:07 +
Woking parkrun1485824:01 All -  
Tidworth parkrun18615100:51:42 +
Hagley parkrun1182022:38 All -  
Hilly Fields parkrun1859900:25:03 +
Penrhyn parkrun1232624:33 All -  
Tawd Valley parkrun18111000:29:25 +
Salisbury parkrun119326729:45 All -  
Watermeadows parkrun1151500:23:51 +
Jersey parkrun111018530:53 All -  
Eden Project parkrun111116200:30:21 +
Haigh Woodland parkrun18916837:04 All -  
Catford parkrun19512500:27:24 +
Stretford parkrun127540530:23 All -  
Crewe parkrun112315400:30:05 +
Portsmouth Lakeside parkrun1818726:32 All -  
Long Eaton parkrun118122900:28:06 +
Fareham parkrun19011428:52 All -  
Fareham parkrun19511400:28:52 +
Milano Nord parkrun1475327:49 All -  
Phoenix parkrun1232600:27:31 +
Richmond Olympic parkrun15521:59 All -  
Guildford parkrun117125100:30:01 +
Crewe parkrun112315430:05 All -  
Pendle parkrun1465900:26:37 +
Hogmoor Inclosure parkrun111314029:34 All -  
Heaton parkrun133846700:31:01 +
Catford parkrun19512527:24 All -  
Hamilton Lake parkrun1151600:21:47 +
Clitheroe Castle parkrun1639735:46 All -  
Brockenhurst parkrun112718600:32:41 +
Pocket parkrun112419533:47 All -  
Itchen Valley Country parkrun110713500:29:53 +
Ford parkrun1477432:29 All -  
Burnley parkrun114120400:29:06 +
Watermeadows parkrun1151523:51 All -  
Uckfield parkrun1416000:28:43 +
Mountbatten School parkrun17110131:29 All -  
Abingdon parkrun114220200:29:14 +
Uckfield parkrun1416028:43 All -  
Pocket parkrun112419500:33:47 +
Tawd Valley parkrun18111029:25 All -  
Bolton parkrun116221800:31:49 +
Seven Fields parkrun1546728:28 All -  
Richmond Olympic parkrun15500:21:59 +
Itchen Valley Country parkrun110613529:53 All -  
Poole parkrun121328400:28:59 +
Bartley Park parkrun1628430:26 All -  
Portsmouth Lakeside parkrun1818700:26:32 +
Tidworth parkrun18615151:42 All -  
Salisbury parkrun119326700:29:45 +
Bushy parkrun1681102133:01 All -  
2455500:20:06 +
Basingstoke parkrun111212924:31 + All +
2975520:06 All  


Volunteer Summary

RoleOccasions
- Run Director - 21
- Timekeeper - 2
- Token Sorting - 8
- Results Processor - 6
- Photographer - 4
- Marshal - 4
- Pre-event Setup - 6
- Equipment Storage and Delivery - 2
- Barcode Scanning - 2
- Post-event Close Down - 10
- Finish Tokens - 1
- Number Checker - 2
- First Timers Welcome - 1
- Funnel Manager - 1
- Tail Walker - 4
- Volunteer Co-ordinator - 1
- Report Writer - 10
- Pacer (5k only) - 1
Total Credits58

+ Run Director +

21
+ Timekeeper + 2
+ Token Sorting + 8
+ Results Processor + 6
+ Photographer + 4
+ Marshal + 5
+ Pre-event Setup + 6
+ Equipment Storage and Delivery + 2
+ Barcode Scanning + 3
+ Post-event Close Down + 10
+ Finish Tokens + 1
+ Number Checker + 2
+ First Timers Welcome + 1
+ Funnel Manager + 1
+ Tail Walker + 4
+ Volunteer Co-ordinator + 1
+ Report Writer + 10
+ Pacer (5k only) + 1
Total Credits60

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -333,50 +329,32 @@

Andrew TAYLOR (A13093
- Locations: 461 -
-
- Finishers: 874,038 + Locations: 497
- Finishes: 13,636,741 + Finishers: 1099859
- All-time events: 117,506 + Finishes: 18040066
- Volunteers: 141,876 + All-time events: 153759
- PBs: 2,025,680 + Volunteers: 169010
- Average finish time: 00:33:07 + PBs: 2602220
- Average finishes per participant: 15.6 + Average finish time: 00:33:18
- Groups: 4,461 + Groups: 5038
-
-
- Female record: - Isobel BATT-DOYLE – 15:25 - (31 Dec 2022) -
-
- Male record: - James HANSEN – 13:53 - (27 Aug 2022) -
-
- Age graded record: - Norma WALLETT - 111.04% 35:37 - ( 5 Oct 2019) -
+

- Stats last updated: Fri 14 Apr 2023 00:35:08 UTC + Stats last updated: Mon 30 Sep 2024 00:35:59 UTC
@@ -392,28 +370,32 @@

Andrew TAYLOR (A13093 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -447,8 +439,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/2705084/all/index.html index c23fa339..87bfed3a 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Australia @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,46 +66,36 @@
@@ -132,10 +118,10 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -167,50 +153,32 @@

Duncan BOOTH (A270508
- Locations: 461 -
-
- Finishers: 877,219 + Locations: 497
- Finishes: 13,694,064 + Finishers: 1099859
- All-time events: 117,954 + Finishes: 18040066
- Volunteers: 142,257 + All-time events: 153759
- PBs: 2,033,719 + Volunteers: 169010
- Average finish time: 00:33:07 + PBs: 2602220
- Average finishes per participant: 15.6 + Average finish time: 00:33:18
- Groups: 4,469 + Groups: 5038
-
-
- Female record: - Isobel BATT-DOYLE – 15:25 - (31 Dec 2022) -
-
- Male record: - James HANSEN – 13:53 - (27 Aug 2022) -
-
- Age graded record: - Norma WALLETT - 111.04% 35:37 - ( 5 Oct 2019) -
+
- Stats last updated: Mon 17 Apr 2023 00:35:12 UTC + Stats last updated: Mon 30 Sep 2024 00:35:59 UTC
@@ -226,28 +194,32 @@

Duncan BOOTH (A270508 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -281,8 +263,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/2705084/index.html index ce518607..6555a9a1 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + results | parkrun Australia @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,46 +66,36 @@
@@ -132,18 +118,18 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volunteer Summary

RoleOccasions
- Marshal - 260
- Lead Bike - 130
- Event Day Course Check - 9
Total Credits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Volunteer Summary

RoleOccasions
+ Marshal + 350
+ Lead Bike + 130
+ Event Day Course Check + 82
Total Credits540

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



@@ -173,50 +159,32 @@

Duncan BOOTH (A270508
- Locations: 461 -
-
- Finishers: 877,219 + Locations: 497
- Finishes: 13,694,064 + Finishers: 1099859
- All-time events: 117,954 + Finishes: 18040066
- Volunteers: 142,257 + All-time events: 153759
- PBs: 2,033,719 + Volunteers: 169010
- Average finish time: 00:33:07 + PBs: 2602220
- Average finishes per participant: 15.6 + Average finish time: 00:33:18
- Groups: 4,469 + Groups: 5038
-
-
- Female record: - Isobel BATT-DOYLE – 15:25 - (31 Dec 2022) -
-
- Male record: - James HANSEN – 13:53 - (27 Aug 2022) -
-
- Age graded record: - Norma WALLETT - 111.04% 35:37 - ( 5 Oct 2019) -
+

- Stats last updated: Mon 17 Apr 2023 00:35:12 UTC + Stats last updated: Mon 30 Sep 2024 00:35:59 UTC
@@ -232,28 +200,32 @@

Duncan BOOTH (A270508 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -287,8 +269,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/482/all/index.html index 404e3f14..af05e654 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Australia @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,46 +66,36 @@
@@ -124,11 +110,11 @@
- + - - parkrun shop + @@ -137,1650 +123,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM40-44 + Most recent age category was VM45-49

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time16:2521:0459:17
Age Grading79.25%65.45%23.56%
Overall Position134.831692

+
FastestAverage
(mean)
Slowest
Time16:2521:2659:17
Age Grading79.25%64.63%23.56%
Overall Position138.841692

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Harleston Magpies08/04/2023793525:1255.42% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03% +   +
Quakers Walk25/11/2023126825:0556.08%   -
Cannock Chase01/04/20232434425:4954.10% +
Aston Hall18/11/202352225:0156.23%   -
Kingston25/03/202360216430:0946.32% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Wolford Wood18/03/202352730:2445.94% +
Belvoir Castle04/11/2023911925:4254.73%   -
Kingston11/03/202360015027:1851.16% +
Five Arches28/10/202365422:5861.25%   -
Stockley Country04/03/2023817935:3239.31% +
Dover Waterfront21/10/202374525:2255.45%   -
Chasewater25/02/202310010026:1953.07% +
Rushcliffe14/10/20235087323:5458.86%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Kingston07/10/202363033150:2927.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Maaraue03/10/20231012522:3462.33%   -
Worcester04/02/202354318529:3047.34% +
University of Northampton30/09/2023112223:2460.11%   -
Crane Park28/01/202349014550:3727.59% +
Clifton23/09/20231911025:1455.75%   -
Kingston21/01/202359431139:3935.22% +
Wisbech16/09/202351523:0361.03%   -
Brooklands14/01/202313018830:4445.44% +
Holbrooks09/09/202362223:4359.31%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston01/01/202359113340:3134.47% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Kingston31/12/202259026442:4432.68% +
Riverfront19/08/20232594622:5761.29%   -
Bushy Park25/12/2022909169244:3931.28% +
Long Eaton12/08/202334112124:0658.37%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Kingston05/08/20236216723:2160.24%   -
Kingston17/12/202258818059:1723.56% +
Kingston29/07/20236208725:0955.93%   -
Kingston10/12/202258723255:4025.09% +
Kingston22/07/20236199224:2457.65%   -
Beacon03/12/2022737326:4152.34% +
Severn Valley Country15/07/20231411626:1353.66%   -
Ganger Farm26/11/2022211426:3452.57% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Bushy Park19/11/2022903110553:2326.16% +
Thornham Walks01/07/202353826:5251.99%   -
Leavesden Country12/11/202246928:3248.95% +
Kingston24/06/20236156524:0957.83%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Rosliston17/06/20233073624:4156.58%   -
Durlston Country Park29/10/2022335032:4542.65% +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1811,50 +1963,32 @@

Danny NORMAN (A482)
- Locations: 461 -
-
- Finishers: 874,038 + Locations: 497
- Finishes: 13,636,741 + Finishers: 1099859
- All-time events: 117,506 + Finishes: 18040066
- Volunteers: 141,876 + All-time events: 153759
- PBs: 2,025,680 + Volunteers: 169010
- Average finish time: 00:33:07 + PBs: 2602220
- Average finishes per participant: 15.6 + Average finish time: 00:33:18
- Groups: 4,461 + Groups: 5038
-

-
- Female record: - Isobel BATT-DOYLE – 15:25 - (31 Dec 2022) -
-
- Male record: - James HANSEN – 13:53 - (27 Aug 2022) -
-
- Age graded record: - Norma WALLETT - 111.04% 35:37 - ( 5 Oct 2019) -
+
- Stats last updated: Fri 14 Apr 2023 00:35:08 UTC + Stats last updated: Mon 30 Sep 2024 00:35:59 UTC
@@ -1870,28 +2004,32 @@

Danny NORMAN (A482) - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1925,8 +2073,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/482/index.html index a431342e..b9e8e14a 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + results | parkrun Australia @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,46 +66,36 @@
@@ -124,11 +110,11 @@
- + - - + Polar sale banner @@ -136,878 +122,1004 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns total

+

867 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM40-44 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2321100:16:25 + Most recent age category was VM45-49 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2341116:25 + All +
Kingston parkrun471116:51 + All +
Bedfont Lakes parkrun81117:04 + All +
Nonsuch parkrun71116:52 + All +
Richmond parkrun71117:13 + All +
Crane Park parkrun61116:48 + All +
Riddlesdown parkrun42217:01 + All +
Southwark parkrun34417:27 + All +
Fulham Palace parkrun33317:47 + All +
Cannon Hill parkrun, Birmingham3111118:04 + All +
Gunnersbury parkrun31116:51 + All +
Wimbledon Common parkrun35517:27 + All +
Brighton & Hove parkrun31116:27 + All +
Basingstoke parkrun35517:48 + All +
Black Park parkrun31117:25 + All +
Dulwich parkrun33317:11 + All +
Bexley parkrun31117:48 + All +
Tilgate parkrun31117:10 + All +
Frimley Lodge parkrun31117:11 + All +
Hilly Fields parkrun31117:50 + All +
Old Deer Park parkrun31117:41 + All +
Guildford parkrun31117:17 + All +
Homewood parkrun3151722:21 + All +
Brockwell parkrun, Herne Hill31116:56 + All +
St Albans parkrun21116:37 + All +
Havant parkrun21117:46 + All +
Ashford parkrun22217:57 + All +
Bedford parkrun21116:55 + All +
Margate parkrun21118:16 + All +
Milton Keynes parkrun23317:26 + All +
Preston Park parkrun, Brighton22217:40 + All +
Shorne Woods parkrun21118:14 + All +
Canons Park parkrun27720:50 + All +
Osterley parkrun21117:57 + All +
Eastleigh parkrun27719:14 + All +
Brooklands parkrun2394223:22 + All +
Great Lines parkrun, Medway25518:25 + All +
Malling Rec parkrun2738526:59 + All +
Crystal Palace parkrun21117:24 All - Graph It!
Kingston parkrun351100:16:51 +
Northala Fields parkrun22218:06 All - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Northampton parkrun21116:56 All - Graph It!
Richmond parkrun71100:17:13 +
Oak Hill parkrun21117:13 All - Graph It!
Nonsuch parkrun71100:16:52 +
Lloyd parkrun, Croydon21118:01 All - Graph It!
Crane Park parkrun61100:16:48 +
Newbury parkrun21117:20 All - Graph It!
Brighton & Hove parkrun31100:16:27 +
Cranleigh parkrun26620:49 All - Graph It!
Fulham Palace parkrun33300:17:47 +
Littlehampton Prom parkrun2384324:22 All - Graph It!
Frimley Lodge parkrun31100:17:11 +
Whitstable parkrun23318:12 All - Graph It!
Gunnersbury parkrun31100:16:51 +
Bethlem Royal Hospital parkrun2263223:22 All - Graph It!
Bexley parkrun31100:17:48 +
Cyclopark parkrun2353824:01 All - Graph It!
Tilgate parkrun31100:17:10 +
Hockley Woods parkrun26621:09 All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
South Oxhey parkrun21119:13 All - Graph It!
Southwark parkrun34400:17:27 +
Pymmes parkrun21117:06 All - Graph It!
Basingstoke parkrun35500:17:48 +
Hastings parkrun291120:41 All - Graph It!
Hilly Fields parkrun31100:17:50 +
Wycombe Rye parkrun22217:17 All - Graph It!
Black Park parkrun31100:17:25 +
Hove Promenade parkrun27719:23 All - Graph It!
Riddlesdown parkrun32200:17:01 +
Banstead Woods parkrun21117:31 All - Graph It!
Dulwich parkrun33300:17:11 +
Wormwood Scrubs parkrun21118:00 All - Graph It!
Guildford parkrun31100:17:17 +
Roundshaw Downs parkrun23318:14 All - Graph It!
Old Deer Park parkrun31100:17:41 +
Mile End parkrun21116:53 All - Graph It!
Wimbledon Common parkrun35500:17:27 +
Bevendean Down parkrun28923:21 All - Graph It!
Homewood parkrun3151700:22:21 +
Finsbury parkrun22217:15 All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Tooting Common parkrun2181819:14 All - Graph It!
Pymmes parkrun21100:17:06 +
Bedgebury Pinetum parkrun28921:24 All - Graph It!
Hove Promenade parkrun27700:19:23 +
Harrow parkrun25520:23 All - Graph It!
Netley Abbey parkrun21100:17:21 +
Netley Abbey parkrun21117:21 All - Graph It!
Mile End parkrun21100:16:53 +
Ellenbrook Fields parkrun2141519:58 All - Graph It!
Southampton parkrun23300:16:44 +
Worthing parkrun28918:44 All - Graph It!
Northala Fields parkrun22200:18:06 +
Grovelands parkrun, Enfield22217:21 All - Graph It!
Hockley Woods parkrun26600:21:09 +
Beckton parkrun23317:24 All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Gladstone parkrun21117:09 All - Graph It!
Upton Court parkrun22200:17:24 +
Hackney Marshes parkrun22216:46 All - Graph It!
Alice Holt parkrun21100:17:59 +
Burgess parkrun22216:45 All - Graph It!
Osterley parkrun21100:17:57 +
Orpington parkrun22217:27 All - Graph It!
Burgess parkrun22200:16:45 +
Barking parkrun22216:45 All - Graph It!
Gladstone parkrun21100:17:09 +
Southampton parkrun23316:44 All - Graph It!
Havant parkrun21100:17:46 +
Alice Holt parkrun21117:59 All - Graph It!
Cranleigh parkrun26600:20:49 +
Woodley parkrun21117:02 All - Graph It!
Finsbury parkrun22200:17:15 +
Upton Court parkrun22217:24 All - Graph It!
Southsea parkrun23300:17:55 +
Chelmsford Central parkrun22217:24 All - Graph It!
Margate parkrun21100:18:16 +
Mole Valley parkrun2262622:56 All - Graph It!
Northampton parkrun21100:16:56 +
Durlston Country Park parkrun2355032:45 All - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Hazelwood parkrun2182222:21 All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Southsea parkrun23317:55 All - Graph It!
Crystal Palace parkrun21100:17:24 +
Brandon Country Park parkrun11118:30 All - Graph It!
Eastleigh parkrun27700:19:14 +
Prospect parkrun1232322:42 All - Graph It!
Hastings parkrun291100:20:41 +
Mildenhall Hub parkrun1273124:33 All - Graph It!
Banstead Woods parkrun21100:17:31 +
York parkrun12217:12 All - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Thetford parkrun1161721:45 All - Graph It!
Hackney Marshes parkrun22200:16:46 +
Great Dunmow parkrun14420:25 All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Leavesden Country parkrun1506928:32 All - Graph It!
Woodley parkrun21100:17:02 +
Catford parkrun1303322:32 All - Graph It!
Tooting Common parkrun2181800:19:14 +
Lordship Recreation Ground parkrun19112425:22 All - Graph It!
Milton Keynes parkrun23300:17:26 +
Rugby parkrun1181822:26 All - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Mulbarton parkrun12219:55 All - Graph It!
Barking parkrun22200:16:45 +
Swaffham parkrun191022:19 All - Graph It!
Canons Park parkrun27700:20:50 +
Ganger Farm parkrun19811426:34 All - Graph It!
Newbury parkrun21100:17:20 +
Beckenham Place parkrun1121220:28 All - Graph It!
Shorne Woods parkrun21100:18:14 +
Forest Rec parkrun1677626:35 All - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Street parkrun1283525:52 All - Graph It!
Mole Valley parkrun2262600:22:56 +
Market Bosworth Country Park parkrun110614435:35 All - Graph It!
Oak Hill parkrun21100:17:13 +
Whiteley parkrun1141520:56 All - Graph It!
Cyclopark parkrun2353800:24:01 +
Kingsbury Water parkrun1394725:05 All - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Springhill parkrun14422:18 All - Graph It!
South Oxhey parkrun21100:19:13 +
Wolford Wood parkrun1212730:24 All - Graph It!
Chelmsford Central parkrun22200:17:24 +
Pontypridd parkrun12217:54 All - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Pocket parkrun1222321:38 All - Graph It!
Bevendean Down parkrun28900:23:21 +
Stockley Country parkrun111917935:32 All - Graph It!
Bedford parkrun21100:16:55 +
Braunstone parkrun1262720:41 All - Graph It!
Whitstable parkrun23300:18:12 +
Didcot parkrun1101121:28 All - Graph It!
Orpington parkrun22200:17:27 +
Littleport parkrun1445125:16 All - Graph It!
Ashford parkrun22200:17:57 +
Yarborough Leisure Centre parkrun1466125:59 All - Graph It!
Hazelwood parkrun2182200:22:21 +
Roding Valley parkrun1111321:26 All - Graph It!
Brooklands parkrun2394200:23:22 +
Clair parkrun13318:36 All - Graph It!
Wycombe Rye parkrun22200:17:17 +
Dinton Pastures parkrun1131321:23 All - Graph It!
Harrow parkrun25500:20:23 +
Beacon Hill Country Park parkrun1273725:54 All - Graph It!
Beckton parkrun23300:17:24 +
Severn Bridge parkrun1353921:32 All - Graph It!
St Albans parkrun21100:16:37 +
Abbey Park parkrun1779425:21 All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Dudley parkrun1445626:35 All -  
Buckingham parkrun12200:18:37 +
Pegwell Bay parkrun12217:40 All -  
Thomas Mills parkrun1486500:30:19 +
Manor Field parkrun, Whittlesey1121324:25 All -  
Leamington parkrun12200:18:52 +
Blaise Castle parkrun112816326:20 All -  
Church Mead parkrun16610200:32:53 +
Chipping Sodbury parkrun1303221:20 All -  
Letchworth parkrun1141400:23:13 +
Foots Cray Meadows parkrun1212323:17 All -  
Mulbarton parkrun12200:19:55 +
Thames Path parkrun, Woolwich1789023:42 All -  
Arrow Valley parkrun13300:18:05 +
Bath Skyline parkrun1192021:08 All -  
Frogmary Green Farm parkrun1597200:25:58 +
Dishley parkrun, Loughborough110311424:30 All -  
Sutton Park parkrun1475500:24:54 +
Thornham Walks parkrun1363826:52 All -  
Reigate Priory parkrun16600:19:06 +
Moors Valley parkrun19919:40 All -  
Bury St Edmunds parkrun13300:18:17 +
East Grinstead parkrun1131423:10 All -  
Pollok parkrun, Glasgow11100:17:00 +
Sutton Park parkrun1475524:54 All -  
Kingdom parkrun1222500:24:39 +
University of Northampton parkrun1192223:24 All -  
Barclay parkrun15600:23:13 +
Shipley Country parkrun1232424:45 All -  
Chippenham parkrun1212100:20:08 +
Lancing Beach Green parkrun1141421:08 All -  
Ipswich parkrun11100:17:34 +
Dover Waterfront parkrun1374525:22 All -  
Itchen Valley Country parkrun1476100:27:37 +
Rickmansworth parkrun1242721:39 All -  
Neckarau parkrun1243000:27:11 +
Queen Elizabeth parkrun12219:08 All -  
Brandon Country Park parkrun11100:18:30 +
Sizewell parkrun1172023:30 All -  
Boston parkrun17700:21:18 +
Holbrooks parkrun1202223:43 All -  
University Parks parkrun119032600:31:42 +
Highbury Fields parkrun11117:25 All -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Clacton Seafront parkrun19920:35 All -  
Lullingstone parkrun17700:21:21 +
Delaware and Raritan Canal parkrun12221:06 All -  
Coventry parkrun1292900:20:51 +
Wisbech parkrun1111523:03 All -  
Berkeley Green parkrun1233100:28:31 +
Milton Country parkrun13317:43 All -  
Mersea Island parkrun1121200:20:59 +
Seaton parkrun1394824:09 All -  
Aylesbury parkrun11100:17:51 +
Higginson parkrun, Marlow1272922:17 All -  
Royal Tunbridge Wells parkrun18900:19:23 +
Quakers Walk parkrun1566825:05 All -  
Southall parkrun1557500:31:38 +
Lister Park parkrun, Bradford1313621:55 All -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Wendover Woods parkrun1262623:51 All -  
Pomphrey Hill parkrun1364100:23:02 +
Sence Valley Forest Park parkrun1232526:28 All -  
Henley-on-Thames parkrun1111100:22:25 +
Canterbury parkrun16621:56 All -  
Aachener Weiher parkrun1101100:24:55 +
Henstridge Airfield parkrun18821:41 All -  
Penrose parkrun1151600:19:40 +
Five Arches parkrun1455422:58 All -  
King’s Lynn parkrun1151500:20:07 +
Yeovil Montacute parkrun1707525:51 All -  
Fulbourn Hospital parkrun1344700:24:59 +
Watermeadows parkrun1283124:57 All -  
Fareham parkrun16600:19:21 +
Tamworth Castle Grounds parkrun1333523:26 All -  
Brockenhurst parkrun13300:18:23 +
St Helens parkrun1606824:27 All -  
Canterbury parkrun16600:21:56 +
Weymouth parkrun1141420:45 All -  
Alton Water parkrun1538300:35:09 +
Walmer and Deal Seafront parkrun18821:38 All -  
Littleport parkrun1445100:25:16 +
Aston Hall parkrun1202225:01 All -  
Newport parkrun11100:17:29 +
Royal Tunbridge Wells parkrun18919:23 All -  
California Country parkrun1649000:28:49 +
Corby parkrun18823:09 All -  
Thornbury parkrun1323400:28:19 +
Marlborough Common parkrun1202122:48 All -  
Greenwich parkrun12200:18:07 +
Battlestead Croft parkrun1111122:53 All -  
Seven Fields parkrun1475500:26:28 +
Shepton Mallet parkrun1121421:50 All -  
Highbury Fields parkrun11100:17:25 +
Clare Castle parkrun1252723:04 All -  
The Great Field parkrun19313500:29:12 +
Coldham’s Common parkrun1535923:04 All -  
Street parkrun1283500:25:52 +
Brunswick Park parkrun1212223:58 All -  
South Norwood parkrun1121200:21:11 +
Brentwood parkrun17722:28 All -  
Dunstable Downs parkrun1374300:24:58 +
Somerdale Pavilion parkrun1384631:17 All -  
Melton Mowbray parkrun1192200:22:38 +
Wakehurst parkrun18810525:00 All -  
Horsham parkrun14500:18:16 +
Boston parkrun17721:18 All -  
Irchester Country parkrun1586200:25:13 +
Morden parkrun111715526:58 All -  
Stratford-upon-Avon parkrun1202500:21:14 +
Pontefract parkrun1718724:10 All -  
Wotton parkrun1182100:24:45 +
Jersey Farm parkrun1252723:11 All -  
Bath Skyline parkrun1192000:21:08 +
Bug Hunter Waters parkrun1455022:41 All -  
Great Dunmow parkrun14400:20:25 +
Rosliston parkrun1333624:41 All -  
Corby parkrun18800:23:09 +
Longrun Meadow parkrun111416532:01 All -  
Bracknell parkrun18800:20:04 +
Fire Service College parkrun1181922:12 All -  
Cromhall parkrun1151600:24:20 +
Woolacombe Dunes parkrun19410931:20 All -  
Perry Hall parkrun1464900:24:58 +
The Plens parkrun1303124:04 All -  
Gunpowder parkrun12200:17:34 +
Arrow Valley parkrun13318:05 All -  
Luton Wardown parkrun191000:19:36 +
Tonbridge parkrun14418:40 All -  
Ifield Mill Pond parkrun1373800:24:33 +
East Brighton parkrun1182123:56 All -  
March parkrun15500:21:11 +
Three Brooks parkrun1697223:46 All -  
Roding Valley parkrun1111300:21:26 +
Peacehaven parkrun17721:07 All -  
Charlton parkrun18213000:32:05 +
Pontypool parkrun1232323:51 All -  
Malmö Ribersborg parkrun111215100:28:46 +
Cromhall parkrun1151624:20 All -  
Worcester parkrun114418500:29:30 +
Dereham parkrun1323323:47 All -  
Wolford Wood parkrun1212700:30:24 +
Bournemouth parkrun14417:43 All -  
Fire Service College parkrun1181900:22:12 +
Pomphrey Hill parkrun1364123:02 All -  
Panshanger parkrun17700:20:14 +
Seaford Beach parkrun1535622:25 All -  
Conkers parkrun12200:17:46 +
Mansfield parkrun11117:09 All -  
Banbury parkrun1222300:21:16 +
Fountains Abbey parkrun11118:03 All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Loch Neaton parkrun, Watton1171725:49 All -  
Rushmere parkrun1131400:22:39 +
Brueton parkrun1475021:33 All -  
Whiteley parkrun1141500:20:56 +
Great Cornard parkrun1192020:33 All -  
Sandringham parkrun1466300:30:18 +
Dunstable Downs parkrun1374324:58 All -  
Victoria Dock parkrun1283000:20:04 +
Beeston parkrun1374023:53 All -  
Queen Elizabeth parkrun12200:19:08 +
Feltham parkrun13424:56 All -  
Lordship Recreation Ground parkrun19112400:25:22 +
Markeaton parkrun1576422:56 All -  
Somerdale Pavilion parkrun1384600:31:17 +
Reigate Priory parkrun16619:06 All -  
Dartford parkrun11100:17:59 +
Highwoods parkrun1252624:49 All -  
Winchester parkrun14500:18:28 +
Valentines parkrun11116:49 All -  
Stratford Park parkrun, Stroud1566500:27:51 +
Springburn parkrun, Glasgow13318:05 All -  
Sherwood Pines parkrun1161800:21:33 +
California Country parkrun1649028:49 All -  
Grove Fields parkrun1578500:28:03 +
Rushmoor parkrun19918:29 All -  
Witney parkrun1202000:22:34 +
Mountbatten School parkrun1323424:11 All -  
Preston Park parkrun, Brighton12200:17:40 +
Colchester Castle parkrun14418:04 All -  
Colchester Castle parkrun14400:18:04 +
Buckingham parkrun12218:37 All -  
Tidworth parkrun110815500:35:14 +
Sunny Hill parkrun1202424:39 All -  
Walmer and Deal Seafront parkrun18800:21:38 +
Bognor Regis parkrun12218:12 All -  
Ferry Meadows parkrun15500:17:27 +
Aachener Weiher parkrun1101124:55 All -  
St Mary’s parkrun1587400:29:14 +
Peckham Rye parkrun11117:49 All -  
Dartford Heath parkrun1171700:22:06 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 All -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Great Notley parkrun16620:16 All -  
Great Denham parkrun16600:19:27 +
Snowden Field parkrun1242624:15 All -  
Hastings High School parkrun1637800:27:33 +
Burnham-on-Crouch parkrun18822:01 All -  
Wendover Woods parkrun1262600:23:51 +
Woking parkrun18818:19 All -  
Peckham Rye parkrun11100:17:49 +
Neckarufer parkrun, Esslingen1364425:12 All -  
Upton House parkrun1252700:22:34 +
Worcester parkrun114418529:30 All -  
Lee-on-the-Solent parkrun17700:19:40 +
Blandford parkrun18920:11 All -  
Graves parkrun11100:18:18 +
Pont y Bala parkrun15723:18 All -  
Maidstone parkrun13300:18:00 +
Chichester parkrun13319:05 All -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Kingdom parkrun1222524:39 All -  
South Woodham Ferrers parkrun18800:21:14 +
Westmill parkrun1101022:55 All -  
Pontypridd parkrun12200:17:54 +
Dartford parkrun11117:59 All -  
Bournemouth parkrun14400:17:43 +
Hanworth parkrun1364024:26 All -  
Sizewell parkrun1172000:23:30 +
Bracknell parkrun18820:04 All -  
Rushmoor parkrun19900:18:29 +
Folkestone parkrun1212521:48 All -  
Walsall Arboretum parkrun19810600:25:31 +
Uckfield parkrun1404324:12 All -  
Gorleston Cliffs parkrun12200:17:43 +
Harrogate parkrun13318:11 All -  
Uckfield parkrun1404300:24:12 +
Kesgrave parkrun1374021:18 All -  
Aldenham parkrun1141400:21:37 +
Thomas Mills parkrun1486530:19 All -  
Gadebridge parkrun1141400:22:22 +
Lymington Woodside parkrun15721:59 All -  
Horspath parkrun17410600:28:12 +
Hereford parkrun1535323:07 All -  
Rogiet parkrun1151600:24:27 +
Chasewater parkrun18210026:19 All -  
Rendlesham Forest parkrun1264600:37:01 +
South Norwood parkrun1121221:11 All -  
Dishley parkrun, Loughborough110311400:24:30 +
Panshanger parkrun17720:14 All -  
Great Cornard parkrun1192000:20:33 +
Wolverhampton parkrun1556624:54 All -  
Kettering parkrun1232600:22:50 +
Harcourt Hill parkrun1171721:13 All -  
Pont y Bala parkrun15700:23:18 +
Tetbury Goods Shed parkrun1253024:25 All -  
Burnham and Highbridge parkrun17510000:27:51 +
Gloucester North parkrun1101022:14 All -  
Stonehouse parkrun1131300:20:09 +
Harlow parkrun1151523:00 All -  
Hampstead Heath parkrun11100:17:45 +
Alvaston parkrun1515922:24 All -  
Wickford Memorial parkrun1436600:51:15 +
Worcester Pitchcroft parkrun111814327:04 All -  
Castle Park parkrun1394100:22:34 +
Perry Hall parkrun1464924:58 All -  
Huntingdon parkrun1202100:21:10 +
Newport parkrun11117:29 All -  
Great Salterns parkrun19212400:30:27 +
Tring parkrun1171823:38 All -  
Snowden Field parkrun1242600:24:15 +
Severn Valley Country parkrun1141626:13 All -  
Southend parkrun11100:16:28 +
Wanstead Flats parkrun13317:13 All -  
Andover parkrun11100:17:33 +
Daventry parkrun1151521:10 All -  
parkrun Zalew Żyrardowski16700:24:38 +
St Mary’s parkrun1587429:14 All -  
Marecchia parkrun11100:19:50 +
Poole parkrun14416:57 All -  
Cheltenham parkrun12200:17:24 +
Melton Mowbray parkrun1192222:38 All -  
St Helens parkrun1606800:24:27 +
The Old Showfield parkrun1636923:30 All -  
Bartley Park parkrun18415100:32:38 +
Henley-on-Thames parkrun1111122:25 All -  
Severn Bridge parkrun1353900:21:32 +
Crissy Field parkrun1101220:40 All -  
Pontypool parkrun1232300:23:51 +
Babbs Mill parkrun1405128:00 All -  
Poole parkrun14400:16:57 +
Maidenhead parkrun17718:49 All -  
Bramhall parkrun115924700:35:16 +
Ross-on-Wye parkrun1172124:22 All -  
Sunny Hill parkrun1202400:24:39 +
Kettering parkrun1232622:50 All -  
Cassiobury parkrun1111100:20:14 +
Stratford Park parkrun, Stroud1566527:51 All -  
Hoblingwell parkrun1202400:23:52 +
Bury St Edmunds parkrun13318:17 All -  
Colwick parkrun18800:19:46 +
Mallards Pike parkrun1324630:57 All -  
Chipping Norton School parkrun1455100:26:40 +
Market Harborough parkrun1303121:17 All -  
Worthing parkrun18900:18:44 +
Cassiobury parkrun1111120:14 All -  
Harrow Lodge parkrun11100:18:48 +
Squerryes Winery parkrun1323627:45 All -  
Bradford parkrun1313600:21:55 +
Walsall Arboretum parkrun19010625:31 All -  
Bury Field parkrun1669000:33:07 +
Penrose parkrun1151619:40 All -  
Pocket parkrun1222300:21:38 +
King George V Playing Field parkrun, Cheltenham1232826:08 All -  
Longrun Meadow parkrun111416500:32:01 +
Evesham parkrun1111121:39 All -  
Worcester Pitchcroft parkrun111814300:27:04 +
Warwick Racecourse parkrun1486024:55 All -  
Highwoods parkrun1252600:24:49 +
Huddersfield parkrun1626722:02 All -  
Maidenhead parkrun17700:18:49 +
Clevedon Salthouse Fields parkrun1384925:13 All -  
Soham Village College parkrun1253200:28:03 +
Long Eaton parkrun19912124:06 All -  
Rickmansworth parkrun1242700:21:39 +
Barry Island parkrun1394223:51 All -  
Swaffham parkrun191000:22:19 +
Ifield Mill Pond parkrun1373824:33 All -  
Brentwood parkrun17700:22:28 +
Upton House parkrun1252722:34 All -  
Lymington Woodside parkrun15700:21:59 +
Lullingstone parkrun17721:21 All -  
Loch Neaton parkrun, Watton1171700:25:49 +
The Leas parkrun, Minster1252524:37 All -  
Daventry parkrun1151500:21:10 +
Medina I.O.W. parkrun11117:20 All -  
Hatfield Forest parkrun1181800:20:36 +
Uditore parkrun13320:28 All -  
Kingsway parkrun, Gloucester1192000:21:20 +
Hunstanton Promenade parkrun1283523:45 All -  
Salcey Forest parkrun1384300:24:53 +
Raphael parkrun13319:35 All -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Burnham and Highbridge parkrun17510027:51 All -  
Prospect parkrun1232300:22:42 +
Salcey Forest parkrun1384324:53 All -  
Weymouth parkrun1141400:20:45 +
Ferry Meadows parkrun15517:27 All -  
Westmill parkrun1101000:22:55 +
Barclay parkrun15623:13 All -  
East Brighton parkrun1182100:23:56 +
Irchester Country parkrun1586225:13 All -  
Harlow parkrun1151500:23:00 +
Maldon Prom parkrun11118:04 All -  
Linford Wood parkrun1222200:21:45 +
Salisbury parkrun1111119:34 All -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Tremorfa parkrun1272923:30 All -  
Lydney parkrun1202100:23:19 +
Billericay parkrun1121321:20 All -  
Braunstone parkrun1262700:20:41 +
Gedling parkrun1273224:59 All -  
Harleston Magpies parkrun1293500:25:12 +
Oaklands parkrun111820336:10 All -  
Clapham Common parkrun1404200:20:22 +
Winchester parkrun14518:28 All -  
Market Bosworth Country Park parkrun110614400:35:35 +
Aldenham parkrun1141421:37 All -  
Jersey Farm parkrun1252700:23:11 +
East Park parkrun1121424:18 All -  
Kesgrave parkrun1374000:21:18 +
Soham Village College parkrun1253228:03 All -  
Stevenage parkrun17700:19:32 +
Stevenage parkrun17719:32 All -  
Hadleigh parkrun, Essex1252600:24:27 +
Tewkesbury parkrun1111422:50 All -  
Squerryes Winery parkrun1323600:27:45 +
Seven Fields parkrun1475526:28 All -  
Rutland Water parkrun1293000:22:44 +
Conkers parkrun12217:46 All -  
Beckenham Place parkrun1121200:20:28 +
Lee-on-the-Solent parkrun17719:40 All -  
Sutcliffe parkrun113117200:30:34 +
Brixworth Country parkrun1496126:53 All -  
Haverhill parkrun1121300:23:32 +
Abingdon parkrun15518:03 All -  
Leavesden Country parkrun1506900:28:32 +
Lowestoft parkrun1232621:10 All -  
Coldham’s Common parkrun1535900:23:04 +
Chipping Norton School parkrun1455126:40 All -  
Chichester parkrun13300:19:05 +
Linford Wood parkrun1222221:45 All -  
Billericay parkrun1121300:21:20 +
Harwich parkrun191021:22 All -  
Bromley parkrun13300:17:18 +
Fulbourn Hospital parkrun1344724:59 All -  
Babbs Mill parkrun1405100:28:00 +
Gunpowder parkrun12217:34 All -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Dartford Heath parkrun1171722:06 All -  
Bryn Bach parkrun11100:16:50 +
Sandhurst Memorial parkrun1537328:54 All -  
York parkrun12200:17:12 +
Woodhouse Moor parkrun11117:22 All -  
Storeys Field parkrun115121100:28:49 +
Sandwell Valley parkrun1455930:43 All -  
Chipping Sodbury parkrun1303200:21:20 +
Wyre Forest parkrun1434825:56 All -  
Mote Park parkrun19712200:31:28 +
parkrun Zalew Żyrardowski16724:38 All -  
Watermeadows parkrun1283100:24:57 +
Bramhall parkrun115924735:16 All -  
Woking parkrun18800:18:19 +
Hatfield Forest parkrun1181820:36 All -  
Raphael parkrun13300:19:35 +
Swansea Bay parkrun1748323:44 All -  
Harwich parkrun191000:21:22 +
Wollaton Hall parkrun1889723:51 All -  
Fritton Lake parkrun11100:18:26 +
Horsham parkrun14518:16 All -  
Heartwood Forest parkrun1252700:21:41 +
Jersey parkrun16619:41 All -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Berkeley Green parkrun1233128:31 All -  
Bedworth parkrun1171700:22:14 +
Cardiff parkrun111011722:02 All -  
Clair parkrun13300:18:36 +
Ally Pally parkrun11118:09 All -  
Brueton parkrun1475000:21:33 +
Thurrock parkrun, Orsett Heath16620:41 All -  
Higginson parkrun, Marlow1272900:22:17 +
Beacon parkrun1587326:41 All -  
Bognor Regis parkrun12200:18:12 +
Albert parkrun, Middlesbrough1515423:17 All -  
Huddersfield parkrun1626700:22:02 +
Sherwood Pines parkrun1161821:33 All -  
Heaton parkrun13300:18:08 +
Wickford Memorial parkrun1436651:15 All -  
Chasewater parkrun18210000:26:19 +
Thornbury parkrun1323428:19 All -  
Tewkesbury parkrun1111400:22:50 +
Malling parkrun18314547:25 All -  
Marple parkrun11100:17:15 +
Itchen Valley Country parkrun1476127:37 All -  
Cannock Chase parkrun1384400:25:49 +
Pollok parkrun, Glasgow11117:00 All -  
Edgbaston Reservoir parkrun1658600:26:24 +
Eastville parkrun120525325:12 All -  
Cirencester parkrun1222400:22:40 +
Rutland Water parkrun1293022:44 All -  
Kingsbury Water parkrun1394700:25:05 +
Chalkwell Beach parkrun1819624:40 All -  
Peacehaven parkrun17700:21:07 +
Amager Fælled parkrun1333724:23 All -  
Lancing Beach Green parkrun1141400:21:08 +
Hoblingwell parkrun1202423:52 All -  
Springburn parkrun, Glasgow13300:18:05 +
Belton House parkrun1141523:48 All -  
Market Harborough parkrun1303100:21:17 +
Kagerzoom parkrun1435824:39 All -  
Amager Fælled parkrun1333700:24:23 +
Gorleston Cliffs parkrun12217:43 All -  
Hanworth parkrun1364000:24:26 +
King’s Lynn parkrun1151520:07 All -  
Salisbury parkrun1111100:19:34 +
Holkham parkrun1506925:37 All -  
Houghton Hall parkrun1131300:21:48 +
Horspath parkrun17410628:12 All -  
Chalkwell Beach parkrun1819600:24:40 +
Southwick Country parkrun1272921:47 All -  
Melksham parkrun1171700:24:31 +
Rushmere parkrun1131422:39 All -  
Thetford parkrun1161700:21:45 +
Zuiderpark parkrun, Den Haag1738124:07 All -  
Pontefract parkrun1718700:24:10 +
Heaton parkrun13318:08 All -  
Downham Market Academy parkrun1121300:24:35 +
Colney Lane parkrun1495524:01 All -  
Fountains Abbey parkrun11100:18:03 +
Leicester Victoria parkrun19711626:45 All -  
Cardiff parkrun111011700:22:02 +
Church Mead parkrun16610232:53 All -  
Littlehampton Prom parkrun1384300:24:22 +
Southend parkrun11116:28 All -  
Uditore parkrun13300:20:28 +
Lydney parkrun1202123:19 All -  
Beacon parkrun1587300:26:41 +
Edgbaston Reservoir parkrun1658626:24 All -  
parkrun de Rouen15500:21:41 +
Reading parkrun12217:18 All -  
Walthamstow parkrun11100:17:48 +
March parkrun15521:11 All -  
Shepton Mallet parkrun1121400:21:50 +
Woodgate Valley Country Park parkrun16513245:50 All -  
Marine Parade parkrun17711100:29:24 +
Maaraue parkrun1232522:34 All -  
Foots Cray Meadows parkrun1212300:23:17 +
Stonehouse parkrun1131320:09 All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Rheinpark parkrun1151825:30 All -  
Evesham parkrun1111100:21:39 +
Edinburgh parkrun12217:00 All -  
Southwick Country parkrun1272900:21:47 +
Chippenham parkrun1212120:08 All -  
Lydiard parkrun18800:18:25 +
Stratford-upon-Avon parkrun1202521:14 All -  
Sandhurst Memorial parkrun1537300:28:54 +
Henlow Bridge Lakes parkrun17511532:34 All -  
Bicester parkrun14400:20:13 +
Bromley parkrun13317:18 All -  
Wimpole Estate parkrun1202100:22:14 +
Houghton Hall parkrun1131321:48 All -  
Markshall Estate parkrun110315600:32:26 +
Sittingbourne parkrun18820:56 All -  
Dinton Pastures parkrun1131300:21:23 +
Sharpham Road Playing Fields parkrun1253124:41 All -  
Tonbridge parkrun14400:18:40 +
Gadebridge parkrun1141422:22 All -  
Wanstead Flats parkrun13300:17:13 +
Chilton Fields parkrun1405428:26 All -  
Woodhouse Moor parkrun11100:17:22 +
Storeys Field parkrun115121128:49 All -  
Mountbatten School parkrun1323400:24:11 +
Hadleigh parkrun, Essex1252624:27 All -  
Eastville parkrun120525300:25:12 +
Marple parkrun11117:15 All -  
Brixworth Country parkrun1496100:26:53 +
Portsmouth Lakeside parkrun19919:12 All -  
Portsmouth Lakeside parkrun19900:19:12 +
Grove Fields parkrun1578528:03 All -  
Milton Country parkrun13300:17:43 +
Banbury parkrun1222321:16 All -  
Swanley parkrun19712500:31:18 +
Graves parkrun11118:18 All -  
Springhill parkrun14400:22:18 +
Watermead Country Park parkrun110818235:52 All -  
Gloucester North parkrun1101000:22:14 +
Eastbourne parkrun12217:24 All -  
Feltham parkrun13400:24:56 +
Malahide parkrun11116:54 All -  
Crissy Field parkrun1101200:20:40 +
Fareham parkrun16619:21 All -  
Ally Pally parkrun11100:18:09 +
Sutcliffe parkrun113117230:34 All -  
Ashton Court parkrun1859500:22:59 +
Fritton Lake parkrun11118:26 All -  
Oaklands parkrun111820300:36:10 +
Bicester parkrun14420:13 All -  
Sittingbourne parkrun18800:20:56 +
Sandringham parkrun1466330:18 All -  
Moors Valley parkrun19900:19:40 +
Luton Wardown parkrun191019:36 All -  
Catford parkrun1303300:22:32 +
Cwmbran parkrun1171723:29 All -  
Clare Castle parkrun1252700:23:04 +
Broadwater parkrun110321335:19 All -  
Harrogate parkrun13300:18:11 +
Basildon parkrun15518:13 All -  
Seaford Beach parkrun1535600:22:25 +
Marecchia parkrun11119:50 All -  
Tring parkrun1171800:23:38 +
Harleston Magpies parkrun1293525:12 All -  
Sandwell Valley parkrun1455900:30:43 +
Kingsway parkrun, Gloucester1192021:20 All -  
Basildon parkrun15500:18:13 +
Bryn Bach parkrun11116:50 All -  
The Leas parkrun, Minster1252500:24:37 +
Mersea Island parkrun1121220:59 All -  
Little Stoke parkrun11100:17:03 +
Charlton parkrun18213032:05 All -  
Dallas Burston Polo Club parkrun19614700:32:26 +
parkrun de Rouen15521:41 All -  
Felixstowe parkrun1121200:21:07 +
Dallas Burston Polo Club parkrun19614732:26 All -  
Yeovil Montacute parkrun1707500:25:51 +
Ashton Court parkrun1859522:59 All -  
Stockley Country parkrun111917900:35:32 +
Tøyen parkrun1668526:32 All -  
Woolacombe Dunes parkrun19410900:31:20 +
The Great Field parkrun19313529:12 All -  
Harcourt Hill parkrun1171700:21:13 +
Castle Park parkrun1394122:34 All -  
Abingdon parkrun15500:18:03 +
Swanley parkrun19712531:18 All -  
Eastbourne parkrun12200:17:24 +
Greenwich parkrun12218:07 All -  
Warwick Racecourse parkrun1486000:24:55 +
Neckarau parkrun1243027:11 All -  
Leicester Victoria parkrun19711600:26:45 +
Bury Field parkrun1669033:07 All -  
Broadwater parkrun110321300:35:19 +
Clifton parkrun1101025:14 All -  
Clacton Seafront parkrun19900:20:35 +
Alton Water parkrun1538335:09 All -  
Burnham-on-Crouch parkrun18800:22:01 +
Colwick parkrun18819:46 All -  
Ganger Farm parkrun19811400:26:34 +
Melksham parkrun1171724:31 All -  
Folkestone parkrun1212500:21:48 +
Markshall Estate parkrun110315632:26 All -  
Mallards Pike parkrun1324600:30:57 +
Rogiet parkrun1151624:27 All -  
Malling parkrun18314500:47:25 +
Bartley Park parkrun18415132:38 All -  
Rugby parkrun1181800:22:26 +
Lydiard parkrun18818:25 All -  
Watermead Country Park parkrun110818200:35:52 +
Little Stoke parkrun11117:03 All -  
Hogmoor Inclosure parkrun1262600:25:26 +
Letchworth parkrun1141423:13 All -  
East Grinstead parkrun1131400:23:10 +
Belvoir Castle parkrun1131925:42 All -  
Mildenhall Hub parkrun1273100:24:33 +
Andover parkrun11117:33 All -  
Marlborough Common parkrun1202100:22:48 +
Rushcliffe parkrun1617323:54 All -  
Blandford parkrun18900:20:11 +
Cirencester parkrun1222422:40 All -  
Maldon Prom parkrun11100:18:04 +
Southall parkrun1557531:38 All -  
Edinburgh parkrun12200:17:00 +
Forest of Dean parkrun1182224:51 All -  
The Old Showfield parkrun1636900:23:30 +
parkrun des Dougnes, Cubnezais12219:42 All -  
Jersey parkrun16600:19:41 +
South Woodham Ferrers parkrun18821:14 All -  
Chilton Fields parkrun1405400:28:26 +
Marine Parade parkrun17711129:24 All -  
Sixfields Upton parkrun18800:19:58 +
Coventry parkrun1292920:51 All -  
Pegwell Bay parkrun12200:17:40 +
Wotton parkrun1182124:45 All -  
Valentines parkrun11100:16:49 +
Gloucester City parkrun1171922:35 All -  
Edenbrook Country parkrun110514800:28:01 +
Great Salterns parkrun19212430:27 All -  
Henstridge Airfield parkrun18800:21:41 +
Bedworth parkrun1171722:14 All -  
Great Notley parkrun16600:20:16 +
University Parks parkrun119032631:42 All -  
Medina I.O.W. parkrun11100:17:20 +
Hampstead Heath parkrun11117:45 All -  
Reading parkrun12200:17:18 +
Great Denham parkrun16619:27 All -  
Tetbury Goods Shed parkrun1253000:24:25 +
Downham Market Academy parkrun1121324:35 All -  
Lowestoft parkrun1232600:21:10 +
Ipswich parkrun11117:34 All -  
Malahide parkrun11100:16:54 +
Sixfields Upton parkrun18819:58 All -  
Oxford parkrun11100:17:18 +
Rendlesham Forest parkrun1264637:01 All -  
Rheinpark parkrun1151800:25:30 +
Frogmary Green Farm parkrun1597225:58 All -  
Gloucester City parkrun1171900:22:35 +
Harrow Lodge parkrun11118:48 All -  
Didcot parkrun1101100:21:28 +
Witney parkrun1202022:34 All -  
Mansfield parkrun11100:17:09 +
Leamington parkrun12218:52 All -  
7851100:16:25 +
Brockenhurst parkrun13318:23 + All +
Hogmoor Inclosure parkrun1262625:26 + All +
Hastings High School parkrun1637827:33 + All +
Cannock Chase parkrun1384425:49 + All +
Wimpole Estate parkrun1202122:14 + All +
Haverhill parkrun1121323:32 + All +
Edenbrook Country parkrun110514828:01 + All +
Maidstone River Park parkrun13318:00 + All +
Cheltenham parkrun12217:24 + All +
Victoria Dock parkrun1273020:04 + All +
Ekebergsletta parkrun1304325:57 + All +
Oxford parkrun11117:18 + All +
Aylesbury parkrun11117:51 + All +
Mote Park parkrun19712231:28 + All +
Riverfront parkrun1404622:57 + All +
Newent parkrun1182225:27 + All +
Clapham Common parkrun1404220:22 + All +
Llanishen Park parkrun1303323:48 + All +
Heartwood Forest parkrun1252721:41 + All +
Walthamstow parkrun11117:48 + All +
Malmö Ribersborg parkrun111215128:46 + All +
Chippenham Playing Fields parkrun, Monmouth1161923:05 + All +
Huntingdon parkrun1202121:10 + All +
Felixstowe parkrun1121221:07 + All +
Tidworth parkrun110815535:14 + All +
8671116:25 All  


Volunteer Summary

RoleOccasions
- Run Director - 94
- Timekeeper - 59
- Token Sorting - 3
- Results Processor - 87
- Photographer - 6
- Communications Person - 10
- Marshal - 39
- Pre-event Setup - 130
- Equipment Storage and Delivery - 128
- Other - 23
- Barcode Scanning - 55
- Post-event Close Down - 45
- Finish Tokens - 15
- Number Checker - 2
- First Timers Welcome - 68
- Funnel Manager - 15
- Finish Token Support - 9
- Tail Walker - 29
- Volunteer Co-ordinator - 146
- Report Writer - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Car Park Marshal - 1
- Event Day Course Check - 8
- parkwalker - 9
Total Credits396

+ Run Director +

99
+ Timekeeper + 94
+ Token Sorting + 12
+ Results Processor + 87
+ Photographer + 6
+ Communications Person + 10
+ Marshal + 54
+ Pre-event Setup + 148
+ Equipment Storage and Delivery + 130
+ Other + 26
+ Barcode Scanning + 78
+ Post-event Close Down + 51
+ Finish Tokens + 21
+ Number Checker + 2
+ First Timers Welcome + 82
+ Funnel Manager + 15
+ Finish Token Support + 12
+ Tail Walker + 29
+ Volunteer Co-ordinator + 148
+ Report Writer + 100
+ Backup Timer + 3
+ Warm Up Leader + 16
+ Car Park Marshal + 1
+ Event Day Course Check + 14
+ parkwalker + 10
Total Credits499

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1037,50 +1149,32 @@

Danny NORMAN (A482)
- Locations: 461 -
-
- Finishers: 874,038 + Locations: 497
- Finishes: 13,636,741 + Finishers: 1099859
- All-time events: 117,506 + Finishes: 18040066
- Volunteers: 141,876 + All-time events: 153759
- PBs: 2,025,680 + Volunteers: 169010
- Average finish time: 00:33:07 + PBs: 2602220
- Average finishes per participant: 15.6 + Average finish time: 00:33:18
- Groups: 4,461 + Groups: 5038
-

-
- Female record: - Isobel BATT-DOYLE – 15:25 - (31 Dec 2022) -
-
- Male record: - James HANSEN – 13:53 - (27 Aug 2022) -
-
- Age graded record: - Norma WALLETT - 111.04% 35:37 - ( 5 Oct 2019) -
+

- Stats last updated: Fri 14 Apr 2023 00:35:08 UTC + Stats last updated: Mon 30 Sep 2024 00:35:59 UTC
@@ -1096,28 +1190,32 @@

Danny NORMAN (A482) - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1151,8 +1259,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/88720/all/index.html index 3e2d060e..50d39b00 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Australia @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,46 +66,36 @@
@@ -124,641 +110,739 @@
- + - - parkrun shop + Polar sale banner

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM55-59 + Most recent age category was VM60-64

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time21:4025:2552:00
Age Grading69.71%60.41%29.55%
Overall Position648.88374

+
FastestAverage
(mean)
Slowest
Time21:3625:2654:59
Age Grading72.99%60.80%28.92%
Overall Position648.44374

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Halifax08/04/20233313225:0063.07% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + PB + +   +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34% +   +
Wakefield Thornes23/09/20233745824:2964.94%   -
Fulham Palace01/04/202339110924:0965.29% +
Halifax16/09/20233532123:4367.04%   -
Halifax25/03/20233291624:4363.79% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax18/03/20233282326:4758.87% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Halifax04/03/20233273825:1962.28% +
Glossop12/08/20233152824:2564.57%   -
Myrtle25/02/20231593824:5263.40% +
Halifax05/08/20233473024:4363.79% +   +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% PB   -
Halifax18/02/20233252926:0360.52% +
Stratford Park, Stroud01/07/20231253126:2959.53% +   +
Wetherby24/06/20233094124:4663.66%   -
Halifax11/02/20233243124:0365.56% +
Halifax10/06/20233402524:0265.60%   -
Bradford04/02/20235795022:3769.71% +
Halifax03/06/20233392124:1365.11%   -
Bowling Park28/01/202379924:1165.20% +
Long Eaton20/05/20233306921:3672.99%   -
Bramley21/01/20233004925:3461.67% +
Halifax06/05/20233352423:4566.39%   -
Halifax14/01/20233213325:5260.95% +
Keswick29/04/20233904121:3672.99% + PB +   -
Halifax07/01/20233203026:2659.65% +
Halifax22/04/20233334725:0262.98%   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax08/04/20233313225:0063.07%   -
Nostell31/12/20223614325:0063.07% +
Fulham Palace01/04/202339110924:0965.29%   -
Halifax24/12/20223173125:4661.19% +
Halifax25/03/20233291624:4363.79%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax18/03/20233282326:4758.87%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax04/03/20233273825:1962.28% +   +
Myrtle25/02/20231593824:5263.40% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71% +   +
Bowling Park28/01/202379924:1165.20%   -
Brighouse12/11/20222213725:1762.36% +
Bramley21/01/20233004925:3461.67%   -
Halifax05/11/20223122424:5163.45% +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB +   -
Oakwell Hall22/10/20222974026:1060.25% +
Conkers19/11/20225485624:1465.06%   -
Halifax15/10/202230910749:5431.60% +
Brighouse12/11/20222213725:1762.36%   -
Crosby08/10/20222833525:3861.51% +
Halifax05/11/20223122424:5163.45%   -
Alness01/10/20221801024:0965.29% +
Oakwell Hall22/10/20222974026:1060.25%   -
Victoria24/09/20223736722:5468.85% +
Halifax15/10/202230910749:5431.60%   -
Halifax17/09/20223052625:0063.07% +
Crosby08/10/20222833525:3861.51%   -
Centre Vale10/09/20221034428:4454.87% +
Alness01/10/20221801024:0965.29%   -
Halifax03/09/20223033125:3361.71% +
Victoria24/09/20223736722:5468.85%   -
Skipton27/08/20224035325:3561.11% +
Halifax17/09/20223052625:0063.07%   -
Halifax20/08/20223012824:5262.87% +
Centre Vale10/09/20221034428:4454.87%   -
Halifax06/08/20222996426:0360.01% +
Halifax03/09/20223033125:3361.71%   -
Armley30/07/20221432724:2863.90% +
Skipton27/08/20224035325:3561.11%   -
Halifax16/07/20222962524:2663.98% +
Halifax20/08/20223012824:5262.87%   -
Halifax02/07/20222942524:4863.04% +
Halifax06/08/20222996426:0360.01%   -
Halifax18/06/20222922424:5462.78% +
Armley30/07/20221432724:2863.90%   -
The Pastures11/06/2022991826:2159.33% +
Halifax16/07/20222962524:2663.98%   -
Halifax04/06/20222913826:4858.33% +
Halifax02/07/20222942524:4863.04%   -
Horton Park28/05/20222942225:1262.04% +
Halifax18/06/20222922424:5462.78%   -
Bushy Park21/05/202287737424:0664.87% +
The Pastures11/06/2022991826:2159.33%   -
Halifax07/05/20222877529:3552.85% +
Halifax04/06/20222913826:4858.33%   -
Harrogate30/04/202246716226:4458.48% +
Horton Park28/05/20222942225:1262.04%   -
Halifax23/04/20222854927:0057.90% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax09/04/20222834526:3758.74% +
Halifax07/05/20222877529:3552.85%   -
Halifax02/04/20222822924:4463.21% +
Harrogate30/04/202246716226:4458.48%   -
Pendle26/03/20223443126:1659.52% +
Halifax23/04/20222854927:0057.90%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax09/04/20222834526:3758.74%   -
Halifax05/03/20222784925:3761.03% +
Halifax02/04/20222822924:4463.21%   -
Middleton Woods26/02/20221221424:5562.74% +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -789,50 +873,32 @@

Phillip WHETTLOCK (A8
- Locations: 461 -
-
- Finishers: 877,219 + Locations: 497
- Finishes: 13,694,064 + Finishers: 1099859
- All-time events: 117,954 + Finishes: 18040066
- Volunteers: 142,257 + All-time events: 153759
- PBs: 2,033,719 + Volunteers: 169010
- Average finish time: 00:33:07 + PBs: 2602220
- Average finishes per participant: 15.6 + Average finish time: 00:33:18
- Groups: 4,469 + Groups: 5038
-
-
- Female record: - Isobel BATT-DOYLE – 15:25 - (31 Dec 2022) -
-
- Male record: - James HANSEN – 13:53 - (27 Aug 2022) -
-
- Age graded record: - Norma WALLETT - 111.04% 35:37 - ( 5 Oct 2019) -
+

- Stats last updated: Mon 17 Apr 2023 00:35:12 UTC + Stats last updated: Mon 30 Sep 2024 00:35:59 UTC
@@ -848,28 +914,32 @@

Phillip WHETTLOCK (A8 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -903,8 +983,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/88720/index.html index 4a48f1c3..2b45b79d 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + results | parkrun Australia @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,46 +66,36 @@
@@ -124,195 +110,251 @@
- + - - +

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns total

+ + Member of the Volunteer 250 club +

345 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM55-59 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bradford parkrun1166600:21:40 + Most recent age category was VM60-64 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Halifax parkrun1268822:13 + All +
Lister Park parkrun, Bradford1166621:40 + All +
Horton Park parkrun9131322:18 + All +
Keswick parkrun4253321:36 + All +
Sewerby parkrun3121222:08 + All +
Pontefract parkrun2273222:08 + All +
Brighouse parkrun2333723:53 + All +
Temple Newsam parkrun2272925:14 + All +
Fountains Abbey parkrun2394822:26 + All +
Oakwell Hall parkrun2293626:10 + All +
Whinlatter Forest parkrun2283227:23 + All +
Bramley parkrun2252524:06 + All +
Middleton Woods parkrun2121424:55 + All +
Myrtle parkrun2333824:52 + All +
Centre Vale parkrun2303626:37 + All +
Bushy parkrun130137424:06 + All +
Woodhouse Moor parkrun1778222:18 + All +
Pollok parkrun, Glasgow1667223:58 + All +
Edinburgh parkrun1646721:54 + All +
Wakefield Thornes parkrun1545824:29 + All +
Hyndburn parkrun1253125:51 All - Graph It!
Halifax parkrun1148800:22:13 +
York parkrun111413522:55 All - Graph It!
Horton Park parkrun9131300:22:18 +
Milton Country parkrun1707522:40 All - Graph It!
Sewerby parkrun3121200:22:08 +
Carlisle parkrun1567126:05 All - Graph It!
Keswick parkrun3253300:23:33 +
Harrogate parkrun112316226:44 All - Graph It!
Pontefract parkrun2273200:22:08 +
Southport parkrun1545723:57 All - Graph It!
Temple Newsam parkrun2272900:25:14 +
Barnsley parkrun1414325:05 All - Graph It!
Myrtle parkrun2333800:24:52 +
Rothwell parkrun1535724:20 All - Graph It!
Middleton Woods parkrun2121400:24:55 +
Huddersfield parkrun1596722:47 All - Graph It!
Bramley parkrun2252500:24:06 +
Long Eaton parkrun1556921:36 All - Graph It!
Druridge Bay parkrun1354200:23:35 +
Wycombe Rye parkrun1232622:35 All -  
Fountains Abbey parkrun1394800:22:26 +
Conkers parkrun1525624:14 All -  
Victoria parkrun, Glasgow1546700:22:54 +
Roundhay parkrun112815726:55 All -  
Clumber Park parkrun1101100:21:46 +
Hanley parkrun16622:03 All -  
Rothay Park parkrun1202700:24:48 +
Worsley Woods parkrun1728824:46 All -  
Warwick Racecourse parkrun1638200:24:06 +
Burnley parkrun1545725:21 All -  
Conkers parkrun1525600:24:14 +
Dewsbury parkrun18610128:15 All -  
The Pastures parkrun1161800:26:21 +
Cross Flatts parkrun1303724:16 All -  
Harrogate parkrun112316200:26:44 +
Clumber Park parkrun1101121:46 All -  
Dishley parkrun, Loughborough1535700:24:25 +
Skipton parkrun1505325:35 All -  
Dalby Forest parkrun1283200:23:06 +
Flatts Lane parkrun1171826:53 All -  
Woodhouse Moor parkrun1778200:22:18 +
Victoria parkrun, Glasgow1546722:54 All -  
Whinlatter Forest parkrun1283200:27:23 +
Alness parkrun171024:09 All -  
Watergrove parkrun, Rochdale1111200:27:57 +
Fulham Palace parkrun18610924:09 All -  
Springburn parkrun, Glasgow1161600:23:14 +
Springburn parkrun, Glasgow1161623:14 All -  
Fulham Palace parkrun18610900:24:09 +
Druridge Bay parkrun1354223:35 All -  
Flatts Lane parkrun1171800:26:53 +
Pendle parkrun1263126:16 All -  
Roberts Park parkrun1657500:24:54 +
Watergrove parkrun, Rochdale1111227:57 All -  
Bowling Park parkrun18900:24:11 +
Wetherby parkrun1374124:46 All -  
Hanley parkrun16600:22:03 +
Portobello parkrun, Edinburgh1668024:16 All -  
Centre Vale parkrun1304400:28:44 +
Nostell parkrun1374325:00 All -  
Wycombe Rye parkrun1232600:22:35 +
Fell Foot parkrun, Newby Bridge1161722:57 All -  
Carlisle parkrun1567100:26:05 +
Conwy parkrun1394424:53 All -  
Armley parkrun1262700:24:28 +
Glossop parkrun1242824:25 All -  
Crosby parkrun1293500:25:38 +
Crosby parkrun1293525:38 All -  
Edinburgh parkrun1646700:21:54 +
Dolgellau parkrun1459954:59 All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Dalby Forest parkrun1283223:06 All -  
Bushy parkrun130137400:24:06 +
Clitheroe Castle parkrun1192525:41 All -  
Oakwell Hall parkrun1344000:26:10 +
Armley parkrun1262724:28 All -  
Pendle parkrun1263100:26:16 +
Dishley parkrun, Loughborough1535724:25 All -  
Alness parkrun171000:24:09 +
Ford parkrun1202525:00 All -  
Skipton parkrun1505300:25:35 +
Cliffe Castle parkrun1151725:18 All -  
Chevin Forest parkrun1213000:26:47 +
Potternewton parkrun1293625:04 All -  
Burnley parkrun1545700:25:21 +
Isabel Trail parkrun1293422:02 All -  
Queen’s parkrun, Glasgow1677900:25:29 +
The Pastures parkrun1161826:21 All -  
Roundhay parkrun112815700:26:55 +
Storthes Hall parkrun1263026:20 All -  
Storthes Hall parkrun1263000:26:20 +
Hafan Pwllheli parkrun1212726:48 All -  
Southport parkrun1545700:23:57 +
Penistone parkrun1343724:20 All -  
Cliffe Castle parkrun1151700:25:18 +
Conyngham Hall parkrun1363824:55 All -  
Brighouse parkrun1333700:25:17 +
Stratford Park parkrun, Stroud1303126:29 All -  
Milton Country parkrun1707500:22:40 +
Warwick Racecourse parkrun1638224:06 All -  
Pollok parkrun, Glasgow1667200:23:58 +
University of Stirling parkrun1343723:52 All -  
Nostell parkrun1384300:25:00 +
Jubilee parkrun1121926:42 All -  
Portobello parkrun, Edinburgh1668000:24:16 +
Queen’s parkrun, Glasgow1677925:29 All -  
2996600:21:40 +
Bowling Park parkrun18924:11 + All +
Rothay Park parkrun1202724:48 + All +
Zuiderpark parkrun, Den Haag1151722:03 + All +
Carlisle Park parkrun, Morpeth1293325:44 + All +
Chevin Forest parkrun1213026:47 + All +
Roberts Park parkrun1657524:54 + All +
Beacon Hill Country Park parkrun1192325:36 + All +
Thames Path parkrun, Woolwich1586323:49 + All +
3456621:36 All  


Volunteer Summary

RoleOccasions
- Run Director - 32
- Timekeeper - 17
- Token Sorting - 5
- Results Processor - 1
- Photographer - 1
- Communications Person - 5
- Marshal - 35
- Pre-event Setup - 28
- Equipment Storage and Delivery - 5
- Other - 1
- Barcode Scanning - 27
- Post-event Close Down - 24
- Finish Tokens - 11
- Number Checker - 1
- First Timers Welcome - 77
- Funnel Manager - 12
- Finish Token Support - 10
- Tail Walker - 5
- Volunteer Co-ordinator - 10
- Report Writer - 1
- Pacer (5k only) - 5
- Backup Timer - 14
- VI Guide - 1
- Warm Up Leader - 5
- Sign Language Support - 1
- Car Park Marshal - 1
- Event Day Course Check - 25
- parkwalker - 1
Total Credits249

+ Run Director +

33
+ Timekeeper + 28
+ Token Sorting + 5
+ Results Processor + 4
+ Photographer + 1
+ Communications Person + 6
+ Marshal + 35
+ Pre-event Setup + 29
+ Equipment Storage and Delivery + 6
+ Other + 2
+ Barcode Scanning + 46
+ Post-event Close Down + 25
+ Finish Tokens + 16
+ Number Checker + 1
+ First Timers Welcome + 82
+ Funnel Manager + 16
+ Finish Token Support + 16
+ Tail Walker + 15
+ Volunteer Co-ordinator + 11
+ Report Writer + 1
+ Pacer (5k only) + 10
+ Backup Timer + 14
+ VI Guide + 1
+ Warm Up Leader + 15
+ Sign Language Support + 1
+ Car Park Marshal + 1
+ Event Day Course Check + 57
+ parkwalker + 1
Total Credits316

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. -



Freedom parkruns

DateTimeLocation
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here. +



Freedom parkruns

DateTimeLocation
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -341,50 +383,32 @@

Phillip WHETTLOCK (A8
- Locations: 461 + Locations: 497
- Finishers: 877,219 + Finishers: 1099859
- Finishes: 13,694,064 + Finishes: 18040066
- All-time events: 117,954 + All-time events: 153759
- Volunteers: 142,257 + Volunteers: 169010
- PBs: 2,033,719 + PBs: 2602220
- Average finish time: 00:33:07 + Average finish time: 00:33:18
- Average finishes per participant: 15.6 + Groups: 5038
-
- Groups: 4,469 -
-
-
- Female record: - Isobel BATT-DOYLE – 15:25 - (31 Dec 2022) -
-
- Male record: - James HANSEN – 13:53 - (27 Aug 2022) -
-
- Age graded record: - Norma WALLETT - 111.04% 35:37 - ( 5 Oct 2019) -
+

- Stats last updated: Mon 17 Apr 2023 00:35:12 UTC + Stats last updated: Mon 30 Sep 2024 00:35:59 UTC
@@ -400,28 +424,32 @@

Phillip WHETTLOCK (A8 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -455,8 +493,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/999999/all/index.html index 0810c47b..96b6f00b 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Australia @@ -35,15 +37,14 @@ - + - + - @@ -53,7 +54,7 @@
@@ -65,47 +66,36 @@
@@ -120,16 +110,16 @@
- + - - + Polar sale banner

Jakub WOLSKI (A999999)

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -161,50 +151,32 @@

Jakub WOLSKI (A999999
- Locations: 469 -
-
- Finishers: 899,866 + Locations: 497
- Finishes: 14,176,978 + Finishers: 1099859
- All-time events: 122,474 + Finishes: 18040066
- Volunteers: 145,835 + All-time events: 153759
- PBs: 2,107,454 + Volunteers: 169010
- Average finish time: 00:33:08 + PBs: 2602220
- Average finishes per participant: 15.8 + Average finish time: 00:33:18
- Groups: 4,530 + Groups: 5038
-
-
- Female record: - Isobel BATT-DOYLE – 15:25 - (31 Dec 2022) -
-
- Male record: - James HANSEN – 13:53 - (27 Aug 2022) -
-
- Age graded record: - Norma WALLETT - 111.04% 35:37 - ( 5 Oct 2019) -
+

- Stats last updated: Thu 29 Jun 2023 00:35:14 UTC + Stats last updated: Mon 30 Sep 2024 00:35:59 UTC
@@ -220,28 +192,32 @@

Jakub WOLSKI (A999999 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -275,8 +261,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/999999/index.html index a31c1d30..f866e974 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.au/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + results | parkrun Australia @@ -35,15 +37,14 @@ - + - + - @@ -53,7 +54,7 @@
@@ -65,47 +66,36 @@
@@ -120,15 +110,15 @@
- + - - + Polar sale banner -

Jakub WOLSKI (A999999)

No results have been recorded yet for this parkrunner.

+

Jakub WOLSKI (A999999)

@@ -157,50 +147,32 @@

Jakub WOLSKI (A999999
- Locations: 469 -
-
- Finishers: 899,866 + Locations: 497
- Finishes: 14,176,978 + Finishers: 1099859
- All-time events: 122,474 + Finishes: 18040066
- Volunteers: 145,835 + All-time events: 153759
- PBs: 2,107,454 + Volunteers: 169010
- Average finish time: 00:33:08 + PBs: 2602220
- Average finishes per participant: 15.8 + Average finish time: 00:33:18
- Groups: 4,530 + Groups: 5038
-
-
- Female record: - Isobel BATT-DOYLE – 15:25 - (31 Dec 2022) -
-
- Male record: - James HANSEN – 13:53 - (27 Aug 2022) -
-
- Age graded record: - Norma WALLETT - 111.04% 35:37 - ( 5 Oct 2019) -
+

- Stats last updated: Thu 29 Jun 2023 00:35:14 UTC + Stats last updated: Mon 30 Sep 2024 00:35:59 UTC
@@ -216,28 +188,32 @@

Jakub WOLSKI (A999999 Polar - Brooks + Brooks + + + Lorna Jane
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -271,8 +257,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/1309364/all/index.html index 368cca62..e0ede8c1 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,7 @@ + ergebnisse | parkrun Germany - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - + - @@ -59,7 +53,7 @@
@@ -71,34 +65,25 @@
@@ -121,543 +106,649 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Mitglied im parkrun-100-Klub +

Andrew TAYLOR (A1309364)

+ Mitglied im parkrun-250-Klub Member of the Volunteer 50 club

- 245 parkruns insgesamt + 297 parkruns insgesamt

Gesamtstatistiken für diese/n parkrunner*in anzeigen
- Die letzte Altersklasse war VM35-39 + Die letzte Altersklasse war VM40-44

Zusammenfassung der Statistiken für alle Standorte -
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit20:0628:4757:34
Alterskorrigierte Leistung64.51%47.44%23.54%
Position insgesamt5165.361021

+
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit20:0629:2057:34
Alterskorrigierte Leistung64.51%46.67%23.54%
Position insgesamt5182.341021

Beste jährliche Leistungen gesamt -
JahrBeste ZeitBeste alterskorrigierte Leistung
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
JahrBeste ZeitBeste alterskorrigierte Leistung
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

Alle Ergebnisse bei -
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Clitheroe Castle08/04/20231789735:4637.88% +
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97%   -
Whiteley25/03/202321418332:2441.82% +
Winchester25/11/202346134636:0237.60%   -
Winchester11/03/202342821230:3744.26% +
Whiteley18/11/202324721037:0536.54%   -
Winchester04/03/202342730935:4537.90% +
Whiteley11/11/202324617430:3744.26%   -
Winchester25/02/202342632536:0937.48% +
Winchester21/10/202345731533:5140.03%   -
Winchester18/02/202342530336:3137.11% +
Winchester14/10/202345634233:5439.97%   -
Delamere31/12/202242331536:2537.21% +
Ganger Farm07/10/20234713233:4940.07%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester23/09/202345321928:2247.77%   -
Winchester26/11/202241229335:3137.87% +
Winchester16/09/202345235430:3244.38%   -
Whiteley12/11/202221016534:2839.02% +
Winchester09/09/202345129229:1146.43%   -
Winchester29/10/202240924429:5544.96% +
Delamere02/09/202345822633:2840.49%   -
Winchester22/10/202240833736:0837.22% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester17/09/202240326230:2944.12% +
Winchester29/07/202344622227:3649.09%   -
Winchester10/09/202240231134:3338.93% +
Winchester22/07/202344540537:0036.62%   -
Alice Holt03/09/202241817936:3236.82% +
Whiteley15/07/202322915731:1643.34%   -
Winchester27/08/202240042335:2138.05% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester13/08/202239823431:3042.70% +
Winchester17/06/202344128530:4144.16%   -
Tidworth30/07/2022615151:4226.02% +
Winchester10/06/202344032435:2138.33%   -
Uckfield23/07/20221006028:4346.84% +
Winchester20/05/202343822427:0949.91%   -
Winchester09/07/202239428633:1640.43% +
Winchester13/05/202343733232:4341.42%   -
Eastleigh28/05/202254015531:2042.93% +
Whiteley29/04/202321919635:3138.15%   -
Winchester21/05/202238930733:2840.19% +
Winchester22/04/202343431731:1143.45%   -
Alice Holt14/05/202240216932:0142.01% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Winchester07/05/202238734034:1339.31% +
Whiteley25/03/202321418332:2441.82%   -
Guildford30/04/202242825130:0144.81% +
Winchester11/03/202342821230:3744.26%   -
Winchester23/04/202238522932:0241.99% +
Winchester04/03/202342730935:4537.90%   -
Winchester16/04/202238431033:2340.29% +
Winchester25/02/202342632536:0937.48%   -
Winchester19/03/202238025033:5439.68% +
Winchester18/02/202342530336:3137.11%   -
Alice Holt01/01/202238524237:4635.61% +
Delamere31/12/202242331536:2537.21%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester20/11/202136338445:0729.59% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester09/10/202135739843:0730.96% +
Winchester26/11/202241229335:3137.87%   -
Winchester25/09/202135538955:0324.25% +
Whiteley12/11/202221016534:2839.02%   -
Winchester18/09/202135433938:1234.95% +
Winchester29/10/202240924429:5544.96%   -
Winchester04/09/202135233838:2434.77% +
Winchester22/10/202240833736:0837.22%   -
Winchester28/08/202135139841:0132.55% +
Winchester17/09/202240326230:2944.12%   -
Winchester14/08/202134936055:4623.94% +
Winchester10/09/202240231134:3338.93%   -
Winchester31/07/202134832845:2029.45% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester14/03/202034625851:3825.69% +
Winchester27/08/202240042335:2138.05%   -
Winchester07/03/202034510325:5251.29% +
Winchester13/08/202239823431:3042.70%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Tidworth30/07/2022615151:4226.02%   -
Newbury22/02/202043434631:1142.54% +
Uckfield23/07/20221006028:4346.84%   -
Alice Holt08/02/202036010727:1948.57% +
Winchester09/07/202239428633:1640.43% +   +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -688,63 +779,61 @@

Andrew TAYLOR (A13093
- Standorte: 49 -
-
- Läufer*innen: 38.016 + Standorte: 61
- Zieleinläufe: 198.637 + Läufer*innen: 68988
- Austragungen landesweit: 5.573 + Zieleinläufe: 400525
- Helfer*innen: 5.257 + Austragungen landesweit: 9821
- Persönliche Bestzeiten: 29.494 + Helfer*innen: 8391
- Durchschnittl. Zielzeit: 00:30:06 + Persönliche Bestzeiten: 57126
- Läufe per Läufer*in: 5,2 + Durchschnittl. Zielzeit: 00:30:35
- Gruppen: 2.409 + Gruppen: 3149
-
+
- Zuletzt aktualisiert: Fr 14 Apr 2023 00:35:29 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:36:14 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -778,8 +877,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/1309364/index.html index c07882e3..035c3cad 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/1309364/index.html @@ -14,6 +14,7 @@ + ergebnisse | parkrun Germany - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - + - @@ -59,7 +53,7 @@
@@ -71,34 +65,25 @@
@@ -121,177 +106,187 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Mitglied im parkrun-100-Klub +

Andrew TAYLOR (A1309364)

+ Mitglied im parkrun-250-Klub Member of the Volunteer 50 club -

245 parkruns insgesamt

+

297 parkruns insgesamt

Statistiken für alle parkruns dieses parkrunners ansehen
- Die letzte Altersklasse war VM35-39 -

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Winchester parkrun146121300:20:18 + Die letzte Altersklasse war VM40-44 +

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Winchester parkrun173121320:18 + Alle +
Whiteley parkrun1410714629:06 + Alle +
Delamere parkrun11232321:42 Alle - Graph It!
Delamere parkrun8232300:21:42 +
Eastleigh parkrun6242524:08 Alle - Graph It!
Whiteley parkrun610714600:29:06 +
Alice Holt parkrun59010727:19 Alle - Graph It!
Alice Holt parkrun59010700:27:19 +
Southampton parkrun5687021:17 Alle - Graph It!
Southampton parkrun5687000:21:17 +
Fell Foot parkrun, Newby Bridge4212223:48 Alle - Graph It!
Eastleigh parkrun5242500:24:08 +
Witton parkrun4303525:40 Alle - Graph It!
Congleton parkrun49900:20:06 +
Northwich parkrun4485224:55 Alle - Graph It!
Witton parkrun4303500:25:40 +
Newbury parkrun4829123:49 Alle - Graph It!
Northwich parkrun4485200:24:55 +
Congleton parkrun49920:06 Alle - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Medina I.O.W. parkrun4667525:13 Alle - Graph It!
Andover parkrun2242600:22:24 +
Ganger Farm parkrun38013229:25 Alle - Graph It!
Ganger Farm parkrun29713500:29:25 +
Burnley parkrun212718929:06 Alle - Graph It!
Hanley parkrun2333900:22:31 +
Queen Elizabeth parkrun2364026:36 Alle - Graph It!
Newbury parkrun2829100:23:49 +
Andover parkrun2242622:24 Alle - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Hanley parkrun2333922:31 Alle - Graph It!
Hagley parkrun1182000:22:38 +
Netley Abbey parkrun1586424:21 Alle -  
Ormskirk parkrun120930300:31:04 +
Hilly Fields parkrun1859925:03 Alle -  
Basingstoke parkrun111212900:24:31 +
Brockenhurst parkrun112718632:41 Alle -  
Cuerden Valley parkrun1192000:24:47 +
Wimpole Estate parkrun112916928:07 Alle -  
Seven Fields parkrun1546700:28:28 +
Clumber Park parkrun112117629:51 Alle -  
Netley Abbey parkrun1586400:24:21 +
Cuerden Valley parkrun1192024:47 Alle -  
Mountbatten School parkrun17110100:31:29 +
Hamilton Lake parkrun1151621:47 Alle -  
Clitheroe Castle parkrun1639700:35:46 +
Fountains Abbey parkrun1283020:33 Alle -  
Medina I.O.W. parkrun19513900:30:57 +
Ormskirk parkrun120930331:04 Alle -  
Hogmoor Inclosure parkrun111314000:29:34 +
Pendle parkrun1465926:37 Alle -  
Milano Nord parkrun1475300:27:49 +
Woking parkrun1485824:01 Alle -  
Jersey parkrun111018500:30:53 +
Hagley parkrun1182022:38 Alle -  
Canterbury parkrun1323600:27:29 +
Penrhyn parkrun1232624:33 Alle -  
Penrhyn parkrun1232600:24:33 +
Salisbury parkrun119326729:45 Alle -  
Hyndburn parkrun1425300:29:55 +
Jersey parkrun111018530:53 Alle -  
Woking parkrun1485800:24:01 +
Haigh Woodland parkrun18916837:04 Alle -  
Fountains Abbey parkrun1283000:20:33 +
Stretford parkrun127540530:23 Alle -  
Bushy parkrun1681102100:33:01 +
Portsmouth Lakeside parkrun1818726:32 Alle -  
Clumber Park parkrun112117600:29:51 +
Fareham parkrun19011428:52 Alle -  
Wimpole Estate parkrun112916900:28:07 +
Milano Nord parkrun1475327:49 Alle -  
Tidworth parkrun18615100:51:42 +
Richmond Olympic parkrun15521:59 Alle -  
Hilly Fields parkrun1859900:25:03 +
Crewe parkrun112315430:05 Alle -  
Tawd Valley parkrun18111000:29:25 +
Hogmoor Inclosure parkrun111314029:34 Alle -  
Watermeadows parkrun1151500:23:51 +
Catford parkrun19512527:24 Alle -  
Eden Project parkrun111116200:30:21 +
Clitheroe Castle parkrun1639735:46 Alle -  
Catford parkrun19512500:27:24 +
Pocket parkrun112419533:47 Alle -  
Crewe parkrun112315400:30:05 +
Ford parkrun1477432:29 Alle -  
Long Eaton parkrun118122900:28:06 +
Watermeadows parkrun1151523:51 Alle -  
Fareham parkrun19511400:28:52 +
Mountbatten School parkrun17110131:29 Alle -  
Phoenix parkrun1232600:27:31 +
Uckfield parkrun1416028:43 Alle -  
Guildford parkrun117125100:30:01 +
Tawd Valley parkrun18111029:25 Alle -  
Pendle parkrun1465900:26:37 +
Seven Fields parkrun1546728:28 Alle -  
Heaton parkrun133846700:31:01 +
Itchen Valley Country parkrun110613529:53 Alle -  
Hamilton Lake parkrun1151600:21:47 +
Bartley Park parkrun1628430:26 Alle -  
Brockenhurst parkrun112718600:32:41 +
Tidworth parkrun18615151:42 Alle -  
Itchen Valley Country parkrun110713500:29:53 +
Bushy parkrun1681102133:01 Alle -  
Burnley parkrun114120400:29:06 +
Basingstoke parkrun111212924:31 Alle -  
Uckfield parkrun1416000:28:43 +
Heaton parkrun133846731:01 Alle -  
Abingdon parkrun114220200:29:14 +
Guildford parkrun117125130:01 Alle -  
Pocket parkrun112419500:33:47 +
Hyndburn parkrun1425329:55 Alle -  
Bolton parkrun116221800:31:49 +
Phoenix parkrun1232627:31 Alle -  
Richmond Olympic parkrun15500:21:59 +
Canterbury parkrun1323627:29 Alle -  
Poole parkrun121328400:28:59 +
Valentines parkrun1698025:14 Alle -  
Portsmouth Lakeside parkrun1818700:26:32 +
Poole parkrun121328428:59 Alle -  
Salisbury parkrun119326700:29:45 +
Long Eaton parkrun118122928:06 Alle -  
2455500:20:06 +
Bolton parkrun116221831:49 + Alle +
Eden Project parkrun111116230:21 + Alle +
Abingdon parkrun114220229:14 + Alle +
2975520:06 Alle  




Freie Läufe

DatumZeitStandort
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
+ Laufleitung +
21
+ Zeitnahme + 2
+ Zielmarkenverwaltung + 8
+ Ergebnisauswertung + 6
+ Fotos + 4
+ Streckenposten + 5
+ Ausrüstung Aufbau + 6
+ Ausrüstung Lagerung und Lieferung + 2
+ Barcode einlesen + 3
+ Ausrüstung Abbau + 10
+ Zielmarkenausgabe + 1
+ Nummern-Kontrolle + 2
+ Einweisung für Erstläufer*innen + 1
+ Leitung Einlaufgasse + 1
+ Schlussbegleitung + 4
+ Koordination Helfer*innen + 1
+ Berichterstattung + 10
+ Tempoläufer*in + 1
Gesamtanzahl60

+ Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du hier. +



Freie parkruns

DatumZeitStandort
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -320,63 +315,61 @@

Andrew TAYLOR (A13093
- Standorte: 49 -
-
- Läufer*innen: 38.016 + Standorte: 61
- Zieleinläufe: 198.637 + Läufer*innen: 68988
- Austragungen landesweit: 5.573 + Zieleinläufe: 400525
- Helfer*innen: 5.257 + Austragungen landesweit: 9821
- Persönliche Bestzeiten: 29.494 + Helfer*innen: 8391
- Durchschnittl. Zielzeit: 00:30:06 + Persönliche Bestzeiten: 57126
- Läufe per Läufer*in: 5,2 + Durchschnittl. Zielzeit: 00:30:35
- Gruppen: 2.409 + Gruppen: 3149
-
+

- Zuletzt aktualisiert: Fr 14 Apr 2023 00:35:29 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:36:14 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -410,8 +413,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/2705084/all/index.html index 037c7c67..889342f4 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,7 @@ + ergebnisse | parkrun Germany - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - + - @@ -59,7 +53,7 @@
@@ -71,34 +65,25 @@
@@ -121,10 +106,10 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- Für diesen parkrunner wurden noch keine Ergebnisse erfasst. + ​

Gesamtstatistik für diese/n parkrunner*in anzeigen

@@ -156,63 +141,61 @@

Duncan BOOTH (A270508
- Standorte: 49 -
-
- Läufer*innen: 38.276 + Standorte: 61
- Zieleinläufe: 200.386 + Läufer*innen: 68988
- Austragungen landesweit: 5.622 + Zieleinläufe: 400525
- Helfer*innen: 5.277 + Austragungen landesweit: 9821
- Persönliche Bestzeiten: 29.710 + Helfer*innen: 8391
- Durchschnittl. Zielzeit: 00:30:06 + Persönliche Bestzeiten: 57126
- Läufe per Läufer*in: 5,2 + Durchschnittl. Zielzeit: 00:30:35
- Gruppen: 2.415 + Gruppen: 3149
-
+
- Zuletzt aktualisiert: Mo 17 Apr 2023 00:35:34 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:36:14 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -246,8 +239,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/2705084/index.html index dd25c77b..8179797a 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/2705084/index.html @@ -14,6 +14,7 @@ + ergebnisse | parkrun Germany - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - - + - @@ -59,7 +53,7 @@
@@ -71,34 +65,25 @@
@@ -121,16 +106,16 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

Für diesen parkrunner wurden noch keine Ergebnisse erfasst.

Zusammenfassung - Helfende

FunktionAnzahl
- Streckenposten - 260
- Führungsfahrrad - 130
- Streckenprüfung am parkrun-Tag - 9
Gesamtanzahl393

- Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du hier. +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Zusammenfassung - Helfende

FunktionAnzahl
+ Streckenposten + 350
+ Führungsfahrrad + 130
+ Streckenprüfung am parkrun-Tag + 82
Gesamtanzahl540

+ Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du hier.



@@ -160,63 +145,61 @@

Duncan BOOTH (A270508
- Standorte: 49 -
-
- Läufer*innen: 38.276 + Standorte: 61
- Zieleinläufe: 200.386 + Läufer*innen: 68988
- Austragungen landesweit: 5.622 + Zieleinläufe: 400525
- Helfer*innen: 5.277 + Austragungen landesweit: 9821
- Persönliche Bestzeiten: 29.710 + Helfer*innen: 8391
- Durchschnittl. Zielzeit: 00:30:06 + Persönliche Bestzeiten: 57126
- Läufe per Läufer*in: 5,2 + Durchschnittl. Zielzeit: 00:30:35
- Gruppen: 2.415 + Gruppen: 3149
-
+

- Zuletzt aktualisiert: Mo 17 Apr 2023 00:35:34 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:36:14 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -250,8 +243,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/482/all/index.html index 8de55191..30f6709f 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/482/all/index.html @@ -14,6 +14,7 @@ + ergebnisse | parkrun Germany - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - + - @@ -59,7 +53,7 @@
@@ -71,34 +65,25 @@
@@ -126,1650 +111,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns insgesamt + 867 parkruns insgesamt

Gesamtstatistiken für diese/n parkrunner*in anzeigen
- Die letzte Altersklasse war VM40-44 + Die letzte Altersklasse war VM45-49

Zusammenfassung der Statistiken für alle Standorte -
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit16:2521:0459:17
Alterskorrigierte Leistung79.25%65.45%23.56%
Position insgesamt134.831692

+
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit16:2521:2659:17
Alterskorrigierte Leistung79.25%64.63%23.56%
Position insgesamt138.841692

Beste jährliche Leistungen gesamt -
JahrBeste ZeitBeste alterskorrigierte Leistung
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
JahrBeste ZeitBeste alterskorrigierte Leistung
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

Alle Ergebnisse bei -
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Harleston Magpies08/04/2023793525:1255.42% +
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34%   -
Cannock Chase01/04/20232434425:4954.10% +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Kingston25/03/202360216430:0946.32% +
Quakers Walk25/11/2023126825:0556.08%   -
Wolford Wood18/03/202352730:2445.94% +
Aston Hall18/11/202352225:0156.23%   -
Kingston11/03/202360015027:1851.16% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Stockley Country04/03/2023817935:3239.31% +
Belvoir Castle04/11/2023911925:4254.73%   -
Chasewater25/02/202310010026:1953.07% +
Five Arches28/10/202365422:5861.25%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Dover Waterfront21/10/202374525:2255.45%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Rushcliffe14/10/20235087323:5458.86%   -
Worcester04/02/202354318529:3047.34% +
Kingston07/10/202363033150:2927.86%   -
Crane Park28/01/202349014550:3727.59% +
Maaraue03/10/20231012522:3462.33%   -
Kingston21/01/202359431139:3935.22% +
University of Northampton30/09/2023112223:2460.11%   -
Brooklands14/01/202313018830:4445.44% +
Clifton23/09/20231911025:1455.75%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Wisbech16/09/202351523:0361.03%   -
Kingston01/01/202359113340:3134.47% +
Holbrooks09/09/202362223:4359.31%   -
Kingston31/12/202259026442:4432.68% +
Wyre Forest02/09/20233404825:5654.24%   -
Bushy Park25/12/2022909169244:3931.28% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Riverfront19/08/20232594622:5761.29%   -
Kingston17/12/202258818059:1723.56% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston10/12/202258723255:4025.09% +
Kingston05/08/20236216723:2160.24%   -
Beacon03/12/2022737326:4152.34% +
Kingston29/07/20236208725:0955.93%   -
Ganger Farm26/11/2022211426:3452.57% +
Kingston22/07/20236199224:2457.65%   -
Bushy Park19/11/2022903110553:2326.16% +
Severn Valley Country15/07/20231411626:1353.66%   -
Leavesden Country12/11/202246928:3248.95% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Thornham Walks01/07/202353826:5251.99%   -
Durlston Country Park29/10/2022335032:4542.65% +
Kingston24/06/20236156524:0957.83% +   +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1800,63 +1951,61 @@

Danny NORMAN (A482)
- Standorte: 49 -
-
- Läufer*innen: 38.016 + Standorte: 61
- Zieleinläufe: 198.637 + Läufer*innen: 68988
- Austragungen landesweit: 5.573 + Zieleinläufe: 400525
- Helfer*innen: 5.257 + Austragungen landesweit: 9821
- Persönliche Bestzeiten: 29.494 + Helfer*innen: 8391
- Durchschnittl. Zielzeit: 00:30:06 + Persönliche Bestzeiten: 57126
- Läufe per Läufer*in: 5,2 + Durchschnittl. Zielzeit: 00:30:35
- Gruppen: 2.409 + Gruppen: 3149
- +
- Zuletzt aktualisiert: Fr 14 Apr 2023 00:35:29 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:36:14 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1890,8 +2049,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/482/index.html index 425920a8..1dca99bd 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/482/index.html @@ -14,6 +14,7 @@ + ergebnisse | parkrun Germany - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - + - @@ -59,7 +53,7 @@
@@ -71,34 +65,25 @@
@@ -125,877 +110,1003 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns insgesamt

+

867 parkruns insgesamt

Statistiken für alle parkruns dieses parkrunners ansehen
- Die letzte Altersklasse war VM40-44 -

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Bushy parkrun2321100:16:25 + Die letzte Altersklasse war VM45-49 +

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Bushy parkrun2341116:25 + Alle +
Kingston parkrun471116:51 + Alle +
Bedfont Lakes parkrun81117:04 + Alle +
Richmond parkrun71117:13 + Alle +
Nonsuch parkrun71116:52 + Alle +
Crane Park parkrun61116:48 + Alle +
Riddlesdown parkrun42217:01 + Alle +
Wimbledon Common parkrun35517:27 + Alle +
Brighton & Hove parkrun31116:27 + Alle +
Basingstoke parkrun35517:48 + Alle +
Black Park parkrun31117:25 + Alle +
Dulwich parkrun33317:11 + Alle +
Bexley parkrun31117:48 + Alle +
Tilgate parkrun31117:10 + Alle +
Frimley Lodge parkrun31117:11 + Alle +
Hilly Fields parkrun31117:50 + Alle +
Old Deer Park parkrun31117:41 + Alle +
Guildford parkrun31117:17 + Alle +
Homewood parkrun3151722:21 + Alle +
Brockwell parkrun, Herne Hill31116:56 + Alle +
Southwark parkrun34417:27 + Alle +
Fulham Palace parkrun33317:47 + Alle +
Cannon Hill parkrun, Birmingham3111118:04 + Alle +
Gunnersbury parkrun31116:51 + Alle +
Wycombe Rye parkrun22217:17 + Alle +
Hove Promenade parkrun27719:23 + Alle +
Banstead Woods parkrun21117:31 + Alle +
Wormwood Scrubs parkrun21118:00 + Alle +
Roundshaw Downs parkrun23318:14 + Alle +
Mile End parkrun21116:53 + Alle +
Bevendean Down parkrun28923:21 + Alle +
Finsbury parkrun22217:15 + Alle +
Tooting Common parkrun2181819:14 + Alle +
Bedgebury Pinetum parkrun28921:24 + Alle +
Harrow parkrun25520:23 + Alle +
Netley Abbey parkrun21117:21 Alle - Graph It!
Kingston parkrun351100:16:51 +
Ellenbrook Fields parkrun2141519:58 Alle - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Worthing parkrun28918:44 Alle - Graph It!
Richmond parkrun71100:17:13 +
Grovelands parkrun, Enfield22217:21 Alle - Graph It!
Nonsuch parkrun71100:16:52 +
Beckton parkrun23317:24 Alle - Graph It!
Crane Park parkrun61100:16:48 +
Gladstone parkrun21117:09 Alle - Graph It!
Brighton & Hove parkrun31100:16:27 +
Hackney Marshes parkrun22216:46 Alle - Graph It!
Fulham Palace parkrun33300:17:47 +
Burgess parkrun22216:45 Alle - Graph It!
Frimley Lodge parkrun31100:17:11 +
Orpington parkrun22217:27 Alle - Graph It!
Gunnersbury parkrun31100:16:51 +
Barking parkrun22216:45 Alle - Graph It!
Bexley parkrun31100:17:48 +
Southampton parkrun23316:44 Alle - Graph It!
Tilgate parkrun31100:17:10 +
Alice Holt parkrun21117:59 Alle - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Woodley parkrun21117:02 Alle - Graph It!
Southwark parkrun34400:17:27 +
Upton Court parkrun22217:24 Alle - Graph It!
Basingstoke parkrun35500:17:48 +
Chelmsford Central parkrun22217:24 Alle - Graph It!
Hilly Fields parkrun31100:17:50 +
Mole Valley parkrun2262622:56 Alle - Graph It!
Black Park parkrun31100:17:25 +
Durlston Country Park parkrun2355032:45 Alle - Graph It!
Riddlesdown parkrun32200:17:01 +
Hazelwood parkrun2182222:21 Alle - Graph It!
Dulwich parkrun33300:17:11 +
Southsea parkrun23317:55 Alle - Graph It!
Guildford parkrun31100:17:17 +
St Albans parkrun21116:37 Alle - Graph It!
Old Deer Park parkrun31100:17:41 +
Havant parkrun21117:46 Alle - Graph It!
Wimbledon Common parkrun35500:17:27 +
Ashford parkrun22217:57 Alle - Graph It!
Homewood parkrun3151700:22:21 +
Bedford parkrun21116:55 Alle - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Margate parkrun21118:16 Alle - Graph It!
Pymmes parkrun21100:17:06 +
Milton Keynes parkrun23317:26 Alle - Graph It!
Hove Promenade parkrun27700:19:23 +
Preston Park parkrun, Brighton22217:40 Alle - Graph It!
Netley Abbey parkrun21100:17:21 +
Shorne Woods parkrun21118:14 Alle - Graph It!
Mile End parkrun21100:16:53 +
Canons Park parkrun27720:50 Alle - Graph It!
Southampton parkrun23300:16:44 +
Osterley parkrun21117:57 Alle - Graph It!
Northala Fields parkrun22200:18:06 +
Eastleigh parkrun27719:14 Alle - Graph It!
Hockley Woods parkrun26600:21:09 +
Brooklands parkrun2394223:22 Alle - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Great Lines parkrun, Medway25518:25 Alle - Graph It!
Upton Court parkrun22200:17:24 +
Malling Rec parkrun2738526:59 Alle - Graph It!
Alice Holt parkrun21100:17:59 +
Crystal Palace parkrun21117:24 Alle - Graph It!
Osterley parkrun21100:17:57 +
Northala Fields parkrun22218:06 Alle - Graph It!
Burgess parkrun22200:16:45 +
Northampton parkrun21116:56 Alle - Graph It!
Gladstone parkrun21100:17:09 +
Oak Hill parkrun21117:13 Alle - Graph It!
Havant parkrun21100:17:46 +
Lloyd parkrun, Croydon21118:01 Alle - Graph It!
Cranleigh parkrun26600:20:49 +
Newbury parkrun21117:20 Alle - Graph It!
Finsbury parkrun22200:17:15 +
Cranleigh parkrun26620:49 Alle - Graph It!
Southsea parkrun23300:17:55 +
Littlehampton Prom parkrun2384324:22 Alle - Graph It!
Margate parkrun21100:18:16 +
Whitstable parkrun23318:12 Alle - Graph It!
Northampton parkrun21100:16:56 +
Bethlem Royal Hospital parkrun2263223:22 Alle - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Cyclopark parkrun2353824:01 Alle - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Hockley Woods parkrun26621:09 Alle - Graph It!
Crystal Palace parkrun21100:17:24 +
South Oxhey parkrun21119:13 Alle - Graph It!
Eastleigh parkrun27700:19:14 +
Pymmes parkrun21117:06 Alle - Graph It!
Hastings parkrun291100:20:41 +
Hastings parkrun291120:41 Alle - Graph It!
Banstead Woods parkrun21100:17:31 +
Medina I.O.W. parkrun11117:20 Alle - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Uditore parkrun13320:28 Alle - Graph It!
Hackney Marshes parkrun22200:16:46 +
Hunstanton Promenade parkrun1283523:45 Alle - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Raphael parkrun13319:35 Alle - Graph It!
Woodley parkrun21100:17:02 +
Burnham and Highbridge parkrun17510027:51 Alle - Graph It!
Tooting Common parkrun2181800:19:14 +
Salcey Forest parkrun1384324:53 Alle - Graph It!
Milton Keynes parkrun23300:17:26 +
Ferry Meadows parkrun15517:27 Alle - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Barclay parkrun15623:13 Alle - Graph It!
Barking parkrun22200:16:45 +
Irchester Country parkrun1586225:13 Alle - Graph It!
Canons Park parkrun27700:20:50 +
Maldon Prom parkrun11118:04 Alle - Graph It!
Newbury parkrun21100:17:20 +
Salisbury parkrun1111119:34 Alle - Graph It!
Shorne Woods parkrun21100:18:14 +
Tremorfa parkrun1272923:30 Alle - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Billericay parkrun1121321:20 Alle - Graph It!
Mole Valley parkrun2262600:22:56 +
Gedling parkrun1273224:59 Alle - Graph It!
Oak Hill parkrun21100:17:13 +
Oaklands parkrun111820336:10 Alle - Graph It!
Cyclopark parkrun2353800:24:01 +
Winchester parkrun14518:28 Alle - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Aldenham parkrun1141421:37 Alle - Graph It!
South Oxhey parkrun21100:19:13 +
East Park parkrun1121424:18 Alle - Graph It!
Chelmsford Central parkrun22200:17:24 +
Soham Village College parkrun1253228:03 Alle - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Stevenage parkrun17719:32 Alle - Graph It!
Bevendean Down parkrun28900:23:21 +
Tewkesbury parkrun1111422:50 Alle - Graph It!
Bedford parkrun21100:16:55 +
Seven Fields parkrun1475526:28 Alle - Graph It!
Whitstable parkrun23300:18:12 +
Conkers parkrun12217:46 Alle - Graph It!
Orpington parkrun22200:17:27 +
Lee-on-the-Solent parkrun17719:40 Alle - Graph It!
Ashford parkrun22200:17:57 +
Brixworth Country parkrun1496126:53 Alle - Graph It!
Hazelwood parkrun2182200:22:21 +
Abingdon parkrun15518:03 Alle - Graph It!
Brooklands parkrun2394200:23:22 +
Lowestoft parkrun1232621:10 Alle - Graph It!
Wycombe Rye parkrun22200:17:17 +
Chipping Norton School parkrun1455126:40 Alle - Graph It!
Harrow parkrun25500:20:23 +
Linford Wood parkrun1222221:45 Alle - Graph It!
Beckton parkrun23300:17:24 +
Harwich parkrun191021:22 Alle - Graph It!
St Albans parkrun21100:16:37 +
Fulbourn Hospital parkrun1344724:59 Alle - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Gunpowder parkrun12217:34 Alle -  
Buckingham parkrun12200:18:37 +
Dartford Heath parkrun1171722:06 Alle -  
Thomas Mills parkrun1486500:30:19 +
Sandhurst Memorial parkrun1537328:54 Alle -  
Leamington parkrun12200:18:52 +
Woodhouse Moor parkrun11117:22 Alle -  
Church Mead parkrun16610200:32:53 +
Sandwell Valley parkrun1455930:43 Alle -  
Letchworth parkrun1141400:23:13 +
Wyre Forest parkrun1434825:56 Alle -  
Mulbarton parkrun12200:19:55 +
parkrun Zalew Żyrardowski16724:38 Alle -  
Arrow Valley parkrun13300:18:05 +
Bramhall parkrun115924735:16 Alle -  
Frogmary Green Farm parkrun1597200:25:58 +
Hatfield Forest parkrun1181820:36 Alle -  
Sutton Park parkrun1475500:24:54 +
Swansea Bay parkrun1748323:44 Alle -  
Reigate Priory parkrun16600:19:06 +
Wollaton Hall parkrun1889723:51 Alle -  
Bury St Edmunds parkrun13300:18:17 +
Horsham parkrun14518:16 Alle -  
Pollok parkrun, Glasgow11100:17:00 +
Jersey parkrun16619:41 Alle -  
Kingdom parkrun1222500:24:39 +
Berkeley Green parkrun1233128:31 Alle -  
Barclay parkrun15600:23:13 +
Cardiff parkrun111011722:02 Alle -  
Chippenham parkrun1212100:20:08 +
Ally Pally parkrun11118:09 Alle -  
Ipswich parkrun11100:17:34 +
Thurrock parkrun, Orsett Heath16620:41 Alle -  
Itchen Valley Country parkrun1476100:27:37 +
Beacon parkrun1587326:41 Alle -  
Neckarau parkrun1243000:27:11 +
Albert parkrun, Middlesbrough1515423:17 Alle -  
Brandon Country Park parkrun11100:18:30 +
Sherwood Pines parkrun1161821:33 Alle -  
Boston parkrun17700:21:18 +
Wickford Memorial parkrun1436651:15 Alle -  
University Parks parkrun119032600:31:42 +
Thornbury parkrun1323428:19 Alle -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Malling parkrun18314547:25 Alle -  
Lullingstone parkrun17700:21:21 +
Itchen Valley Country parkrun1476127:37 Alle -  
Coventry parkrun1292900:20:51 +
Pollok parkrun, Glasgow11117:00 Alle -  
Berkeley Green parkrun1233100:28:31 +
Eastville parkrun120525325:12 Alle -  
Mersea Island parkrun1121200:20:59 +
Rutland Water parkrun1293022:44 Alle -  
Aylesbury parkrun11100:17:51 +
Chalkwell Beach parkrun1819624:40 Alle -  
Royal Tunbridge Wells parkrun18900:19:23 +
Amager Fælled parkrun1333724:23 Alle -  
Southall parkrun1557500:31:38 +
Hoblingwell parkrun1202423:52 Alle -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Belton House parkrun1141523:48 Alle -  
Pomphrey Hill parkrun1364100:23:02 +
Kagerzoom parkrun1435824:39 Alle -  
Henley-on-Thames parkrun1111100:22:25 +
Gorleston Cliffs parkrun12217:43 Alle -  
Aachener Weiher parkrun1101100:24:55 +
King’s Lynn parkrun1151520:07 Alle -  
Penrose parkrun1151600:19:40 +
Holkham parkrun1506925:37 Alle -  
King’s Lynn parkrun1151500:20:07 +
Horspath parkrun17410628:12 Alle -  
Fulbourn Hospital parkrun1344700:24:59 +
Southwick Country parkrun1272921:47 Alle -  
Fareham parkrun16600:19:21 +
Rushmere parkrun1131422:39 Alle -  
Brockenhurst parkrun13300:18:23 +
Zuiderpark parkrun, Den Haag1738124:07 Alle -  
Canterbury parkrun16600:21:56 +
Heaton parkrun13318:08 Alle -  
Alton Water parkrun1538300:35:09 +
Colney Lane parkrun1495524:01 Alle -  
Littleport parkrun1445100:25:16 +
Leicester Victoria parkrun19711626:45 Alle -  
Newport parkrun11100:17:29 +
Church Mead parkrun16610232:53 Alle -  
California Country parkrun1649000:28:49 +
Southend parkrun11116:28 Alle -  
Thornbury parkrun1323400:28:19 +
Lydney parkrun1202123:19 Alle -  
Greenwich parkrun12200:18:07 +
Edgbaston Reservoir parkrun1658626:24 Alle -  
Seven Fields parkrun1475500:26:28 +
Reading parkrun12217:18 Alle -  
Highbury Fields parkrun11100:17:25 +
March parkrun15521:11 Alle -  
The Great Field parkrun19313500:29:12 +
Woodgate Valley Country Park parkrun16513245:50 Alle -  
Street parkrun1283500:25:52 +
Maaraue parkrun1232522:34 Alle -  
South Norwood parkrun1121200:21:11 +
Stonehouse parkrun1131320:09 Alle -  
Dunstable Downs parkrun1374300:24:58 +
Rheinpark parkrun1151825:30 Alle -  
Melton Mowbray parkrun1192200:22:38 +
Edinburgh parkrun12217:00 Alle -  
Horsham parkrun14500:18:16 +
Chippenham parkrun1212120:08 Alle -  
Irchester Country parkrun1586200:25:13 +
Stratford-upon-Avon parkrun1202521:14 Alle -  
Stratford-upon-Avon parkrun1202500:21:14 +
Henlow Bridge Lakes parkrun17511532:34 Alle -  
Wotton parkrun1182100:24:45 +
Bromley parkrun13317:18 Alle -  
Bath Skyline parkrun1192000:21:08 +
Houghton Hall parkrun1131321:48 Alle -  
Great Dunmow parkrun14400:20:25 +
Sittingbourne parkrun18820:56 Alle -  
Corby parkrun18800:23:09 +
Sharpham Road Playing Fields parkrun1253124:41 Alle -  
Bracknell parkrun18800:20:04 +
Gadebridge parkrun1141422:22 Alle -  
Cromhall parkrun1151600:24:20 +
Chilton Fields parkrun1405428:26 Alle -  
Perry Hall parkrun1464900:24:58 +
Storeys Field parkrun115121128:49 Alle -  
Gunpowder parkrun12200:17:34 +
Hadleigh parkrun, Essex1252624:27 Alle -  
Luton Wardown parkrun191000:19:36 +
Marple parkrun11117:15 Alle -  
Ifield Mill Pond parkrun1373800:24:33 +
Portsmouth Lakeside parkrun19919:12 Alle -  
March parkrun15500:21:11 +
Grove Fields parkrun1578528:03 Alle -  
Roding Valley parkrun1111300:21:26 +
Banbury parkrun1222321:16 Alle -  
Charlton parkrun18213000:32:05 +
Graves parkrun11118:18 Alle -  
Malmö Ribersborg parkrun111215100:28:46 +
Watermead Country Park parkrun110818235:52 Alle -  
Worcester parkrun114418500:29:30 +
Eastbourne parkrun12217:24 Alle -  
Wolford Wood parkrun1212700:30:24 +
Malahide parkrun11116:54 Alle -  
Fire Service College parkrun1181900:22:12 +
Fareham parkrun16619:21 Alle -  
Panshanger parkrun17700:20:14 +
Sutcliffe parkrun113117230:34 Alle -  
Conkers parkrun12200:17:46 +
Fritton Lake parkrun11118:26 Alle -  
Banbury parkrun1222300:21:16 +
Bicester parkrun14420:13 Alle -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Sandringham parkrun1466330:18 Alle -  
Rushmere parkrun1131400:22:39 +
Luton Wardown parkrun191019:36 Alle -  
Whiteley parkrun1141500:20:56 +
Cwmbran parkrun1171723:29 Alle -  
Sandringham parkrun1466300:30:18 +
Broadwater parkrun110321335:19 Alle -  
Victoria Dock parkrun1283000:20:04 +
Basildon parkrun15518:13 Alle -  
Queen Elizabeth parkrun12200:19:08 +
Marecchia parkrun11119:50 Alle -  
Lordship Recreation Ground parkrun19112400:25:22 +
Harleston Magpies parkrun1293525:12 Alle -  
Somerdale Pavilion parkrun1384600:31:17 +
Kingsway parkrun, Gloucester1192021:20 Alle -  
Dartford parkrun11100:17:59 +
Bryn Bach parkrun11116:50 Alle -  
Winchester parkrun14500:18:28 +
Mersea Island parkrun1121220:59 Alle -  
Stratford Park parkrun, Stroud1566500:27:51 +
Charlton parkrun18213032:05 Alle -  
Sherwood Pines parkrun1161800:21:33 +
parkrun de Rouen15521:41 Alle -  
Grove Fields parkrun1578500:28:03 +
Dallas Burston Polo Club parkrun19614732:26 Alle -  
Witney parkrun1202000:22:34 +
Ashton Court parkrun1859522:59 Alle -  
Preston Park parkrun, Brighton12200:17:40 +
Tøyen parkrun1668526:32 Alle -  
Colchester Castle parkrun14400:18:04 +
The Great Field parkrun19313529:12 Alle -  
Tidworth parkrun110815500:35:14 +
Castle Park parkrun1394122:34 Alle -  
Walmer and Deal Seafront parkrun18800:21:38 +
Swanley parkrun19712531:18 Alle -  
Ferry Meadows parkrun15500:17:27 +
Greenwich parkrun12218:07 Alle -  
St Mary’s parkrun1587400:29:14 +
Neckarau parkrun1243027:11 Alle -  
Dartford Heath parkrun1171700:22:06 +
Bury Field parkrun1669033:07 Alle -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Clifton parkrun1101025:14 Alle -  
Great Denham parkrun16600:19:27 +
Alton Water parkrun1538335:09 Alle -  
Hastings High School parkrun1637800:27:33 +
Colwick parkrun18819:46 Alle -  
Wendover Woods parkrun1262600:23:51 +
Melksham parkrun1171724:31 Alle -  
Peckham Rye parkrun11100:17:49 +
Markshall Estate parkrun110315632:26 Alle -  
Upton House parkrun1252700:22:34 +
Rogiet parkrun1151624:27 Alle -  
Lee-on-the-Solent parkrun17700:19:40 +
Bartley Park parkrun18415132:38 Alle -  
Graves parkrun11100:18:18 +
Lydiard parkrun18818:25 Alle -  
Maidstone parkrun13300:18:00 +
Little Stoke parkrun11117:03 Alle -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Letchworth parkrun1141423:13 Alle -  
South Woodham Ferrers parkrun18800:21:14 +
Belvoir Castle parkrun1131925:42 Alle -  
Pontypridd parkrun12200:17:54 +
Andover parkrun11117:33 Alle -  
Bournemouth parkrun14400:17:43 +
Rushcliffe parkrun1617323:54 Alle -  
Sizewell parkrun1172000:23:30 +
Cirencester parkrun1222422:40 Alle -  
Rushmoor parkrun19900:18:29 +
Southall parkrun1557531:38 Alle -  
Walsall Arboretum parkrun19810600:25:31 +
Forest of Dean parkrun1182224:51 Alle -  
Gorleston Cliffs parkrun12200:17:43 +
parkrun des Dougnes, Cubnezais12219:42 Alle -  
Uckfield parkrun1404300:24:12 +
South Woodham Ferrers parkrun18821:14 Alle -  
Aldenham parkrun1141400:21:37 +
Marine Parade parkrun17711129:24 Alle -  
Gadebridge parkrun1141400:22:22 +
Coventry parkrun1292920:51 Alle -  
Horspath parkrun17410600:28:12 +
Wotton parkrun1182124:45 Alle -  
Rogiet parkrun1151600:24:27 +
Gloucester City parkrun1171922:35 Alle -  
Rendlesham Forest parkrun1264600:37:01 +
Great Salterns parkrun19212430:27 Alle -  
Dishley parkrun, Loughborough110311400:24:30 +
Bedworth parkrun1171722:14 Alle -  
Great Cornard parkrun1192000:20:33 +
University Parks parkrun119032631:42 Alle -  
Kettering parkrun1232600:22:50 +
Hampstead Heath parkrun11117:45 Alle -  
Pont y Bala parkrun15700:23:18 +
Great Denham parkrun16619:27 Alle -  
Burnham and Highbridge parkrun17510000:27:51 +
Downham Market Academy parkrun1121324:35 Alle -  
Stonehouse parkrun1131300:20:09 +
Ipswich parkrun11117:34 Alle -  
Hampstead Heath parkrun11100:17:45 +
Sixfields Upton parkrun18819:58 Alle -  
Wickford Memorial parkrun1436600:51:15 +
Rendlesham Forest parkrun1264637:01 Alle -  
Castle Park parkrun1394100:22:34 +
Frogmary Green Farm parkrun1597225:58 Alle -  
Huntingdon parkrun1202100:21:10 +
Harrow Lodge parkrun11118:48 Alle -  
Great Salterns parkrun19212400:30:27 +
Witney parkrun1202022:34 Alle -  
Snowden Field parkrun1242600:24:15 +
Leamington parkrun12218:52 Alle -  
Southend parkrun11100:16:28 +
Brockenhurst parkrun13318:23 Alle -  
Andover parkrun11100:17:33 +
Hogmoor Inclosure parkrun1262625:26 Alle -  
parkrun Zalew Żyrardowski16700:24:38 +
Hastings High School parkrun1637827:33 Alle -  
Marecchia parkrun11100:19:50 +
Cannock Chase parkrun1384425:49 Alle -  
Cheltenham parkrun12200:17:24 +
Wimpole Estate parkrun1202122:14 Alle -  
St Helens parkrun1606800:24:27 +
Haverhill parkrun1121323:32 Alle -  
Bartley Park parkrun18415100:32:38 +
Edenbrook Country parkrun110514828:01 Alle -  
Severn Bridge parkrun1353900:21:32 +
Maidstone River Park parkrun13318:00 Alle -  
Pontypool parkrun1232300:23:51 +
Cheltenham parkrun12217:24 Alle -  
Poole parkrun14400:16:57 +
Victoria Dock parkrun1273020:04 Alle -  
Bramhall parkrun115924700:35:16 +
Ekebergsletta parkrun1304325:57 Alle -  
Sunny Hill parkrun1202400:24:39 +
Oxford parkrun11117:18 Alle -  
Cassiobury parkrun1111100:20:14 +
Aylesbury parkrun11117:51 Alle -  
Hoblingwell parkrun1202400:23:52 +
Mote Park parkrun19712231:28 Alle -  
Colwick parkrun18800:19:46 +
Riverfront parkrun1404622:57 Alle -  
Chipping Norton School parkrun1455100:26:40 +
Newent parkrun1182225:27 Alle -  
Worthing parkrun18900:18:44 +
Clapham Common parkrun1404220:22 Alle -  
Harrow Lodge parkrun11100:18:48 +
Llanishen Park parkrun1303323:48 Alle -  
Bradford parkrun1313600:21:55 +
Heartwood Forest parkrun1252721:41 Alle -  
Bury Field parkrun1669000:33:07 +
Walthamstow parkrun11117:48 Alle -  
Pocket parkrun1222300:21:38 +
Malmö Ribersborg parkrun111215128:46 Alle -  
Longrun Meadow parkrun111416500:32:01 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 Alle -  
Worcester Pitchcroft parkrun111814300:27:04 +
Huntingdon parkrun1202121:10 Alle -  
Highwoods parkrun1252600:24:49 +
Felixstowe parkrun1121221:07 Alle -  
Maidenhead parkrun17700:18:49 +
Tidworth parkrun110815535:14 Alle -  
Soham Village College parkrun1253200:28:03 +
Brandon Country Park parkrun11118:30 Alle -  
Rickmansworth parkrun1242700:21:39 +
Prospect parkrun1232322:42 Alle -  
Swaffham parkrun191000:22:19 +
Mildenhall Hub parkrun1273124:33 Alle -  
Brentwood parkrun17700:22:28 +
York parkrun12217:12 Alle -  
Lymington Woodside parkrun15700:21:59 +
Thetford parkrun1161721:45 Alle -  
Loch Neaton parkrun, Watton1171700:25:49 +
Great Dunmow parkrun14420:25 Alle -  
Daventry parkrun1151500:21:10 +
Leavesden Country parkrun1506928:32 Alle -  
Hatfield Forest parkrun1181800:20:36 +
Catford parkrun1303322:32 Alle -  
Kingsway parkrun, Gloucester1192000:21:20 +
Lordship Recreation Ground parkrun19112425:22 Alle -  
Salcey Forest parkrun1384300:24:53 +
Rugby parkrun1181822:26 Alle -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Mulbarton parkrun12219:55 Alle -  
Prospect parkrun1232300:22:42 +
Swaffham parkrun191022:19 Alle -  
Weymouth parkrun1141400:20:45 +
Ganger Farm parkrun19811426:34 Alle -  
Westmill parkrun1101000:22:55 +
Beckenham Place parkrun1121220:28 Alle -  
East Brighton parkrun1182100:23:56 +
Forest Rec parkrun1677626:35 Alle -  
Harlow parkrun1151500:23:00 +
Street parkrun1283525:52 Alle -  
Linford Wood parkrun1222200:21:45 +
Market Bosworth Country Park parkrun110614435:35 Alle -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Whiteley parkrun1141520:56 Alle -  
Lydney parkrun1202100:23:19 +
Kingsbury Water parkrun1394725:05 Alle -  
Braunstone parkrun1262700:20:41 +
Springhill parkrun14422:18 Alle -  
Harleston Magpies parkrun1293500:25:12 +
Wolford Wood parkrun1212730:24 Alle -  
Clapham Common parkrun1404200:20:22 +
Pontypridd parkrun12217:54 Alle -  
Market Bosworth Country Park parkrun110614400:35:35 +
Pocket parkrun1222321:38 Alle -  
Jersey Farm parkrun1252700:23:11 +
Stockley Country parkrun111917935:32 Alle -  
Kesgrave parkrun1374000:21:18 +
Braunstone parkrun1262720:41 Alle -  
Stevenage parkrun17700:19:32 +
Didcot parkrun1101121:28 Alle -  
Hadleigh parkrun, Essex1252600:24:27 +
Littleport parkrun1445125:16 Alle -  
Squerryes Winery parkrun1323600:27:45 +
Yarborough Leisure Centre parkrun1466125:59 Alle -  
Rutland Water parkrun1293000:22:44 +
Roding Valley parkrun1111321:26 Alle -  
Beckenham Place parkrun1121200:20:28 +
Clair parkrun13318:36 Alle -  
Sutcliffe parkrun113117200:30:34 +
Dinton Pastures parkrun1131321:23 Alle -  
Haverhill parkrun1121300:23:32 +
Beacon Hill Country Park parkrun1273725:54 Alle -  
Leavesden Country parkrun1506900:28:32 +
Severn Bridge parkrun1353921:32 Alle -  
Coldham’s Common parkrun1535900:23:04 +
Abbey Park parkrun1779425:21 Alle -  
Chichester parkrun13300:19:05 +
Dudley parkrun1445626:35 Alle -  
Billericay parkrun1121300:21:20 +
Pegwell Bay parkrun12217:40 Alle -  
Bromley parkrun13300:17:18 +
Manor Field parkrun, Whittlesey1121324:25 Alle -  
Babbs Mill parkrun1405100:28:00 +
Blaise Castle parkrun112816326:20 Alle -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Chipping Sodbury parkrun1303221:20 Alle -  
Bryn Bach parkrun11100:16:50 +
Foots Cray Meadows parkrun1212323:17 Alle -  
York parkrun12200:17:12 +
Thames Path parkrun, Woolwich1789023:42 Alle -  
Storeys Field parkrun115121100:28:49 +
Bath Skyline parkrun1192021:08 Alle -  
Chipping Sodbury parkrun1303200:21:20 +
Dishley parkrun, Loughborough110311424:30 Alle -  
Mote Park parkrun19712200:31:28 +
Thornham Walks parkrun1363826:52 Alle -  
Watermeadows parkrun1283100:24:57 +
Moors Valley parkrun19919:40 Alle -  
Woking parkrun18800:18:19 +
East Grinstead parkrun1131423:10 Alle -  
Raphael parkrun13300:19:35 +
Sutton Park parkrun1475524:54 Alle -  
Harwich parkrun191000:21:22 +
University of Northampton parkrun1192223:24 Alle -  
Fritton Lake parkrun11100:18:26 +
Shipley Country parkrun1232424:45 Alle -  
Heartwood Forest parkrun1252700:21:41 +
Lancing Beach Green parkrun1141421:08 Alle -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Dover Waterfront parkrun1374525:22 Alle -  
Bedworth parkrun1171700:22:14 +
Rickmansworth parkrun1242721:39 Alle -  
Clair parkrun13300:18:36 +
Queen Elizabeth parkrun12219:08 Alle -  
Brueton parkrun1475000:21:33 +
Sizewell parkrun1172023:30 Alle -  
Higginson parkrun, Marlow1272900:22:17 +
Holbrooks parkrun1202223:43 Alle -  
Bognor Regis parkrun12200:18:12 +
Highbury Fields parkrun11117:25 Alle -  
Huddersfield parkrun1626700:22:02 +
Clacton Seafront parkrun19920:35 Alle -  
Heaton parkrun13300:18:08 +
Delaware and Raritan Canal parkrun12221:06 Alle -  
Chasewater parkrun18210000:26:19 +
Wisbech parkrun1111523:03 Alle -  
Tewkesbury parkrun1111400:22:50 +
Milton Country parkrun13317:43 Alle -  
Marple parkrun11100:17:15 +
Seaton parkrun1394824:09 Alle -  
Cannock Chase parkrun1384400:25:49 +
Higginson parkrun, Marlow1272922:17 Alle -  
Edgbaston Reservoir parkrun1658600:26:24 +
Quakers Walk parkrun1566825:05 Alle -  
Cirencester parkrun1222400:22:40 +
Lister Park parkrun, Bradford1313621:55 Alle -  
Kingsbury Water parkrun1394700:25:05 +
Wendover Woods parkrun1262623:51 Alle -  
Peacehaven parkrun17700:21:07 +
Sence Valley Forest Park parkrun1232526:28 Alle -  
Lancing Beach Green parkrun1141400:21:08 +
Canterbury parkrun16621:56 Alle -  
Springburn parkrun, Glasgow13300:18:05 +
Henstridge Airfield parkrun18821:41 Alle -  
Market Harborough parkrun1303100:21:17 +
Five Arches parkrun1455422:58 Alle -  
Amager Fælled parkrun1333700:24:23 +
Yeovil Montacute parkrun1707525:51 Alle -  
Hanworth parkrun1364000:24:26 +
Watermeadows parkrun1283124:57 Alle -  
Salisbury parkrun1111100:19:34 +
Tamworth Castle Grounds parkrun1333523:26 Alle -  
Houghton Hall parkrun1131300:21:48 +
St Helens parkrun1606824:27 Alle -  
Chalkwell Beach parkrun1819600:24:40 +
Weymouth parkrun1141420:45 Alle -  
Melksham parkrun1171700:24:31 +
Walmer and Deal Seafront parkrun18821:38 Alle -  
Thetford parkrun1161700:21:45 +
Aston Hall parkrun1202225:01 Alle -  
Pontefract parkrun1718700:24:10 +
Royal Tunbridge Wells parkrun18919:23 Alle -  
Downham Market Academy parkrun1121300:24:35 +
Corby parkrun18823:09 Alle -  
Fountains Abbey parkrun11100:18:03 +
Marlborough Common parkrun1202122:48 Alle -  
Cardiff parkrun111011700:22:02 +
Battlestead Croft parkrun1111122:53 Alle -  
Littlehampton Prom parkrun1384300:24:22 +
Shepton Mallet parkrun1121421:50 Alle -  
Uditore parkrun13300:20:28 +
Clare Castle parkrun1252723:04 Alle -  
Beacon parkrun1587300:26:41 +
Coldham’s Common parkrun1535923:04 Alle -  
parkrun de Rouen15500:21:41 +
Brunswick Park parkrun1212223:58 Alle -  
Walthamstow parkrun11100:17:48 +
Brentwood parkrun17722:28 Alle -  
Shepton Mallet parkrun1121400:21:50 +
Somerdale Pavilion parkrun1384631:17 Alle -  
Marine Parade parkrun17711100:29:24 +
Wakehurst parkrun18810525:00 Alle -  
Foots Cray Meadows parkrun1212300:23:17 +
Boston parkrun17721:18 Alle -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Morden parkrun111715526:58 Alle -  
Evesham parkrun1111100:21:39 +
Pontefract parkrun1718724:10 Alle -  
Southwick Country parkrun1272900:21:47 +
Jersey Farm parkrun1252723:11 Alle -  
Lydiard parkrun18800:18:25 +
Bug Hunter Waters parkrun1455022:41 Alle -  
Sandhurst Memorial parkrun1537300:28:54 +
Rosliston parkrun1333624:41 Alle -  
Bicester parkrun14400:20:13 +
Longrun Meadow parkrun111416532:01 Alle -  
Wimpole Estate parkrun1202100:22:14 +
Fire Service College parkrun1181922:12 Alle -  
Markshall Estate parkrun110315600:32:26 +
Woolacombe Dunes parkrun19410931:20 Alle -  
Dinton Pastures parkrun1131300:21:23 +
The Plens parkrun1303124:04 Alle -  
Tonbridge parkrun14400:18:40 +
Arrow Valley parkrun13318:05 Alle -  
Wanstead Flats parkrun13300:17:13 +
Tonbridge parkrun14418:40 Alle -  
Woodhouse Moor parkrun11100:17:22 +
East Brighton parkrun1182123:56 Alle -  
Mountbatten School parkrun1323400:24:11 +
Three Brooks parkrun1697223:46 Alle -  
Eastville parkrun120525300:25:12 +
Peacehaven parkrun17721:07 Alle -  
Brixworth Country parkrun1496100:26:53 +
Pontypool parkrun1232323:51 Alle -  
Portsmouth Lakeside parkrun19900:19:12 +
Cromhall parkrun1151624:20 Alle -  
Milton Country parkrun13300:17:43 +
Dereham parkrun1323323:47 Alle -  
Swanley parkrun19712500:31:18 +
Bournemouth parkrun14417:43 Alle -  
Springhill parkrun14400:22:18 +
Pomphrey Hill parkrun1364123:02 Alle -  
Gloucester North parkrun1101000:22:14 +
Seaford Beach parkrun1535622:25 Alle -  
Feltham parkrun13400:24:56 +
Mansfield parkrun11117:09 Alle -  
Crissy Field parkrun1101200:20:40 +
Fountains Abbey parkrun11118:03 Alle -  
Ally Pally parkrun11100:18:09 +
Loch Neaton parkrun, Watton1171725:49 Alle -  
Ashton Court parkrun1859500:22:59 +
Brueton parkrun1475021:33 Alle -  
Oaklands parkrun111820300:36:10 +
Great Cornard parkrun1192020:33 Alle -  
Sittingbourne parkrun18800:20:56 +
Dunstable Downs parkrun1374324:58 Alle -  
Moors Valley parkrun19900:19:40 +
Beeston parkrun1374023:53 Alle -  
Catford parkrun1303300:22:32 +
Feltham parkrun13424:56 Alle -  
Clare Castle parkrun1252700:23:04 +
Markeaton parkrun1576422:56 Alle -  
Harrogate parkrun13300:18:11 +
Reigate Priory parkrun16619:06 Alle -  
Seaford Beach parkrun1535600:22:25 +
Highwoods parkrun1252624:49 Alle -  
Tring parkrun1171800:23:38 +
Valentines parkrun11116:49 Alle -  
Sandwell Valley parkrun1455900:30:43 +
Springburn parkrun, Glasgow13318:05 Alle -  
Basildon parkrun15500:18:13 +
California Country parkrun1649028:49 Alle -  
The Leas parkrun, Minster1252500:24:37 +
Rushmoor parkrun19918:29 Alle -  
Little Stoke parkrun11100:17:03 +
Mountbatten School parkrun1323424:11 Alle -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Colchester Castle parkrun14418:04 Alle -  
Felixstowe parkrun1121200:21:07 +
Buckingham parkrun12218:37 Alle -  
Yeovil Montacute parkrun1707500:25:51 +
Sunny Hill parkrun1202424:39 Alle -  
Stockley Country parkrun111917900:35:32 +
Bognor Regis parkrun12218:12 Alle -  
Woolacombe Dunes parkrun19410900:31:20 +
Aachener Weiher parkrun1101124:55 Alle -  
Harcourt Hill parkrun1171700:21:13 +
Peckham Rye parkrun11117:49 Alle -  
Abingdon parkrun15500:18:03 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 Alle -  
Eastbourne parkrun12200:17:24 +
Great Notley parkrun16620:16 Alle -  
Warwick Racecourse parkrun1486000:24:55 +
Snowden Field parkrun1242624:15 Alle -  
Leicester Victoria parkrun19711600:26:45 +
Burnham-on-Crouch parkrun18822:01 Alle -  
Broadwater parkrun110321300:35:19 +
Woking parkrun18818:19 Alle -  
Clacton Seafront parkrun19900:20:35 +
Neckarufer parkrun, Esslingen1364425:12 Alle -  
Burnham-on-Crouch parkrun18800:22:01 +
Worcester parkrun114418529:30 Alle -  
Ganger Farm parkrun19811400:26:34 +
Blandford parkrun18920:11 Alle -  
Folkestone parkrun1212500:21:48 +
Pont y Bala parkrun15723:18 Alle -  
Mallards Pike parkrun1324600:30:57 +
Chichester parkrun13319:05 Alle -  
Malling parkrun18314500:47:25 +
Kingdom parkrun1222524:39 Alle -  
Rugby parkrun1181800:22:26 +
Westmill parkrun1101022:55 Alle -  
Watermead Country Park parkrun110818200:35:52 +
Dartford parkrun11117:59 Alle -  
Hogmoor Inclosure parkrun1262600:25:26 +
Hanworth parkrun1364024:26 Alle -  
East Grinstead parkrun1131400:23:10 +
Bracknell parkrun18820:04 Alle -  
Mildenhall Hub parkrun1273100:24:33 +
Folkestone parkrun1212521:48 Alle -  
Marlborough Common parkrun1202100:22:48 +
Uckfield parkrun1404324:12 Alle -  
Blandford parkrun18900:20:11 +
Harrogate parkrun13318:11 Alle -  
Maldon Prom parkrun11100:18:04 +
Kesgrave parkrun1374021:18 Alle -  
Edinburgh parkrun12200:17:00 +
Thomas Mills parkrun1486530:19 Alle -  
The Old Showfield parkrun1636900:23:30 +
Lymington Woodside parkrun15721:59 Alle -  
Jersey parkrun16600:19:41 +
Hereford parkrun1535323:07 Alle -  
Chilton Fields parkrun1405400:28:26 +
Chasewater parkrun18210026:19 Alle -  
Sixfields Upton parkrun18800:19:58 +
South Norwood parkrun1121221:11 Alle -  
Pegwell Bay parkrun12200:17:40 +
Panshanger parkrun17720:14 Alle -  
Valentines parkrun11100:16:49 +
Wolverhampton parkrun1556624:54 Alle -  
Edenbrook Country parkrun110514800:28:01 +
Harcourt Hill parkrun1171721:13 Alle -  
Henstridge Airfield parkrun18800:21:41 +
Tetbury Goods Shed parkrun1253024:25 Alle -  
Great Notley parkrun16600:20:16 +
Gloucester North parkrun1101022:14 Alle -  
Medina I.O.W. parkrun11100:17:20 +
Harlow parkrun1151523:00 Alle -  
Reading parkrun12200:17:18 +
Alvaston parkrun1515922:24 Alle -  
Tetbury Goods Shed parkrun1253000:24:25 +
Worcester Pitchcroft parkrun111814327:04 Alle -  
Lowestoft parkrun1232600:21:10 +
Perry Hall parkrun1464924:58 Alle -  
Malahide parkrun11100:16:54 +
Newport parkrun11117:29 Alle -  
Oxford parkrun11100:17:18 +
Tring parkrun1171823:38 Alle -  
Rheinpark parkrun1151800:25:30 +
Severn Valley Country parkrun1141626:13 Alle -  
Gloucester City parkrun1171900:22:35 +
Wanstead Flats parkrun13317:13 Alle -  
Didcot parkrun1101100:21:28 +
Daventry parkrun1151521:10 Alle -  
Mansfield parkrun11100:17:09 +
St Mary’s parkrun1587429:14 Alle -  
7851100:16:25 +
Poole parkrun14416:57 + Alle +
Melton Mowbray parkrun1192222:38 + Alle +
The Old Showfield parkrun1636923:30 + Alle +
Henley-on-Thames parkrun1111122:25 + Alle +
Crissy Field parkrun1101220:40 + Alle +
Babbs Mill parkrun1405128:00 + Alle +
Maidenhead parkrun17718:49 + Alle +
Ross-on-Wye parkrun1172124:22 + Alle +
Kettering parkrun1232622:50 + Alle +
Stratford Park parkrun, Stroud1566527:51 + Alle +
Bury St Edmunds parkrun13318:17 + Alle +
Mallards Pike parkrun1324630:57 + Alle +
Market Harborough parkrun1303121:17 + Alle +
Cassiobury parkrun1111120:14 + Alle +
Squerryes Winery parkrun1323627:45 + Alle +
Walsall Arboretum parkrun19010625:31 + Alle +
Penrose parkrun1151619:40 + Alle +
King George V Playing Field parkrun, Cheltenham1232826:08 + Alle +
Evesham parkrun1111121:39 + Alle +
Warwick Racecourse parkrun1486024:55 + Alle +
Huddersfield parkrun1626722:02 + Alle +
Clevedon Salthouse Fields parkrun1384925:13 + Alle +
Long Eaton parkrun19912124:06 + Alle +
Barry Island parkrun1394223:51 + Alle +
Ifield Mill Pond parkrun1373824:33 + Alle +
Upton House parkrun1252722:34 + Alle +
Lullingstone parkrun17721:21 + Alle +
The Leas parkrun, Minster1252524:37 + Alle +
8671116:25 Alle  


Zusammenfassung - Helfende

FunktionAnzahl
- Laufleitung - 94
- Zeitnahme - 59
- Zielmarkenverwaltung - 3
- Ergebnisauswertung - 87
- Fotos - 6
- Kommunikation - 10
- Streckenposten - 39
- Ausrüstung Aufbau - 130
- Ausrüstung Lagerung und Lieferung - 128
- andere Aufgaben - 23
- Barcode einlesen - 55
- Ausrüstung Abbau - 45
- Zielmarkenausgabe - 15
- Nummern-Kontrolle - 2
- Einweisung für Erstläufer*innen - 68
- Leitung Einlaufgasse - 15
- Zielmarken Unterstützung - 9
- Schlussbegleitung - 29
- Koordination Helfer*innen - 146
- Berichterstattung - 97
- Backup Timer - 3
- (nicht anwendbar für parkrun Deutschland) - 16
- Parkplatzeinweisung - 1
- Streckenprüfung am parkrun-Tag - 8
- parkwalker - 9
Gesamtanzahl396

- Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du
hier. -



Freie Läufe

DatumZeitStandort
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
+ Laufleitung +
99
+ Zeitnahme + 94
+ Zielmarkenverwaltung + 12
+ Ergebnisauswertung + 87
+ Fotos + 6
+ Kommunikation + 10
+ Streckenposten + 54
+ Ausrüstung Aufbau + 148
+ Ausrüstung Lagerung und Lieferung + 130
+ andere Aufgaben + 26
+ Barcode einlesen + 78
+ Ausrüstung Abbau + 51
+ Zielmarkenausgabe + 21
+ Nummern-Kontrolle + 2
+ Einweisung für Erstläufer*innen + 82
+ Leitung Einlaufgasse + 15
+ Zielmarken Unterstützung + 12
+ Schlussbegleitung + 29
+ Koordination Helfer*innen + 148
+ Berichterstattung + 100
+ Backup Timer + 3
+ (nicht anwendbar für parkrun Deutschland) + 16
+ Parkplatzeinweisung + 1
+ Streckenprüfung am parkrun-Tag + 14
+ parkwalker + 10
Gesamtanzahl499

+ Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du hier. +



Freie parkruns

DatumZeitStandort
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1024,63 +1135,61 @@

Danny NORMAN (A482)
- Standorte: 49 + Standorte: 61
- Läufer*innen: 38.016 + Läufer*innen: 68988
- Zieleinläufe: 198.637 + Zieleinläufe: 400525
- Austragungen landesweit: 5.573 + Austragungen landesweit: 9821
- Helfer*innen: 5.257 + Helfer*innen: 8391
- Persönliche Bestzeiten: 29.494 + Persönliche Bestzeiten: 57126
- Durchschnittl. Zielzeit: 00:30:06 + Durchschnittl. Zielzeit: 00:30:35
- Läufe per Läufer*in: 5,2 + Gruppen: 3149
-
- Gruppen: 2.409 -
-

+
- Zuletzt aktualisiert: Fr 14 Apr 2023 00:35:29 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:36:14 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1114,8 +1233,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/88720/all/index.html index 450b8044..81d5bebe 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/88720/all/index.html @@ -14,6 +14,7 @@ + ergebnisse | parkrun Germany - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - + - @@ -59,7 +53,7 @@
@@ -71,34 +65,25 @@
@@ -123,631 +108,729 @@

Phillip WHETTLOCK (A88720)

Mitglied im parkrun-250-Klub - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns insgesamt + 345 parkruns insgesamt

Gesamtstatistiken für diese/n parkrunner*in anzeigen
- Die letzte Altersklasse war VM55-59 + Die letzte Altersklasse war VM60-64

Zusammenfassung der Statistiken für alle Standorte -
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit21:4025:2552:00
Alterskorrigierte Leistung69.71%60.41%29.55%
Position insgesamt648.88374

+
Schnellste(r)Durchschnitt
(Mittelwert)
Langsamste(r)
Zeit21:3625:2654:59
Alterskorrigierte Leistung72.99%60.80%28.92%
Position insgesamt648.44374

Beste jährliche Leistungen gesamt -
JahrBeste ZeitBeste alterskorrigierte Leistung
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
JahrBeste ZeitBeste alterskorrigierte Leistung
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

Alle Ergebnisse bei -
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Halifax08/04/20233313225:0063.07% +
StandortLaufdatumLaufnummerPlatzZeitAlterskorrigierte LeistungPB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73%   -
Fulham Palace01/04/202339110924:0965.29% +
Halifax04/05/20243842924:2665.08%   -
Halifax25/03/20233291624:4363.79% +
Hyndburn27/04/20242593125:5161.51%   -
Halifax18/03/20233282326:4758.87% +
Zuiderpark20/04/20241261722:0372.11%   -
Halifax04/03/20233273825:1962.28% +
Halifax13/04/20243813524:3764.59%   -
Myrtle25/02/20231593824:5263.40% +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% PB   -
Halifax18/02/20233252926:0360.52% +
Conwy18/11/20233764424:5363.90%   -
Halifax11/02/20233243124:0365.56% +
Penistone28/10/20231393724:2065.34%   -
Bradford04/02/20235795022:3769.71% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Bowling Park28/01/202379924:1165.20% +
Halifax16/09/20233532123:4367.04%   -
Bramley21/01/20233004925:3461.67% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax14/01/20233213325:5260.95% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Halifax07/01/20233203026:2659.65% +
Glossop12/08/20233152824:2564.57%   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax05/08/20233473024:4363.79%   -
Nostell31/12/20223614325:0063.07% +
Huddersfield29/07/20235456722:4769.20%   -
Halifax24/12/20223173125:4661.19% +
Brighouse15/07/20232544223:5366.02% + PB + +   +
Stratford Park, Stroud01/07/20231253126:2959.53% +   +
Wetherby24/06/20233094124:4663.66%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax10/06/20233402524:0265.60%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax03/06/20233392124:1365.11% +   +
Long Eaton20/05/20233306921:3672.99% +   +
Halifax06/05/20233352423:4566.39% +   +
Keswick29/04/20233904121:3672.99% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax22/04/20233334725:0262.98%   -
Brighouse12/11/20222213725:1762.36% +
Halifax08/04/20233313225:0063.07%   -
Halifax05/11/20223122424:5163.45% +
Fulham Palace01/04/202339110924:0965.29%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax25/03/20233291624:4363.79%   -
Halifax15/10/202230910749:5431.60% +
Halifax18/03/20233282326:4758.87%   -
Crosby08/10/20222833525:3861.51% +
Halifax04/03/20233273825:1962.28%   -
Alness01/10/20221801024:0965.29% +
Myrtle25/02/20231593824:5263.40% + PB + +   +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71% +   +
Bowling Park28/01/202379924:1165.20% +   +
Bramley21/01/20233004925:3461.67% +   +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB + +   +
Conkers19/11/20225485624:1465.06%   -
Victoria24/09/20223736722:5468.85% +
Brighouse12/11/20222213725:1762.36%   -
Halifax17/09/20223052625:0063.07% +
Halifax05/11/20223122424:5163.45%   -
Centre Vale10/09/20221034428:4454.87% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax03/09/20223033125:3361.71% +
Halifax15/10/202230910749:5431.60%   -
Skipton27/08/20224035325:3561.11% +
Crosby08/10/20222833525:3861.51%   -
Halifax20/08/20223012824:5262.87% +
Alness01/10/20221801024:0965.29%   -
Halifax06/08/20222996426:0360.01% +
Victoria24/09/20223736722:5468.85%   -
Armley30/07/20221432724:2863.90% +
Halifax17/09/20223052625:0063.07%   -
Halifax16/07/20222962524:2663.98% +
Centre Vale10/09/20221034428:4454.87%   -
Halifax02/07/20222942524:4863.04% +
Halifax03/09/20223033125:3361.71%   -
Halifax18/06/20222922424:5462.78% +
Skipton27/08/20224035325:3561.11%   -
The Pastures11/06/2022991826:2159.33% +
Halifax20/08/20223012824:5262.87%   -
Halifax04/06/20222913826:4858.33% +
Halifax06/08/20222996426:0360.01%   -
Horton Park28/05/20222942225:1262.04% +
Armley30/07/20221432724:2863.90%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax16/07/20222962524:2663.98%   -
Halifax07/05/20222877529:3552.85% +
Halifax02/07/20222942524:4863.04%   -
Harrogate30/04/202246716226:4458.48% +
Halifax18/06/20222922424:5462.78%   -
Halifax23/04/20222854927:0057.90% +
The Pastures11/06/2022991826:2159.33%   -
Halifax09/04/20222834526:3758.74% +
Halifax04/06/20222913826:4858.33%   -
Halifax02/04/20222822924:4463.21% +
Horton Park28/05/20222942225:1262.04%   -
Pendle26/03/20223443126:1659.52% +
Bushy Park21/05/202287737424:0664.87%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax07/05/20222877529:3552.85%   -
Halifax05/03/20222784925:3761.03% +
Harrogate30/04/202246716226:4458.48%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax23/04/20222854927:0057.90% +   +
Halifax09/04/20222834526:3758.74% +   +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -778,63 +861,61 @@

Phillip WHETTLOCK (A8
- Standorte: 49 -
-
- Läufer*innen: 38.276 + Standorte: 61
- Zieleinläufe: 200.386 + Läufer*innen: 68988
- Austragungen landesweit: 5.622 + Zieleinläufe: 400525
- Helfer*innen: 5.277 + Austragungen landesweit: 9821
- Persönliche Bestzeiten: 29.710 + Helfer*innen: 8391
- Durchschnittl. Zielzeit: 00:30:06 + Persönliche Bestzeiten: 57126
- Läufe per Läufer*in: 5,2 + Durchschnittl. Zielzeit: 00:30:35
- Gruppen: 2.415 + Gruppen: 3149
-
+
- Zuletzt aktualisiert: Mo 17 Apr 2023 00:35:34 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:36:14 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -868,8 +959,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/88720/index.html index bbead63b..a08c6408 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/88720/index.html @@ -14,6 +14,7 @@ + ergebnisse | parkrun Germany - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - - + - @@ -59,7 +53,7 @@
@@ -71,34 +65,25 @@
@@ -123,183 +108,239 @@

Phillip WHETTLOCK (A88720)

Mitglied im parkrun-250-Klub - - Member of the Volunteer 100 club -

299 parkruns insgesamt

+ + Member of the Volunteer 250 club +

345 parkruns insgesamt

Statistiken für alle parkruns dieses parkrunners ansehen
- Die letzte Altersklasse war VM55-59 -

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Bradford parkrun1166600:21:40 + Die letzte Altersklasse war VM60-64 +

Die letzten parkruns

StandortLaufdatumPosition nach
Geschlecht
Position insgesamtZeitAlterskorrigierte Leistung
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Standortzusammenfassungen

StandortparkrunsBeste Position nach GeschlechtBeste Position insgesamtBeste Zeit  
Halifax parkrun1268822:13 + Alle +
Lister Park parkrun, Bradford1166621:40 + Alle +
Horton Park parkrun9131322:18 + Alle +
Keswick parkrun4253321:36 + Alle +
Sewerby parkrun3121222:08 + Alle +
Pontefract parkrun2273222:08 + Alle +
Brighouse parkrun2333723:53 + Alle +
Temple Newsam parkrun2272925:14 + Alle +
Fountains Abbey parkrun2394822:26 + Alle +
Oakwell Hall parkrun2293626:10 + Alle +
Whinlatter Forest parkrun2283227:23 + Alle +
Bramley parkrun2252524:06 + Alle +
Middleton Woods parkrun2121424:55 + Alle +
Myrtle parkrun2333824:52 + Alle +
Centre Vale parkrun2303626:37 + Alle +
Bushy parkrun130137424:06 + Alle +
Woodhouse Moor parkrun1778222:18 + Alle +
Pollok parkrun, Glasgow1667223:58 + Alle +
Edinburgh parkrun1646721:54 Alle - Graph It!
Halifax parkrun1148800:22:13 +
Wakefield Thornes parkrun1545824:29 Alle - Graph It!
Horton Park parkrun9131300:22:18 +
Hyndburn parkrun1253125:51 Alle - Graph It!
Sewerby parkrun3121200:22:08 +
York parkrun111413522:55 Alle - Graph It!
Keswick parkrun3253300:23:33 +
Milton Country parkrun1707522:40 Alle - Graph It!
Pontefract parkrun2273200:22:08 +
Carlisle parkrun1567126:05 Alle - Graph It!
Temple Newsam parkrun2272900:25:14 +
Harrogate parkrun112316226:44 Alle - Graph It!
Myrtle parkrun2333800:24:52 +
Southport parkrun1545723:57 Alle - Graph It!
Middleton Woods parkrun2121400:24:55 +
Barnsley parkrun1414325:05 Alle - Graph It!
Bramley parkrun2252500:24:06 +
Rothwell parkrun1535724:20 Alle - Graph It!
Druridge Bay parkrun1354200:23:35 +
Huddersfield parkrun1596722:47 Alle -  
Fountains Abbey parkrun1394800:22:26 +
Long Eaton parkrun1556921:36 Alle -  
Victoria parkrun, Glasgow1546700:22:54 +
Wycombe Rye parkrun1232622:35 Alle -  
Clumber Park parkrun1101100:21:46 +
Conkers parkrun1525624:14 Alle -  
Rothay Park parkrun1202700:24:48 +
Roundhay parkrun112815726:55 Alle -  
Warwick Racecourse parkrun1638200:24:06 +
Hanley parkrun16622:03 Alle -  
Conkers parkrun1525600:24:14 +
Worsley Woods parkrun1728824:46 Alle -  
The Pastures parkrun1161800:26:21 +
Burnley parkrun1545725:21 Alle -  
Harrogate parkrun112316200:26:44 +
Dewsbury parkrun18610128:15 Alle -  
Dishley parkrun, Loughborough1535700:24:25 +
Cross Flatts parkrun1303724:16 Alle -  
Dalby Forest parkrun1283200:23:06 +
Clumber Park parkrun1101121:46 Alle -  
Woodhouse Moor parkrun1778200:22:18 +
Skipton parkrun1505325:35 Alle -  
Whinlatter Forest parkrun1283200:27:23 +
Flatts Lane parkrun1171826:53 Alle -  
Watergrove parkrun, Rochdale1111200:27:57 +
Victoria parkrun, Glasgow1546722:54 Alle -  
Springburn parkrun, Glasgow1161600:23:14 +
Alness parkrun171024:09 Alle -  
Fulham Palace parkrun18610900:24:09 +
Fulham Palace parkrun18610924:09 Alle -  
Flatts Lane parkrun1171800:26:53 +
Springburn parkrun, Glasgow1161623:14 Alle -  
Roberts Park parkrun1657500:24:54 +
Druridge Bay parkrun1354223:35 Alle -  
Bowling Park parkrun18900:24:11 +
Pendle parkrun1263126:16 Alle -  
Hanley parkrun16600:22:03 +
Watergrove parkrun, Rochdale1111227:57 Alle -  
Centre Vale parkrun1304400:28:44 +
Wetherby parkrun1374124:46 Alle -  
Wycombe Rye parkrun1232600:22:35 +
Portobello parkrun, Edinburgh1668024:16 Alle -  
Carlisle parkrun1567100:26:05 +
Nostell parkrun1374325:00 Alle -  
Armley parkrun1262700:24:28 +
Fell Foot parkrun, Newby Bridge1161722:57 Alle -  
Crosby parkrun1293500:25:38 +
Conwy parkrun1394424:53 Alle -  
Edinburgh parkrun1646700:21:54 +
Glossop parkrun1242824:25 Alle -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Crosby parkrun1293525:38 Alle -  
Bushy parkrun130137400:24:06 +
Dolgellau parkrun1459954:59 Alle -  
Oakwell Hall parkrun1344000:26:10 +
Dalby Forest parkrun1283223:06 Alle -  
Pendle parkrun1263100:26:16 +
Clitheroe Castle parkrun1192525:41 Alle -  
Alness parkrun171000:24:09 +
Armley parkrun1262724:28 Alle -  
Skipton parkrun1505300:25:35 +
Dishley parkrun, Loughborough1535724:25 Alle -  
Chevin Forest parkrun1213000:26:47 +
Ford parkrun1202525:00 Alle -  
Burnley parkrun1545700:25:21 +
Cliffe Castle parkrun1151725:18 Alle -  
Queen’s parkrun, Glasgow1677900:25:29 +
Potternewton parkrun1293625:04 Alle -  
Roundhay parkrun112815700:26:55 +
Isabel Trail parkrun1293422:02 Alle -  
Storthes Hall parkrun1263000:26:20 +
The Pastures parkrun1161826:21 Alle -  
Southport parkrun1545700:23:57 +
Storthes Hall parkrun1263026:20 Alle -  
Cliffe Castle parkrun1151700:25:18 +
Hafan Pwllheli parkrun1212726:48 Alle -  
Brighouse parkrun1333700:25:17 +
Penistone parkrun1343724:20 Alle -  
Milton Country parkrun1707500:22:40 +
Conyngham Hall parkrun1363824:55 Alle -  
Pollok parkrun, Glasgow1667200:23:58 +
Stratford Park parkrun, Stroud1303126:29 Alle -  
Nostell parkrun1384300:25:00 +
Warwick Racecourse parkrun1638224:06 Alle -  
Portobello parkrun, Edinburgh1668000:24:16 +
University of Stirling parkrun1343723:52 Alle -  
2996600:21:40 +
Jubilee parkrun1121926:42 + Alle +
Queen’s parkrun, Glasgow1677925:29 + Alle +
Bowling Park parkrun18924:11 + Alle +
Rothay Park parkrun1202724:48 + Alle +
Zuiderpark parkrun, Den Haag1151722:03 + Alle +
Carlisle Park parkrun, Morpeth1293325:44 + Alle +
Chevin Forest parkrun1213026:47 + Alle +
Roberts Park parkrun1657524:54 + Alle +
Beacon Hill Country Park parkrun1192325:36 + Alle +
Thames Path parkrun, Woolwich1586323:49 + Alle +
3456621:36 Alle  


Zusammenfassung - Helfende

FunktionAnzahl
- Laufleitung - 32
- Zeitnahme - 17
- Zielmarkenverwaltung - 5
- Ergebnisauswertung - 1
- Fotos - 1
- Kommunikation - 5
- Streckenposten - 35
- Ausrüstung Aufbau - 28
- Ausrüstung Lagerung und Lieferung - 5
- andere Aufgaben - 1
- Barcode einlesen - 27
- Ausrüstung Abbau - 24
- Zielmarkenausgabe - 11
- Nummern-Kontrolle - 1
- Einweisung für Erstläufer*innen - 77
- Leitung Einlaufgasse - 12
- Zielmarken Unterstützung - 10
- Schlussbegleitung - 5
- Koordination Helfer*innen - 10
- Berichterstattung - 1
- Tempoläufer*in - 5
- Backup Timer - 14
- Begleitung für Sehbehinderte - 1
- (nicht anwendbar für parkrun Deutschland) - 5
- Gebärdensprache Unterstützung - 1
- Parkplatzeinweisung - 1
- Streckenprüfung am parkrun-Tag - 25
- parkwalker - 1
Gesamtanzahl249

- Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du
hier. -



Freie Läufe

DatumZeitStandort
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+ Laufleitung +
33
+ Zeitnahme + 28
+ Zielmarkenverwaltung + 5
+ Ergebnisauswertung + 4
+ Fotos + 1
+ Kommunikation + 6
+ Streckenposten + 35
+ Ausrüstung Aufbau + 29
+ Ausrüstung Lagerung und Lieferung + 6
+ andere Aufgaben + 2
+ Barcode einlesen + 46
+ Ausrüstung Abbau + 25
+ Zielmarkenausgabe + 16
+ Nummern-Kontrolle + 1
+ Einweisung für Erstläufer*innen + 82
+ Leitung Einlaufgasse + 16
+ Zielmarken Unterstützung + 16
+ Schlussbegleitung + 15
+ Koordination Helfer*innen + 11
+ Berichterstattung + 1
+ Tempoläufer*in + 10
+ Backup Timer + 14
+ Begleitung für Sehbehinderte + 1
+ (nicht anwendbar für parkrun Deutschland) + 15
+ Gebärdensprache Unterstützung + 1
+ Parkplatzeinweisung + 1
+ Streckenprüfung am parkrun-Tag + 57
+ parkwalker + 1
Gesamtanzahl316

+ Diese Tabelle fasst zusammen, wie oft die einzelnen Helfer*innen-Rollen ausgeübt wurden.
Bitte beachte, dass die Gesamtzahl von Deinen gesamten Helfer*innen-Punkten abweichen kann, wenn Du mehrere Aufgaben am selben Tag ausgeführt hast.
Weitere Informationen findest Du hier. +



Freie parkruns

DatumZeitStandort
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(nicht)parkruns

WocheStartdatumEnddatum(nicht)parkrunsBeste Zeit
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -328,63 +369,61 @@

Phillip WHETTLOCK (A8
- Standorte: 49 + Standorte: 61
- Läufer*innen: 38.276 + Läufer*innen: 68988
- Zieleinläufe: 200.386 + Zieleinläufe: 400525
- Austragungen landesweit: 5.622 + Austragungen landesweit: 9821
- Helfer*innen: 5.277 + Helfer*innen: 8391
- Persönliche Bestzeiten: 29.710 + Persönliche Bestzeiten: 57126
- Durchschnittl. Zielzeit: 00:30:06 + Durchschnittl. Zielzeit: 00:30:35
- Läufe per Läufer*in: 5,2 + Gruppen: 3149
-
- Gruppen: 2.415 -
-
+

- Zuletzt aktualisiert: Mo 17 Apr 2023 00:35:34 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:36:14 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -418,8 +467,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/999999/all/index.html index cc7e27f0..23e00244 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/999999/all/index.html @@ -14,6 +14,7 @@ + ergebnisse | parkrun Germany @@ -54,7 +53,7 @@
@@ -66,34 +65,25 @@
@@ -117,7 +107,7 @@

Jakub WOLSKI (A999999)

- Für diesen parkrunner wurden noch keine Ergebnisse erfasst. + ​

Gesamtstatistik für diese/n parkrunner*in anzeigen

@@ -149,63 +139,61 @@

Jakub WOLSKI (A999999
- Standorte: 52 -
-
- Läufer*innen: 41.699 + Standorte: 61
- Zieleinläufe: 221.441 + Läufer*innen: 68988
- Austragungen landesweit: 6.127 + Zieleinläufe: 400525
- Helfer*innen: 5.661 + Austragungen landesweit: 9821
- Persönliche Bestzeiten: 32.937 + Helfer*innen: 8391
- Durchschnittl. Zielzeit: 00:30:13 + Persönliche Bestzeiten: 57126
- Läufe per Läufer*in: 5,3 + Durchschnittl. Zielzeit: 00:30:35
- Gruppen: 2.543 + Gruppen: 3149
-
+
- Zuletzt aktualisiert: Do 29 Jun 2023 00:35:39 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:36:14 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -239,8 +237,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/999999/index.html index 51de9ca7..ac3f132a 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.com.de/contents/parkrunner/999999/index.html @@ -14,6 +14,7 @@ + ergebnisse | parkrun Germany @@ -54,7 +53,7 @@
@@ -66,34 +65,25 @@
@@ -116,7 +106,7 @@ style='width:auto;margin-bottom: 20px;'> -

Jakub WOLSKI (A999999)

Für diesen parkrunner wurden noch keine Ergebnisse erfasst.

+

Jakub WOLSKI (A999999)

@@ -145,63 +135,61 @@

Jakub WOLSKI (A999999
- Standorte: 52 -
-
- Läufer*innen: 41.699 + Standorte: 61
- Zieleinläufe: 221.441 + Läufer*innen: 68988
- Austragungen landesweit: 6.127 + Zieleinläufe: 400525
- Helfer*innen: 5.661 + Austragungen landesweit: 9821
- Persönliche Bestzeiten: 32.937 + Helfer*innen: 8391
- Durchschnittl. Zielzeit: 00:30:13 + Persönliche Bestzeiten: 57126
- Läufe per Läufer*in: 5,3 + Durchschnittl. Zielzeit: 00:30:35
- Gruppen: 2.543 + Gruppen: 3149
-
+

- Zuletzt aktualisiert: Do 29 Jun 2023 00:35:39 UTC + Zuletzt aktualisiert: Mo 30 Sep 2024 00:36:14 UTC
-

© parkrun Global Limited (Company number: 09411750)

Kein Teil dieser Website darf ohne die Genehmigung des Urheberrechtsinhabers ganz oder teilweise in irgendeiner Weise reproduziert werden.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -235,8 +233,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/1309364/all/index.html index 3068e327..32c80be2 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + resultater | parkrun Danmark - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -113,544 +100,649 @@ -

Andrew TAYLOR (A1309364)

- Medlem af klub 100 parkruns +

Andrew TAYLOR (A1309364)

+ Medlem af klub 250 parkruns Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns total

View summary stats for this parkrunner
- Har sidst løbet i VM35-39 alderskategori + Seneste alderskategori var VM40-44

Summary Stats for All Locations -
HurtigstGennemsnitLangsomste
Tid20:0628:4757:34
Aldersgraduering64.51%47.44%23.54%
Overalle Position5165.361021

+
HurtigstGennemsnitLangsomste
Tid20:0629:2057:34
Aldersgraduering64.51%46.67%23.54%
Samlet placering5182.341021

Best Overall Annual Achievements -
ÅrBedste TidBedste Aldersgraduering
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
ÅrBedste tidBedste Aldersgraduering
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

– Alle resultater -
EventLøbsdatoLøb NummerPosTidAlders-
-graduering
PB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventLøbsdatoLøb NummerPosTidAldersgradueringPB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60%   -
Whiteley25/03/202321418332:2441.82% +
Whiteley18/11/202324721037:0536.54%   -
Winchester11/03/202342821230:3744.26% +
Whiteley11/11/202324617430:3744.26%   -
Winchester04/03/202342730935:4537.90% +
Winchester21/10/202345731533:5140.03%   -
Winchester25/02/202342632536:0937.48% +
Winchester14/10/202345634233:5439.97%   -
Winchester18/02/202342530336:3137.11% +
Ganger Farm07/10/20234713233:4940.07%   -
Delamere31/12/202242331536:2537.21% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester23/09/202345321928:2247.77%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester16/09/202345235430:3244.38%   -
Winchester26/11/202241229335:3137.87% +
Winchester09/09/202345129229:1146.43%   -
Whiteley12/11/202221016534:2839.02% +
Delamere02/09/202345822633:2840.49%   -
Winchester29/10/202240924429:5544.96% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester22/10/202240833736:0837.22% +
Winchester29/07/202344622227:3649.09%   -
Winchester17/09/202240326230:2944.12% +
Winchester22/07/202344540537:0036.62%   -
Winchester10/09/202240231134:3338.93% +
Whiteley15/07/202322915731:1643.34%   -
Alice Holt03/09/202241817936:3236.82% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester27/08/202240042335:2138.05% +
Winchester17/06/202344128530:4144.16%   -
Winchester13/08/202239823431:3042.70% +
Winchester10/06/202344032435:2138.33%   -
Tidworth30/07/2022615151:4226.02% +
Winchester20/05/202343822427:0949.91%   -
Uckfield23/07/20221006028:4346.84% +
Winchester13/05/202343733232:4341.42%   -
Winchester09/07/202239428633:1640.43% +
Whiteley29/04/202321919635:3138.15%   -
Eastleigh28/05/202254015531:2042.93% +
Winchester22/04/202343431731:1143.45%   -
Winchester21/05/202238930733:2840.19% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Alice Holt14/05/202240216932:0142.01% +
Whiteley25/03/202321418332:2441.82%   -
Winchester07/05/202238734034:1339.31% +
Winchester11/03/202342821230:3744.26%   -
Guildford30/04/202242825130:0144.81% +
Winchester04/03/202342730935:4537.90%   -
Winchester23/04/202238522932:0241.99% +
Winchester25/02/202342632536:0937.48%   -
Winchester16/04/202238431033:2340.29% +
Winchester18/02/202342530336:3137.11%   -
Winchester19/03/202238025033:5439.68% +
Delamere31/12/202242331536:2537.21%   -
Alice Holt01/01/202238524237:4635.61% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester20/11/202136338445:0729.59% +
Winchester26/11/202241229335:3137.87%   -
Winchester09/10/202135739843:0730.96% +
Whiteley12/11/202221016534:2839.02%   -
Winchester25/09/202135538955:0324.25% +
Winchester29/10/202240924429:5544.96%   -
Winchester18/09/202135433938:1234.95% +
Winchester22/10/202240833736:0837.22%   -
Winchester04/09/202135233838:2434.77% +
Winchester17/09/202240326230:2944.12%   -
Winchester28/08/202135139841:0132.55% +
Winchester10/09/202240231134:3338.93%   -
Winchester14/08/202134936055:4623.94% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester31/07/202134832845:2029.45% +
Winchester27/08/202240042335:2138.05%   -
Winchester14/03/202034625851:3825.69% +
Winchester13/08/202239823431:3042.70%   -
Winchester07/03/202034510325:5251.29% +
Tidworth30/07/2022615151:4226.02%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Uckfield23/07/20221006028:4346.84%   -
Newbury22/02/202043434631:1142.54% +
Winchester09/07/202239428633:1640.43%   -
Alice Holt08/02/202036010727:1948.57% +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -681,78 +773,61 @@

Andrew TAYLOR (A130936
- Event lokationer: 9 + Event lokationer: 10
- Gennemførende deltagere: 20.520 + Gennemførende deltagere: 29026
- Gennemførte løb: 166.572 + Gennemførte løb: 201240
- Samlet antal events: 4.355 + Samlet antal events: 5052
- Frivillige: 1.255 + Frivillige: 1625
- Personlige rekorder (PB´er): 18.324 + Personlige rekorder (PB´er): 21063
- Gennemsnitlig sluttid: 00:26:19 + Gennemsnitlig sluttid: 00:26:42
- Gennemsnitligt antal gennemførte løb pr deltager: 8,1 + Grupper: 2189
-
- Grupper: 1.607 -
-
-
- Kvindelig rekordindehaver: - Amelia PETTITT – 17:33 - ( 9 apr 2016) -
-
- Mandlig rekordindehaver: - Emil HOLM – 14:50 - ( 6 apr 2019) -
-
- Aldersgradueret rekordindehaver: - Pia Joan SØRENSEN - 91,21 % 19:20 - (10 sep 2022) -
+
- Statistik opdateret: fre 14 apr 2023 00:35:20 UTC + Statistik opdateret: man 30 sep 2024 00:36:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Ingen del af dette website må anvendes helt eller delvis på nogen måde uden tilladelse fra opretshaver.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -786,8 +871,8 @@

Andrew TAYLOR (A130936 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/1309364/index.html index 64ec7a4e..8fe0a8aa 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + resultater | parkrun Danmark - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -113,180 +100,187 @@ -

Andrew TAYLOR (A1309364)

- Medlem af klub 100 parkruns +

Andrew TAYLOR (A1309364)

+ Medlem af klub 250 parkruns Member of the Volunteer 50 club -

245 parkruns total

- Se tal for alle parkruns løbet af denne løber +

297 parkruns total

+ Statistik for alle denne deltagers parkruns
- Har sidst løbet i VM35-39 alderskategori -

Seneste løb

EventLøbsdatoPos/KønOveralle PositionTidAlders-
-graduering
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Sammendrag for event

EventLøbBedste placering kønBedste placering overallBedste Tid  
Winchester parkrun146121300:20:18 + Seneste alderskategori var VM40-44 +

Seneste løb

EventLøbsdatoPos/kønSamlet placeringTidAldersgraduering
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Sammendrag for event

EventLøbBedste placering kønBedste samlede placeringBedste tid  
Winchester parkrun173121320:18 + Alle +
Whiteley parkrun1410714629:06 + Alle +
Delamere parkrun11232321:42 + Alle +
Eastleigh parkrun6242524:08 Alle - Graph It!
Delamere parkrun8232300:21:42 +
Alice Holt parkrun59010727:19 Alle - Graph It!
Whiteley parkrun610714600:29:06 +
Southampton parkrun5687021:17 Alle - Graph It!
Alice Holt parkrun59010700:27:19 +
Fell Foot parkrun, Newby Bridge4212223:48 Alle - Graph It!
Southampton parkrun5687000:21:17 +
Witton parkrun4303525:40 Alle - Graph It!
Eastleigh parkrun5242500:24:08 +
Northwich parkrun4485224:55 Alle - Graph It!
Congleton parkrun49900:20:06 +
Newbury parkrun4829123:49 Alle - Graph It!
Witton parkrun4303500:25:40 +
Congleton parkrun49920:06 Alle - Graph It!
Northwich parkrun4485200:24:55 +
Medina I.O.W. parkrun4667525:13 Alle - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Ganger Farm parkrun38013229:25 Alle - Graph It!
Andover parkrun2242600:22:24 +
Hanley parkrun2333922:31 Alle - Graph It!
Ganger Farm parkrun29713500:29:25 +
Burnley parkrun212718929:06 Alle - Graph It!
Hanley parkrun2333900:22:31 +
Queen Elizabeth parkrun2364026:36 Alle - Graph It!
Newbury parkrun2829100:23:49 +
Andover parkrun2242622:24 Alle - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Abingdon parkrun114220229:14 Alle - Graph It!
Hagley parkrun1182000:22:38 +
Netley Abbey parkrun1586424:21 Alle -  
Ormskirk parkrun120930300:31:04 +
Hilly Fields parkrun1859925:03 Alle -  
Basingstoke parkrun111212900:24:31 +
Brockenhurst parkrun112718632:41 Alle -  
Cuerden Valley parkrun1192000:24:47 +
Wimpole Estate parkrun112916928:07 Alle -  
Seven Fields parkrun1546700:28:28 +
Clumber Park parkrun112117629:51 Alle -  
Netley Abbey parkrun1586400:24:21 +
Cuerden Valley parkrun1192024:47 Alle -  
Mountbatten School parkrun17110100:31:29 +
Hamilton Lake parkrun1151621:47 Alle -  
Clitheroe Castle parkrun1639700:35:46 +
Fountains Abbey parkrun1283020:33 Alle -  
Medina I.O.W. parkrun19513900:30:57 +
Ormskirk parkrun120930331:04 Alle -  
Hogmoor Inclosure parkrun111314000:29:34 +
Pendle parkrun1465926:37 Alle -  
Milano Nord parkrun1475300:27:49 +
Woking parkrun1485824:01 Alle -  
Jersey parkrun111018500:30:53 +
Hagley parkrun1182022:38 Alle -  
Canterbury parkrun1323600:27:29 +
Penrhyn parkrun1232624:33 Alle -  
Penrhyn parkrun1232600:24:33 +
Salisbury parkrun119326729:45 Alle -  
Hyndburn parkrun1425300:29:55 +
Jersey parkrun111018530:53 Alle -  
Woking parkrun1485800:24:01 +
Haigh Woodland parkrun18916837:04 Alle -  
Fountains Abbey parkrun1283000:20:33 +
Stretford parkrun127540530:23 Alle -  
Bushy parkrun1681102100:33:01 +
Portsmouth Lakeside parkrun1818726:32 Alle -  
Clumber Park parkrun112117600:29:51 +
Fareham parkrun19011428:52 Alle -  
Wimpole Estate parkrun112916900:28:07 +
Milano Nord parkrun1475327:49 Alle -  
Tidworth parkrun18615100:51:42 +
Richmond Olympic parkrun15521:59 Alle -  
Hilly Fields parkrun1859900:25:03 +
Crewe parkrun112315430:05 Alle -  
Tawd Valley parkrun18111000:29:25 +
Hogmoor Inclosure parkrun111314029:34 Alle -  
Watermeadows parkrun1151500:23:51 +
Catford parkrun19512527:24 Alle -  
Eden Project parkrun111116200:30:21 +
Clitheroe Castle parkrun1639735:46 Alle -  
Catford parkrun19512500:27:24 +
Pocket parkrun112419533:47 Alle -  
Crewe parkrun112315400:30:05 +
Ford parkrun1477432:29 Alle -  
Long Eaton parkrun118122900:28:06 +
Watermeadows parkrun1151523:51 Alle -  
Fareham parkrun19511400:28:52 +
Mountbatten School parkrun17110131:29 Alle -  
Phoenix parkrun1232600:27:31 +
Uckfield parkrun1416028:43 Alle -  
Guildford parkrun117125100:30:01 +
Tawd Valley parkrun18111029:25 Alle -  
Pendle parkrun1465900:26:37 +
Seven Fields parkrun1546728:28 Alle -  
Heaton parkrun133846700:31:01 +
Itchen Valley Country parkrun110613529:53 Alle -  
Hamilton Lake parkrun1151600:21:47 +
Bartley Park parkrun1628430:26 Alle -  
Brockenhurst parkrun112718600:32:41 +
Tidworth parkrun18615151:42 Alle -  
Itchen Valley Country parkrun110713500:29:53 +
Bushy parkrun1681102133:01 Alle -  
Burnley parkrun114120400:29:06 +
Basingstoke parkrun111212924:31 Alle -  
Uckfield parkrun1416000:28:43 +
Heaton parkrun133846731:01 Alle -  
Abingdon parkrun114220200:29:14 +
Guildford parkrun117125130:01 Alle -  
Pocket parkrun112419500:33:47 +
Hyndburn parkrun1425329:55 Alle -  
Bolton parkrun116221800:31:49 +
Phoenix parkrun1232627:31 Alle -  
Richmond Olympic parkrun15500:21:59 +
Canterbury parkrun1323627:29 Alle -  
Poole parkrun121328400:28:59 +
Valentines parkrun1698025:14 Alle -  
Portsmouth Lakeside parkrun1818700:26:32 +
Poole parkrun121328428:59 Alle -  
Salisbury parkrun119326700:29:45 +
Long Eaton parkrun118122928:06 Alle -  
2455500:20:06 +
Bolton parkrun116221831:49 + Alle +
Eden Project parkrun111116230:21 + Alle +
2975520:06 Alle   -




Freedom parkruns

DatoTidSted
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkrun

WeekDatoDato(not)parkrunBedste Tid
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
+


Sammendrag for opgaver

OpgaveAntal gange
+ Løbsleder + 21
+ Tidtager + 2
+ Talonopsamling + 8
+ Administration + 6
+ Fotograf + 4
+ Officials + 5
+ Skiltning + 6
+ Udstyr – opbevaring og levering + 2
+ Resultatregistrering + 3
+ Opstilling + 10
+ Talonuddeling + 1
+ Talonkontrol + 2
+ Vejledning + 1
+ Slusestyring + 1
+ Gående bagtrop + 4
+ Hjælperkoordinering + 1
+ Journalist + 10
+ Fartholder + 1
Total Credits60

+ Denne tabel angiver hvor mange gange du har udført hver opgave.
Bemærk at det totale antal kan afvige fra det samlede antal gange hvor du har været frivillig. Det sker hvis du har udført flere opgaver på samme dag.
Se mere her. +



Freedom parkruns

DatoTidSted
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkrun

WeekDatoDato(not)parkrunBedste tid
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -315,78 +309,61 @@

Andrew TAYLOR (A130936
- Event lokationer: 9 + Event lokationer: 10
- Gennemførende deltagere: 20.520 + Gennemførende deltagere: 29026
- Gennemførte løb: 166.572 + Gennemførte løb: 201240
- Samlet antal events: 4.355 + Samlet antal events: 5052
- Frivillige: 1.255 + Frivillige: 1625
- Personlige rekorder (PB´er): 18.324 + Personlige rekorder (PB´er): 21063
- Gennemsnitlig sluttid: 00:26:19 + Gennemsnitlig sluttid: 00:26:42
- Gennemsnitligt antal gennemførte løb pr deltager: 8,1 + Grupper: 2189
-
- Grupper: 1.607 -
-
-
- Kvindelig rekordindehaver: - Amelia PETTITT – 17:33 - ( 9 apr 2016) -
-
- Mandlig rekordindehaver: - Emil HOLM – 14:50 - ( 6 apr 2019) -
-
- Aldersgradueret rekordindehaver: - Pia Joan SØRENSEN - 91,21 % 19:20 - (10 sep 2022) -
+

- Statistik opdateret: fre 14 apr 2023 00:35:20 UTC + Statistik opdateret: man 30 sep 2024 00:36:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Ingen del af dette website må anvendes helt eller delvis på nogen måde uden tilladelse fra opretshaver.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -420,8 +407,8 @@

Andrew TAYLOR (A130936 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/2705084/all/index.html index 5638c37c..4e6621c2 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + resultater | parkrun Danmark - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -113,10 +100,10 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -148,78 +135,61 @@

Duncan BOOTH (A2705084
- Event lokationer: 9 -
-
- Gennemførende deltagere: 20.592 + Event lokationer: 10
- Gennemførte løb: 166.946 + Gennemførende deltagere: 29026
- Samlet antal events: 4.364 + Gennemførte løb: 201240
- Frivillige: 1.256 + Samlet antal events: 5052
- Personlige rekorder (PB´er): 18.347 + Frivillige: 1625
- Gennemsnitlig sluttid: 00:26:20 + Personlige rekorder (PB´er): 21063
- Gennemsnitligt antal gennemførte løb pr deltager: 8,1 + Gennemsnitlig sluttid: 00:26:42
- Grupper: 1.612 + Grupper: 2189
-
-
- Kvindelig rekordindehaver: - Amelia PETTITT – 17:33 - ( 9 apr 2016) -
-
- Mandlig rekordindehaver: - Emil HOLM – 14:50 - ( 6 apr 2019) -
-
- Aldersgradueret rekordindehaver: - Pia Joan SØRENSEN - 91,21 % 19:20 - (10 sep 2022) -
+
- Statistik opdateret: man 17 apr 2023 00:35:24 UTC + Statistik opdateret: man 30 sep 2024 00:36:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Ingen del af dette website må anvendes helt eller delvis på nogen måde uden tilladelse fra opretshaver.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -253,8 +233,8 @@

Duncan BOOTH (A2705084 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/2705084/index.html index a92ebe97..0ed5e58f 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + resultater | parkrun Danmark - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -113,18 +100,16 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Sammendrag for frivillige

OpgaveAntal tider
- Officials - 260
- Cykel - 130
- Ruteinspektion på løbsdagen - 9
Total Credits393

- This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Sammendrag for opgaver

OpgaveAntal gange
+ Officials + 350
+ Cykel + 130
+ Ruteinspektion på løbsdagen + 82
Total Credits540

+ Denne tabel angiver hvor mange gange du har udført hver opgave.
Bemærk at det totale antal kan afvige fra det samlede antal gange hvor du har været frivillig. Det sker hvis du har udført flere opgaver på samme dag.
Se mere her.



@@ -154,78 +139,61 @@

Duncan BOOTH (A2705084
- Event lokationer: 9 -
-
- Gennemførende deltagere: 20.592 + Event lokationer: 10
- Gennemførte løb: 166.946 + Gennemførende deltagere: 29026
- Samlet antal events: 4.364 + Gennemførte løb: 201240
- Frivillige: 1.256 + Samlet antal events: 5052
- Personlige rekorder (PB´er): 18.347 + Frivillige: 1625
- Gennemsnitlig sluttid: 00:26:20 + Personlige rekorder (PB´er): 21063
- Gennemsnitligt antal gennemførte løb pr deltager: 8,1 + Gennemsnitlig sluttid: 00:26:42
- Grupper: 1.612 + Grupper: 2189
-
-
- Kvindelig rekordindehaver: - Amelia PETTITT – 17:33 - ( 9 apr 2016) -
-
- Mandlig rekordindehaver: - Emil HOLM – 14:50 - ( 6 apr 2019) -
-
- Aldersgradueret rekordindehaver: - Pia Joan SØRENSEN - 91,21 % 19:20 - (10 sep 2022) -
+

- Statistik opdateret: man 17 apr 2023 00:35:24 UTC + Statistik opdateret: man 30 sep 2024 00:36:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Ingen del af dette website må anvendes helt eller delvis på nogen måde uden tilladelse fra opretshaver.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -259,8 +237,8 @@

Duncan BOOTH (A2705084 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/482/all/index.html index 55a1bec6..1d730dea 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + resultater | parkrun Danmark - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -118,1651 +105,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns total

View summary stats for this parkrunner
- Har sidst løbet i VM40-44 alderskategori + Seneste alderskategori var VM45-49

Summary Stats for All Locations -
HurtigstGennemsnitLangsomste
Tid16:2521:0459:17
Aldersgraduering79.25%65.45%23.56%
Overalle Position134.831692

+
HurtigstGennemsnitLangsomste
Tid16:2521:2659:17
Aldersgraduering79.25%64.63%23.56%
Samlet placering138.841692

Best Overall Annual Achievements -
ÅrBedste TidBedste Aldersgraduering
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
ÅrBedste tidBedste Aldersgraduering
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

– Alle resultater -
EventLøbsdatoLøb NummerPosTidAlders-
-graduering
PB?
Harleston Magpies08/04/2023793525:1255.42% +
EventLøbsdatoLøb NummerPosTidAldersgradueringPB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Cannock Chase01/04/20232434425:4954.10% +
Quakers Walk25/11/2023126825:0556.08%   -
Kingston25/03/202360216430:0946.32% +
Aston Hall18/11/202352225:0156.23%   -
Wolford Wood18/03/202352730:2445.94% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Kingston11/03/202360015027:1851.16% +
Belvoir Castle04/11/2023911925:4254.73%   -
Stockley Country04/03/2023817935:3239.31% +
Five Arches28/10/202365422:5861.25%   -
Chasewater25/02/202310010026:1953.07% +
Dover Waterfront21/10/202374525:2255.45%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Rushcliffe14/10/20235087323:5458.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Kingston07/10/202363033150:2927.86%   -
Worcester04/02/202354318529:3047.34% +
Maaraue03/10/20231012522:3462.33%   -
Crane Park28/01/202349014550:3727.59% +
University of Northampton30/09/2023112223:2460.11%   -
Kingston21/01/202359431139:3935.22% +
Clifton23/09/20231911025:1455.75%   -
Brooklands14/01/202313018830:4445.44% +
Wisbech16/09/202351523:0361.03%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Holbrooks09/09/202362223:4359.31%   -
Kingston01/01/202359113340:3134.47% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston31/12/202259026442:4432.68% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Bushy Park25/12/2022909169244:3931.28% +
Riverfront19/08/20232594622:5761.29%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston17/12/202258818059:1723.56% +
Kingston05/08/20236216723:2160.24%   -
Kingston10/12/202258723255:4025.09% +
Kingston29/07/20236208725:0955.93%   -
Beacon03/12/2022737326:4152.34% +
Kingston22/07/20236199224:2457.65%   -
Ganger Farm26/11/2022211426:3452.57% +
Severn Valley Country15/07/20231411626:1353.66%   -
Bushy Park19/11/2022903110553:2326.16% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Leavesden Country12/11/202246928:3248.95% +
Thornham Walks01/07/202353826:5251.99%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Kingston24/06/20236156524:0957.83%   -
Durlston Country Park29/10/2022335032:4542.65% +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1793,78 +1945,61 @@

Danny NORMAN (A482)
- Event lokationer: 9 + Event lokationer: 10
- Gennemførende deltagere: 20.520 + Gennemførende deltagere: 29026
- Gennemførte løb: 166.572 + Gennemførte løb: 201240
- Samlet antal events: 4.355 + Samlet antal events: 5052
- Frivillige: 1.255 + Frivillige: 1625
- Personlige rekorder (PB´er): 18.324 + Personlige rekorder (PB´er): 21063
- Gennemsnitlig sluttid: 00:26:19 + Gennemsnitlig sluttid: 00:26:42
- Gennemsnitligt antal gennemførte løb pr deltager: 8,1 + Grupper: 2189
-
- Grupper: 1.607 -
- -
- Kvindelig rekordindehaver: - Amelia PETTITT – 17:33 - ( 9 apr 2016) -
-
- Mandlig rekordindehaver: - Emil HOLM – 14:50 - ( 6 apr 2019) -
-
- Aldersgradueret rekordindehaver: - Pia Joan SØRENSEN - 91,21 % 19:20 - (10 sep 2022) -
+
- Statistik opdateret: fre 14 apr 2023 00:35:20 UTC + Statistik opdateret: man 30 sep 2024 00:36:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Ingen del af dette website må anvendes helt eller delvis på nogen måde uden tilladelse fra opretshaver.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1898,8 +2043,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/482/index.html index 246e87ae..c6766bdc 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + resultater | parkrun Danmark - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -117,880 +104,1003 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns total

- Se tal for alle parkruns løbet af denne løber +

867 parkruns total

+ Statistik for alle denne deltagers parkruns
- Har sidst løbet i VM40-44 alderskategori -

Seneste løb

EventLøbsdatoPos/KønOveralle PositionTidAlders-
-graduering
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Sammendrag for event

EventLøbBedste placering kønBedste placering overallBedste Tid  
Bushy parkrun2321100:16:25 + Seneste alderskategori var VM45-49 +

Seneste løb

EventLøbsdatoPos/kønSamlet placeringTidAldersgraduering
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Sammendrag for event

EventLøbBedste placering kønBedste samlede placeringBedste tid  
Bushy parkrun2341116:25 + Alle +
Kingston parkrun471116:51 + Alle +
Bedfont Lakes parkrun81117:04 + Alle +
Nonsuch parkrun71116:52 + Alle +
Richmond parkrun71117:13 + Alle +
Crane Park parkrun61116:48 + Alle +
Riddlesdown parkrun42217:01 + Alle +
Hilly Fields parkrun31117:50 + Alle +
Old Deer Park parkrun31117:41 + Alle +
Guildford parkrun31117:17 + Alle +
Homewood parkrun3151722:21 + Alle +
Brockwell parkrun, Herne Hill31116:56 + Alle +
Southwark parkrun34417:27 + Alle +
Fulham Palace parkrun33317:47 + Alle +
Cannon Hill parkrun, Birmingham3111118:04 + Alle +
Gunnersbury parkrun31116:51 + Alle +
Wimbledon Common parkrun35517:27 + Alle +
Brighton & Hove parkrun31116:27 + Alle +
Basingstoke parkrun35517:48 + Alle +
Black Park parkrun31117:25 + Alle +
Dulwich parkrun33317:11 + Alle +
Bexley parkrun31117:48 + Alle +
Tilgate parkrun31117:10 + Alle +
Frimley Lodge parkrun31117:11 + Alle +
Hackney Marshes parkrun22216:46 + Alle +
Burgess parkrun22216:45 + Alle +
Orpington parkrun22217:27 + Alle +
Barking parkrun22216:45 + Alle +
Southampton parkrun23316:44 + Alle +
Alice Holt parkrun21117:59 + Alle +
Woodley parkrun21117:02 + Alle +
Upton Court parkrun22217:24 + Alle +
Chelmsford Central parkrun22217:24 + Alle +
Mole Valley parkrun2262622:56 + Alle +
Durlston Country Park parkrun2355032:45 + Alle +
Hazelwood parkrun2182222:21 + Alle +
Southsea parkrun23317:55 + Alle +
St Albans parkrun21116:37 Alle - Graph It!
Kingston parkrun351100:16:51 +
Havant parkrun21117:46 Alle - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Ashford parkrun22217:57 Alle - Graph It!
Richmond parkrun71100:17:13 +
Bedford parkrun21116:55 Alle - Graph It!
Nonsuch parkrun71100:16:52 +
Margate parkrun21118:16 Alle - Graph It!
Crane Park parkrun61100:16:48 +
Milton Keynes parkrun23317:26 Alle - Graph It!
Brighton & Hove parkrun31100:16:27 +
Preston Park parkrun, Brighton22217:40 Alle - Graph It!
Fulham Palace parkrun33300:17:47 +
Shorne Woods parkrun21118:14 Alle - Graph It!
Frimley Lodge parkrun31100:17:11 +
Canons Park parkrun27720:50 Alle - Graph It!
Gunnersbury parkrun31100:16:51 +
Osterley parkrun21117:57 Alle - Graph It!
Bexley parkrun31100:17:48 +
Eastleigh parkrun27719:14 Alle - Graph It!
Tilgate parkrun31100:17:10 +
Brooklands parkrun2394223:22 Alle - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Great Lines parkrun, Medway25518:25 Alle - Graph It!
Southwark parkrun34400:17:27 +
Malling Rec parkrun2738526:59 Alle - Graph It!
Basingstoke parkrun35500:17:48 +
Crystal Palace parkrun21117:24 Alle - Graph It!
Hilly Fields parkrun31100:17:50 +
Northala Fields parkrun22218:06 Alle - Graph It!
Black Park parkrun31100:17:25 +
Northampton parkrun21116:56 Alle - Graph It!
Riddlesdown parkrun32200:17:01 +
Oak Hill parkrun21117:13 Alle - Graph It!
Dulwich parkrun33300:17:11 +
Lloyd parkrun, Croydon21118:01 Alle - Graph It!
Guildford parkrun31100:17:17 +
Newbury parkrun21117:20 Alle - Graph It!
Old Deer Park parkrun31100:17:41 +
Cranleigh parkrun26620:49 Alle - Graph It!
Wimbledon Common parkrun35500:17:27 +
Littlehampton Prom parkrun2384324:22 Alle - Graph It!
Homewood parkrun3151700:22:21 +
Whitstable parkrun23318:12 Alle - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Bethlem Royal Hospital parkrun2263223:22 Alle - Graph It!
Pymmes parkrun21100:17:06 +
Cyclopark parkrun2353824:01 Alle - Graph It!
Hove Promenade parkrun27700:19:23 +
Hockley Woods parkrun26621:09 Alle - Graph It!
Netley Abbey parkrun21100:17:21 +
South Oxhey parkrun21119:13 Alle - Graph It!
Mile End parkrun21100:16:53 +
Pymmes parkrun21117:06 Alle - Graph It!
Southampton parkrun23300:16:44 +
Hastings parkrun291120:41 Alle - Graph It!
Northala Fields parkrun22200:18:06 +
Wycombe Rye parkrun22217:17 Alle - Graph It!
Hockley Woods parkrun26600:21:09 +
Hove Promenade parkrun27719:23 Alle - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Banstead Woods parkrun21117:31 Alle - Graph It!
Upton Court parkrun22200:17:24 +
Wormwood Scrubs parkrun21118:00 Alle - Graph It!
Alice Holt parkrun21100:17:59 +
Roundshaw Downs parkrun23318:14 Alle - Graph It!
Osterley parkrun21100:17:57 +
Mile End parkrun21116:53 Alle - Graph It!
Burgess parkrun22200:16:45 +
Bevendean Down parkrun28923:21 Alle - Graph It!
Gladstone parkrun21100:17:09 +
Finsbury parkrun22217:15 Alle - Graph It!
Havant parkrun21100:17:46 +
Tooting Common parkrun2181819:14 Alle - Graph It!
Cranleigh parkrun26600:20:49 +
Bedgebury Pinetum parkrun28921:24 Alle - Graph It!
Finsbury parkrun22200:17:15 +
Harrow parkrun25520:23 Alle - Graph It!
Southsea parkrun23300:17:55 +
Netley Abbey parkrun21117:21 Alle - Graph It!
Margate parkrun21100:18:16 +
Ellenbrook Fields parkrun2141519:58 Alle - Graph It!
Northampton parkrun21100:16:56 +
Worthing parkrun28918:44 Alle - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Grovelands parkrun, Enfield22217:21 Alle - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Beckton parkrun23317:24 Alle - Graph It!
Crystal Palace parkrun21100:17:24 +
Gladstone parkrun21117:09 Alle - Graph It!
Eastleigh parkrun27700:19:14 +
Castle Park parkrun1394122:34 Alle - Graph It!
Hastings parkrun291100:20:41 +
Swanley parkrun19712531:18 Alle - Graph It!
Banstead Woods parkrun21100:17:31 +
Greenwich parkrun12218:07 Alle - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Neckarau parkrun1243027:11 Alle - Graph It!
Hackney Marshes parkrun22200:16:46 +
Bury Field parkrun1669033:07 Alle - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Clifton parkrun1101025:14 Alle - Graph It!
Woodley parkrun21100:17:02 +
Alton Water parkrun1538335:09 Alle - Graph It!
Tooting Common parkrun2181800:19:14 +
Colwick parkrun18819:46 Alle - Graph It!
Milton Keynes parkrun23300:17:26 +
Melksham parkrun1171724:31 Alle - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Markshall Estate parkrun110315632:26 Alle - Graph It!
Barking parkrun22200:16:45 +
Rogiet parkrun1151624:27 Alle - Graph It!
Canons Park parkrun27700:20:50 +
Bartley Park parkrun18415132:38 Alle - Graph It!
Newbury parkrun21100:17:20 +
Lydiard parkrun18818:25 Alle - Graph It!
Shorne Woods parkrun21100:18:14 +
Little Stoke parkrun11117:03 Alle - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Letchworth parkrun1141423:13 Alle - Graph It!
Mole Valley parkrun2262600:22:56 +
Belvoir Castle parkrun1131925:42 Alle - Graph It!
Oak Hill parkrun21100:17:13 +
Andover parkrun11117:33 Alle - Graph It!
Cyclopark parkrun2353800:24:01 +
Rushcliffe parkrun1617323:54 Alle - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Cirencester parkrun1222422:40 Alle - Graph It!
South Oxhey parkrun21100:19:13 +
Southall parkrun1557531:38 Alle - Graph It!
Chelmsford Central parkrun22200:17:24 +
Forest of Dean parkrun1182224:51 Alle - Graph It!
Great Lines parkrun, Medway25500:18:25 +
parkrun des Dougnes, Cubnezais12219:42 Alle - Graph It!
Bevendean Down parkrun28900:23:21 +
South Woodham Ferrers parkrun18821:14 Alle - Graph It!
Bedford parkrun21100:16:55 +
Marine Parade parkrun17711129:24 Alle - Graph It!
Whitstable parkrun23300:18:12 +
Coventry parkrun1292920:51 Alle - Graph It!
Orpington parkrun22200:17:27 +
Wotton parkrun1182124:45 Alle - Graph It!
Ashford parkrun22200:17:57 +
Gloucester City parkrun1171922:35 Alle - Graph It!
Hazelwood parkrun2182200:22:21 +
Great Salterns parkrun19212430:27 Alle - Graph It!
Brooklands parkrun2394200:23:22 +
Bedworth parkrun1171722:14 Alle - Graph It!
Wycombe Rye parkrun22200:17:17 +
University Parks parkrun119032631:42 Alle - Graph It!
Harrow parkrun25500:20:23 +
Hampstead Heath parkrun11117:45 Alle - Graph It!
Beckton parkrun23300:17:24 +
Great Denham parkrun16619:27 Alle - Graph It!
St Albans parkrun21100:16:37 +
Downham Market Academy parkrun1121324:35 Alle - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Ipswich parkrun11117:34 Alle -  
Buckingham parkrun12200:18:37 +
Sixfields Upton parkrun18819:58 Alle -  
Thomas Mills parkrun1486500:30:19 +
Rendlesham Forest parkrun1264637:01 Alle -  
Leamington parkrun12200:18:52 +
Frogmary Green Farm parkrun1597225:58 Alle -  
Church Mead parkrun16610200:32:53 +
Harrow Lodge parkrun11118:48 Alle -  
Letchworth parkrun1141400:23:13 +
Witney parkrun1202022:34 Alle -  
Mulbarton parkrun12200:19:55 +
Leamington parkrun12218:52 Alle -  
Arrow Valley parkrun13300:18:05 +
Brockenhurst parkrun13318:23 Alle -  
Frogmary Green Farm parkrun1597200:25:58 +
Hogmoor Inclosure parkrun1262625:26 Alle -  
Sutton Park parkrun1475500:24:54 +
Hastings High School parkrun1637827:33 Alle -  
Reigate Priory parkrun16600:19:06 +
Cannock Chase parkrun1384425:49 Alle -  
Bury St Edmunds parkrun13300:18:17 +
Wimpole Estate parkrun1202122:14 Alle -  
Pollok parkrun, Glasgow11100:17:00 +
Haverhill parkrun1121323:32 Alle -  
Kingdom parkrun1222500:24:39 +
Edenbrook Country parkrun110514828:01 Alle -  
Barclay parkrun15600:23:13 +
Maidstone River Park parkrun13318:00 Alle -  
Chippenham parkrun1212100:20:08 +
Cheltenham parkrun12217:24 Alle -  
Ipswich parkrun11100:17:34 +
Victoria Dock parkrun1273020:04 Alle -  
Itchen Valley Country parkrun1476100:27:37 +
Ekebergsletta parkrun1304325:57 Alle -  
Neckarau parkrun1243000:27:11 +
Oxford parkrun11117:18 Alle -  
Brandon Country Park parkrun11100:18:30 +
Aylesbury parkrun11117:51 Alle -  
Boston parkrun17700:21:18 +
Mote Park parkrun19712231:28 Alle -  
University Parks parkrun119032600:31:42 +
Riverfront parkrun1404622:57 Alle -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Newent parkrun1182225:27 Alle -  
Lullingstone parkrun17700:21:21 +
Clapham Common parkrun1404220:22 Alle -  
Coventry parkrun1292900:20:51 +
Llanishen Park parkrun1303323:48 Alle -  
Berkeley Green parkrun1233100:28:31 +
Heartwood Forest parkrun1252721:41 Alle -  
Mersea Island parkrun1121200:20:59 +
Walthamstow parkrun11117:48 Alle -  
Aylesbury parkrun11100:17:51 +
Malmö Ribersborg parkrun111215128:46 Alle -  
Royal Tunbridge Wells parkrun18900:19:23 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 Alle -  
Southall parkrun1557500:31:38 +
Huntingdon parkrun1202121:10 Alle -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Felixstowe parkrun1121221:07 Alle -  
Pomphrey Hill parkrun1364100:23:02 +
Tidworth parkrun110815535:14 Alle -  
Henley-on-Thames parkrun1111100:22:25 +
Brandon Country Park parkrun11118:30 Alle -  
Aachener Weiher parkrun1101100:24:55 +
Prospect parkrun1232322:42 Alle -  
Penrose parkrun1151600:19:40 +
Mildenhall Hub parkrun1273124:33 Alle -  
King’s Lynn parkrun1151500:20:07 +
York parkrun12217:12 Alle -  
Fulbourn Hospital parkrun1344700:24:59 +
Thetford parkrun1161721:45 Alle -  
Fareham parkrun16600:19:21 +
Great Dunmow parkrun14420:25 Alle -  
Brockenhurst parkrun13300:18:23 +
Leavesden Country parkrun1506928:32 Alle -  
Canterbury parkrun16600:21:56 +
Catford parkrun1303322:32 Alle -  
Alton Water parkrun1538300:35:09 +
Lordship Recreation Ground parkrun19112425:22 Alle -  
Littleport parkrun1445100:25:16 +
Rugby parkrun1181822:26 Alle -  
Newport parkrun11100:17:29 +
Mulbarton parkrun12219:55 Alle -  
California Country parkrun1649000:28:49 +
Swaffham parkrun191022:19 Alle -  
Thornbury parkrun1323400:28:19 +
Ganger Farm parkrun19811426:34 Alle -  
Greenwich parkrun12200:18:07 +
Beckenham Place parkrun1121220:28 Alle -  
Seven Fields parkrun1475500:26:28 +
Forest Rec parkrun1677626:35 Alle -  
Highbury Fields parkrun11100:17:25 +
Street parkrun1283525:52 Alle -  
The Great Field parkrun19313500:29:12 +
Market Bosworth Country Park parkrun110614435:35 Alle -  
Street parkrun1283500:25:52 +
Whiteley parkrun1141520:56 Alle -  
South Norwood parkrun1121200:21:11 +
Kingsbury Water parkrun1394725:05 Alle -  
Dunstable Downs parkrun1374300:24:58 +
Springhill parkrun14422:18 Alle -  
Melton Mowbray parkrun1192200:22:38 +
Wolford Wood parkrun1212730:24 Alle -  
Horsham parkrun14500:18:16 +
Pontypridd parkrun12217:54 Alle -  
Irchester Country parkrun1586200:25:13 +
Pocket parkrun1222321:38 Alle -  
Stratford-upon-Avon parkrun1202500:21:14 +
Stockley Country parkrun111917935:32 Alle -  
Wotton parkrun1182100:24:45 +
Braunstone parkrun1262720:41 Alle -  
Bath Skyline parkrun1192000:21:08 +
Didcot parkrun1101121:28 Alle -  
Great Dunmow parkrun14400:20:25 +
Littleport parkrun1445125:16 Alle -  
Corby parkrun18800:23:09 +
Yarborough Leisure Centre parkrun1466125:59 Alle -  
Bracknell parkrun18800:20:04 +
Roding Valley parkrun1111321:26 Alle -  
Cromhall parkrun1151600:24:20 +
Clair parkrun13318:36 Alle -  
Perry Hall parkrun1464900:24:58 +
Dinton Pastures parkrun1131321:23 Alle -  
Gunpowder parkrun12200:17:34 +
Beacon Hill Country Park parkrun1273725:54 Alle -  
Luton Wardown parkrun191000:19:36 +
Severn Bridge parkrun1353921:32 Alle -  
Ifield Mill Pond parkrun1373800:24:33 +
Abbey Park parkrun1779425:21 Alle -  
March parkrun15500:21:11 +
Dudley parkrun1445626:35 Alle -  
Roding Valley parkrun1111300:21:26 +
Pegwell Bay parkrun12217:40 Alle -  
Charlton parkrun18213000:32:05 +
Manor Field parkrun, Whittlesey1121324:25 Alle -  
Malmö Ribersborg parkrun111215100:28:46 +
Blaise Castle parkrun112816326:20 Alle -  
Worcester parkrun114418500:29:30 +
Chipping Sodbury parkrun1303221:20 Alle -  
Wolford Wood parkrun1212700:30:24 +
Foots Cray Meadows parkrun1212323:17 Alle -  
Fire Service College parkrun1181900:22:12 +
Thames Path parkrun, Woolwich1789023:42 Alle -  
Panshanger parkrun17700:20:14 +
Bath Skyline parkrun1192021:08 Alle -  
Conkers parkrun12200:17:46 +
Dishley parkrun, Loughborough110311424:30 Alle -  
Banbury parkrun1222300:21:16 +
Thornham Walks parkrun1363826:52 Alle -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Moors Valley parkrun19919:40 Alle -  
Rushmere parkrun1131400:22:39 +
East Grinstead parkrun1131423:10 Alle -  
Whiteley parkrun1141500:20:56 +
Sutton Park parkrun1475524:54 Alle -  
Sandringham parkrun1466300:30:18 +
University of Northampton parkrun1192223:24 Alle -  
Victoria Dock parkrun1283000:20:04 +
Shipley Country parkrun1232424:45 Alle -  
Queen Elizabeth parkrun12200:19:08 +
Lancing Beach Green parkrun1141421:08 Alle -  
Lordship Recreation Ground parkrun19112400:25:22 +
Dover Waterfront parkrun1374525:22 Alle -  
Somerdale Pavilion parkrun1384600:31:17 +
Rickmansworth parkrun1242721:39 Alle -  
Dartford parkrun11100:17:59 +
Queen Elizabeth parkrun12219:08 Alle -  
Winchester parkrun14500:18:28 +
Sizewell parkrun1172023:30 Alle -  
Stratford Park parkrun, Stroud1566500:27:51 +
Holbrooks parkrun1202223:43 Alle -  
Sherwood Pines parkrun1161800:21:33 +
Highbury Fields parkrun11117:25 Alle -  
Grove Fields parkrun1578500:28:03 +
Clacton Seafront parkrun19920:35 Alle -  
Witney parkrun1202000:22:34 +
Delaware and Raritan Canal parkrun12221:06 Alle -  
Preston Park parkrun, Brighton12200:17:40 +
Wisbech parkrun1111523:03 Alle -  
Colchester Castle parkrun14400:18:04 +
Milton Country parkrun13317:43 Alle -  
Tidworth parkrun110815500:35:14 +
Seaton parkrun1394824:09 Alle -  
Walmer and Deal Seafront parkrun18800:21:38 +
Higginson parkrun, Marlow1272922:17 Alle -  
Ferry Meadows parkrun15500:17:27 +
Quakers Walk parkrun1566825:05 Alle -  
St Mary’s parkrun1587400:29:14 +
Lister Park parkrun, Bradford1313621:55 Alle -  
Dartford Heath parkrun1171700:22:06 +
Wendover Woods parkrun1262623:51 Alle -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Sence Valley Forest Park parkrun1232526:28 Alle -  
Great Denham parkrun16600:19:27 +
Canterbury parkrun16621:56 Alle -  
Hastings High School parkrun1637800:27:33 +
Henstridge Airfield parkrun18821:41 Alle -  
Wendover Woods parkrun1262600:23:51 +
Five Arches parkrun1455422:58 Alle -  
Peckham Rye parkrun11100:17:49 +
Yeovil Montacute parkrun1707525:51 Alle -  
Upton House parkrun1252700:22:34 +
Watermeadows parkrun1283124:57 Alle -  
Lee-on-the-Solent parkrun17700:19:40 +
Tamworth Castle Grounds parkrun1333523:26 Alle -  
Graves parkrun11100:18:18 +
St Helens parkrun1606824:27 Alle -  
Maidstone parkrun13300:18:00 +
Weymouth parkrun1141420:45 Alle -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Walmer and Deal Seafront parkrun18821:38 Alle -  
South Woodham Ferrers parkrun18800:21:14 +
Aston Hall parkrun1202225:01 Alle -  
Pontypridd parkrun12200:17:54 +
Royal Tunbridge Wells parkrun18919:23 Alle -  
Bournemouth parkrun14400:17:43 +
Corby parkrun18823:09 Alle -  
Sizewell parkrun1172000:23:30 +
Marlborough Common parkrun1202122:48 Alle -  
Rushmoor parkrun19900:18:29 +
Battlestead Croft parkrun1111122:53 Alle -  
Walsall Arboretum parkrun19810600:25:31 +
Shepton Mallet parkrun1121421:50 Alle -  
Gorleston Cliffs parkrun12200:17:43 +
Clare Castle parkrun1252723:04 Alle -  
Uckfield parkrun1404300:24:12 +
Coldham’s Common parkrun1535923:04 Alle -  
Aldenham parkrun1141400:21:37 +
Brunswick Park parkrun1212223:58 Alle -  
Gadebridge parkrun1141400:22:22 +
Brentwood parkrun17722:28 Alle -  
Horspath parkrun17410600:28:12 +
Somerdale Pavilion parkrun1384631:17 Alle -  
Rogiet parkrun1151600:24:27 +
Wakehurst parkrun18810525:00 Alle -  
Rendlesham Forest parkrun1264600:37:01 +
Boston parkrun17721:18 Alle -  
Dishley parkrun, Loughborough110311400:24:30 +
Morden parkrun111715526:58 Alle -  
Great Cornard parkrun1192000:20:33 +
Pontefract parkrun1718724:10 Alle -  
Kettering parkrun1232600:22:50 +
Jersey Farm parkrun1252723:11 Alle -  
Pont y Bala parkrun15700:23:18 +
Bug Hunter Waters parkrun1455022:41 Alle -  
Burnham and Highbridge parkrun17510000:27:51 +
Rosliston parkrun1333624:41 Alle -  
Stonehouse parkrun1131300:20:09 +
Longrun Meadow parkrun111416532:01 Alle -  
Hampstead Heath parkrun11100:17:45 +
Fire Service College parkrun1181922:12 Alle -  
Wickford Memorial parkrun1436600:51:15 +
Woolacombe Dunes parkrun19410931:20 Alle -  
Castle Park parkrun1394100:22:34 +
The Plens parkrun1303124:04 Alle -  
Huntingdon parkrun1202100:21:10 +
Arrow Valley parkrun13318:05 Alle -  
Great Salterns parkrun19212400:30:27 +
Tonbridge parkrun14418:40 Alle -  
Snowden Field parkrun1242600:24:15 +
East Brighton parkrun1182123:56 Alle -  
Southend parkrun11100:16:28 +
Three Brooks parkrun1697223:46 Alle -  
Andover parkrun11100:17:33 +
Peacehaven parkrun17721:07 Alle -  
parkrun Zalew Żyrardowski16700:24:38 +
Pontypool parkrun1232323:51 Alle -  
Marecchia parkrun11100:19:50 +
Cromhall parkrun1151624:20 Alle -  
Cheltenham parkrun12200:17:24 +
Dereham parkrun1323323:47 Alle -  
St Helens parkrun1606800:24:27 +
Bournemouth parkrun14417:43 Alle -  
Bartley Park parkrun18415100:32:38 +
Pomphrey Hill parkrun1364123:02 Alle -  
Severn Bridge parkrun1353900:21:32 +
Seaford Beach parkrun1535622:25 Alle -  
Pontypool parkrun1232300:23:51 +
Mansfield parkrun11117:09 Alle -  
Poole parkrun14400:16:57 +
Fountains Abbey parkrun11118:03 Alle -  
Bramhall parkrun115924700:35:16 +
Loch Neaton parkrun, Watton1171725:49 Alle -  
Sunny Hill parkrun1202400:24:39 +
Brueton parkrun1475021:33 Alle -  
Cassiobury parkrun1111100:20:14 +
Great Cornard parkrun1192020:33 Alle -  
Hoblingwell parkrun1202400:23:52 +
Dunstable Downs parkrun1374324:58 Alle -  
Colwick parkrun18800:19:46 +
Beeston parkrun1374023:53 Alle -  
Chipping Norton School parkrun1455100:26:40 +
Feltham parkrun13424:56 Alle -  
Worthing parkrun18900:18:44 +
Markeaton parkrun1576422:56 Alle -  
Harrow Lodge parkrun11100:18:48 +
Reigate Priory parkrun16619:06 Alle -  
Bradford parkrun1313600:21:55 +
Highwoods parkrun1252624:49 Alle -  
Bury Field parkrun1669000:33:07 +
Valentines parkrun11116:49 Alle -  
Pocket parkrun1222300:21:38 +
Springburn parkrun, Glasgow13318:05 Alle -  
Longrun Meadow parkrun111416500:32:01 +
California Country parkrun1649028:49 Alle -  
Worcester Pitchcroft parkrun111814300:27:04 +
Rushmoor parkrun19918:29 Alle -  
Highwoods parkrun1252600:24:49 +
Mountbatten School parkrun1323424:11 Alle -  
Maidenhead parkrun17700:18:49 +
Colchester Castle parkrun14418:04 Alle -  
Soham Village College parkrun1253200:28:03 +
Buckingham parkrun12218:37 Alle -  
Rickmansworth parkrun1242700:21:39 +
Sunny Hill parkrun1202424:39 Alle -  
Swaffham parkrun191000:22:19 +
Bognor Regis parkrun12218:12 Alle -  
Brentwood parkrun17700:22:28 +
Aachener Weiher parkrun1101124:55 Alle -  
Lymington Woodside parkrun15700:21:59 +
Peckham Rye parkrun11117:49 Alle -  
Loch Neaton parkrun, Watton1171700:25:49 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 Alle -  
Daventry parkrun1151500:21:10 +
Great Notley parkrun16620:16 Alle -  
Hatfield Forest parkrun1181800:20:36 +
Snowden Field parkrun1242624:15 Alle -  
Kingsway parkrun, Gloucester1192000:21:20 +
Burnham-on-Crouch parkrun18822:01 Alle -  
Salcey Forest parkrun1384300:24:53 +
Woking parkrun18818:19 Alle -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Neckarufer parkrun, Esslingen1364425:12 Alle -  
Prospect parkrun1232300:22:42 +
Worcester parkrun114418529:30 Alle -  
Weymouth parkrun1141400:20:45 +
Blandford parkrun18920:11 Alle -  
Westmill parkrun1101000:22:55 +
Pont y Bala parkrun15723:18 Alle -  
East Brighton parkrun1182100:23:56 +
Chichester parkrun13319:05 Alle -  
Harlow parkrun1151500:23:00 +
Kingdom parkrun1222524:39 Alle -  
Linford Wood parkrun1222200:21:45 +
Westmill parkrun1101022:55 Alle -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Dartford parkrun11117:59 Alle -  
Lydney parkrun1202100:23:19 +
Hanworth parkrun1364024:26 Alle -  
Braunstone parkrun1262700:20:41 +
Bracknell parkrun18820:04 Alle -  
Harleston Magpies parkrun1293500:25:12 +
Folkestone parkrun1212521:48 Alle -  
Clapham Common parkrun1404200:20:22 +
Uckfield parkrun1404324:12 Alle -  
Market Bosworth Country Park parkrun110614400:35:35 +
Harrogate parkrun13318:11 Alle -  
Jersey Farm parkrun1252700:23:11 +
Kesgrave parkrun1374021:18 Alle -  
Kesgrave parkrun1374000:21:18 +
Thomas Mills parkrun1486530:19 Alle -  
Stevenage parkrun17700:19:32 +
Lymington Woodside parkrun15721:59 Alle -  
Hadleigh parkrun, Essex1252600:24:27 +
Hereford parkrun1535323:07 Alle -  
Squerryes Winery parkrun1323600:27:45 +
Chasewater parkrun18210026:19 Alle -  
Rutland Water parkrun1293000:22:44 +
South Norwood parkrun1121221:11 Alle -  
Beckenham Place parkrun1121200:20:28 +
Panshanger parkrun17720:14 Alle -  
Sutcliffe parkrun113117200:30:34 +
Wolverhampton parkrun1556624:54 Alle -  
Haverhill parkrun1121300:23:32 +
Harcourt Hill parkrun1171721:13 Alle -  
Leavesden Country parkrun1506900:28:32 +
Tetbury Goods Shed parkrun1253024:25 Alle -  
Coldham’s Common parkrun1535900:23:04 +
Gloucester North parkrun1101022:14 Alle -  
Chichester parkrun13300:19:05 +
Harlow parkrun1151523:00 Alle -  
Billericay parkrun1121300:21:20 +
Alvaston parkrun1515922:24 Alle -  
Bromley parkrun13300:17:18 +
Worcester Pitchcroft parkrun111814327:04 Alle -  
Babbs Mill parkrun1405100:28:00 +
Perry Hall parkrun1464924:58 Alle -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Newport parkrun11117:29 Alle -  
Bryn Bach parkrun11100:16:50 +
Tring parkrun1171823:38 Alle -  
York parkrun12200:17:12 +
Severn Valley Country parkrun1141626:13 Alle -  
Storeys Field parkrun115121100:28:49 +
Wanstead Flats parkrun13317:13 Alle -  
Chipping Sodbury parkrun1303200:21:20 +
Daventry parkrun1151521:10 Alle -  
Mote Park parkrun19712200:31:28 +
St Mary’s parkrun1587429:14 Alle -  
Watermeadows parkrun1283100:24:57 +
Poole parkrun14416:57 Alle -  
Woking parkrun18800:18:19 +
Melton Mowbray parkrun1192222:38 Alle -  
Raphael parkrun13300:19:35 +
The Old Showfield parkrun1636923:30 Alle -  
Harwich parkrun191000:21:22 +
Henley-on-Thames parkrun1111122:25 Alle -  
Fritton Lake parkrun11100:18:26 +
Crissy Field parkrun1101220:40 Alle -  
Heartwood Forest parkrun1252700:21:41 +
Babbs Mill parkrun1405128:00 Alle -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Maidenhead parkrun17718:49 Alle -  
Bedworth parkrun1171700:22:14 +
Ross-on-Wye parkrun1172124:22 Alle -  
Clair parkrun13300:18:36 +
Kettering parkrun1232622:50 Alle -  
Brueton parkrun1475000:21:33 +
Stratford Park parkrun, Stroud1566527:51 Alle -  
Higginson parkrun, Marlow1272900:22:17 +
Bury St Edmunds parkrun13318:17 Alle -  
Bognor Regis parkrun12200:18:12 +
Mallards Pike parkrun1324630:57 Alle -  
Huddersfield parkrun1626700:22:02 +
Market Harborough parkrun1303121:17 Alle -  
Heaton parkrun13300:18:08 +
Cassiobury parkrun1111120:14 Alle -  
Chasewater parkrun18210000:26:19 +
Squerryes Winery parkrun1323627:45 Alle -  
Tewkesbury parkrun1111400:22:50 +
Walsall Arboretum parkrun19010625:31 Alle -  
Marple parkrun11100:17:15 +
Penrose parkrun1151619:40 Alle -  
Cannock Chase parkrun1384400:25:49 +
King George V Playing Field parkrun, Cheltenham1232826:08 Alle -  
Edgbaston Reservoir parkrun1658600:26:24 +
Evesham parkrun1111121:39 Alle -  
Cirencester parkrun1222400:22:40 +
Warwick Racecourse parkrun1486024:55 Alle -  
Kingsbury Water parkrun1394700:25:05 +
Huddersfield parkrun1626722:02 Alle -  
Peacehaven parkrun17700:21:07 +
Clevedon Salthouse Fields parkrun1384925:13 Alle -  
Lancing Beach Green parkrun1141400:21:08 +
Long Eaton parkrun19912124:06 Alle -  
Springburn parkrun, Glasgow13300:18:05 +
Barry Island parkrun1394223:51 Alle -  
Market Harborough parkrun1303100:21:17 +
Ifield Mill Pond parkrun1373824:33 Alle -  
Amager Fælled parkrun1333700:24:23 +
Upton House parkrun1252722:34 Alle -  
Hanworth parkrun1364000:24:26 +
Lullingstone parkrun17721:21 Alle -  
Salisbury parkrun1111100:19:34 +
The Leas parkrun, Minster1252524:37 Alle -  
Houghton Hall parkrun1131300:21:48 +
Medina I.O.W. parkrun11117:20 Alle -  
Chalkwell Beach parkrun1819600:24:40 +
Uditore parkrun13320:28 Alle -  
Melksham parkrun1171700:24:31 +
Hunstanton Promenade parkrun1283523:45 Alle -  
Thetford parkrun1161700:21:45 +
Raphael parkrun13319:35 Alle -  
Pontefract parkrun1718700:24:10 +
Burnham and Highbridge parkrun17510027:51 Alle -  
Downham Market Academy parkrun1121300:24:35 +
Salcey Forest parkrun1384324:53 Alle -  
Fountains Abbey parkrun11100:18:03 +
Ferry Meadows parkrun15517:27 Alle -  
Cardiff parkrun111011700:22:02 +
Barclay parkrun15623:13 Alle -  
Littlehampton Prom parkrun1384300:24:22 +
Irchester Country parkrun1586225:13 Alle -  
Uditore parkrun13300:20:28 +
Maldon Prom parkrun11118:04 Alle -  
Beacon parkrun1587300:26:41 +
Salisbury parkrun1111119:34 Alle -  
parkrun de Rouen15500:21:41 +
Tremorfa parkrun1272923:30 Alle -  
Walthamstow parkrun11100:17:48 +
Billericay parkrun1121321:20 Alle -  
Shepton Mallet parkrun1121400:21:50 +
Gedling parkrun1273224:59 Alle -  
Marine Parade parkrun17711100:29:24 +
Oaklands parkrun111820336:10 Alle -  
Foots Cray Meadows parkrun1212300:23:17 +
Winchester parkrun14518:28 Alle -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Aldenham parkrun1141421:37 Alle -  
Evesham parkrun1111100:21:39 +
East Park parkrun1121424:18 Alle -  
Southwick Country parkrun1272900:21:47 +
Soham Village College parkrun1253228:03 Alle -  
Lydiard parkrun18800:18:25 +
Stevenage parkrun17719:32 Alle -  
Sandhurst Memorial parkrun1537300:28:54 +
Tewkesbury parkrun1111422:50 Alle -  
Bicester parkrun14400:20:13 +
Seven Fields parkrun1475526:28 Alle -  
Wimpole Estate parkrun1202100:22:14 +
Conkers parkrun12217:46 Alle -  
Markshall Estate parkrun110315600:32:26 +
Lee-on-the-Solent parkrun17719:40 Alle -  
Dinton Pastures parkrun1131300:21:23 +
Brixworth Country parkrun1496126:53 Alle -  
Tonbridge parkrun14400:18:40 +
Abingdon parkrun15518:03 Alle -  
Wanstead Flats parkrun13300:17:13 +
Lowestoft parkrun1232621:10 Alle -  
Woodhouse Moor parkrun11100:17:22 +
Chipping Norton School parkrun1455126:40 Alle -  
Mountbatten School parkrun1323400:24:11 +
Linford Wood parkrun1222221:45 Alle -  
Eastville parkrun120525300:25:12 +
Harwich parkrun191021:22 Alle -  
Brixworth Country parkrun1496100:26:53 +
Fulbourn Hospital parkrun1344724:59 Alle -  
Portsmouth Lakeside parkrun19900:19:12 +
Gunpowder parkrun12217:34 Alle -  
Milton Country parkrun13300:17:43 +
Dartford Heath parkrun1171722:06 Alle -  
Swanley parkrun19712500:31:18 +
Sandhurst Memorial parkrun1537328:54 Alle -  
Springhill parkrun14400:22:18 +
Woodhouse Moor parkrun11117:22 Alle -  
Gloucester North parkrun1101000:22:14 +
Sandwell Valley parkrun1455930:43 Alle -  
Feltham parkrun13400:24:56 +
Wyre Forest parkrun1434825:56 Alle -  
Crissy Field parkrun1101200:20:40 +
parkrun Zalew Żyrardowski16724:38 Alle -  
Ally Pally parkrun11100:18:09 +
Bramhall parkrun115924735:16 Alle -  
Ashton Court parkrun1859500:22:59 +
Hatfield Forest parkrun1181820:36 Alle -  
Oaklands parkrun111820300:36:10 +
Swansea Bay parkrun1748323:44 Alle -  
Sittingbourne parkrun18800:20:56 +
Wollaton Hall parkrun1889723:51 Alle -  
Moors Valley parkrun19900:19:40 +
Horsham parkrun14518:16 Alle -  
Catford parkrun1303300:22:32 +
Jersey parkrun16619:41 Alle -  
Clare Castle parkrun1252700:23:04 +
Berkeley Green parkrun1233128:31 Alle -  
Harrogate parkrun13300:18:11 +
Cardiff parkrun111011722:02 Alle -  
Seaford Beach parkrun1535600:22:25 +
Ally Pally parkrun11118:09 Alle -  
Tring parkrun1171800:23:38 +
Thurrock parkrun, Orsett Heath16620:41 Alle -  
Sandwell Valley parkrun1455900:30:43 +
Beacon parkrun1587326:41 Alle -  
Basildon parkrun15500:18:13 +
Albert parkrun, Middlesbrough1515423:17 Alle -  
The Leas parkrun, Minster1252500:24:37 +
Sherwood Pines parkrun1161821:33 Alle -  
Little Stoke parkrun11100:17:03 +
Wickford Memorial parkrun1436651:15 Alle -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Thornbury parkrun1323428:19 Alle -  
Felixstowe parkrun1121200:21:07 +
Malling parkrun18314547:25 Alle -  
Yeovil Montacute parkrun1707500:25:51 +
Itchen Valley Country parkrun1476127:37 Alle -  
Stockley Country parkrun111917900:35:32 +
Pollok parkrun, Glasgow11117:00 Alle -  
Woolacombe Dunes parkrun19410900:31:20 +
Eastville parkrun120525325:12 Alle -  
Harcourt Hill parkrun1171700:21:13 +
Rutland Water parkrun1293022:44 Alle -  
Abingdon parkrun15500:18:03 +
Chalkwell Beach parkrun1819624:40 Alle -  
Eastbourne parkrun12200:17:24 +
Amager Fælled parkrun1333724:23 Alle -  
Warwick Racecourse parkrun1486000:24:55 +
Hoblingwell parkrun1202423:52 Alle -  
Leicester Victoria parkrun19711600:26:45 +
Belton House parkrun1141523:48 Alle -  
Broadwater parkrun110321300:35:19 +
Kagerzoom parkrun1435824:39 Alle -  
Clacton Seafront parkrun19900:20:35 +
Gorleston Cliffs parkrun12217:43 Alle -  
Burnham-on-Crouch parkrun18800:22:01 +
King’s Lynn parkrun1151520:07 Alle -  
Ganger Farm parkrun19811400:26:34 +
Holkham parkrun1506925:37 Alle -  
Folkestone parkrun1212500:21:48 +
Horspath parkrun17410628:12 Alle -  
Mallards Pike parkrun1324600:30:57 +
Southwick Country parkrun1272921:47 Alle -  
Malling parkrun18314500:47:25 +
Rushmere parkrun1131422:39 Alle -  
Rugby parkrun1181800:22:26 +
Zuiderpark parkrun, Den Haag1738124:07 Alle -  
Watermead Country Park parkrun110818200:35:52 +
Heaton parkrun13318:08 Alle -  
Hogmoor Inclosure parkrun1262600:25:26 +
Colney Lane parkrun1495524:01 Alle -  
East Grinstead parkrun1131400:23:10 +
Leicester Victoria parkrun19711626:45 Alle -  
Mildenhall Hub parkrun1273100:24:33 +
Church Mead parkrun16610232:53 Alle -  
Marlborough Common parkrun1202100:22:48 +
Southend parkrun11116:28 Alle -  
Blandford parkrun18900:20:11 +
Lydney parkrun1202123:19 Alle -  
Maldon Prom parkrun11100:18:04 +
Edgbaston Reservoir parkrun1658626:24 Alle -  
Edinburgh parkrun12200:17:00 +
Reading parkrun12217:18 Alle -  
The Old Showfield parkrun1636900:23:30 +
March parkrun15521:11 Alle -  
Jersey parkrun16600:19:41 +
Woodgate Valley Country Park parkrun16513245:50 Alle -  
Chilton Fields parkrun1405400:28:26 +
Maaraue parkrun1232522:34 Alle -  
Sixfields Upton parkrun18800:19:58 +
Stonehouse parkrun1131320:09 Alle -  
Pegwell Bay parkrun12200:17:40 +
Rheinpark parkrun1151825:30 Alle -  
Valentines parkrun11100:16:49 +
Edinburgh parkrun12217:00 Alle -  
Edenbrook Country parkrun110514800:28:01 +
Chippenham parkrun1212120:08 Alle -  
Henstridge Airfield parkrun18800:21:41 +
Stratford-upon-Avon parkrun1202521:14 Alle -  
Great Notley parkrun16600:20:16 +
Henlow Bridge Lakes parkrun17511532:34 Alle -  
Medina I.O.W. parkrun11100:17:20 +
Bromley parkrun13317:18 Alle -  
Reading parkrun12200:17:18 +
Houghton Hall parkrun1131321:48 Alle -  
Tetbury Goods Shed parkrun1253000:24:25 +
Sittingbourne parkrun18820:56 Alle -  
Lowestoft parkrun1232600:21:10 +
Sharpham Road Playing Fields parkrun1253124:41 Alle -  
Malahide parkrun11100:16:54 +
Gadebridge parkrun1141422:22 Alle -  
Oxford parkrun11100:17:18 +
Chilton Fields parkrun1405428:26 Alle -  
Rheinpark parkrun1151800:25:30 +
Storeys Field parkrun115121128:49 Alle -  
Gloucester City parkrun1171900:22:35 +
Hadleigh parkrun, Essex1252624:27 Alle -  
Didcot parkrun1101100:21:28 +
Marple parkrun11117:15 Alle -  
Mansfield parkrun11100:17:09 +
Portsmouth Lakeside parkrun19919:12 Alle -  
7851100:16:25 +
Grove Fields parkrun1578528:03 + Alle +
Banbury parkrun1222321:16 + Alle +
Graves parkrun11118:18 + Alle +
Watermead Country Park parkrun110818235:52 + Alle +
Eastbourne parkrun12217:24 + Alle +
Malahide parkrun11116:54 + Alle +
Fareham parkrun16619:21 + Alle +
Sutcliffe parkrun113117230:34 + Alle +
Fritton Lake parkrun11118:26 + Alle +
Bicester parkrun14420:13 + Alle +
Sandringham parkrun1466330:18 + Alle +
Luton Wardown parkrun191019:36 + Alle +
Cwmbran parkrun1171723:29 + Alle +
Broadwater parkrun110321335:19 + Alle +
Basildon parkrun15518:13 + Alle +
Marecchia parkrun11119:50 + Alle +
Harleston Magpies parkrun1293525:12 + Alle +
Kingsway parkrun, Gloucester1192021:20 + Alle +
Bryn Bach parkrun11116:50 + Alle +
Mersea Island parkrun1121220:59 + Alle +
Charlton parkrun18213032:05 + Alle +
parkrun de Rouen15521:41 + Alle +
Dallas Burston Polo Club parkrun19614732:26 + Alle +
Ashton Court parkrun1859522:59 + Alle +
Tøyen parkrun1668526:32 + Alle +
The Great Field parkrun19313529:12 + Alle +
8671116:25 Alle   -


Sammendrag for frivillige

OpgaveAntal tider
- Løbsleder - 94
- Tidtager - 59
- Talonopsamling - 3
- Administration - 87
- Fotograf - 6
- Kommunikation - 10
- Officials - 39
- Skiltning - 130
- Udstyr – opbevaring og levering - 128
- Andet - 23
- Resultatregistrering - 55
- Opstilling - 45
- Talonuddeling - 15
- Talonkontrol - 2
- Vejledning - 68
- Slusestyring - 15
- Talonassistent - 9
- Gående bagtrop - 29
- Hjælperkoordinering - 146
- Journalist - 97
- Sekunders tidtagning - 3
- Warm Up Leader - 16
- Parkeringsvagt - 1
- Ruteinspektion på løbsdagen - 8
- parkwalker - 9
Total Credits396

- This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more
here. -



Freedom parkruns

DatoTidSted
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkrun

WeekDatoDato(not)parkrunBedste Tid
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
+


Sammendrag for opgaver

OpgaveAntal gange
+ Løbsleder + 99
+ Tidtager + 94
+ Talonopsamling + 12
+ Administration + 87
+ Fotograf + 6
+ Kommunikation + 10
+ Officials + 54
+ Skiltning + 148
+ Udstyr – opbevaring og levering + 130
+ Andet + 26
+ Resultatregistrering + 78
+ Opstilling + 51
+ Talonuddeling + 21
+ Talonkontrol + 2
+ Vejledning + 82
+ Slusestyring + 15
+ Talonassistent + 12
+ Gående bagtrop + 29
+ Hjælperkoordinering + 148
+ Journalist + 100
+ Sekunders tidtagning + 3
+ Warm Up Leader + 16
+ Parkeringsvagt + 1
+ Ruteinspektion på løbsdagen + 14
+ parkwalker + 10
Total Credits499

+ Denne tabel angiver hvor mange gange du har udført hver opgave.
Bemærk at det totale antal kan afvige fra det samlede antal gange hvor du har været frivillig. Det sker hvis du har udført flere opgaver på samme dag.
Se mere her. +



Freedom parkruns

DatoTidSted
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkrun

WeekDatoDato(not)parkrunBedste tid
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1019,78 +1129,61 @@

Danny NORMAN (A482)
- Event lokationer: 9 + Event lokationer: 10
- Gennemførende deltagere: 20.520 + Gennemførende deltagere: 29026
- Gennemførte løb: 166.572 + Gennemførte løb: 201240
- Samlet antal events: 4.355 + Samlet antal events: 5052
- Frivillige: 1.255 + Frivillige: 1625
- Personlige rekorder (PB´er): 18.324 + Personlige rekorder (PB´er): 21063
- Gennemsnitlig sluttid: 00:26:19 + Gennemsnitlig sluttid: 00:26:42
- Gennemsnitligt antal gennemførte løb pr deltager: 8,1 + Grupper: 2189
-
- Grupper: 1.607 -
-

-
- Kvindelig rekordindehaver: - Amelia PETTITT – 17:33 - ( 9 apr 2016) -
-
- Mandlig rekordindehaver: - Emil HOLM – 14:50 - ( 6 apr 2019) -
-
- Aldersgradueret rekordindehaver: - Pia Joan SØRENSEN - 91,21 % 19:20 - (10 sep 2022) -
+
- Statistik opdateret: fre 14 apr 2023 00:35:20 UTC + Statistik opdateret: man 30 sep 2024 00:36:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Ingen del af dette website må anvendes helt eller delvis på nogen måde uden tilladelse fra opretshaver.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1124,8 +1227,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/88720/all/index.html index 43fb1c78..15a54937 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + resultater | parkrun Danmark - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -115,632 +102,729 @@

Phillip WHETTLOCK (A88720)

Medlem af klub 250 parkruns - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns total

View summary stats for this parkrunner
- Har sidst løbet i VM55-59 alderskategori + Seneste alderskategori var VM60-64

Summary Stats for All Locations -
HurtigstGennemsnitLangsomste
Tid21:4025:2552:00
Aldersgraduering69.71%60.41%29.55%
Overalle Position648.88374

+
HurtigstGennemsnitLangsomste
Tid21:3625:2654:59
Aldersgraduering72.99%60.80%28.92%
Samlet placering648.44374

Best Overall Annual Achievements -
ÅrBedste TidBedste Aldersgraduering
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
ÅrBedste tidBedste Aldersgraduering
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

– Alle resultater -
EventLøbsdatoLøb NummerPosTidAlders-
-graduering
PB?
Halifax08/04/20233313225:0063.07% +
EventLøbsdatoLøb NummerPosTidAldersgradueringPB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + PB + +   +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34%   -
Fulham Palace01/04/202339110924:0965.29% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Halifax25/03/20233291624:4363.79% +
Halifax16/09/20233532123:4367.04%   -
Halifax18/03/20233282326:4758.87% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax04/03/20233273825:1962.28% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Myrtle25/02/20231593824:5263.40% +
Glossop12/08/20233152824:2564.57% +   +
Halifax05/08/20233473024:4363.79% +   +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% PB   -
Halifax18/02/20233252926:0360.52% +
Stratford Park, Stroud01/07/20231253126:2959.53%   -
Halifax11/02/20233243124:0365.56% +
Wetherby24/06/20233094124:4663.66%   -
Bradford04/02/20235795022:3769.71% +
Halifax10/06/20233402524:0265.60%   -
Bowling Park28/01/202379924:1165.20% +
Halifax03/06/20233392124:1365.11%   -
Bramley21/01/20233004925:3461.67% +
Long Eaton20/05/20233306921:3672.99%   -
Halifax14/01/20233213325:5260.95% +
Halifax06/05/20233352423:4566.39%   -
Halifax07/01/20233203026:2659.65% +
Keswick29/04/20233904121:3672.99% + PB +   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax22/04/20233334725:0262.98%   -
Nostell31/12/20223614325:0063.07% +
Halifax08/04/20233313225:0063.07%   -
Halifax24/12/20223173125:4661.19% +
Fulham Palace01/04/202339110924:0965.29%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax25/03/20233291624:4363.79%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax18/03/20233282326:4758.87% +   +
Halifax04/03/20233273825:1962.28% +   +
Myrtle25/02/20231593824:5263.40% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71%   -
Brighouse12/11/20222213725:1762.36% +
Bowling Park28/01/202379924:1165.20%   -
Halifax05/11/20223122424:5163.45% +
Bramley21/01/20233004925:3461.67%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB +   -
Halifax15/10/202230910749:5431.60% +
Conkers19/11/20225485624:1465.06%   -
Crosby08/10/20222833525:3861.51% +
Brighouse12/11/20222213725:1762.36%   -
Alness01/10/20221801024:0965.29% +
Halifax05/11/20223122424:5163.45%   -
Victoria24/09/20223736722:5468.85% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax17/09/20223052625:0063.07% +
Halifax15/10/202230910749:5431.60%   -
Centre Vale10/09/20221034428:4454.87% +
Crosby08/10/20222833525:3861.51%   -
Halifax03/09/20223033125:3361.71% +
Alness01/10/20221801024:0965.29%   -
Skipton27/08/20224035325:3561.11% +
Victoria24/09/20223736722:5468.85%   -
Halifax20/08/20223012824:5262.87% +
Halifax17/09/20223052625:0063.07%   -
Halifax06/08/20222996426:0360.01% +
Centre Vale10/09/20221034428:4454.87%   -
Armley30/07/20221432724:2863.90% +
Halifax03/09/20223033125:3361.71%   -
Halifax16/07/20222962524:2663.98% +
Skipton27/08/20224035325:3561.11%   -
Halifax02/07/20222942524:4863.04% +
Halifax20/08/20223012824:5262.87%   -
Halifax18/06/20222922424:5462.78% +
Halifax06/08/20222996426:0360.01%   -
The Pastures11/06/2022991826:2159.33% +
Armley30/07/20221432724:2863.90%   -
Halifax04/06/20222913826:4858.33% +
Halifax16/07/20222962524:2663.98%   -
Horton Park28/05/20222942225:1262.04% +
Halifax02/07/20222942524:4863.04%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax18/06/20222922424:5462.78%   -
Halifax07/05/20222877529:3552.85% +
The Pastures11/06/2022991826:2159.33%   -
Harrogate30/04/202246716226:4458.48% +
Halifax04/06/20222913826:4858.33%   -
Halifax23/04/20222854927:0057.90% +
Horton Park28/05/20222942225:1262.04%   -
Halifax09/04/20222834526:3758.74% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax02/04/20222822924:4463.21% +
Halifax07/05/20222877529:3552.85%   -
Pendle26/03/20223443126:1659.52% +
Harrogate30/04/202246716226:4458.48%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax23/04/20222854927:0057.90%   -
Halifax05/03/20222784925:3761.03% +
Halifax09/04/20222834526:3758.74%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -771,78 +855,61 @@

Phillip WHETTLOCK (A88
- Event lokationer: 9 + Event lokationer: 10
- Gennemførende deltagere: 20.592 + Gennemførende deltagere: 29026
- Gennemførte løb: 166.946 + Gennemførte løb: 201240
- Samlet antal events: 4.364 + Samlet antal events: 5052
- Frivillige: 1.256 + Frivillige: 1625
- Personlige rekorder (PB´er): 18.347 + Personlige rekorder (PB´er): 21063
- Gennemsnitlig sluttid: 00:26:20 + Gennemsnitlig sluttid: 00:26:42
- Gennemsnitligt antal gennemførte løb pr deltager: 8,1 + Grupper: 2189
-
- Grupper: 1.612 -
-
-
- Kvindelig rekordindehaver: - Amelia PETTITT – 17:33 - ( 9 apr 2016) -
-
- Mandlig rekordindehaver: - Emil HOLM – 14:50 - ( 6 apr 2019) -
-
- Aldersgradueret rekordindehaver: - Pia Joan SØRENSEN - 91,21 % 19:20 - (10 sep 2022) -
+
- Statistik opdateret: man 17 apr 2023 00:35:24 UTC + Statistik opdateret: man 30 sep 2024 00:36:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Ingen del af dette website må anvendes helt eller delvis på nogen måde uden tilladelse fra opretshaver.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -876,8 +953,8 @@

Phillip WHETTLOCK (A88 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/88720/index.html index 99f2d9ef..0fa0d82f 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + resultater | parkrun Danmark - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -115,186 +102,239 @@

Phillip WHETTLOCK (A88720)

Medlem af klub 250 parkruns - - Member of the Volunteer 100 club -

299 parkruns total

- Se tal for alle parkruns løbet af denne løber + + Member of the Volunteer 250 club +

345 parkruns total

+ Statistik for alle denne deltagers parkruns
- Har sidst løbet i VM55-59 alderskategori -

Seneste løb

EventLøbsdatoPos/KønOveralle PositionTidAlders-
-graduering
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Sammendrag for event

EventLøbBedste placering kønBedste placering overallBedste Tid  
Bradford parkrun1166600:21:40 + Seneste alderskategori var VM60-64 +

Seneste løb

EventLøbsdatoPos/kønSamlet placeringTidAldersgraduering
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Sammendrag for event

EventLøbBedste placering kønBedste samlede placeringBedste tid  
Halifax parkrun1268822:13 + Alle +
Lister Park parkrun, Bradford1166621:40 + Alle +
Horton Park parkrun9131322:18 + Alle +
Keswick parkrun4253321:36 + Alle +
Sewerby parkrun3121222:08 + Alle +
Pontefract parkrun2273222:08 + Alle +
Brighouse parkrun2333723:53 + Alle +
Temple Newsam parkrun2272925:14 + Alle +
Fountains Abbey parkrun2394822:26 + Alle +
Oakwell Hall parkrun2293626:10 + Alle +
Whinlatter Forest parkrun2283227:23 + Alle +
Bramley parkrun2252524:06 + Alle +
Middleton Woods parkrun2121424:55 + Alle +
Myrtle parkrun2333824:52 + Alle +
Centre Vale parkrun2303626:37 + Alle +
Bushy parkrun130137424:06 + Alle +
Woodhouse Moor parkrun1778222:18 + Alle +
Pollok parkrun, Glasgow1667223:58 + Alle +
Edinburgh parkrun1646721:54 + Alle +
Wakefield Thornes parkrun1545824:29 Alle - Graph It!
Halifax parkrun1148800:22:13 +
Hyndburn parkrun1253125:51 Alle - Graph It!
Horton Park parkrun9131300:22:18 +
York parkrun111413522:55 Alle - Graph It!
Sewerby parkrun3121200:22:08 +
Milton Country parkrun1707522:40 Alle - Graph It!
Keswick parkrun3253300:23:33 +
Carlisle parkrun1567126:05 Alle - Graph It!
Pontefract parkrun2273200:22:08 +
Harrogate parkrun112316226:44 Alle - Graph It!
Temple Newsam parkrun2272900:25:14 +
Southport parkrun1545723:57 Alle - Graph It!
Myrtle parkrun2333800:24:52 +
Barnsley parkrun1414325:05 Alle - Graph It!
Middleton Woods parkrun2121400:24:55 +
Rothwell parkrun1535724:20 Alle - Graph It!
Bramley parkrun2252500:24:06 +
Huddersfield parkrun1596722:47 Alle - Graph It!
Druridge Bay parkrun1354200:23:35 +
Long Eaton parkrun1556921:36 Alle -  
Fountains Abbey parkrun1394800:22:26 +
Wycombe Rye parkrun1232622:35 Alle -  
Victoria parkrun, Glasgow1546700:22:54 +
Conkers parkrun1525624:14 Alle -  
Clumber Park parkrun1101100:21:46 +
Roundhay parkrun112815726:55 Alle -  
Rothay Park parkrun1202700:24:48 +
Hanley parkrun16622:03 Alle -  
Warwick Racecourse parkrun1638200:24:06 +
Worsley Woods parkrun1728824:46 Alle -  
Conkers parkrun1525600:24:14 +
Burnley parkrun1545725:21 Alle -  
The Pastures parkrun1161800:26:21 +
Dewsbury parkrun18610128:15 Alle -  
Harrogate parkrun112316200:26:44 +
Cross Flatts parkrun1303724:16 Alle -  
Dishley parkrun, Loughborough1535700:24:25 +
Clumber Park parkrun1101121:46 Alle -  
Dalby Forest parkrun1283200:23:06 +
Skipton parkrun1505325:35 Alle -  
Woodhouse Moor parkrun1778200:22:18 +
Flatts Lane parkrun1171826:53 Alle -  
Whinlatter Forest parkrun1283200:27:23 +
Victoria parkrun, Glasgow1546722:54 Alle -  
Watergrove parkrun, Rochdale1111200:27:57 +
Alness parkrun171024:09 Alle -  
Springburn parkrun, Glasgow1161600:23:14 +
Fulham Palace parkrun18610924:09 Alle -  
Fulham Palace parkrun18610900:24:09 +
Springburn parkrun, Glasgow1161623:14 Alle -  
Flatts Lane parkrun1171800:26:53 +
Druridge Bay parkrun1354223:35 Alle -  
Roberts Park parkrun1657500:24:54 +
Pendle parkrun1263126:16 Alle -  
Bowling Park parkrun18900:24:11 +
Watergrove parkrun, Rochdale1111227:57 Alle -  
Hanley parkrun16600:22:03 +
Wetherby parkrun1374124:46 Alle -  
Centre Vale parkrun1304400:28:44 +
Portobello parkrun, Edinburgh1668024:16 Alle -  
Wycombe Rye parkrun1232600:22:35 +
Nostell parkrun1374325:00 Alle -  
Carlisle parkrun1567100:26:05 +
Fell Foot parkrun, Newby Bridge1161722:57 Alle -  
Armley parkrun1262700:24:28 +
Conwy parkrun1394424:53 Alle -  
Crosby parkrun1293500:25:38 +
Glossop parkrun1242824:25 Alle -  
Edinburgh parkrun1646700:21:54 +
Crosby parkrun1293525:38 Alle -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Dolgellau parkrun1459954:59 Alle -  
Bushy parkrun130137400:24:06 +
Dalby Forest parkrun1283223:06 Alle -  
Oakwell Hall parkrun1344000:26:10 +
Clitheroe Castle parkrun1192525:41 Alle -  
Pendle parkrun1263100:26:16 +
Armley parkrun1262724:28 Alle -  
Alness parkrun171000:24:09 +
Dishley parkrun, Loughborough1535724:25 Alle -  
Skipton parkrun1505300:25:35 +
Ford parkrun1202525:00 Alle -  
Chevin Forest parkrun1213000:26:47 +
Cliffe Castle parkrun1151725:18 Alle -  
Burnley parkrun1545700:25:21 +
Potternewton parkrun1293625:04 Alle -  
Queen’s parkrun, Glasgow1677900:25:29 +
Isabel Trail parkrun1293422:02 Alle -  
Roundhay parkrun112815700:26:55 +
The Pastures parkrun1161826:21 Alle -  
Storthes Hall parkrun1263000:26:20 +
Storthes Hall parkrun1263026:20 Alle -  
Southport parkrun1545700:23:57 +
Hafan Pwllheli parkrun1212726:48 Alle -  
Cliffe Castle parkrun1151700:25:18 +
Penistone parkrun1343724:20 Alle -  
Brighouse parkrun1333700:25:17 +
Conyngham Hall parkrun1363824:55 Alle -  
Milton Country parkrun1707500:22:40 +
Stratford Park parkrun, Stroud1303126:29 Alle -  
Pollok parkrun, Glasgow1667200:23:58 +
Warwick Racecourse parkrun1638224:06 Alle -  
Nostell parkrun1384300:25:00 +
University of Stirling parkrun1343723:52 Alle -  
Portobello parkrun, Edinburgh1668000:24:16 +
Jubilee parkrun1121926:42 Alle -  
2996600:21:40 +
Queen’s parkrun, Glasgow1677925:29 + Alle +
Bowling Park parkrun18924:11 + Alle +
Rothay Park parkrun1202724:48 + Alle +
Zuiderpark parkrun, Den Haag1151722:03 + Alle +
Carlisle Park parkrun, Morpeth1293325:44 + Alle +
Chevin Forest parkrun1213026:47 + Alle +
Roberts Park parkrun1657524:54 + Alle +
Beacon Hill Country Park parkrun1192325:36 + Alle +
Thames Path parkrun, Woolwich1586323:49 + Alle +
3456621:36 Alle   -


Sammendrag for frivillige

OpgaveAntal tider
- Løbsleder - 32
- Tidtager - 17
- Talonopsamling - 5
- Administration - 1
- Fotograf - 1
- Kommunikation - 5
- Officials - 35
- Skiltning - 28
- Udstyr – opbevaring og levering - 5
- Andet - 1
- Resultatregistrering - 27
- Opstilling - 24
- Talonuddeling - 11
- Talonkontrol - 1
- Vejledning - 77
- Slusestyring - 12
- Talonassistent - 10
- Gående bagtrop - 5
- Hjælperkoordinering - 10
- Journalist - 1
- Fartholder - 5
- Sekunders tidtagning - 14
- Ledsagere for synshandicappede - 1
- Warm Up Leader - 5
- Tegnsprogs tolk - 1
- Parkeringsvagt - 1
- Ruteinspektion på løbsdagen - 25
- parkwalker - 1
Total Credits249

- This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more
here. -



Freedom parkruns

DatoTidSted
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkrun

WeekDatoDato(not)parkrunBedste Tid
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+


Sammendrag for opgaver

OpgaveAntal gange
+ Løbsleder + 33
+ Tidtager + 28
+ Talonopsamling + 5
+ Administration + 4
+ Fotograf + 1
+ Kommunikation + 6
+ Officials + 35
+ Skiltning + 29
+ Udstyr – opbevaring og levering + 6
+ Andet + 2
+ Resultatregistrering + 46
+ Opstilling + 25
+ Talonuddeling + 16
+ Talonkontrol + 1
+ Vejledning + 82
+ Slusestyring + 16
+ Talonassistent + 16
+ Gående bagtrop + 15
+ Hjælperkoordinering + 11
+ Journalist + 1
+ Fartholder + 10
+ Sekunders tidtagning + 14
+ Ledsagere for synshandicappede + 1
+ Warm Up Leader + 15
+ Tegnsprogstolk + 1
+ Parkeringsvagt + 1
+ Ruteinspektion på løbsdagen + 57
+ parkwalker + 1
Total Credits316

+ Denne tabel angiver hvor mange gange du har udført hver opgave.
Bemærk at det totale antal kan afvige fra det samlede antal gange hvor du har været frivillig. Det sker hvis du har udført flere opgaver på samme dag.
Se mere her. +



Freedom parkruns

DatoTidSted
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkrun

WeekDatoDato(not)parkrunBedste tid
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -323,78 +363,61 @@

Phillip WHETTLOCK (A88
- Event lokationer: 9 -
-
- Gennemførende deltagere: 20.592 + Event lokationer: 10
- Gennemførte løb: 166.946 + Gennemførende deltagere: 29026
- Samlet antal events: 4.364 + Gennemførte løb: 201240
- Frivillige: 1.256 + Samlet antal events: 5052
- Personlige rekorder (PB´er): 18.347 + Frivillige: 1625
- Gennemsnitlig sluttid: 00:26:20 + Personlige rekorder (PB´er): 21063
- Gennemsnitligt antal gennemførte løb pr deltager: 8,1 + Gennemsnitlig sluttid: 00:26:42
- Grupper: 1.612 + Grupper: 2189
-
-
- Kvindelig rekordindehaver: - Amelia PETTITT – 17:33 - ( 9 apr 2016) -
-
- Mandlig rekordindehaver: - Emil HOLM – 14:50 - ( 6 apr 2019) -
-
- Aldersgradueret rekordindehaver: - Pia Joan SØRENSEN - 91,21 % 19:20 - (10 sep 2022) -
+

- Statistik opdateret: man 17 apr 2023 00:35:24 UTC + Statistik opdateret: man 30 sep 2024 00:36:07 UTC
-

© parkrun Global Limited (Company number: 09411750)

Ingen del af dette website må anvendes helt eller delvis på nogen måde uden tilladelse fra opretshaver.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -428,8 +461,8 @@

Phillip WHETTLOCK (A88 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/999999/all/index.html index efb34c61..2f1e9db7 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + resultater | parkrun Danmark @@ -246,8 +231,8 @@

Jakub WOLSKI (A999999) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/999999/index.html index 457e9540..6f868bf2 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.dk/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + resultater | parkrun Danmark @@ -242,8 +227,8 @@

Jakub WOLSKI (A999999) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/1309364/all/index.html index a9e62103..d4d9c5a3 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/1309364/all/index.html @@ -14,7 +14,8 @@ -results | parkrun Finland + +tulokset | parkrun Finland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,543 +99,649 @@ -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club - +

Andrew TAYLOR (A1309364)

+ parkrun 250 -kerhon jäsen + Member of the Volunteer 50 club

- 245 parkruns total + 297 parkrun -tapahtumaa yhteensä

- View summary stats for this parkrunner + Näytä tämän osallistujan yhteenvetotilastot
- Most recent age category was VM35-39 + Viimeisin ikäluokitus oli VM40-44

- Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time20:0628:4757:34
Age Grading64.51%47.44%23.54%
Overall Position5165.361021

- Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

- All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Clitheroe Castle08/04/20231789735:4637.88% + Yhteenvetotilastot kaikille tapahtumille +
NopeinKeskiarvo
(mean)
Hitain
Aika20:0629:2057:34
Ikäluokitus64.51%46.67%23.54%
Kokonaissijoitus5182.341021

+ parhaat vuosisaavutukset +
VuosiParas aikaParas ikäluokitus
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

+ Kaikki tulokset +
TapahtumaTapahtuman pvm.Tapahtuman nro.SijAikaIkäluokitusOE?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + OE + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97%   -
Whiteley25/03/202321418332:2441.82% +
Winchester25/11/202346134636:0237.60%   -
Winchester11/03/202342821230:3744.26% +
Whiteley18/11/202324721037:0536.54%   -
Winchester04/03/202342730935:4537.90% +
Whiteley11/11/202324617430:3744.26%   -
Winchester25/02/202342632536:0937.48% +
Winchester21/10/202345731533:5140.03%   -
Winchester18/02/202342530336:3137.11% +
Winchester14/10/202345634233:5439.97%   -
Delamere31/12/202242331536:2537.21% +
Ganger Farm07/10/20234713233:4940.07%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester23/09/202345321928:2247.77%   -
Winchester26/11/202241229335:3137.87% +
Winchester16/09/202345235430:3244.38%   -
Whiteley12/11/202221016534:2839.02% +
Winchester09/09/202345129229:1146.43%   -
Winchester29/10/202240924429:5544.96% +
Delamere02/09/202345822633:2840.49%   -
Winchester22/10/202240833736:0837.22% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester17/09/202240326230:2944.12% +
Winchester29/07/202344622227:3649.09%   -
Winchester10/09/202240231134:3338.93% +
Winchester22/07/202344540537:0036.62%   -
Alice Holt03/09/202241817936:3236.82% +
Whiteley15/07/202322915731:1643.34%   -
Winchester27/08/202240042335:2138.05% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester13/08/202239823431:3042.70% +
Winchester17/06/202344128530:4144.16%   -
Tidworth30/07/2022615151:4226.02% +
Winchester10/06/202344032435:2138.33%   -
Uckfield23/07/20221006028:4346.84% +
Winchester20/05/202343822427:0949.91%   -
Winchester09/07/202239428633:1640.43% +
Winchester13/05/202343733232:4341.42%   -
Eastleigh28/05/202254015531:2042.93% +
Whiteley29/04/202321919635:3138.15%   -
Winchester21/05/202238930733:2840.19% +
Winchester22/04/202343431731:1143.45%   -
Alice Holt14/05/202240216932:0142.01% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Winchester07/05/202238734034:1339.31% +
Whiteley25/03/202321418332:2441.82%   -
Guildford30/04/202242825130:0144.81% +
Winchester11/03/202342821230:3744.26%   -
Winchester23/04/202238522932:0241.99% +
Winchester04/03/202342730935:4537.90%   -
Winchester16/04/202238431033:2340.29% +
Winchester25/02/202342632536:0937.48%   -
Winchester19/03/202238025033:5439.68% +
Winchester18/02/202342530336:3137.11%   -
Alice Holt01/01/202238524237:4635.61% +
Delamere31/12/202242331536:2537.21%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester20/11/202136338445:0729.59% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester09/10/202135739843:0730.96% +
Winchester26/11/202241229335:3137.87%   -
Winchester25/09/202135538955:0324.25% +
Whiteley12/11/202221016534:2839.02%   -
Winchester18/09/202135433938:1234.95% +
Winchester29/10/202240924429:5544.96%   -
Winchester04/09/202135233838:2434.77% +
Winchester22/10/202240833736:0837.22%   -
Winchester28/08/202135139841:0132.55% +
Winchester17/09/202240326230:2944.12%   -
Winchester14/08/202134936055:4623.94% +
Winchester10/09/202240231134:3338.93%   -
Winchester31/07/202134832845:2029.45% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester14/03/202034625851:3825.69% +
Winchester27/08/202240042335:2138.05%   -
Winchester07/03/202034510325:5251.29% +
Winchester13/08/202239823431:3042.70%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Tidworth30/07/2022615151:4226.02%   -
Newbury22/02/202043434631:1142.54% +
Uckfield23/07/20221006028:4346.84%   -
Alice Holt08/02/202036010727:1948.57% - PB +
Winchester09/07/202239428633:1640.43% +   +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% + OE   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% - PB +
Queen Elizabeth25/01/20203564026:3649.87% + OE   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% - PB +
Witton28/12/20192003525:4051.69% + OE   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% - PB +
Whiteley17/08/201912416829:0645.30% + OE   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% - PB +
Witton25/12/20181556829:1145.17% + OE   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% - PB +
Hanley08/04/20172903922:3157.96% + OE   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% - PB +
Winchester30/04/20161601720:1864.04% + OE   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% - PB +
Congleton24/10/2015150920:0664.51% + OE   -
Winchester17/10/20151322020:3263.15% - PB +
Winchester17/10/20151322020:3263.15% + OE   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% - PB +
Southampton01/08/20151637021:1760.92% + OE   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% - PB +
Delamere20/06/20151162321:4259.75% + OE   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% - PB +
Winchester02/05/20151102020:3563.00% + OE   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% - PB +
Winchester11/04/20151073221:2060.78% + OE   -
Delamere04/04/20151055122:1158.45% - PB +
Delamere04/04/20151055122:1158.45% + OE   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% - PB +
Fell Foot07/03/2015192223:4854.48% + OE   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% - PB +
Winchester20/12/2014894723:1655.73% + OE   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -681,63 +772,61 @@

Andrew TAYLOR (A13093
- Locations: 6 -
-
- Finishers: 4,356 + Sijainnit: 7
- Finishes: 20,568 + Osallistujat: 8223
- All-time events: 615 + Maaliintulon kerrat: 36184
- Volunteers: 609 + Kaikki tapahtumat: 1081
- PBs: 3,044 + Vapaaehtoiset: 987
- Average finish time: 00:34:14 + OE:t: 5267
- Average finishes per participant: 4.7 + Keskimääräinen aika: 00:33:14
- Groups: 482 + Seurat: 836
-
+
- Stats last updated: Fri 14 Apr 2023 00:35:21 UTC + Tilastot viimeksi päivitetty: ma 30. syyskuuta 2024 00.36.08
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Tämä sivusto ei saa kopioida kokonaan tai osittain millään tavalla ilman tekijänoikeuksien omistajan lupaa.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -766,8 +865,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/1309364/index.html index 2a715538..1e164ac6 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/1309364/index.html @@ -14,7 +14,8 @@ -results | parkrun Finland + +tulokset | parkrun Finland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,179 +99,187 @@ -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club - +

Andrew TAYLOR (A1309364)

+ parkrun 250 -kerhon jäsen + Member of the Volunteer 50 club -

245 parkruns total

- View stats for all parkruns by this parkrunner +

297 parkrun -tapahtumaa yhteensä

+ Näytä tilastot tämän parkrunnerin kaikista tapahtumista
- Most recent age category was VM35-39 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun146121300:20:18 - All - Graph It!
Delamere parkrun8232300:21:42 - All - Graph It!
Whiteley parkrun610714600:29:06 - All - Graph It!
Alice Holt parkrun59010700:27:19 - All - Graph It!
Southampton parkrun5687000:21:17 - All - Graph It!
Eastleigh parkrun5242500:24:08 - All - Graph It!
Congleton parkrun49900:20:06 - All - Graph It!
Witton parkrun4303500:25:40 - All - Graph It!
Northwich parkrun4485200:24:55 - All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 - All - Graph It!
Andover parkrun2242600:22:24 - All - Graph It!
Ganger Farm parkrun29713500:29:25 - All - Graph It!
Hanley parkrun2333900:22:31 - All - Graph It!
Newbury parkrun2829100:23:49 - All - Graph It!
Queen Elizabeth parkrun2364000:26:36 - All - Graph It!
Hagley parkrun1182000:22:38 - All -  
Ormskirk parkrun120930300:31:04 - All -  
Basingstoke parkrun111212900:24:31 - All -  
Cuerden Valley parkrun1192000:24:47 - All -  
Seven Fields parkrun1546700:28:28 - All -  
Netley Abbey parkrun1586400:24:21 - All -  
Mountbatten School parkrun17110100:31:29 - All -  
Clitheroe Castle parkrun1639700:35:46 - All -  
Medina I.O.W. parkrun19513900:30:57 - All -  
Hogmoor Inclosure parkrun111314000:29:34 - All -  
Milano Nord parkrun1475300:27:49 - All -  
Jersey parkrun111018500:30:53 - All -  
Canterbury parkrun1323600:27:29 - All -  
Penrhyn parkrun1232600:24:33 - All -  
Hyndburn parkrun1425300:29:55 - All -  
Woking parkrun1485800:24:01 - All -  
Fountains Abbey parkrun1283000:20:33 - All -  
Bushy parkrun1681102100:33:01 - All -  
Clumber Park parkrun112117600:29:51 - All -  
Wimpole Estate parkrun112916900:28:07 - All -  
Tidworth parkrun18615100:51:42 - All -  
Hilly Fields parkrun1859900:25:03 - All -  
Tawd Valley parkrun18111000:29:25 - All -  
Watermeadows parkrun1151500:23:51 - All -  
Eden Project parkrun111116200:30:21 - All -  
Catford parkrun19512500:27:24 - All -  
Crewe parkrun112315400:30:05 - All -  
Long Eaton parkrun118122900:28:06 - All -  
Fareham parkrun19511400:28:52 - All -  
Phoenix parkrun1232600:27:31 - All -  
Guildford parkrun117125100:30:01 - All -  
Pendle parkrun1465900:26:37 - All -  
Heaton parkrun133846700:31:01 - All -  
Hamilton Lake parkrun1151600:21:47 - All -  
Brockenhurst parkrun112718600:32:41 - All -  
Itchen Valley Country parkrun110713500:29:53 - All -  
Burnley parkrun114120400:29:06 - All -  
Uckfield parkrun1416000:28:43 - All -  
Abingdon parkrun114220200:29:14 - All -  
Pocket parkrun112419500:33:47 - All -  
Bolton parkrun116221800:31:49 - All -  
Richmond Olympic parkrun15500:21:59 - All -  
Poole parkrun121328400:28:59 - All -  
Portsmouth Lakeside parkrun1818700:26:32 - All -  
Salisbury parkrun119326700:29:45 - All -  
2455500:20:06 - All + Viimeisin ikäluokitus oli VM40-44 +

Viimeisimmät parkrunit

TapahtumaTapahtuman pvm.Sukupuolittain sijoituksetKokonaissijoitusAikaIkäluokitus
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Tapahtumien yhteenvetotilasto

TapahtumaosallistumiskerratParas sijoitus sukupuolittainParas sijoitus kaikistaParas aika  
Winchester parkrun173121320:18 + Kaikki +
Whiteley parkrun1410714629:06 + Kaikki +
Delamere parkrun11232321:42 + Kaikki +
Eastleigh parkrun6242524:08 + Kaikki +
Alice Holt parkrun59010727:19 + Kaikki +
Southampton parkrun5687021:17 + Kaikki +
Fell Foot parkrun, Newby Bridge4212223:48 + Kaikki +
Witton parkrun4303525:40 + Kaikki +
Northwich parkrun4485224:55 + Kaikki +
Newbury parkrun4829123:49 + Kaikki +
Congleton parkrun49920:06 + Kaikki +
Medina I.O.W. parkrun4667525:13 + Kaikki +
Ganger Farm parkrun38013229:25 + Kaikki +
Hanley parkrun2333922:31 + Kaikki +
Burnley parkrun212718929:06 + Kaikki +
Queen Elizabeth parkrun2364026:36 + Kaikki +
Andover parkrun2242622:24 + Kaikki +
Abingdon parkrun114220229:14 + Kaikki +
Netley Abbey parkrun1586424:21 + Kaikki +
Hilly Fields parkrun1859925:03 + Kaikki +
Brockenhurst parkrun112718632:41 + Kaikki +
Wimpole Estate parkrun112916928:07 + Kaikki +
Clumber Park parkrun112117629:51 + Kaikki +
Cuerden Valley parkrun1192024:47 + Kaikki +
Hamilton Lake parkrun1151621:47 + Kaikki +
Fountains Abbey parkrun1283020:33 + Kaikki +
Ormskirk parkrun120930331:04 + Kaikki +
Pendle parkrun1465926:37 + Kaikki +
Woking parkrun1485824:01 + Kaikki +
Hagley parkrun1182022:38 + Kaikki +
Penrhyn parkrun1232624:33 + Kaikki +
Salisbury parkrun119326729:45 + Kaikki +
Jersey parkrun111018530:53 + Kaikki +
Haigh Woodland parkrun18916837:04 + Kaikki +
Stretford parkrun127540530:23 + Kaikki +
Portsmouth Lakeside parkrun1818726:32 + Kaikki +
Fareham parkrun19011428:52 + Kaikki +
Milano Nord parkrun1475327:49 + Kaikki +
Richmond Olympic parkrun15521:59 + Kaikki +
Crewe parkrun112315430:05 + Kaikki +
Hogmoor Inclosure parkrun111314029:34 + Kaikki +
Catford parkrun19512527:24 + Kaikki +
Clitheroe Castle parkrun1639735:46 + Kaikki +
Pocket parkrun112419533:47 + Kaikki +
Ford parkrun1477432:29 + Kaikki +
Watermeadows parkrun1151523:51 + Kaikki +
Mountbatten School parkrun17110131:29 + Kaikki +
Uckfield parkrun1416028:43 + Kaikki +
Tawd Valley parkrun18111029:25 + Kaikki +
Seven Fields parkrun1546728:28 + Kaikki +
Itchen Valley Country parkrun110613529:53 + Kaikki +
Bartley Park parkrun1628430:26 + Kaikki +
Tidworth parkrun18615151:42 + Kaikki +
Bushy parkrun1681102133:01 + Kaikki +
Basingstoke parkrun111212924:31 + Kaikki +
Heaton parkrun133846731:01 + Kaikki +
Guildford parkrun117125130:01 + Kaikki +
Hyndburn parkrun1425329:55 + Kaikki +
Phoenix parkrun1232627:31 + Kaikki +
Canterbury parkrun1323627:29 + Kaikki +
Valentines parkrun1698025:14 + Kaikki +
Poole parkrun121328428:59 + Kaikki +
Long Eaton parkrun118122928:06 + Kaikki +
Bolton parkrun116221831:49 + Kaikki +
Eden Project parkrun111116230:21 + Kaikki +
2975520:06 + Kaikki   -




Freedom parkruns

DateTimeLocation
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
+


Vapaaehtoistehtävien yhteenveto

TehtäväKerrat
+ Tapahtumavastaava + 21
+ Ajanottaja + 2
+ Polettien järjestäjä + 8
+ Tulosten käsittelijä + 6
+ Kuvaaja + 4
+ Liikenteenohjaaja + 5
+ Tapahtumapaikan pystyttäminen + 6
+ Tavaran varastointi ja toimitus + 2
+ Viivakoodin skannaaja + 3
+ Tapahtumapaikan purkaminen + 10
+ Polettien jakaja + 1
+ Numeron tarkastaja + 2
+ Ensikertalaisten opastus + 1
+ Maalin järjestäjä + 1
+ Takimmainen + 4
+ Vapaaehtoisten koordinaattori + 1
+ Raportin kirjoittaja + 10
+ Jänis + 1
Pisteitä yhteensä60

+ Tämä taulukko sisältää yhteenvedeon kunkin vapaaehtoistehtävän suoritusmääristä.
Huomaa, että kokonaismäärä voi poiketa vapaaehtoispisteiden määrästä; Etenkin jos olet tehnyt useaa tehtävässä samana päivänä.
Lue lisää täältä. +



Freedom parkrunit

PäiväAikaPaikka
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkrunit

ViikkoAlkamispäiväPäättymispäivä(not)parkrunitParas aika
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -315,63 +308,61 @@

Andrew TAYLOR (A13093
- Locations: 6 -
-
- Finishers: 4,356 + Sijainnit: 7
- Finishes: 20,568 + Osallistujat: 8223
- All-time events: 615 + Maaliintulon kerrat: 36184
- Volunteers: 609 + Kaikki tapahtumat: 1081
- PBs: 3,044 + Vapaaehtoiset: 987
- Average finish time: 00:34:14 + OE:t: 5267
- Average finishes per participant: 4.7 + Keskimääräinen aika: 00:33:14
- Groups: 482 + Seurat: 836
-
+

- Stats last updated: Fri 14 Apr 2023 00:35:21 UTC + Tilastot viimeksi päivitetty: ma 30. syyskuuta 2024 00.36.08
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Tämä sivusto ei saa kopioida kokonaan tai osittain millään tavalla ilman tekijänoikeuksien omistajan lupaa.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -400,8 +401,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/2705084/all/index.html index a7273180..136748c6 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/2705084/all/index.html @@ -14,7 +14,8 @@ -results | parkrun Finland + +tulokset | parkrun Finland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,12 +99,12 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

- View summary stats for this parkrunner + Katso tämän parkrunnerin tilastoja

@@ -149,63 +134,61 @@

Duncan BOOTH (A270508
- Locations: 6 -
-
- Finishers: 4,381 + Sijainnit: 7
- Finishes: 20,709 + Osallistujat: 8223
- All-time events: 620 + Maaliintulon kerrat: 36184
- Volunteers: 613 + Kaikki tapahtumat: 1081
- PBs: 3,068 + Vapaaehtoiset: 987
- Average finish time: 00:34:13 + OE:t: 5267
- Average finishes per participant: 4.7 + Keskimääräinen aika: 00:33:14
- Groups: 483 + Seurat: 836
-
+

- Stats last updated: Mon 17 Apr 2023 00:35:25 UTC + Tilastot viimeksi päivitetty: ma 30. syyskuuta 2024 00.36.08
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Tämä sivusto ei saa kopioida kokonaan tai osittain millään tavalla ilman tekijänoikeuksien omistajan lupaa.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -234,8 +227,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/2705084/index.html index 387b1a04..95890c68 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/2705084/index.html @@ -14,7 +14,8 @@ -results | parkrun Finland + +tulokset | parkrun Finland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,18 +99,16 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volunteer Summary

RoleOccasions
- Marshal - 260
- Lead Bike - 130
- Event Day Course Check - 9
Total Credits393

- This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Vapaaehtoistehtävien yhteenveto

TehtäväKerrat
+ Liikenteenohjaaja + 350
+ Etupyöräilijä + 130
+ Reitin tarkastaja + 82
Pisteitä yhteensä540

+ Tämä taulukko sisältää yhteenvedeon kunkin vapaaehtoistehtävän suoritusmääristä.
Huomaa, että kokonaismäärä voi poiketa vapaaehtoispisteiden määrästä; Etenkin jos olet tehnyt useaa tehtävässä samana päivänä.
Lue lisää täältä.



@@ -155,63 +138,61 @@

Duncan BOOTH (A270508
- Locations: 6 -
-
- Finishers: 4,381 + Sijainnit: 7
- Finishes: 20,709 + Osallistujat: 8223
- All-time events: 620 + Maaliintulon kerrat: 36184
- Volunteers: 613 + Kaikki tapahtumat: 1081
- PBs: 3,068 + Vapaaehtoiset: 987
- Average finish time: 00:34:13 + OE:t: 5267
- Average finishes per participant: 4.7 + Keskimääräinen aika: 00:33:14
- Groups: 483 + Seurat: 836
-
+

- Stats last updated: Mon 17 Apr 2023 00:35:25 UTC + Tilastot viimeksi päivitetty: ma 30. syyskuuta 2024 00.36.08
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Tämä sivusto ei saa kopioida kokonaan tai osittain millään tavalla ilman tekijänoikeuksien omistajan lupaa.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -240,8 +231,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/482/all/index.html index aa357962..ac65acbb 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/482/all/index.html @@ -14,7 +14,8 @@ -results | parkrun Finland + +tulokset | parkrun Finland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,1655 +99,1821 @@ -

Danny NORMAN (A482)

- Member of the parkrun 500 Club - +

Danny NORMAN (A482)

+ parkrun 500 -kerhon jäsen + Member of the Volunteer 250 club

- 785 parkruns total + 867 parkrun -tapahtumaa yhteensä

- View summary stats for this parkrunner + Näytä tämän osallistujan yhteenvetotilastot
- Most recent age category was VM40-44 + Viimeisin ikäluokitus oli VM45-49

- Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time16:2521:0459:17
Age Grading79.25%65.45%23.56%
Overall Position134.831692

- Best Overall Annual Achievements -
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

- All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Harleston Magpies08/04/2023793525:1255.42% + Yhteenvetotilastot kaikille tapahtumille +
NopeinKeskiarvo
(mean)
Hitain
Aika16:2521:2659:17
Ikäluokitus79.25%64.63%23.56%
Kokonaissijoitus138.841692

+ parhaat vuosisaavutukset +
VuosiParas aikaParas ikäluokitus
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

+ Kaikki tulokset +
TapahtumaTapahtuman pvm.Tapahtuman nro.SijAikaIkäluokitusOE?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + OE + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Cannock Chase01/04/20232434425:4954.10% +
Quakers Walk25/11/2023126825:0556.08%   -
Kingston25/03/202360216430:0946.32% +
Aston Hall18/11/202352225:0156.23%   -
Wolford Wood18/03/202352730:2445.94% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Kingston11/03/202360015027:1851.16% +
Belvoir Castle04/11/2023911925:4254.73%   -
Stockley Country04/03/2023817935:3239.31% +
Five Arches28/10/202365422:5861.25%   -
Chasewater25/02/202310010026:1953.07% +
Dover Waterfront21/10/202374525:2255.45%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Rushcliffe14/10/20235087323:5458.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Kingston07/10/202363033150:2927.86%   -
Worcester04/02/202354318529:3047.34% +
Maaraue03/10/20231012522:3462.33%   -
Crane Park28/01/202349014550:3727.59% +
University of Northampton30/09/2023112223:2460.11%   -
Kingston21/01/202359431139:3935.22% +
Clifton23/09/20231911025:1455.75%   -
Brooklands14/01/202313018830:4445.44% +
Wisbech16/09/202351523:0361.03%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Holbrooks09/09/202362223:4359.31%   -
Kingston01/01/202359113340:3134.47% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston31/12/202259026442:4432.68% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Bushy Park25/12/2022909169244:3931.28% +
Riverfront19/08/20232594622:5761.29%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston17/12/202258818059:1723.56% +
Kingston05/08/20236216723:2160.24%   -
Kingston10/12/202258723255:4025.09% +
Kingston29/07/20236208725:0955.93%   -
Beacon03/12/2022737326:4152.34% +
Kingston22/07/20236199224:2457.65%   -
Ganger Farm26/11/2022211426:3452.57% +
Severn Valley Country15/07/20231411626:1353.66%   -
Bushy Park19/11/2022903110553:2326.16% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Leavesden Country12/11/202246928:3248.95% +
Thornham Walks01/07/202353826:5251.99%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Kingston24/06/20236156524:0957.83%   -
Durlston Country Park29/10/2022335032:4542.65% - PB +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% + OE   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% - PB +
Tooting Common02/04/2016101819:1468.98% + OE   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% - PB +
Hove Promenade07/11/201516719:2368.44% + OE   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% - PB +
Cranleigh17/01/201517620:4963.33% + OE   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% - PB +
Pymmes23/03/2013101117:0676.32% + OE   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% - PB +
Oak Hill09/03/201379117:1375.80% + OE   -
Lloyd02/03/2013126118:0172.43% - PB +
Lloyd02/03/2013126118:0172.43% + OE   -
Gunnersbury23/02/201369116:5177.45% - PB +
Gunnersbury23/02/201369116:5177.45% + OE   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% - PB +
Kingston05/01/2013145116:5177.45% + OE   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% - PB +
Nonsuch05/06/201240216:5277.08% + OE   -
Riddlesdown04/06/201252217:0176.40% - PB +
Riddlesdown04/06/201252217:0176.40% + OE   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% - PB +
Black Park26/12/2011130317:2574.64% + OE   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% - PB +
Nonsuch24/12/201115117:1075.73% + OE   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% - PB +
Old Deer Park03/09/201147117:4173.52% + OE   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% - PB +
Black Park29/04/201194117:4173.33% + OE   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% - PB +
Kingston17/04/20105117:0975.41% + OE   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% - PB +
Bedfont Lakes17/10/200924117:0475.78% + OE   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% - PB +
Richmond Park28/03/200976517:1375.02% + OE   -
Bushy Park21/03/2009242616:2578.68% - PB +
Bushy Park21/03/2009242616:2578.68% + OE   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% - PB +
Richmond Park11/10/200852217:2474.23% + OE   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% - PB +
Bushy Park16/02/2008183516:2978.26% + OE   -
Bushy Park09/02/2008182116:3278.02% - PB +
Bushy Park09/02/2008182116:3278.02% + OE   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% - PB +
Bushy Park01/09/2007157416:3777.56% + OE   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% - PB +
Bushy Park07/04/2007136616:3877.56% + OE   -
Bushy Park31/03/2007135317:0575.51% - PB +
Bushy Park31/03/2007135317:0575.51% + OE   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% - PB +
Bushy Park28/10/2006111617:2474.14% + OE   -
Bushy Park07/10/2006108817:2574.07% - PB +
Bushy Park07/10/2006108817:2574.07% + OE   -
Bushy Park05/08/2006991017:2873.85% - PB +
Bushy Park05/08/2006991017:2873.85% + OE   -
Bushy Park22/07/200697617:3373.50% - PB +
Bushy Park22/07/200697617:3373.50% + OE   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% - PB +
Bushy Park21/01/200671917:3973.09% + OE   -
Bushy Park07/01/200669817:5072.34% - PB +
Bushy Park07/01/200669817:5072.34% + OE   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% - PB +
Bushy Park03/09/200549418:0871.14% + OE   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1793,63 +1944,61 @@

Danny NORMAN (A482)
- Locations: 6 -
-
- Finishers: 4,356 + Sijainnit: 7
- Finishes: 20,568 + Osallistujat: 8223
- All-time events: 615 + Maaliintulon kerrat: 36184
- Volunteers: 609 + Kaikki tapahtumat: 1081
- PBs: 3,044 + Vapaaehtoiset: 987
- Average finish time: 00:34:14 + OE:t: 5267
- Average finishes per participant: 4.7 + Keskimääräinen aika: 00:33:14
- Groups: 482 + Seurat: 836
- +
- Stats last updated: Fri 14 Apr 2023 00:35:21 UTC + Tilastot viimeksi päivitetty: ma 30. syyskuuta 2024 00.36.08
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Tämä sivusto ei saa kopioida kokonaan tai osittain millään tavalla ilman tekijänoikeuksien omistajan lupaa.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1878,8 +2037,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/482/index.html index 415fd577..6e9b3e44 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/482/index.html @@ -14,7 +14,8 @@ -results | parkrun Finland + +tulokset | parkrun Finland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,883 +99,1007 @@ -

Danny NORMAN (A482)

- Member of the parkrun 500 Club - +

Danny NORMAN (A482)

+ parkrun 500 -kerhon jäsen + Member of the Volunteer 250 club -

785 parkruns total

- View stats for all parkruns by this parkrunner +

867 parkrun -tapahtumaa yhteensä

+ Näytä tilastot tämän parkrunnerin kaikista tapahtumista
- Most recent age category was VM40-44 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2321100:16:25 - All - Graph It!
Kingston parkrun351100:16:51 - All - Graph It!
Bedfont Lakes parkrun81100:17:04 - All - Graph It!
Richmond parkrun71100:17:13 - All - Graph It!
Nonsuch parkrun71100:16:52 - All - Graph It!
Crane Park parkrun61100:16:48 - All - Graph It!
Brighton & Hove parkrun31100:16:27 - All - Graph It!
Fulham Palace parkrun33300:17:47 - All - Graph It!
Frimley Lodge parkrun31100:17:11 - All - Graph It!
Gunnersbury parkrun31100:16:51 - All - Graph It!
Bexley parkrun31100:17:48 - All - Graph It!
Tilgate parkrun31100:17:10 - All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 - All - Graph It!
Southwark parkrun34400:17:27 - All - Graph It!
Basingstoke parkrun35500:17:48 - All - Graph It!
Hilly Fields parkrun31100:17:50 - All - Graph It!
Black Park parkrun31100:17:25 - All - Graph It!
Riddlesdown parkrun32200:17:01 - All - Graph It!
Dulwich parkrun33300:17:11 - All - Graph It!
Guildford parkrun31100:17:17 - All - Graph It!
Old Deer Park parkrun31100:17:41 - All - Graph It!
Wimbledon Common parkrun35500:17:27 - All - Graph It!
Homewood parkrun3151700:22:21 - All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 - All - Graph It!
Pymmes parkrun21100:17:06 - All - Graph It!
Hove Promenade parkrun27700:19:23 - All - Graph It!
Netley Abbey parkrun21100:17:21 - All - Graph It!
Mile End parkrun21100:16:53 - All - Graph It!
Southampton parkrun23300:16:44 - All - Graph It!
Northala Fields parkrun22200:18:06 - All - Graph It!
Hockley Woods parkrun26600:21:09 - All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 - All - Graph It!
Upton Court parkrun22200:17:24 - All - Graph It!
Alice Holt parkrun21100:17:59 - All - Graph It!
Osterley parkrun21100:17:57 - All - Graph It!
Burgess parkrun22200:16:45 - All - Graph It!
Gladstone parkrun21100:17:09 - All - Graph It!
Havant parkrun21100:17:46 - All - Graph It!
Cranleigh parkrun26600:20:49 - All - Graph It!
Finsbury parkrun22200:17:15 - All - Graph It!
Southsea parkrun23300:17:55 - All - Graph It!
Margate parkrun21100:18:16 - All - Graph It!
Northampton parkrun21100:16:56 - All - Graph It!
Roundshaw Downs parkrun23300:18:14 - All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 - All - Graph It!
Crystal Palace parkrun21100:17:24 - All - Graph It!
Eastleigh parkrun27700:19:14 - All - Graph It!
Hastings parkrun291100:20:41 - All - Graph It!
Banstead Woods parkrun21100:17:31 - All - Graph It!
Wormwood Scrubs parkrun21100:18:00 - All - Graph It!
Hackney Marshes parkrun22200:16:46 - All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 - All - Graph It!
Woodley parkrun21100:17:02 - All - Graph It!
Tooting Common parkrun2181800:19:14 - All - Graph It!
Milton Keynes parkrun23300:17:26 - All - Graph It!
Grovelands parkrun, Enfield22200:17:21 - All - Graph It!
Barking parkrun22200:16:45 - All - Graph It!
Canons Park parkrun27700:20:50 - All - Graph It!
Newbury parkrun21100:17:20 - All - Graph It!
Shorne Woods parkrun21100:18:14 - All - Graph It!
Lloyd parkrun, Croydon21100:18:01 - All - Graph It!
Mole Valley parkrun2262600:22:56 - All - Graph It!
Oak Hill parkrun21100:17:13 - All - Graph It!
Cyclopark parkrun2353800:24:01 - All - Graph It!
Durlston Country Park parkrun2355000:32:45 - All - Graph It!
South Oxhey parkrun21100:19:13 - All - Graph It!
Chelmsford Central parkrun22200:17:24 - All - Graph It!
Great Lines parkrun, Medway25500:18:25 - All - Graph It!
Bevendean Down parkrun28900:23:21 - All - Graph It!
Bedford parkrun21100:16:55 - All - Graph It!
Whitstable parkrun23300:18:12 - All - Graph It!
Orpington parkrun22200:17:27 - All - Graph It!
Ashford parkrun22200:17:57 - All - Graph It!
Hazelwood parkrun2182200:22:21 - All - Graph It!
Brooklands parkrun2394200:23:22 - All - Graph It!
Wycombe Rye parkrun22200:17:17 - All - Graph It!
Harrow parkrun25500:20:23 - All - Graph It!
Beckton parkrun23300:17:24 - All - Graph It!
St Albans parkrun21100:16:37 - All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 - All -  
Buckingham parkrun12200:18:37 - All -  
Thomas Mills parkrun1486500:30:19 - All -  
Leamington parkrun12200:18:52 - All -  
Church Mead parkrun16610200:32:53 - All -  
Letchworth parkrun1141400:23:13 - All -  
Mulbarton parkrun12200:19:55 - All -  
Arrow Valley parkrun13300:18:05 - All -  
Frogmary Green Farm parkrun1597200:25:58 - All -  
Sutton Park parkrun1475500:24:54 - All -  
Reigate Priory parkrun16600:19:06 - All -  
Bury St Edmunds parkrun13300:18:17 - All -  
Pollok parkrun, Glasgow11100:17:00 - All -  
Kingdom parkrun1222500:24:39 - All -  
Barclay parkrun15600:23:13 - All -  
Chippenham parkrun1212100:20:08 - All -  
Ipswich parkrun11100:17:34 - All -  
Itchen Valley Country parkrun1476100:27:37 - All -  
Neckarau parkrun1243000:27:11 - All -  
Brandon Country Park parkrun11100:18:30 - All -  
Boston parkrun17700:21:18 - All -  
University Parks parkrun119032600:31:42 - All -  
Neckarufer parkrun, Esslingen1364400:25:12 - All -  
Lullingstone parkrun17700:21:21 - All -  
Coventry parkrun1292900:20:51 - All -  
Berkeley Green parkrun1233100:28:31 - All -  
Mersea Island parkrun1121200:20:59 - All -  
Aylesbury parkrun11100:17:51 - All -  
Royal Tunbridge Wells parkrun18900:19:23 - All -  
Southall parkrun1557500:31:38 - All -  
Manor Field parkrun, Whittlesey1121300:24:25 - All -  
Pomphrey Hill parkrun1364100:23:02 - All -  
Henley-on-Thames parkrun1111100:22:25 - All -  
Aachener Weiher parkrun1101100:24:55 - All -  
Penrose parkrun1151600:19:40 - All -  
King’s Lynn parkrun1151500:20:07 - All -  
Fulbourn Hospital parkrun1344700:24:59 - All -  
Fareham parkrun16600:19:21 - All -  
Brockenhurst parkrun13300:18:23 - All -  
Canterbury parkrun16600:21:56 - All -  
Alton Water parkrun1538300:35:09 - All -  
Littleport parkrun1445100:25:16 - All -  
Newport parkrun11100:17:29 - All -  
California Country parkrun1649000:28:49 - All -  
Thornbury parkrun1323400:28:19 - All -  
Greenwich parkrun12200:18:07 - All -  
Seven Fields parkrun1475500:26:28 - All -  
Highbury Fields parkrun11100:17:25 - All -  
The Great Field parkrun19313500:29:12 - All -  
Street parkrun1283500:25:52 - All -  
South Norwood parkrun1121200:21:11 - All -  
Dunstable Downs parkrun1374300:24:58 - All -  
Melton Mowbray parkrun1192200:22:38 - All -  
Horsham parkrun14500:18:16 - All -  
Irchester Country parkrun1586200:25:13 - All -  
Stratford-upon-Avon parkrun1202500:21:14 - All -  
Wotton parkrun1182100:24:45 - All -  
Bath Skyline parkrun1192000:21:08 - All -  
Great Dunmow parkrun14400:20:25 - All -  
Corby parkrun18800:23:09 - All -  
Bracknell parkrun18800:20:04 - All -  
Cromhall parkrun1151600:24:20 - All -  
Perry Hall parkrun1464900:24:58 - All -  
Gunpowder parkrun12200:17:34 - All -  
Luton Wardown parkrun191000:19:36 - All -  
Ifield Mill Pond parkrun1373800:24:33 - All -  
March parkrun15500:21:11 - All -  
Roding Valley parkrun1111300:21:26 - All -  
Charlton parkrun18213000:32:05 - All -  
Malmö Ribersborg parkrun111215100:28:46 - All -  
Worcester parkrun114418500:29:30 - All -  
Wolford Wood parkrun1212700:30:24 - All -  
Fire Service College parkrun1181900:22:12 - All -  
Panshanger parkrun17700:20:14 - All -  
Conkers parkrun12200:17:46 - All -  
Banbury parkrun1222300:21:16 - All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 - All -  
Rushmere parkrun1131400:22:39 - All -  
Whiteley parkrun1141500:20:56 - All -  
Sandringham parkrun1466300:30:18 - All -  
Victoria Dock parkrun1283000:20:04 - All -  
Queen Elizabeth parkrun12200:19:08 - All -  
Lordship Recreation Ground parkrun19112400:25:22 - All -  
Somerdale Pavilion parkrun1384600:31:17 - All -  
Dartford parkrun11100:17:59 - All -  
Winchester parkrun14500:18:28 - All -  
Stratford Park parkrun, Stroud1566500:27:51 - All -  
Sherwood Pines parkrun1161800:21:33 - All -  
Grove Fields parkrun1578500:28:03 - All -  
Witney parkrun1202000:22:34 - All -  
Preston Park parkrun, Brighton12200:17:40 - All -  
Colchester Castle parkrun14400:18:04 - All -  
Tidworth parkrun110815500:35:14 - All -  
Walmer and Deal Seafront parkrun18800:21:38 - All -  
Ferry Meadows parkrun15500:17:27 - All -  
St Mary’s parkrun1587400:29:14 - All -  
Dartford Heath parkrun1171700:22:06 - All -  
Sharpham Road Playing Fields parkrun1253100:24:41 - All -  
Great Denham parkrun16600:19:27 - All -  
Hastings High School parkrun1637800:27:33 - All -  
Wendover Woods parkrun1262600:23:51 - All -  
Peckham Rye parkrun11100:17:49 - All -  
Upton House parkrun1252700:22:34 - All -  
Lee-on-the-Solent parkrun17700:19:40 - All -  
Graves parkrun11100:18:18 - All -  
Maidstone parkrun13300:18:00 - All -  
Woodgate Valley Country Park parkrun16513200:45:50 - All -  
South Woodham Ferrers parkrun18800:21:14 - All -  
Pontypridd parkrun12200:17:54 - All -  
Bournemouth parkrun14400:17:43 - All -  
Sizewell parkrun1172000:23:30 - All -  
Rushmoor parkrun19900:18:29 - All -  
Walsall Arboretum parkrun19810600:25:31 - All -  
Gorleston Cliffs parkrun12200:17:43 - All -  
Uckfield parkrun1404300:24:12 - All -  
Aldenham parkrun1141400:21:37 - All -  
Gadebridge parkrun1141400:22:22 - All -  
Horspath parkrun17410600:28:12 - All -  
Rogiet parkrun1151600:24:27 - All -  
Rendlesham Forest parkrun1264600:37:01 - All -  
Dishley parkrun, Loughborough110311400:24:30 - All -  
Great Cornard parkrun1192000:20:33 - All -  
Kettering parkrun1232600:22:50 - All -  
Pont y Bala parkrun15700:23:18 - All -  
Burnham and Highbridge parkrun17510000:27:51 - All -  
Stonehouse parkrun1131300:20:09 - All -  
Hampstead Heath parkrun11100:17:45 - All -  
Wickford Memorial parkrun1436600:51:15 - All -  
Castle Park parkrun1394100:22:34 - All -  
Huntingdon parkrun1202100:21:10 - All -  
Great Salterns parkrun19212400:30:27 - All -  
Snowden Field parkrun1242600:24:15 - All -  
Southend parkrun11100:16:28 - All -  
Andover parkrun11100:17:33 - All -  
parkrun Zalew Żyrardowski16700:24:38 - All -  
Marecchia parkrun11100:19:50 - All -  
Cheltenham parkrun12200:17:24 - All -  
St Helens parkrun1606800:24:27 - All -  
Bartley Park parkrun18415100:32:38 - All -  
Severn Bridge parkrun1353900:21:32 - All -  
Pontypool parkrun1232300:23:51 - All -  
Poole parkrun14400:16:57 - All -  
Bramhall parkrun115924700:35:16 - All -  
Sunny Hill parkrun1202400:24:39 - All -  
Cassiobury parkrun1111100:20:14 - All -  
Hoblingwell parkrun1202400:23:52 - All -  
Colwick parkrun18800:19:46 - All -  
Chipping Norton School parkrun1455100:26:40 - All -  
Worthing parkrun18900:18:44 - All -  
Harrow Lodge parkrun11100:18:48 - All -  
Bradford parkrun1313600:21:55 - All -  
Bury Field parkrun1669000:33:07 - All -  
Pocket parkrun1222300:21:38 - All -  
Longrun Meadow parkrun111416500:32:01 - All -  
Worcester Pitchcroft parkrun111814300:27:04 - All -  
Highwoods parkrun1252600:24:49 - All -  
Maidenhead parkrun17700:18:49 - All -  
Soham Village College parkrun1253200:28:03 - All -  
Rickmansworth parkrun1242700:21:39 - All -  
Swaffham parkrun191000:22:19 - All -  
Brentwood parkrun17700:22:28 - All -  
Lymington Woodside parkrun15700:21:59 - All -  
Loch Neaton parkrun, Watton1171700:25:49 - All -  
Daventry parkrun1151500:21:10 - All -  
Hatfield Forest parkrun1181800:20:36 - All -  
Kingsway parkrun, Gloucester1192000:21:20 - All -  
Salcey Forest parkrun1384300:24:53 - All -  
parkrun des Dougnes, Cubnezais12200:19:42 - All -  
Prospect parkrun1232300:22:42 - All -  
Weymouth parkrun1141400:20:45 - All -  
Westmill parkrun1101000:22:55 - All -  
East Brighton parkrun1182100:23:56 - All -  
Harlow parkrun1151500:23:00 - All -  
Linford Wood parkrun1222200:21:45 - All -  
Clevedon Salthouse Fields parkrun1384900:25:13 - All -  
Lydney parkrun1202100:23:19 - All -  
Braunstone parkrun1262700:20:41 - All -  
Harleston Magpies parkrun1293500:25:12 - All -  
Clapham Common parkrun1404200:20:22 - All -  
Market Bosworth Country Park parkrun110614400:35:35 - All -  
Jersey Farm parkrun1252700:23:11 - All -  
Kesgrave parkrun1374000:21:18 - All -  
Stevenage parkrun17700:19:32 - All -  
Hadleigh parkrun, Essex1252600:24:27 - All -  
Squerryes Winery parkrun1323600:27:45 - All -  
Rutland Water parkrun1293000:22:44 - All -  
Beckenham Place parkrun1121200:20:28 - All -  
Sutcliffe parkrun113117200:30:34 - All -  
Haverhill parkrun1121300:23:32 - All -  
Leavesden Country parkrun1506900:28:32 - All -  
Coldham’s Common parkrun1535900:23:04 - All -  
Chichester parkrun13300:19:05 - All -  
Billericay parkrun1121300:21:20 - All -  
Bromley parkrun13300:17:18 - All -  
Babbs Mill parkrun1405100:28:00 - All -  
Thurrock parkrun, Orsett Heath16600:20:41 - All -  
Bryn Bach parkrun11100:16:50 - All -  
York parkrun12200:17:12 - All -  
Storeys Field parkrun115121100:28:49 - All -  
Chipping Sodbury parkrun1303200:21:20 - All -  
Mote Park parkrun19712200:31:28 - All -  
Watermeadows parkrun1283100:24:57 - All -  
Woking parkrun18800:18:19 - All -  
Raphael parkrun13300:19:35 - All -  
Harwich parkrun191000:21:22 - All -  
Fritton Lake parkrun11100:18:26 - All -  
Heartwood Forest parkrun1252700:21:41 - All -  
Henlow Bridge Lakes parkrun17511500:32:34 - All -  
Bedworth parkrun1171700:22:14 - All -  
Clair parkrun13300:18:36 - All -  
Brueton parkrun1475000:21:33 - All -  
Higginson parkrun, Marlow1272900:22:17 - All -  
Bognor Regis parkrun12200:18:12 - All -  
Huddersfield parkrun1626700:22:02 - All -  
Heaton parkrun13300:18:08 - All -  
Chasewater parkrun18210000:26:19 - All -  
Tewkesbury parkrun1111400:22:50 - All -  
Marple parkrun11100:17:15 - All -  
Cannock Chase parkrun1384400:25:49 - All -  
Edgbaston Reservoir parkrun1658600:26:24 - All -  
Cirencester parkrun1222400:22:40 - All -  
Kingsbury Water parkrun1394700:25:05 - All -  
Peacehaven parkrun17700:21:07 - All -  
Lancing Beach Green parkrun1141400:21:08 - All -  
Springburn parkrun, Glasgow13300:18:05 - All -  
Market Harborough parkrun1303100:21:17 - All -  
Amager Fælled parkrun1333700:24:23 - All -  
Hanworth parkrun1364000:24:26 - All -  
Salisbury parkrun1111100:19:34 - All -  
Houghton Hall parkrun1131300:21:48 - All -  
Chalkwell Beach parkrun1819600:24:40 - All -  
Melksham parkrun1171700:24:31 - All -  
Thetford parkrun1161700:21:45 - All -  
Pontefract parkrun1718700:24:10 - All -  
Downham Market Academy parkrun1121300:24:35 - All -  
Fountains Abbey parkrun11100:18:03 - All -  
Cardiff parkrun111011700:22:02 - All -  
Littlehampton Prom parkrun1384300:24:22 - All -  
Uditore parkrun13300:20:28 - All -  
Beacon parkrun1587300:26:41 - All -  
parkrun de Rouen15500:21:41 - All -  
Walthamstow parkrun11100:17:48 - All -  
Shepton Mallet parkrun1121400:21:50 - All -  
Marine Parade parkrun17711100:29:24 - All -  
Foots Cray Meadows parkrun1212300:23:17 - All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 - All -  
Evesham parkrun1111100:21:39 - All -  
Southwick Country parkrun1272900:21:47 - All -  
Lydiard parkrun18800:18:25 - All -  
Sandhurst Memorial parkrun1537300:28:54 - All -  
Bicester parkrun14400:20:13 - All -  
Wimpole Estate parkrun1202100:22:14 - All -  
Markshall Estate parkrun110315600:32:26 - All -  
Dinton Pastures parkrun1131300:21:23 - All -  
Tonbridge parkrun14400:18:40 - All -  
Wanstead Flats parkrun13300:17:13 - All -  
Woodhouse Moor parkrun11100:17:22 - All -  
Mountbatten School parkrun1323400:24:11 - All -  
Eastville parkrun120525300:25:12 - All -  
Brixworth Country parkrun1496100:26:53 - All -  
Portsmouth Lakeside parkrun19900:19:12 - All -  
Milton Country parkrun13300:17:43 - All -  
Swanley parkrun19712500:31:18 - All -  
Springhill parkrun14400:22:18 - All -  
Gloucester North parkrun1101000:22:14 - All -  
Feltham parkrun13400:24:56 - All -  
Crissy Field parkrun1101200:20:40 - All -  
Ally Pally parkrun11100:18:09 - All -  
Ashton Court parkrun1859500:22:59 - All -  
Oaklands parkrun111820300:36:10 - All -  
Sittingbourne parkrun18800:20:56 - All -  
Moors Valley parkrun19900:19:40 - All -  
Catford parkrun1303300:22:32 - All -  
Clare Castle parkrun1252700:23:04 - All -  
Harrogate parkrun13300:18:11 - All -  
Seaford Beach parkrun1535600:22:25 - All -  
Tring parkrun1171800:23:38 - All -  
Sandwell Valley parkrun1455900:30:43 - All -  
Basildon parkrun15500:18:13 - All -  
The Leas parkrun, Minster1252500:24:37 - All -  
Little Stoke parkrun11100:17:03 - All -  
Dallas Burston Polo Club parkrun19614700:32:26 - All -  
Felixstowe parkrun1121200:21:07 - All -  
Yeovil Montacute parkrun1707500:25:51 - All -  
Stockley Country parkrun111917900:35:32 - All -  
Woolacombe Dunes parkrun19410900:31:20 - All -  
Harcourt Hill parkrun1171700:21:13 - All -  
Abingdon parkrun15500:18:03 - All -  
Eastbourne parkrun12200:17:24 - All -  
Warwick Racecourse parkrun1486000:24:55 - All -  
Leicester Victoria parkrun19711600:26:45 - All -  
Broadwater parkrun110321300:35:19 - All -  
Clacton Seafront parkrun19900:20:35 - All -  
Burnham-on-Crouch parkrun18800:22:01 - All -  
Ganger Farm parkrun19811400:26:34 - All -  
Folkestone parkrun1212500:21:48 - All -  
Mallards Pike parkrun1324600:30:57 - All -  
Malling parkrun18314500:47:25 - All -  
Rugby parkrun1181800:22:26 - All -  
Watermead Country Park parkrun110818200:35:52 - All -  
Hogmoor Inclosure parkrun1262600:25:26 - All -  
East Grinstead parkrun1131400:23:10 - All -  
Mildenhall Hub parkrun1273100:24:33 - All -  
Marlborough Common parkrun1202100:22:48 - All -  
Blandford parkrun18900:20:11 - All -  
Maldon Prom parkrun11100:18:04 - All -  
Edinburgh parkrun12200:17:00 - All -  
The Old Showfield parkrun1636900:23:30 - All -  
Jersey parkrun16600:19:41 - All -  
Chilton Fields parkrun1405400:28:26 - All -  
Sixfields Upton parkrun18800:19:58 - All -  
Pegwell Bay parkrun12200:17:40 - All -  
Valentines parkrun11100:16:49 - All -  
Edenbrook Country parkrun110514800:28:01 - All -  
Henstridge Airfield parkrun18800:21:41 - All -  
Great Notley parkrun16600:20:16 - All -  
Medina I.O.W. parkrun11100:17:20 - All -  
Reading parkrun12200:17:18 - All -  
Tetbury Goods Shed parkrun1253000:24:25 - All -  
Lowestoft parkrun1232600:21:10 - All -  
Malahide parkrun11100:16:54 - All -  
Oxford parkrun11100:17:18 - All -  
Rheinpark parkrun1151800:25:30 - All -  
Gloucester City parkrun1171900:22:35 - All -  
Didcot parkrun1101100:21:28 - All -  
Mansfield parkrun11100:17:09 - All -  
7851100:16:25 - All + Viimeisin ikäluokitus oli VM45-49 +

Viimeisimmät parkrunit

TapahtumaTapahtuman pvm.Sukupuolittain sijoituksetKokonaissijoitusAikaIkäluokitus
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Tapahtumien yhteenvetotilasto

TapahtumaosallistumiskerratParas sijoitus sukupuolittainParas sijoitus kaikistaParas aika  
Bushy parkrun2341116:25 + Kaikki +
Kingston parkrun471116:51 + Kaikki +
Bedfont Lakes parkrun81117:04 + Kaikki +
Nonsuch parkrun71116:52 + Kaikki +
Richmond parkrun71117:13 + Kaikki +
Crane Park parkrun61116:48 + Kaikki +
Riddlesdown parkrun42217:01 + Kaikki +
Bexley parkrun31117:48 + Kaikki +
Tilgate parkrun31117:10 + Kaikki +
Frimley Lodge parkrun31117:11 + Kaikki +
Hilly Fields parkrun31117:50 + Kaikki +
Old Deer Park parkrun31117:41 + Kaikki +
Guildford parkrun31117:17 + Kaikki +
Homewood parkrun3151722:21 + Kaikki +
Brockwell parkrun, Herne Hill31116:56 + Kaikki +
Southwark parkrun34417:27 + Kaikki +
Fulham Palace parkrun33317:47 + Kaikki +
Cannon Hill parkrun, Birmingham3111118:04 + Kaikki +
Gunnersbury parkrun31116:51 + Kaikki +
Wimbledon Common parkrun35517:27 + Kaikki +
Brighton & Hove parkrun31116:27 + Kaikki +
Basingstoke parkrun35517:48 + Kaikki +
Black Park parkrun31117:25 + Kaikki +
Dulwich parkrun33317:11 + Kaikki +
Bedgebury Pinetum parkrun28921:24 + Kaikki +
Harrow parkrun25520:23 + Kaikki +
Netley Abbey parkrun21117:21 + Kaikki +
Ellenbrook Fields parkrun2141519:58 + Kaikki +
Worthing parkrun28918:44 + Kaikki +
Grovelands parkrun, Enfield22217:21 + Kaikki +
Beckton parkrun23317:24 + Kaikki +
Gladstone parkrun21117:09 + Kaikki +
Hackney Marshes parkrun22216:46 + Kaikki +
Burgess parkrun22216:45 + Kaikki +
Orpington parkrun22217:27 + Kaikki +
Barking parkrun22216:45 + Kaikki +
Southampton parkrun23316:44 + Kaikki +
Alice Holt parkrun21117:59 + Kaikki +
Woodley parkrun21117:02 + Kaikki +
Upton Court parkrun22217:24 + Kaikki +
Chelmsford Central parkrun22217:24 + Kaikki +
Mole Valley parkrun2262622:56 + Kaikki +
Durlston Country Park parkrun2355032:45 + Kaikki +
Hazelwood parkrun2182222:21 + Kaikki +
Southsea parkrun23317:55 + Kaikki +
St Albans parkrun21116:37 + Kaikki +
Havant parkrun21117:46 + Kaikki +
Ashford parkrun22217:57 + Kaikki +
Bedford parkrun21116:55 + Kaikki +
Margate parkrun21118:16 + Kaikki +
Milton Keynes parkrun23317:26 + Kaikki +
Preston Park parkrun, Brighton22217:40 + Kaikki +
Shorne Woods parkrun21118:14 + Kaikki +
Canons Park parkrun27720:50 + Kaikki +
Osterley parkrun21117:57 + Kaikki +
Eastleigh parkrun27719:14 + Kaikki +
Brooklands parkrun2394223:22 + Kaikki +
Great Lines parkrun, Medway25518:25 + Kaikki +
Malling Rec parkrun2738526:59 + Kaikki +
Crystal Palace parkrun21117:24 + Kaikki +
Northala Fields parkrun22218:06 + Kaikki +
Northampton parkrun21116:56 + Kaikki +
Oak Hill parkrun21117:13 + Kaikki +
Lloyd parkrun, Croydon21118:01 + Kaikki +
Newbury parkrun21117:20 + Kaikki +
Cranleigh parkrun26620:49 + Kaikki +
Littlehampton Prom parkrun2384324:22 + Kaikki +
Whitstable parkrun23318:12 + Kaikki +
Bethlem Royal Hospital parkrun2263223:22 + Kaikki +
Cyclopark parkrun2353824:01 + Kaikki +
Hockley Woods parkrun26621:09 + Kaikki +
South Oxhey parkrun21119:13 + Kaikki +
Pymmes parkrun21117:06 + Kaikki +
Hastings parkrun291120:41 + Kaikki +
Wycombe Rye parkrun22217:17 + Kaikki +
Hove Promenade parkrun27719:23 + Kaikki +
Banstead Woods parkrun21117:31 + Kaikki +
Wormwood Scrubs parkrun21118:00 + Kaikki +
Roundshaw Downs parkrun23318:14 + Kaikki +
Mile End parkrun21116:53 + Kaikki +
Bevendean Down parkrun28923:21 + Kaikki +
Finsbury parkrun22217:15 + Kaikki +
Tooting Common parkrun2181819:14 + Kaikki +
Bromley parkrun13317:18 + Kaikki +
Houghton Hall parkrun1131321:48 + Kaikki +
Sittingbourne parkrun18820:56 + Kaikki +
Sharpham Road Playing Fields parkrun1253124:41 + Kaikki +
Gadebridge parkrun1141422:22 + Kaikki +
Chilton Fields parkrun1405428:26 + Kaikki +
Storeys Field parkrun115121128:49 + Kaikki +
Hadleigh parkrun, Essex1252624:27 + Kaikki +
Marple parkrun11117:15 + Kaikki +
Portsmouth Lakeside parkrun19919:12 + Kaikki +
Grove Fields parkrun1578528:03 + Kaikki +
Banbury parkrun1222321:16 + Kaikki +
Graves parkrun11118:18 + Kaikki +
Watermead Country Park parkrun110818235:52 + Kaikki +
Eastbourne parkrun12217:24 + Kaikki +
Malahide parkrun11116:54 + Kaikki +
Fareham parkrun16619:21 + Kaikki +
Sutcliffe parkrun113117230:34 + Kaikki +
Fritton Lake parkrun11118:26 + Kaikki +
Bicester parkrun14420:13 + Kaikki +
Sandringham parkrun1466330:18 + Kaikki +
Luton Wardown parkrun191019:36 + Kaikki +
Cwmbran parkrun1171723:29 + Kaikki +
Broadwater parkrun110321335:19 + Kaikki +
Basildon parkrun15518:13 + Kaikki +
Marecchia parkrun11119:50 + Kaikki +
Harleston Magpies parkrun1293525:12 + Kaikki +
Kingsway parkrun, Gloucester1192021:20 + Kaikki +
Bryn Bach parkrun11116:50 + Kaikki +
Mersea Island parkrun1121220:59 + Kaikki +
Charlton parkrun18213032:05 + Kaikki +
parkrun de Rouen15521:41 + Kaikki +
Dallas Burston Polo Club parkrun19614732:26 + Kaikki +
Ashton Court parkrun1859522:59 + Kaikki +
Tøyen parkrun1668526:32 + Kaikki +
The Great Field parkrun19313529:12 + Kaikki +
Castle Park parkrun1394122:34 + Kaikki +
Swanley parkrun19712531:18 + Kaikki +
Greenwich parkrun12218:07 + Kaikki +
Neckarau parkrun1243027:11 + Kaikki +
Bury Field parkrun1669033:07 + Kaikki +
Clifton parkrun1101025:14 + Kaikki +
Alton Water parkrun1538335:09 + Kaikki +
Colwick parkrun18819:46 + Kaikki +
Melksham parkrun1171724:31 + Kaikki +
Markshall Estate parkrun110315632:26 + Kaikki +
Rogiet parkrun1151624:27 + Kaikki +
Bartley Park parkrun18415132:38 + Kaikki +
Lydiard parkrun18818:25 + Kaikki +
Little Stoke parkrun11117:03 + Kaikki +
Letchworth parkrun1141423:13 + Kaikki +
Belvoir Castle parkrun1131925:42 + Kaikki +
Andover parkrun11117:33 + Kaikki +
Rushcliffe parkrun1617323:54 + Kaikki +
Cirencester parkrun1222422:40 + Kaikki +
Southall parkrun1557531:38 + Kaikki +
Forest of Dean parkrun1182224:51 + Kaikki +
parkrun des Dougnes, Cubnezais12219:42 + Kaikki +
South Woodham Ferrers parkrun18821:14 + Kaikki +
Marine Parade parkrun17711129:24 + Kaikki +
Coventry parkrun1292920:51 + Kaikki +
Wotton parkrun1182124:45 + Kaikki +
Gloucester City parkrun1171922:35 + Kaikki +
Great Salterns parkrun19212430:27 + Kaikki +
Bedworth parkrun1171722:14 + Kaikki +
University Parks parkrun119032631:42 + Kaikki +
Hampstead Heath parkrun11117:45 + Kaikki +
Great Denham parkrun16619:27 + Kaikki +
Downham Market Academy parkrun1121324:35 + Kaikki +
Ipswich parkrun11117:34 + Kaikki +
Sixfields Upton parkrun18819:58 + Kaikki +
Rendlesham Forest parkrun1264637:01 + Kaikki +
Frogmary Green Farm parkrun1597225:58 + Kaikki +
Harrow Lodge parkrun11118:48 + Kaikki +
Witney parkrun1202022:34 + Kaikki +
Leamington parkrun12218:52 + Kaikki +
Brockenhurst parkrun13318:23 + Kaikki +
Hogmoor Inclosure parkrun1262625:26 + Kaikki +
Hastings High School parkrun1637827:33 + Kaikki +
Cannock Chase parkrun1384425:49 + Kaikki +
Wimpole Estate parkrun1202122:14 + Kaikki +
Haverhill parkrun1121323:32 + Kaikki +
Edenbrook Country parkrun110514828:01 + Kaikki +
Maidstone River Park parkrun13318:00 + Kaikki +
Cheltenham parkrun12217:24 + Kaikki +
Victoria Dock parkrun1273020:04 + Kaikki +
Ekebergsletta parkrun1304325:57 + Kaikki +
Oxford parkrun11117:18 + Kaikki +
Aylesbury parkrun11117:51 + Kaikki +
Mote Park parkrun19712231:28 + Kaikki +
Riverfront parkrun1404622:57 + Kaikki +
Newent parkrun1182225:27 + Kaikki +
Clapham Common parkrun1404220:22 + Kaikki +
Llanishen Park parkrun1303323:48 + Kaikki +
Heartwood Forest parkrun1252721:41 + Kaikki +
Walthamstow parkrun11117:48 + Kaikki +
Malmö Ribersborg parkrun111215128:46 + Kaikki +
Chippenham Playing Fields parkrun, Monmouth1161923:05 + Kaikki +
Huntingdon parkrun1202121:10 + Kaikki +
Felixstowe parkrun1121221:07 + Kaikki +
Tidworth parkrun110815535:14 + Kaikki +
Brandon Country Park parkrun11118:30 + Kaikki +
Prospect parkrun1232322:42 + Kaikki +
Mildenhall Hub parkrun1273124:33 + Kaikki +
York parkrun12217:12 + Kaikki +
Thetford parkrun1161721:45 + Kaikki +
Great Dunmow parkrun14420:25 + Kaikki +
Leavesden Country parkrun1506928:32 + Kaikki +
Catford parkrun1303322:32 + Kaikki +
Lordship Recreation Ground parkrun19112425:22 + Kaikki +
Rugby parkrun1181822:26 + Kaikki +
Mulbarton parkrun12219:55 + Kaikki +
Swaffham parkrun191022:19 + Kaikki +
Ganger Farm parkrun19811426:34 + Kaikki +
Beckenham Place parkrun1121220:28 + Kaikki +
Forest Rec parkrun1677626:35 + Kaikki +
Street parkrun1283525:52 + Kaikki +
Market Bosworth Country Park parkrun110614435:35 + Kaikki +
Whiteley parkrun1141520:56 + Kaikki +
Kingsbury Water parkrun1394725:05 + Kaikki +
Springhill parkrun14422:18 + Kaikki +
Wolford Wood parkrun1212730:24 + Kaikki +
Pontypridd parkrun12217:54 + Kaikki +
Pocket parkrun1222321:38 + Kaikki +
Stockley Country parkrun111917935:32 + Kaikki +
Braunstone parkrun1262720:41 + Kaikki +
Didcot parkrun1101121:28 + Kaikki +
Littleport parkrun1445125:16 + Kaikki +
Yarborough Leisure Centre parkrun1466125:59 + Kaikki +
Roding Valley parkrun1111321:26 + Kaikki +
Clair parkrun13318:36 + Kaikki +
Dinton Pastures parkrun1131321:23 + Kaikki +
Beacon Hill Country Park parkrun1273725:54 + Kaikki +
Severn Bridge parkrun1353921:32 + Kaikki +
Abbey Park parkrun1779425:21 + Kaikki +
Dudley parkrun1445626:35 + Kaikki +
Pegwell Bay parkrun12217:40 + Kaikki +
Manor Field parkrun, Whittlesey1121324:25 + Kaikki +
Blaise Castle parkrun112816326:20 + Kaikki +
Chipping Sodbury parkrun1303221:20 + Kaikki +
Foots Cray Meadows parkrun1212323:17 + Kaikki +
Thames Path parkrun, Woolwich1789023:42 + Kaikki +
Bath Skyline parkrun1192021:08 + Kaikki +
Dishley parkrun, Loughborough110311424:30 + Kaikki +
Thornham Walks parkrun1363826:52 + Kaikki +
Moors Valley parkrun19919:40 + Kaikki +
East Grinstead parkrun1131423:10 + Kaikki +
Sutton Park parkrun1475524:54 + Kaikki +
University of Northampton parkrun1192223:24 + Kaikki +
Shipley Country parkrun1232424:45 + Kaikki +
Lancing Beach Green parkrun1141421:08 + Kaikki +
Dover Waterfront parkrun1374525:22 + Kaikki +
Rickmansworth parkrun1242721:39 + Kaikki +
Queen Elizabeth parkrun12219:08 + Kaikki +
Sizewell parkrun1172023:30 + Kaikki +
Holbrooks parkrun1202223:43 + Kaikki +
Highbury Fields parkrun11117:25 + Kaikki +
Clacton Seafront parkrun19920:35 + Kaikki +
Delaware and Raritan Canal parkrun12221:06 + Kaikki +
Wisbech parkrun1111523:03 + Kaikki +
Milton Country parkrun13317:43 + Kaikki +
Seaton parkrun1394824:09 + Kaikki +
Higginson parkrun, Marlow1272922:17 + Kaikki +
Quakers Walk parkrun1566825:05 + Kaikki +
Lister Park parkrun, Bradford1313621:55 + Kaikki +
Wendover Woods parkrun1262623:51 + Kaikki +
Sence Valley Forest Park parkrun1232526:28 + Kaikki +
Canterbury parkrun16621:56 + Kaikki +
Henstridge Airfield parkrun18821:41 + Kaikki +
Five Arches parkrun1455422:58 + Kaikki +
Yeovil Montacute parkrun1707525:51 + Kaikki +
Watermeadows parkrun1283124:57 + Kaikki +
Tamworth Castle Grounds parkrun1333523:26 + Kaikki +
St Helens parkrun1606824:27 + Kaikki +
Weymouth parkrun1141420:45 + Kaikki +
Walmer and Deal Seafront parkrun18821:38 + Kaikki +
Aston Hall parkrun1202225:01 + Kaikki +
Royal Tunbridge Wells parkrun18919:23 + Kaikki +
Corby parkrun18823:09 + Kaikki +
Marlborough Common parkrun1202122:48 + Kaikki +
Battlestead Croft parkrun1111122:53 + Kaikki +
Shepton Mallet parkrun1121421:50 + Kaikki +
Clare Castle parkrun1252723:04 + Kaikki +
Coldham’s Common parkrun1535923:04 + Kaikki +
Brunswick Park parkrun1212223:58 + Kaikki +
Brentwood parkrun17722:28 + Kaikki +
Somerdale Pavilion parkrun1384631:17 + Kaikki +
Wakehurst parkrun18810525:00 + Kaikki +
Boston parkrun17721:18 + Kaikki +
Morden parkrun111715526:58 + Kaikki +
Pontefract parkrun1718724:10 + Kaikki +
Jersey Farm parkrun1252723:11 + Kaikki +
Bug Hunter Waters parkrun1455022:41 + Kaikki +
Rosliston parkrun1333624:41 + Kaikki +
Longrun Meadow parkrun111416532:01 + Kaikki +
Fire Service College parkrun1181922:12 + Kaikki +
Woolacombe Dunes parkrun19410931:20 + Kaikki +
The Plens parkrun1303124:04 + Kaikki +
Arrow Valley parkrun13318:05 + Kaikki +
Tonbridge parkrun14418:40 + Kaikki +
East Brighton parkrun1182123:56 + Kaikki +
Three Brooks parkrun1697223:46 + Kaikki +
Peacehaven parkrun17721:07 + Kaikki +
Pontypool parkrun1232323:51 + Kaikki +
Cromhall parkrun1151624:20 + Kaikki +
Dereham parkrun1323323:47 + Kaikki +
Bournemouth parkrun14417:43 + Kaikki +
Pomphrey Hill parkrun1364123:02 + Kaikki +
Seaford Beach parkrun1535622:25 + Kaikki +
Mansfield parkrun11117:09 + Kaikki +
Fountains Abbey parkrun11118:03 + Kaikki +
Loch Neaton parkrun, Watton1171725:49 + Kaikki +
Brueton parkrun1475021:33 + Kaikki +
Great Cornard parkrun1192020:33 + Kaikki +
Dunstable Downs parkrun1374324:58 + Kaikki +
Beeston parkrun1374023:53 + Kaikki +
Feltham parkrun13424:56 + Kaikki +
Markeaton parkrun1576422:56 + Kaikki +
Reigate Priory parkrun16619:06 + Kaikki +
Highwoods parkrun1252624:49 + Kaikki +
Valentines parkrun11116:49 + Kaikki +
Springburn parkrun, Glasgow13318:05 + Kaikki +
California Country parkrun1649028:49 + Kaikki +
Rushmoor parkrun19918:29 + Kaikki +
Mountbatten School parkrun1323424:11 + Kaikki +
Colchester Castle parkrun14418:04 + Kaikki +
Buckingham parkrun12218:37 + Kaikki +
Sunny Hill parkrun1202424:39 + Kaikki +
Bognor Regis parkrun12218:12 + Kaikki +
Aachener Weiher parkrun1101124:55 + Kaikki +
Peckham Rye parkrun11117:49 + Kaikki +
Millennium Country parkrun, Forest of Marston Vale1373923:01 + Kaikki +
Great Notley parkrun16620:16 + Kaikki +
Snowden Field parkrun1242624:15 + Kaikki +
Burnham-on-Crouch parkrun18822:01 + Kaikki +
Woking parkrun18818:19 + Kaikki +
Neckarufer parkrun, Esslingen1364425:12 + Kaikki +
Worcester parkrun114418529:30 + Kaikki +
Blandford parkrun18920:11 + Kaikki +
Pont y Bala parkrun15723:18 + Kaikki +
Chichester parkrun13319:05 + Kaikki +
Kingdom parkrun1222524:39 + Kaikki +
Westmill parkrun1101022:55 + Kaikki +
Dartford parkrun11117:59 + Kaikki +
Hanworth parkrun1364024:26 + Kaikki +
Bracknell parkrun18820:04 + Kaikki +
Folkestone parkrun1212521:48 + Kaikki +
Uckfield parkrun1404324:12 + Kaikki +
Harrogate parkrun13318:11 + Kaikki +
Kesgrave parkrun1374021:18 + Kaikki +
Thomas Mills parkrun1486530:19 + Kaikki +
Lymington Woodside parkrun15721:59 + Kaikki +
Hereford parkrun1535323:07 + Kaikki +
Chasewater parkrun18210026:19 + Kaikki +
South Norwood parkrun1121221:11 + Kaikki +
Panshanger parkrun17720:14 + Kaikki +
Wolverhampton parkrun1556624:54 + Kaikki +
Harcourt Hill parkrun1171721:13 + Kaikki +
Tetbury Goods Shed parkrun1253024:25 + Kaikki +
Gloucester North parkrun1101022:14 + Kaikki +
Harlow parkrun1151523:00 + Kaikki +
Alvaston parkrun1515922:24 + Kaikki +
Worcester Pitchcroft parkrun111814327:04 + Kaikki +
Perry Hall parkrun1464924:58 + Kaikki +
Newport parkrun11117:29 + Kaikki +
Tring parkrun1171823:38 + Kaikki +
Severn Valley Country parkrun1141626:13 + Kaikki +
Wanstead Flats parkrun13317:13 + Kaikki +
Daventry parkrun1151521:10 + Kaikki +
St Mary’s parkrun1587429:14 + Kaikki +
Poole parkrun14416:57 + Kaikki +
Melton Mowbray parkrun1192222:38 + Kaikki +
The Old Showfield parkrun1636923:30 + Kaikki +
Henley-on-Thames parkrun1111122:25 + Kaikki +
Crissy Field parkrun1101220:40 + Kaikki +
Babbs Mill parkrun1405128:00 + Kaikki +
Maidenhead parkrun17718:49 + Kaikki +
Ross-on-Wye parkrun1172124:22 + Kaikki +
Kettering parkrun1232622:50 + Kaikki +
Stratford Park parkrun, Stroud1566527:51 + Kaikki +
Bury St Edmunds parkrun13318:17 + Kaikki +
Mallards Pike parkrun1324630:57 + Kaikki +
Market Harborough parkrun1303121:17 + Kaikki +
Cassiobury parkrun1111120:14 + Kaikki +
Squerryes Winery parkrun1323627:45 + Kaikki +
Walsall Arboretum parkrun19010625:31 + Kaikki +
Penrose parkrun1151619:40 + Kaikki +
King George V Playing Field parkrun, Cheltenham1232826:08 + Kaikki +
Evesham parkrun1111121:39 + Kaikki +
Warwick Racecourse parkrun1486024:55 + Kaikki +
Huddersfield parkrun1626722:02 + Kaikki +
Clevedon Salthouse Fields parkrun1384925:13 + Kaikki +
Long Eaton parkrun19912124:06 + Kaikki +
Barry Island parkrun1394223:51 + Kaikki +
Ifield Mill Pond parkrun1373824:33 + Kaikki +
Upton House parkrun1252722:34 + Kaikki +
Lullingstone parkrun17721:21 + Kaikki +
The Leas parkrun, Minster1252524:37 + Kaikki +
Medina I.O.W. parkrun11117:20 + Kaikki +
Uditore parkrun13320:28 + Kaikki +
Hunstanton Promenade parkrun1283523:45 + Kaikki +
Raphael parkrun13319:35 + Kaikki +
Burnham and Highbridge parkrun17510027:51 + Kaikki +
Salcey Forest parkrun1384324:53 + Kaikki +
Ferry Meadows parkrun15517:27 + Kaikki +
Barclay parkrun15623:13 + Kaikki +
Irchester Country parkrun1586225:13 + Kaikki +
Maldon Prom parkrun11118:04 + Kaikki +
Salisbury parkrun1111119:34 + Kaikki +
Tremorfa parkrun1272923:30 + Kaikki +
Billericay parkrun1121321:20 + Kaikki +
Gedling parkrun1273224:59 + Kaikki +
Oaklands parkrun111820336:10 + Kaikki +
Winchester parkrun14518:28 + Kaikki +
Aldenham parkrun1141421:37 + Kaikki +
East Park parkrun1121424:18 + Kaikki +
Soham Village College parkrun1253228:03 + Kaikki +
Stevenage parkrun17719:32 + Kaikki +
Tewkesbury parkrun1111422:50 + Kaikki +
Seven Fields parkrun1475526:28 + Kaikki +
Conkers parkrun12217:46 + Kaikki +
Lee-on-the-Solent parkrun17719:40 + Kaikki +
Brixworth Country parkrun1496126:53 + Kaikki +
Abingdon parkrun15518:03 + Kaikki +
Lowestoft parkrun1232621:10 + Kaikki +
Chipping Norton School parkrun1455126:40 + Kaikki +
Linford Wood parkrun1222221:45 + Kaikki +
Harwich parkrun191021:22 + Kaikki +
Fulbourn Hospital parkrun1344724:59 + Kaikki +
Gunpowder parkrun12217:34 + Kaikki +
Dartford Heath parkrun1171722:06 + Kaikki +
Sandhurst Memorial parkrun1537328:54 + Kaikki +
Woodhouse Moor parkrun11117:22 + Kaikki +
Sandwell Valley parkrun1455930:43 + Kaikki +
Wyre Forest parkrun1434825:56 + Kaikki +
parkrun Zalew Żyrardowski16724:38 + Kaikki +
Bramhall parkrun115924735:16 + Kaikki +
Hatfield Forest parkrun1181820:36 + Kaikki +
Swansea Bay parkrun1748323:44 + Kaikki +
Wollaton Hall parkrun1889723:51 + Kaikki +
Horsham parkrun14518:16 + Kaikki +
Jersey parkrun16619:41 + Kaikki +
Berkeley Green parkrun1233128:31 + Kaikki +
Cardiff parkrun111011722:02 + Kaikki +
Ally Pally parkrun11118:09 + Kaikki +
Thurrock parkrun, Orsett Heath16620:41 + Kaikki +
Beacon parkrun1587326:41 + Kaikki +
Albert parkrun, Middlesbrough1515423:17 + Kaikki +
Sherwood Pines parkrun1161821:33 + Kaikki +
Wickford Memorial parkrun1436651:15 + Kaikki +
Thornbury parkrun1323428:19 + Kaikki +
Malling parkrun18314547:25 + Kaikki +
Itchen Valley Country parkrun1476127:37 + Kaikki +
Pollok parkrun, Glasgow11117:00 + Kaikki +
Eastville parkrun120525325:12 + Kaikki +
Rutland Water parkrun1293022:44 + Kaikki +
Chalkwell Beach parkrun1819624:40 + Kaikki +
Amager Fælled parkrun1333724:23 + Kaikki +
Hoblingwell parkrun1202423:52 + Kaikki +
Belton House parkrun1141523:48 + Kaikki +
Kagerzoom parkrun1435824:39 + Kaikki +
Gorleston Cliffs parkrun12217:43 + Kaikki +
King’s Lynn parkrun1151520:07 + Kaikki +
Holkham parkrun1506925:37 + Kaikki +
Horspath parkrun17410628:12 + Kaikki +
Southwick Country parkrun1272921:47 + Kaikki +
Rushmere parkrun1131422:39 + Kaikki +
Zuiderpark parkrun, Den Haag1738124:07 + Kaikki +
Heaton parkrun13318:08 + Kaikki +
Colney Lane parkrun1495524:01 + Kaikki +
Leicester Victoria parkrun19711626:45 + Kaikki +
Church Mead parkrun16610232:53 + Kaikki +
Southend parkrun11116:28 + Kaikki +
Lydney parkrun1202123:19 + Kaikki +
Edgbaston Reservoir parkrun1658626:24 + Kaikki +
Reading parkrun12217:18 + Kaikki +
March parkrun15521:11 + Kaikki +
Woodgate Valley Country Park parkrun16513245:50 + Kaikki +
Maaraue parkrun1232522:34 + Kaikki +
Stonehouse parkrun1131320:09 + Kaikki +
Rheinpark parkrun1151825:30 + Kaikki +
Edinburgh parkrun12217:00 + Kaikki +
Chippenham parkrun1212120:08 + Kaikki +
Stratford-upon-Avon parkrun1202521:14 + Kaikki +
Henlow Bridge Lakes parkrun17511532:34 + Kaikki +
8671116:25 + Kaikki   -


Volunteer Summary

RoleOccasions
- Run Director - 94
- Timekeeper - 59
- Token Sorting - 3
- Results Processor - 87
- Photographer - 6
- Communications Person - 10
- Marshal - 39
- Pre-event Setup - 130
- Equipment Storage and Delivery - 128
- Other - 23
- Barcode Scanning - 55
- Post-event Close Down - 45
- Finish Tokens - 15
- Number Checker - 2
- First Timers Welcome - 68
- Funnel Manager - 15
- Finish Token Support - 9
- Tail Walker - 29
- Volunteer Co-ordinator - 146
- Report Writer - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Car Park Marshal - 1
- Event Day Course Check - 8
- parkwalker - 9
Total Credits396

- This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more
here. -



Freedom parkruns

DateTimeLocation
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
+


Vapaaehtoistehtävien yhteenveto

TehtäväKerrat
+ Tapahtumavastaava + 99
+ Ajanottaja + 94
+ Polettien järjestäjä + 12
+ Tulosten käsittelijä + 87
+ Kuvaaja + 6
+ Tiedotus ja viestintä + 10
+ Liikenteenohjaaja + 54
+ Tapahtumapaikan pystyttäminen + 148
+ Tavaran varastointi ja toimitus + 130
+ Muut + 26
+ Viivakoodin skannaaja + 78
+ Tapahtumapaikan purkaminen + 51
+ Polettien jakaja + 21
+ Numeron tarkastaja + 2
+ Ensikertalaisten opastus + 82
+ Maalin järjestäjä + 15
+ Polettien jakajan avustaja + 12
+ Takimmainen + 29
+ Vapaaehtoisten koordinaattori + 148
+ Raportin kirjoittaja + 100
+ Ajanottajan avustaja + 3
+ Alkulämmittelyn vetäjä + 16
+ Parkkipaikkaohjaaja + 1
+ Reitin tarkastaja + 14
+ parkwalker + 10
Pisteitä yhteensä499

+ Tämä taulukko sisältää yhteenvedeon kunkin vapaaehtoistehtävän suoritusmääristä.
Huomaa, että kokonaismäärä voi poiketa vapaaehtoispisteiden määrästä; Etenkin jos olet tehnyt useaa tehtävässä samana päivänä.
Lue lisää täältä. +



Freedom parkrunit

PäiväAikaPaikka
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkrunit

ViikkoAlkamispäiväPäättymispäivä(not)parkrunitParas aika
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1019,63 +1128,61 @@

Danny NORMAN (A482)
- Locations: 6 -
-
- Finishers: 4,356 + Sijainnit: 7
- Finishes: 20,568 + Osallistujat: 8223
- All-time events: 615 + Maaliintulon kerrat: 36184
- Volunteers: 609 + Kaikki tapahtumat: 1081
- PBs: 3,044 + Vapaaehtoiset: 987
- Average finish time: 00:34:14 + OE:t: 5267
- Average finishes per participant: 4.7 + Keskimääräinen aika: 00:33:14
- Groups: 482 + Seurat: 836
-

+
- Stats last updated: Fri 14 Apr 2023 00:35:21 UTC + Tilastot viimeksi päivitetty: ma 30. syyskuuta 2024 00.36.08
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Tämä sivusto ei saa kopioida kokonaan tai osittain millään tavalla ilman tekijänoikeuksien omistajan lupaa.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1104,8 +1221,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/88720/all/index.html index 07df1d40..d74e0896 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/88720/all/index.html @@ -14,7 +14,8 @@ -results | parkrun Finland + +tulokset | parkrun Finland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,633 +99,731 @@ -

Phillip WHETTLOCK (A88720)

- Member of the parkrun 250 Club - - Member of the Volunteer 100 club +

Phillip WHETTLOCK (A88720)

+ parkrun 250 -kerhon jäsen + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkrun -tapahtumaa yhteensä

- View summary stats for this parkrunner + Näytä tämän osallistujan yhteenvetotilastot
- Most recent age category was VM55-59 + Viimeisin ikäluokitus oli VM60-64

- Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time21:4025:2552:00
Age Grading69.71%60.41%29.55%
Overall Position648.88374

- Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

- All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Halifax08/04/20233313225:0063.07% + Yhteenvetotilastot kaikille tapahtumille +
NopeinKeskiarvo
(mean)
Hitain
Aika21:3625:2654:59
Ikäluokitus72.99%60.80%28.92%
Kokonaissijoitus648.44374

+ parhaat vuosisaavutukset +
VuosiParas aikaParas ikäluokitus
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

+ Kaikki tulokset +
TapahtumaTapahtuman pvm.Tapahtuman nro.SijAikaIkäluokitusOE?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + OE +   -
Fulham Palace01/04/202339110924:0965.29% +
Conwy18/11/20233764424:5363.90%   -
Halifax25/03/20233291624:4363.79% +
Penistone28/10/20231393724:2065.34%   -
Halifax18/03/20233282326:4758.87% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Halifax04/03/20233273825:1962.28% +
Halifax16/09/20233532123:4367.04%   -
Myrtle25/02/20231593824:5263.40% - PB +
Hafan Pwllheli02/09/20231302726:4859.33% +   +
Clitheroe Castle26/08/20231982525:4161.39% +   +
Glossop12/08/20233152824:2564.57% +   +
Halifax05/08/20233473024:4363.79% +   +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% + OE + +   +
Stratford Park, Stroud01/07/20231253126:2959.53% +   +
Wetherby24/06/20233094124:4663.66% +   +
Halifax10/06/20233402524:0265.60% +   +
Halifax03/06/20233392124:1365.11% +   +
Long Eaton20/05/20233306921:3672.99% +   +
Halifax06/05/20233352423:4566.39% +   +
Keswick29/04/20233904121:3672.99% + OE + +   +
Halifax22/04/20233334725:0262.98% +   +
Halifax08/04/20233313225:0063.07% +   +
Fulham Palace01/04/202339110924:0965.29% +   +
Halifax25/03/20233291624:4363.79% +   +
Halifax18/03/20233282326:4758.87% +   +
Halifax04/03/20233273825:1962.28% +   +
Myrtle25/02/20231593824:5263.40% + OE   -
Halifax18/02/20233252926:0360.52% +
Halifax18/02/20233252926:0360.52%   -
Halifax11/02/20233243124:0365.56% +
Halifax11/02/20233243124:0365.56%   -
Bradford04/02/20235795022:3769.71% +
Lister Park, Bradford04/02/20235795022:3769.71%   -
Bowling Park28/01/202379924:1165.20% +
Bowling Park28/01/202379924:1165.20%   -
Bramley21/01/20233004925:3461.67% +
Bramley21/01/20233004925:3461.67%   -
Halifax14/01/20233213325:5260.95% +
Halifax14/01/20233213325:5260.95%   -
Halifax07/01/20233203026:2659.65% +
Halifax07/01/20233203026:2659.65%   -
Chevin Forest01/01/2023703026:4758.87% +
Chevin Forest01/01/2023703026:4758.87%   -
Nostell31/12/20223614325:0063.07% +
Nostell31/12/20223614325:0063.07%   -
Halifax24/12/20223173125:4661.19% +
Halifax24/12/20223173125:4661.19%   -
Rothay Park03/12/2022732724:4863.58% +
Rothay Park03/12/2022732724:4863.58%   -
Temple Newsam26/11/20224172925:1462.48% - PB +
Temple Newsam26/11/20224172925:1462.48% + OE   -
Conkers19/11/20225485624:1465.06% +
Conkers19/11/20225485624:1465.06%   -
Brighouse12/11/20222213725:1762.36% +
Brighouse12/11/20222213725:1762.36%   -
Halifax05/11/20223122424:5163.45% +
Halifax05/11/20223122424:5163.45%   -
Oakwell Hall22/10/20222974026:1060.25% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax15/10/202230910749:5431.60% +
Halifax15/10/202230910749:5431.60%   -
Crosby08/10/20222833525:3861.51% +
Crosby08/10/20222833525:3861.51%   -
Alness01/10/20221801024:0965.29% +
Alness01/10/20221801024:0965.29%   -
Victoria24/09/20223736722:5468.85% +
Victoria24/09/20223736722:5468.85%   -
Halifax17/09/20223052625:0063.07% +
Halifax17/09/20223052625:0063.07%   -
Centre Vale10/09/20221034428:4454.87% +
Centre Vale10/09/20221034428:4454.87%   -
Halifax03/09/20223033125:3361.71% +
Halifax03/09/20223033125:3361.71%   -
Skipton27/08/20224035325:3561.11% +
Skipton27/08/20224035325:3561.11%   -
Halifax20/08/20223012824:5262.87% +
Halifax20/08/20223012824:5262.87%   -
Halifax06/08/20222996426:0360.01% +
Halifax06/08/20222996426:0360.01%   -
Armley30/07/20221432724:2863.90% +
Armley30/07/20221432724:2863.90%   -
Halifax16/07/20222962524:2663.98% +
Halifax16/07/20222962524:2663.98%   -
Halifax02/07/20222942524:4863.04% +
Halifax02/07/20222942524:4863.04%   -
Halifax18/06/20222922424:5462.78% +
Halifax18/06/20222922424:5462.78%   -
The Pastures11/06/2022991826:2159.33% +
The Pastures11/06/2022991826:2159.33%   -
Halifax04/06/20222913826:4858.33% +
Halifax04/06/20222913826:4858.33%   -
Horton Park28/05/20222942225:1262.04% +
Horton Park28/05/20222942225:1262.04%   -
Bushy Park21/05/202287737424:0664.87% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax07/05/20222877529:3552.85% +
Halifax07/05/20222877529:3552.85%   -
Harrogate30/04/202246716226:4458.48% +
Harrogate30/04/202246716226:4458.48%   -
Halifax23/04/20222854927:0057.90% +
Halifax23/04/20222854927:0057.90%   -
Halifax09/04/20222834526:3758.74% +
Halifax09/04/20222834526:3758.74%   -
Halifax02/04/20222822924:4463.21% +
Halifax02/04/20222822924:4463.21%   -
Pendle26/03/20223443126:1659.52% +
Pendle26/03/20223443126:1659.52%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Queen’s, Glasgow12/03/2022487925:2961.35%   -
Halifax05/03/20222784925:3761.03% +
Halifax05/03/20222784925:3761.03%   -
Middleton Woods26/02/20221221424:5562.74% - PB +
Middleton Woods26/02/20221221424:5562.74% + OE   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% - PB +
Halifax27/06/201516822:1366.39% + OE   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% - PB +
Lister Park, Bradford06/08/2011681321:4065.92% + OE   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% - PB +
Lister Park, Bradford30/10/201029621:4165.87% + OE   -
Bradford16/10/2010271521:4865.52% - PB +
Lister Park, Bradford16/10/2010271521:4865.52% + OE   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -771,63 +854,61 @@

Phillip WHETTLOCK (A8
- Locations: 6 -
-
- Finishers: 4,381 + Sijainnit: 7
- Finishes: 20,709 + Osallistujat: 8223
- All-time events: 620 + Maaliintulon kerrat: 36184
- Volunteers: 613 + Kaikki tapahtumat: 1081
- PBs: 3,068 + Vapaaehtoiset: 987
- Average finish time: 00:34:13 + OE:t: 5267
- Average finishes per participant: 4.7 + Keskimääräinen aika: 00:33:14
- Groups: 483 + Seurat: 836
-
+
- Stats last updated: Mon 17 Apr 2023 00:35:25 UTC + Tilastot viimeksi päivitetty: ma 30. syyskuuta 2024 00.36.08
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Tämä sivusto ei saa kopioida kokonaan tai osittain millään tavalla ilman tekijänoikeuksien omistajan lupaa.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -856,8 +947,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/88720/index.html index 8c86e507..ae46975a 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/88720/index.html @@ -14,7 +14,8 @@ -results | parkrun Finland + +tulokset | parkrun Finland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,187 +99,241 @@ -

Phillip WHETTLOCK (A88720)

- Member of the parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns total

- View stats for all parkruns by this parkrunner +

Phillip WHETTLOCK (A88720)

+ parkrun 250 -kerhon jäsen + + Member of the Volunteer 250 club +

345 parkrun -tapahtumaa yhteensä

+ Näytä tilastot tämän parkrunnerin kaikista tapahtumista
- Most recent age category was VM55-59 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bradford parkrun1166600:21:40 - All - Graph It!
Halifax parkrun1148800:22:13 - All - Graph It!
Horton Park parkrun9131300:22:18 - All - Graph It!
Sewerby parkrun3121200:22:08 - All - Graph It!
Keswick parkrun3253300:23:33 - All - Graph It!
Pontefract parkrun2273200:22:08 - All - Graph It!
Temple Newsam parkrun2272900:25:14 - All - Graph It!
Myrtle parkrun2333800:24:52 - All - Graph It!
Middleton Woods parkrun2121400:24:55 - All - Graph It!
Bramley parkrun2252500:24:06 - All - Graph It!
Druridge Bay parkrun1354200:23:35 - All -  
Fountains Abbey parkrun1394800:22:26 - All -  
Victoria parkrun, Glasgow1546700:22:54 - All -  
Clumber Park parkrun1101100:21:46 - All -  
Rothay Park parkrun1202700:24:48 - All -  
Warwick Racecourse parkrun1638200:24:06 - All -  
Conkers parkrun1525600:24:14 - All -  
The Pastures parkrun1161800:26:21 - All -  
Harrogate parkrun112316200:26:44 - All -  
Dishley parkrun, Loughborough1535700:24:25 - All -  
Dalby Forest parkrun1283200:23:06 - All -  
Woodhouse Moor parkrun1778200:22:18 - All -  
Whinlatter Forest parkrun1283200:27:23 - All -  
Watergrove parkrun, Rochdale1111200:27:57 - All -  
Springburn parkrun, Glasgow1161600:23:14 - All -  
Fulham Palace parkrun18610900:24:09 - All -  
Flatts Lane parkrun1171800:26:53 - All -  
Roberts Park parkrun1657500:24:54 - All -  
Bowling Park parkrun18900:24:11 - All -  
Hanley parkrun16600:22:03 - All -  
Centre Vale parkrun1304400:28:44 - All -  
Wycombe Rye parkrun1232600:22:35 - All -  
Carlisle parkrun1567100:26:05 - All -  
Armley parkrun1262700:24:28 - All -  
Crosby parkrun1293500:25:38 - All -  
Edinburgh parkrun1646700:21:54 - All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 - All -  
Bushy parkrun130137400:24:06 - All -  
Oakwell Hall parkrun1344000:26:10 - All -  
Pendle parkrun1263100:26:16 - All -  
Alness parkrun171000:24:09 - All -  
Skipton parkrun1505300:25:35 - All -  
Chevin Forest parkrun1213000:26:47 - All -  
Burnley parkrun1545700:25:21 - All -  
Queen’s parkrun, Glasgow1677900:25:29 - All -  
Roundhay parkrun112815700:26:55 - All -  
Storthes Hall parkrun1263000:26:20 - All -  
Southport parkrun1545700:23:57 - All -  
Cliffe Castle parkrun1151700:25:18 - All -  
Brighouse parkrun1333700:25:17 - All -  
Milton Country parkrun1707500:22:40 - All -  
Pollok parkrun, Glasgow1667200:23:58 - All -  
Nostell parkrun1384300:25:00 - All -  
Portobello parkrun, Edinburgh1668000:24:16 - All -  
2996600:21:40 - All + Viimeisin ikäluokitus oli VM60-64 +

Viimeisimmät parkrunit

TapahtumaTapahtuman pvm.Sukupuolittain sijoituksetKokonaissijoitusAikaIkäluokitus
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Tapahtumien yhteenvetotilasto

TapahtumaosallistumiskerratParas sijoitus sukupuolittainParas sijoitus kaikistaParas aika  
Halifax parkrun1268822:13 + Kaikki +
Lister Park parkrun, Bradford1166621:40 + Kaikki +
Horton Park parkrun9131322:18 + Kaikki +
Keswick parkrun4253321:36 + Kaikki +
Sewerby parkrun3121222:08 + Kaikki +
Pontefract parkrun2273222:08 + Kaikki +
Brighouse parkrun2333723:53 + Kaikki +
Temple Newsam parkrun2272925:14 + Kaikki +
Fountains Abbey parkrun2394822:26 + Kaikki +
Oakwell Hall parkrun2293626:10 + Kaikki +
Whinlatter Forest parkrun2283227:23 + Kaikki +
Bramley parkrun2252524:06 + Kaikki +
Middleton Woods parkrun2121424:55 + Kaikki +
Myrtle parkrun2333824:52 + Kaikki +
Centre Vale parkrun2303626:37 + Kaikki +
Bushy parkrun130137424:06 + Kaikki +
Woodhouse Moor parkrun1778222:18 + Kaikki +
Pollok parkrun, Glasgow1667223:58 + Kaikki +
Edinburgh parkrun1646721:54 + Kaikki +
Wakefield Thornes parkrun1545824:29 + Kaikki +
Hyndburn parkrun1253125:51 + Kaikki +
York parkrun111413522:55 + Kaikki +
Milton Country parkrun1707522:40 + Kaikki +
Carlisle parkrun1567126:05 + Kaikki +
Harrogate parkrun112316226:44 + Kaikki +
Southport parkrun1545723:57 + Kaikki +
Barnsley parkrun1414325:05 + Kaikki +
Rothwell parkrun1535724:20 + Kaikki +
Huddersfield parkrun1596722:47 + Kaikki +
Long Eaton parkrun1556921:36 + Kaikki +
Wycombe Rye parkrun1232622:35 + Kaikki +
Conkers parkrun1525624:14 + Kaikki +
Roundhay parkrun112815726:55 + Kaikki +
Hanley parkrun16622:03 + Kaikki +
Worsley Woods parkrun1728824:46 + Kaikki +
Burnley parkrun1545725:21 + Kaikki +
Dewsbury parkrun18610128:15 + Kaikki +
Cross Flatts parkrun1303724:16 + Kaikki +
Clumber Park parkrun1101121:46 + Kaikki +
Skipton parkrun1505325:35 + Kaikki +
Flatts Lane parkrun1171826:53 + Kaikki +
Victoria parkrun, Glasgow1546722:54 + Kaikki +
Alness parkrun171024:09 + Kaikki +
Fulham Palace parkrun18610924:09 + Kaikki +
Springburn parkrun, Glasgow1161623:14 + Kaikki +
Druridge Bay parkrun1354223:35 + Kaikki +
Pendle parkrun1263126:16 + Kaikki +
Watergrove parkrun, Rochdale1111227:57 + Kaikki +
Wetherby parkrun1374124:46 + Kaikki +
Portobello parkrun, Edinburgh1668024:16 + Kaikki +
Nostell parkrun1374325:00 + Kaikki +
Fell Foot parkrun, Newby Bridge1161722:57 + Kaikki +
Conwy parkrun1394424:53 + Kaikki +
Glossop parkrun1242824:25 + Kaikki +
Crosby parkrun1293525:38 + Kaikki +
Dolgellau parkrun1459954:59 + Kaikki +
Dalby Forest parkrun1283223:06 + Kaikki +
Clitheroe Castle parkrun1192525:41 + Kaikki +
Armley parkrun1262724:28 + Kaikki +
Dishley parkrun, Loughborough1535724:25 + Kaikki +
Ford parkrun1202525:00 + Kaikki +
Cliffe Castle parkrun1151725:18 + Kaikki +
Potternewton parkrun1293625:04 + Kaikki +
Isabel Trail parkrun1293422:02 + Kaikki +
The Pastures parkrun1161826:21 + Kaikki +
Storthes Hall parkrun1263026:20 + Kaikki +
Hafan Pwllheli parkrun1212726:48 + Kaikki +
Penistone parkrun1343724:20 + Kaikki +
Conyngham Hall parkrun1363824:55 + Kaikki +
Stratford Park parkrun, Stroud1303126:29 + Kaikki +
Warwick Racecourse parkrun1638224:06 + Kaikki +
University of Stirling parkrun1343723:52 + Kaikki +
Jubilee parkrun1121926:42 + Kaikki +
Queen’s parkrun, Glasgow1677925:29 + Kaikki +
Bowling Park parkrun18924:11 + Kaikki +
Rothay Park parkrun1202724:48 + Kaikki +
Zuiderpark parkrun, Den Haag1151722:03 + Kaikki +
Carlisle Park parkrun, Morpeth1293325:44 + Kaikki +
Chevin Forest parkrun1213026:47 + Kaikki +
Roberts Park parkrun1657524:54 + Kaikki +
Beacon Hill Country Park parkrun1192325:36 + Kaikki +
Thames Path parkrun, Woolwich1586323:49 + Kaikki +
3456621:36 + Kaikki   -


Volunteer Summary

RoleOccasions
- Run Director - 32
- Timekeeper - 17
- Token Sorting - 5
- Results Processor - 1
- Photographer - 1
- Communications Person - 5
- Marshal - 35
- Pre-event Setup - 28
- Equipment Storage and Delivery - 5
- Other - 1
- Barcode Scanning - 27
- Post-event Close Down - 24
- Finish Tokens - 11
- Number Checker - 1
- First Timers Welcome - 77
- Funnel Manager - 12
- Finish Token Support - 10
- Tail Walker - 5
- Volunteer Co-ordinator - 10
- Report Writer - 1
- Pacer (5k only) - 5
- Backup Timer - 14
- VI Guide - 1
- Warm Up Leader - 5
- Sign Language Support - 1
- Car Park Marshal - 1
- Event Day Course Check - 25
- parkwalker - 1
Total Credits249

- This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more
here. -



Freedom parkruns

DateTimeLocation
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+


Vapaaehtoistehtävien yhteenveto

TehtäväKerrat
+ Tapahtumavastaava + 33
+ Ajanottaja + 28
+ Polettien järjestäjä + 5
+ Tulosten käsittelijä + 4
+ Kuvaaja + 1
+ Tiedotus ja viestintä + 6
+ Liikenteenohjaaja + 35
+ Tapahtumapaikan pystyttäminen + 29
+ Tavaran varastointi ja toimitus + 6
+ Muut + 2
+ Viivakoodin skannaaja + 46
+ Tapahtumapaikan purkaminen + 25
+ Polettien jakaja + 16
+ Numeron tarkastaja + 1
+ Ensikertalaisten opastus + 82
+ Maalin järjestäjä + 16
+ Polettien jakajan avustaja + 16
+ Takimmainen + 15
+ Vapaaehtoisten koordinaattori + 11
+ Raportin kirjoittaja + 1
+ Jänis + 10
+ Ajanottajan avustaja + 14
+ Näkövammaisen avustaja + 1
+ Alkulämmittelyn vetäjä + 15
+ Viittomakielen avustaja + 1
+ Parkkipaikkaohjaaja + 1
+ Reitin tarkastaja + 57
+ parkwalker + 1
Pisteitä yhteensä316

+ Tämä taulukko sisältää yhteenvedeon kunkin vapaaehtoistehtävän suoritusmääristä.
Huomaa, että kokonaismäärä voi poiketa vapaaehtoispisteiden määrästä; Etenkin jos olet tehnyt useaa tehtävässä samana päivänä.
Lue lisää täältä. +



Freedom parkrunit

PäiväAikaPaikka
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkrunit

ViikkoAlkamispäiväPäättymispäivä(not)parkrunitParas aika
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -323,63 +362,61 @@

Phillip WHETTLOCK (A8
- Locations: 6 -
-
- Finishers: 4,381 + Sijainnit: 7
- Finishes: 20,709 + Osallistujat: 8223
- All-time events: 620 + Maaliintulon kerrat: 36184
- Volunteers: 613 + Kaikki tapahtumat: 1081
- PBs: 3,068 + Vapaaehtoiset: 987
- Average finish time: 00:34:13 + OE:t: 5267
- Average finishes per participant: 4.7 + Keskimääräinen aika: 00:33:14
- Groups: 483 + Seurat: 836
-
+

- Stats last updated: Mon 17 Apr 2023 00:35:25 UTC + Tilastot viimeksi päivitetty: ma 30. syyskuuta 2024 00.36.08
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Tämä sivusto ei saa kopioida kokonaan tai osittain millään tavalla ilman tekijänoikeuksien omistajan lupaa.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -408,8 +455,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/999999/all/index.html index f7ae21e0..477114ba 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/999999/all/index.html @@ -14,7 +14,8 @@ -results | parkrun Finland + +tulokset | parkrun Finland @@ -53,8 +52,8 @@
@@ -66,34 +65,25 @@
@@ -109,10 +99,10 @@ -

Jakub WOLSKI (A999999)

- No results have been recorded yet for this parkrunner. +

Jakub WOLSKI (A999999)

+ ​

- View summary stats for this parkrunner + Katso tämän parkrunnerin tilastoja

@@ -142,63 +132,61 @@

Jakub WOLSKI (A999999
- Locations: 7 -
-
- Finishers: 4,980 + Sijainnit: 7
- Finishes: 22,958 + Osallistujat: 8223
- All-time events: 686 + Maaliintulon kerrat: 36184
- Volunteers: 684 + Kaikki tapahtumat: 1081
- PBs: 3,392 + Vapaaehtoiset: 987
- Average finish time: 00:34:01 + OE:t: 5267
- Average finishes per participant: 4.6 + Keskimääräinen aika: 00:33:14
- Groups: 540 + Seurat: 836
-
+

- Stats last updated: Thu 29 Jun 2023 00:35:28 UTC + Tilastot viimeksi päivitetty: ma 30. syyskuuta 2024 00.36.08
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Tämä sivusto ei saa kopioida kokonaan tai osittain millään tavalla ilman tekijänoikeuksien omistajan lupaa.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -227,8 +225,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/999999/index.html index f77df6c5..40c23454 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fi/contents/parkrunner/999999/index.html @@ -14,7 +14,8 @@ -results | parkrun Finland + +tulokset | parkrun Finland @@ -53,8 +52,8 @@
@@ -66,34 +65,25 @@
@@ -109,7 +99,7 @@ -

Jakub WOLSKI (A999999)

No results have been recorded yet for this parkrunner.

+

Jakub WOLSKI (A999999)

@@ -138,63 +128,61 @@

Jakub WOLSKI (A999999
- Locations: 7 -
-
- Finishers: 4,980 + Sijainnit: 7
- Finishes: 22,958 + Osallistujat: 8223
- All-time events: 686 + Maaliintulon kerrat: 36184
- Volunteers: 684 + Kaikki tapahtumat: 1081
- PBs: 3,392 + Vapaaehtoiset: 987
- Average finish time: 00:34:01 + OE:t: 5267
- Average finishes per participant: 4.6 + Keskimääräinen aika: 00:33:14
- Groups: 540 + Seurat: 836
-
+

- Stats last updated: Thu 29 Jun 2023 00:35:28 UTC + Tilastot viimeksi päivitetty: ma 30. syyskuuta 2024 00.36.08
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Tämä sivusto ei saa kopioida kokonaan tai osittain millään tavalla ilman tekijänoikeuksien omistajan lupaa.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -223,8 +221,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/1309364/all/index.html index 16425818..88109f91 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + participation | parkrun France - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,27 +66,24 @@
@@ -100,7 +93,7 @@
-

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

+

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

@@ -108,543 +101,649 @@ -

Andrew TAYLOR (A1309364)

- Membre du Club parkrun 100 - +

Andrew TAYLOR (A1309364)

+ Membre du Club parkrun 250 + Member of the Volunteer 50 club

- 245 parkruns au total + 297 parkruns au total

Consulter le résumé des stats pour ce parkrunnneur
- A couru le plus récemment dans la catégorie d'âge VH35-39 + A couru le plus récemment dans la catégorie d'âge VH40-44

Résumé des stats pour tous les -
+ RapideMoyen
(mean)
+ Lent
Temps20:0628:4757:34
Gradient d'âge64.51%47.44%23.54%
Place Scratch5165.361021

+
+ RapideMoyen
(mean)
+ Lent
Temps20:0629:2057:34
Gradient d'âge64.51%46.67%23.54%
Place Scratch5182.341021

Meilleurs résultats généraux annuels -
AnnéeMeilleur TempsMeilleur Gradient d'âge
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
AnnéeMeilleur TempsMeilleur Gradient d'âge
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

– Toutes les participations -
ÉvénementDate du FootingNuméro du parkrunPosTempsGradient d'âgeMP?
Clitheroe Castle08/04/20231789735:4637.88% +
ÉvénementDate du FootingNuméro du parkrunPosTempsGradient d'âgeMP?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + MP + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97%   -
Whiteley25/03/202321418332:2441.82% +
Winchester25/11/202346134636:0237.60%   -
Winchester11/03/202342821230:3744.26% +
Whiteley18/11/202324721037:0536.54%   -
Winchester04/03/202342730935:4537.90% +
Whiteley11/11/202324617430:3744.26%   -
Winchester25/02/202342632536:0937.48% +
Winchester21/10/202345731533:5140.03%   -
Winchester18/02/202342530336:3137.11% +
Winchester14/10/202345634233:5439.97%   -
Delamere31/12/202242331536:2537.21% +
Ganger Farm07/10/20234713233:4940.07%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester23/09/202345321928:2247.77%   -
Winchester26/11/202241229335:3137.87% +
Winchester16/09/202345235430:3244.38%   -
Whiteley12/11/202221016534:2839.02% +
Winchester09/09/202345129229:1146.43%   -
Winchester29/10/202240924429:5544.96% +
Delamere02/09/202345822633:2840.49%   -
Winchester22/10/202240833736:0837.22% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester17/09/202240326230:2944.12% +
Winchester29/07/202344622227:3649.09%   -
Winchester10/09/202240231134:3338.93% +
Winchester22/07/202344540537:0036.62%   -
Alice Holt03/09/202241817936:3236.82% +
Whiteley15/07/202322915731:1643.34%   -
Winchester27/08/202240042335:2138.05% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester13/08/202239823431:3042.70% +
Winchester17/06/202344128530:4144.16%   -
Tidworth30/07/2022615151:4226.02% +
Winchester10/06/202344032435:2138.33%   -
Uckfield23/07/20221006028:4346.84% +
Winchester20/05/202343822427:0949.91%   -
Winchester09/07/202239428633:1640.43% +
Winchester13/05/202343733232:4341.42%   -
Eastleigh28/05/202254015531:2042.93% +
Whiteley29/04/202321919635:3138.15%   -
Winchester21/05/202238930733:2840.19% +
Winchester22/04/202343431731:1143.45%   -
Alice Holt14/05/202240216932:0142.01% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Winchester07/05/202238734034:1339.31% +
Whiteley25/03/202321418332:2441.82%   -
Guildford30/04/202242825130:0144.81% +
Winchester11/03/202342821230:3744.26%   -
Winchester23/04/202238522932:0241.99% +
Winchester04/03/202342730935:4537.90%   -
Winchester16/04/202238431033:2340.29% +
Winchester25/02/202342632536:0937.48%   -
Winchester19/03/202238025033:5439.68% +
Winchester18/02/202342530336:3137.11%   -
Alice Holt01/01/202238524237:4635.61% +
Delamere31/12/202242331536:2537.21%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester20/11/202136338445:0729.59% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester09/10/202135739843:0730.96% +
Winchester26/11/202241229335:3137.87%   -
Winchester25/09/202135538955:0324.25% +
Whiteley12/11/202221016534:2839.02%   -
Winchester18/09/202135433938:1234.95% +
Winchester29/10/202240924429:5544.96%   -
Winchester04/09/202135233838:2434.77% +
Winchester22/10/202240833736:0837.22%   -
Winchester28/08/202135139841:0132.55% +
Winchester17/09/202240326230:2944.12%   -
Winchester14/08/202134936055:4623.94% +
Winchester10/09/202240231134:3338.93%   -
Winchester31/07/202134832845:2029.45% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester14/03/202034625851:3825.69% +
Winchester27/08/202240042335:2138.05%   -
Winchester07/03/202034510325:5251.29% +
Winchester13/08/202239823431:3042.70%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Tidworth30/07/2022615151:4226.02%   -
Newbury22/02/202043434631:1142.54% +
Uckfield23/07/20221006028:4346.84%   -
Alice Holt08/02/202036010727:1948.57% +
Winchester09/07/202239428633:1640.43% +   +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% MP   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% MP   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% MP   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% MP   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% MP   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% MP   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% MP   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% MP   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% MP   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% MP   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% MP   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% MP   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% MP   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% MP   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% MP   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% MP   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -678,60 +777,58 @@

Andrew TAYLOR (A1 Localisations: 8

- Finishers: 14 939 + Finishers: 14935
- Nombre de runs effectués: 49 321 + Nombre de runs effectués: 49321
- Nombre total de tous les événements: 1 973 + Nombre total de tous les événements: 1973
Bénévoles: 811
- MP: 6 145 + MP: 6145
Temps moyen: 00:29:10
- Nombre moyen de runs effectués par participant: 3,3 -
-
- Groupes: 1 719 + Groupes: 1757
-
+
- Dernières stats mises à jour: ven. 14 avril 2023 00:35:22 UTC + Dernières stats mises à jour: lun. 30 sept. 2024 00:36:09 UTC
-

© parkrun Global Limited (Company number: 09411750)

Aucune partie de ce site ne peut être reproduite, en tout ou en partie, de quelque manière que ce soit, sans l’autorisation du titulaire du droit d’auteur.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -765,8 +872,8 @@

Andrew TAYLOR (A1 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/1309364/index.html index 638808f8..96c21337 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + participation | parkrun France - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,27 +66,24 @@
@@ -100,7 +93,7 @@
-

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

+

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

@@ -108,175 +101,185 @@ -

Andrew TAYLOR (A1309364)

- Membre du Club parkrun 100 - +

Andrew TAYLOR (A1309364)

+ Membre du Club parkrun 250 + Member of the Volunteer 50 club -

245 parkruns au total

+

297 parkruns au total

Consulter les stats de ce parkrunneur tous parkruns confondus
- A couru le plus récemment dans la catégorie d'âge VH35-39 -

Footings les Plus Récents

ÉvénementDate du FootingPos. GenrePlace ScratchTempsGradient d'âge
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Récapitulatifs parkrun

ÉvénementFootingsMeilleure position genreMeilleure position généraleMeilleur Temps  
Winchester parkrun146121300:20:18 + A couru le plus récemment dans la catégorie d'âge VH40-44 +

Footings les Plus Récents

ÉvénementDate du FootingPos. GenrePlace ScratchTempsGradient d'âge
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Récapitulatifs parkrun

ÉvénementFootingsMeilleure position genreMeilleure position généraleMeilleur Temps  
Winchester parkrun173121320:18 + Tout +
Whiteley parkrun1410714629:06 + Tout +
Delamere parkrun11232321:42 Tout - Graph It!
Delamere parkrun8232300:21:42 +
Eastleigh parkrun6242524:08 Tout - Graph It!
Whiteley parkrun610714600:29:06 +
Alice Holt parkrun59010727:19 Tout - Graph It!
Alice Holt parkrun59010700:27:19 +
Southampton parkrun5687021:17 Tout - Graph It!
Southampton parkrun5687000:21:17 +
Fell Foot parkrun, Newby Bridge4212223:48 Tout - Graph It!
Eastleigh parkrun5242500:24:08 +
Witton parkrun4303525:40 Tout - Graph It!
Congleton parkrun49900:20:06 +
Northwich parkrun4485224:55 Tout - Graph It!
Witton parkrun4303500:25:40 +
Newbury parkrun4829123:49 Tout - Graph It!
Northwich parkrun4485200:24:55 +
Congleton parkrun49920:06 Tout - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Medina I.O.W. parkrun4667525:13 Tout - Graph It!
Andover parkrun2242600:22:24 +
Ganger Farm parkrun38013229:25 Tout - Graph It!
Ganger Farm parkrun29713500:29:25 +
Hanley parkrun2333922:31 Tout - Graph It!
Hanley parkrun2333900:22:31 +
Burnley parkrun212718929:06 Tout - Graph It!
Newbury parkrun2829100:23:49 +
Queen Elizabeth parkrun2364026:36 Tout - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Andover parkrun2242622:24 Tout - Graph It!
Hagley parkrun1182000:22:38 +
Abingdon parkrun114220229:14 Tout -  
Ormskirk parkrun120930300:31:04 +
Netley Abbey parkrun1586424:21 Tout -  
Basingstoke parkrun111212900:24:31 +
Hilly Fields parkrun1859925:03 Tout -  
Cuerden Valley parkrun1192000:24:47 +
Brockenhurst parkrun112718632:41 Tout -  
Seven Fields parkrun1546700:28:28 +
Wimpole Estate parkrun112916928:07 Tout -  
Netley Abbey parkrun1586400:24:21 +
Clumber Park parkrun112117629:51 Tout -  
Mountbatten School parkrun17110100:31:29 +
Cuerden Valley parkrun1192024:47 Tout -  
Clitheroe Castle parkrun1639700:35:46 +
Hamilton Lake parkrun1151621:47 Tout -  
Medina I.O.W. parkrun19513900:30:57 +
Fountains Abbey parkrun1283020:33 Tout -  
Hogmoor Inclosure parkrun111314000:29:34 +
Ormskirk parkrun120930331:04 Tout -  
Milano Nord parkrun1475300:27:49 +
Pendle parkrun1465926:37 Tout -  
Jersey parkrun111018500:30:53 +
Woking parkrun1485824:01 Tout -  
Canterbury parkrun1323600:27:29 +
Hagley parkrun1182022:38 Tout -  
Penrhyn parkrun1232600:24:33 +
Penrhyn parkrun1232624:33 Tout -  
Hyndburn parkrun1425300:29:55 +
Salisbury parkrun119326729:45 Tout -  
Woking parkrun1485800:24:01 +
Jersey parkrun111018530:53 Tout -  
Fountains Abbey parkrun1283000:20:33 +
Haigh Woodland parkrun18916837:04 Tout -  
Bushy parkrun1681102100:33:01 +
Stretford parkrun127540530:23 Tout -  
Clumber Park parkrun112117600:29:51 +
Portsmouth Lakeside parkrun1818726:32 Tout -  
Wimpole Estate parkrun112916900:28:07 +
Fareham parkrun19011428:52 Tout -  
Tidworth parkrun18615100:51:42 +
Milano Nord parkrun1475327:49 Tout -  
Hilly Fields parkrun1859900:25:03 +
Richmond Olympic parkrun15521:59 Tout -  
Tawd Valley parkrun18111000:29:25 +
Crewe parkrun112315430:05 Tout -  
Watermeadows parkrun1151500:23:51 +
Hogmoor Inclosure parkrun111314029:34 Tout -  
Eden Project parkrun111116200:30:21 +
Catford parkrun19512527:24 Tout -  
Catford parkrun19512500:27:24 +
Clitheroe Castle parkrun1639735:46 Tout -  
Crewe parkrun112315400:30:05 +
Pocket parkrun112419533:47 Tout -  
Long Eaton parkrun118122900:28:06 +
Ford parkrun1477432:29 Tout -  
Fareham parkrun19511400:28:52 +
Watermeadows parkrun1151523:51 Tout -  
Phoenix parkrun1232600:27:31 +
Mountbatten School parkrun17110131:29 Tout -  
Guildford parkrun117125100:30:01 +
Uckfield parkrun1416028:43 Tout -  
Pendle parkrun1465900:26:37 +
Tawd Valley parkrun18111029:25 Tout -  
Heaton parkrun133846700:31:01 +
Seven Fields parkrun1546728:28 Tout -  
Hamilton Lake parkrun1151600:21:47 +
Itchen Valley Country parkrun110613529:53 Tout -  
Brockenhurst parkrun112718600:32:41 +
Bartley Park parkrun1628430:26 Tout -  
Itchen Valley Country parkrun110713500:29:53 +
Tidworth parkrun18615151:42 Tout -  
Burnley parkrun114120400:29:06 +
Bushy parkrun1681102133:01 Tout -  
Uckfield parkrun1416000:28:43 +
Basingstoke parkrun111212924:31 Tout -  
Abingdon parkrun114220200:29:14 +
Heaton parkrun133846731:01 Tout -  
Pocket parkrun112419500:33:47 +
Guildford parkrun117125130:01 Tout -  
Bolton parkrun116221800:31:49 +
Hyndburn parkrun1425329:55 Tout -  
Richmond Olympic parkrun15500:21:59 +
Phoenix parkrun1232627:31 Tout -  
Poole parkrun121328400:28:59 +
Canterbury parkrun1323627:29 Tout -  
Portsmouth Lakeside parkrun1818700:26:32 +
Valentines parkrun1698025:14 Tout -  
Salisbury parkrun119326700:29:45 +
Poole parkrun121328428:59 Tout -  
2455500:20:06 +
Long Eaton parkrun118122928:06 + Tout +
Bolton parkrun116221831:49 + Tout +
Eden Project parkrun111116230:21 + Tout +
2975520:06 Tout  


Récapitulatif de bénévolat

RôleNombre de fois
- Responsable du run - 21
- Responsable chrono - 2
- Classement des jetons - 8
- Mise en ligne des participations - 6
- Photographe - 4
- Aiguilleur - 4
- Balisage du parcours - 6
- Rangement & Mise à disposition de l'équipement - 2
- Scannage des codes-barres - 2
- Débalisage du parcours - 10
- Distribution des jetons - 1
- Vérification des jetons - 2
- Briefing des nouveaux participants - 1
- Gestion SAS - 1
- Fermeur marcheur - 4
- Coordinateur des bénévoles - 1
- Rédacteur du compte-rendu - 10
- Lièvre - 1
Total crédits58

+ Responsable du run +

21
+ Responsable chrono + 2
+ Classement des jetons + 8
+ Mise en ligne des participations + 6
+ Photographe + 4
+ Aiguilleur + 5
+ Balisage du parcours + 6
+ Rangement & Mise à disposition de l'équipement + 2
+ Scannage des codes-barres + 3
+ Débalisage du parcours + 10
+ Distribution des jetons + 1
+ Vérification des jetons + 2
+ Accueil des nouveaux participants + 1
+ Gestion SAS + 1
+ Fermeur marcheur + 4
+ Coordinateur des bénévoles + 1
+ Rédacteur du compte-rendu + 10
+ Meneur d'allure + 1
Total crédits60

Ce tableau récapitule le nombre d'occasions où chaque rôle de bénévole a été rempli.
Veuillez noter que le total peut différer du total de vos crédits de bénévolat ; si vous avez effectué plusieurs tâches le même jour.
Pour en savoir plus ici.



parkrun Freedoms

DateTempsEmplacement
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(pas)parkruns

SemaineDate départDate Fin(pas)parkrunsMeilleur Temps
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -310,60 +313,58 @@

Andrew TAYLOR (A1 Localisations: 8

- Finishers: 14 939 + Finishers: 14935
- Nombre de runs effectués: 49 321 + Nombre de runs effectués: 49321
- Nombre total de tous les événements: 1 973 + Nombre total de tous les événements: 1973
Bénévoles: 811
- MP: 6 145 + MP: 6145
Temps moyen: 00:29:10
- Nombre moyen de runs effectués par participant: 3,3 -
-
- Groupes: 1 719 + Groupes: 1757
-
+
- Dernières stats mises à jour: ven. 14 avril 2023 00:35:22 UTC + Dernières stats mises à jour: lun. 30 sept. 2024 00:36:09 UTC
-

© parkrun Global Limited (Company number: 09411750)

Aucune partie de ce site ne peut être reproduite, en tout ou en partie, de quelque manière que ce soit, sans l’autorisation du titulaire du droit d’auteur.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -397,8 +408,8 @@

Andrew TAYLOR (A1 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/2705084/all/index.html index e83c53a6..20150cef 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + participation | parkrun France - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,27 +66,24 @@
@@ -100,7 +93,7 @@
-

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

+

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

@@ -108,10 +101,10 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- Aucun résultat n'a été enregistré pour ce parkrunneur. + ​

Consulter le résumé des stats pour ce parkrunneur

@@ -146,60 +139,58 @@

Duncan BOOTH (A27 Localisations: 8

- Finishers: 14 939 + Finishers: 14935
- Nombre de runs effectués: 49 321 + Nombre de runs effectués: 49321
- Nombre total de tous les événements: 1 973 + Nombre total de tous les événements: 1973
Bénévoles: 811
- MP: 6 145 + MP: 6145
Temps moyen: 00:29:10
- Nombre moyen de runs effectués par participant: 3,3 -
-
- Groupes: 1 720 + Groupes: 1757
-
+
- Dernières stats mises à jour: lun. 17 avril 2023 00:35:27 UTC + Dernières stats mises à jour: lun. 30 sept. 2024 00:36:09 UTC
-

© parkrun Global Limited (Company number: 09411750)

Aucune partie de ce site ne peut être reproduite, en tout ou en partie, de quelque manière que ce soit, sans l’autorisation du titulaire du droit d’auteur.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -233,8 +234,8 @@

Duncan BOOTH (A27 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/2705084/index.html index cb6a892f..1dc8a4ee 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + participation | parkrun France - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,27 +66,24 @@
@@ -100,7 +93,7 @@
-

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

+

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

@@ -108,15 +101,15 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

Aucun résultat n'a été enregistré pour ce parkrunneur.

Récapitulatif de bénévolat

RôleNombre de fois
- Aiguilleur - 260
- Vélo de tête - 130
- Verification du Parcours - Jour de l'évènement - 9
Total crédits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Récapitulatif de bénévolat

RôleNombre de fois
+ Aiguilleur + 350
+ Vélo de tête + 130
+ Verification du Parcours - Jour de l'évènement + 82
Total crédits540

Ce tableau récapitule le nombre d'occasions où chaque rôle de bénévole a été rempli.
Veuillez noter que le total peut différer du total de vos crédits de bénévolat ; si vous avez effectué plusieurs tâches le même jour.
Pour en savoir plus ici.



@@ -150,60 +143,58 @@

Duncan BOOTH (A27 Localisations: 8

- Finishers: 14 939 + Finishers: 14935
- Nombre de runs effectués: 49 321 + Nombre de runs effectués: 49321
- Nombre total de tous les événements: 1 973 + Nombre total de tous les événements: 1973
Bénévoles: 811
- MP: 6 145 + MP: 6145
Temps moyen: 00:29:10
- Nombre moyen de runs effectués par participant: 3,3 -
-
- Groupes: 1 720 + Groupes: 1757
-
+
- Dernières stats mises à jour: lun. 17 avril 2023 00:35:27 UTC + Dernières stats mises à jour: lun. 30 sept. 2024 00:36:09 UTC
-

© parkrun Global Limited (Company number: 09411750)

Aucune partie de ce site ne peut être reproduite, en tout ou en partie, de quelque manière que ce soit, sans l’autorisation du titulaire du droit d’auteur.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -237,8 +238,8 @@

Duncan BOOTH (A27 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/482/all/index.html index 2b544d52..d2501b42 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + participation | parkrun France - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,27 +66,24 @@
@@ -100,7 +93,7 @@
-

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

+

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

@@ -108,1655 +101,1821 @@ -

Danny NORMAN (A482)

+

Danny NORMAN (A482)

Membre du Club parkrun 500 - + Member of the Volunteer 250 club

- 785 parkruns au total + 867 parkruns au total

Consulter le résumé des stats pour ce parkrunnneur
- A couru le plus récemment dans la catégorie d'âge VH40-44 + A couru le plus récemment dans la catégorie d'âge VH45-49

Résumé des stats pour tous les -
+ RapideMoyen
(mean)
+ Lent
Temps16:2521:0459:17
Gradient d'âge79.25%65.45%23.56%
Place Scratch134.831692

+
+ RapideMoyen
(mean)
+ Lent
Temps16:2521:2659:17
Gradient d'âge79.25%64.63%23.56%
Place Scratch138.841692

Meilleurs résultats généraux annuels -
AnnéeMeilleur TempsMeilleur Gradient d'âge
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
AnnéeMeilleur TempsMeilleur Gradient d'âge
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

– Toutes les participations -
ÉvénementDate du FootingNuméro du parkrunPosTempsGradient d'âgeMP?
Harleston Magpies08/04/2023793525:1255.42% +
ÉvénementDate du FootingNuméro du parkrunPosTempsGradient d'âgeMP?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + MP + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34%   -
Cannock Chase01/04/20232434425:4954.10% +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Kingston25/03/202360216430:0946.32% +
Quakers Walk25/11/2023126825:0556.08%   -
Wolford Wood18/03/202352730:2445.94% +
Aston Hall18/11/202352225:0156.23%   -
Kingston11/03/202360015027:1851.16% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Stockley Country04/03/2023817935:3239.31% +
Belvoir Castle04/11/2023911925:4254.73%   -
Chasewater25/02/202310010026:1953.07% +
Five Arches28/10/202365422:5861.25%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Dover Waterfront21/10/202374525:2255.45%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Rushcliffe14/10/20235087323:5458.86%   -
Worcester04/02/202354318529:3047.34% +
Kingston07/10/202363033150:2927.86%   -
Crane Park28/01/202349014550:3727.59% +
Maaraue03/10/20231012522:3462.33%   -
Kingston21/01/202359431139:3935.22% +
University of Northampton30/09/2023112223:2460.11%   -
Brooklands14/01/202313018830:4445.44% +
Clifton23/09/20231911025:1455.75%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Wisbech16/09/202351523:0361.03%   -
Kingston01/01/202359113340:3134.47% +
Holbrooks09/09/202362223:4359.31%   -
Kingston31/12/202259026442:4432.68% +
Wyre Forest02/09/20233404825:5654.24%   -
Bushy Park25/12/2022909169244:3931.28% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Riverfront19/08/20232594622:5761.29%   -
Kingston17/12/202258818059:1723.56% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston10/12/202258723255:4025.09% +
Kingston05/08/20236216723:2160.24%   -
Beacon03/12/2022737326:4152.34% +
Kingston29/07/20236208725:0955.93%   -
Ganger Farm26/11/2022211426:3452.57% +
Kingston22/07/20236199224:2457.65%   -
Bushy Park19/11/2022903110553:2326.16% +
Severn Valley Country15/07/20231411626:1353.66%   -
Leavesden Country12/11/202246928:3248.95% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Thornham Walks01/07/202353826:5251.99%   -
Durlston Country Park29/10/2022335032:4542.65% +
Kingston24/06/20236156524:0957.83% +   +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% MP   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% MP   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% MP   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% MP   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% MP   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% MP   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% MP   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% MP   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% MP   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% MP   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% MP   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% MP   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% MP   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% MP   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% MP   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% MP   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% MP   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% MP   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% MP   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% MP   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% MP   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% MP   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% MP   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% MP   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% MP   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% MP   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% MP   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% MP   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% MP   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% MP   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% MP   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% MP   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1790,60 +1949,58 @@

Danny NORMAN (A48 Localisations: 8

- Finishers: 14 939 + Finishers: 14935
- Nombre de runs effectués: 49 321 + Nombre de runs effectués: 49321
- Nombre total de tous les événements: 1 973 + Nombre total de tous les événements: 1973
Bénévoles: 811
- MP: 6 145 + MP: 6145
Temps moyen: 00:29:10
- Nombre moyen de runs effectués par participant: 3,3 -
-
- Groupes: 1 719 + Groupes: 1757
-
+
- Dernières stats mises à jour: ven. 14 avril 2023 00:35:22 UTC + Dernières stats mises à jour: lun. 30 sept. 2024 00:36:09 UTC
-

© parkrun Global Limited (Company number: 09411750)

Aucune partie de ce site ne peut être reproduite, en tout ou en partie, de quelque manière que ce soit, sans l’autorisation du titulaire du droit d’auteur.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1877,8 +2044,8 @@

Danny NORMAN (A48 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/482/index.html index a44b612f..d35576bc 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + participation | parkrun France - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,27 +66,24 @@
@@ -100,7 +93,7 @@
-

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

+

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

@@ -108,879 +101,1005 @@ -

Danny NORMAN (A482)

+

Danny NORMAN (A482)

Membre du Club parkrun 500 - + Member of the Volunteer 250 club -

785 parkruns au total

+

867 parkruns au total

Consulter les stats de ce parkrunneur tous parkruns confondus
- A couru le plus récemment dans la catégorie d'âge VH40-44 -

Footings les Plus Récents

ÉvénementDate du FootingPos. GenrePlace ScratchTempsGradient d'âge
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Récapitulatifs parkrun

ÉvénementFootingsMeilleure position genreMeilleure position généraleMeilleur Temps  
Bushy parkrun2321100:16:25 + A couru le plus récemment dans la catégorie d'âge VH45-49 +

Footings les Plus Récents

ÉvénementDate du FootingPos. GenrePlace ScratchTempsGradient d'âge
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Récapitulatifs parkrun

ÉvénementFootingsMeilleure position genreMeilleure position généraleMeilleur Temps  
Bushy parkrun2341116:25 + Tout +
Kingston parkrun471116:51 + Tout +
Bedfont Lakes parkrun81117:04 + Tout +
Nonsuch parkrun71116:52 + Tout +
Richmond parkrun71117:13 + Tout +
Crane Park parkrun61116:48 + Tout +
Riddlesdown parkrun42217:01 + Tout +
Bexley parkrun31117:48 + Tout +
Tilgate parkrun31117:10 + Tout +
Frimley Lodge parkrun31117:11 + Tout +
Hilly Fields parkrun31117:50 + Tout +
Old Deer Park parkrun31117:41 + Tout +
Guildford parkrun31117:17 + Tout +
Homewood parkrun3151722:21 + Tout +
Brockwell parkrun, Herne Hill31116:56 + Tout +
Southwark parkrun34417:27 + Tout +
Fulham Palace parkrun33317:47 + Tout +
Cannon Hill parkrun, Birmingham3111118:04 + Tout +
Gunnersbury parkrun31116:51 + Tout +
Wimbledon Common parkrun35517:27 + Tout +
Brighton & Hove parkrun31116:27 + Tout +
Basingstoke parkrun35517:48 + Tout +
Black Park parkrun31117:25 + Tout +
Dulwich parkrun33317:11 + Tout +
Bedgebury Pinetum parkrun28921:24 + Tout +
Harrow parkrun25520:23 + Tout +
Netley Abbey parkrun21117:21 + Tout +
Ellenbrook Fields parkrun2141519:58 + Tout +
Worthing parkrun28918:44 + Tout +
Grovelands parkrun, Enfield22217:21 + Tout +
Beckton parkrun23317:24 + Tout +
Gladstone parkrun21117:09 + Tout +
Hackney Marshes parkrun22216:46 + Tout +
Burgess parkrun22216:45 + Tout +
Orpington parkrun22217:27 + Tout +
Barking parkrun22216:45 Tout - Graph It!
Kingston parkrun351100:16:51 +
Southampton parkrun23316:44 Tout - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Alice Holt parkrun21117:59 Tout - Graph It!
Richmond parkrun71100:17:13 +
Woodley parkrun21117:02 Tout - Graph It!
Nonsuch parkrun71100:16:52 +
Upton Court parkrun22217:24 Tout - Graph It!
Crane Park parkrun61100:16:48 +
Chelmsford Central parkrun22217:24 Tout - Graph It!
Brighton & Hove parkrun31100:16:27 +
Mole Valley parkrun2262622:56 Tout - Graph It!
Fulham Palace parkrun33300:17:47 +
Durlston Country Park parkrun2355032:45 Tout - Graph It!
Frimley Lodge parkrun31100:17:11 +
Hazelwood parkrun2182222:21 Tout - Graph It!
Gunnersbury parkrun31100:16:51 +
Southsea parkrun23317:55 Tout - Graph It!
Bexley parkrun31100:17:48 +
St Albans parkrun21116:37 Tout - Graph It!
Tilgate parkrun31100:17:10 +
Havant parkrun21117:46 Tout - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Ashford parkrun22217:57 Tout - Graph It!
Southwark parkrun34400:17:27 +
Bedford parkrun21116:55 Tout - Graph It!
Basingstoke parkrun35500:17:48 +
Margate parkrun21118:16 Tout - Graph It!
Hilly Fields parkrun31100:17:50 +
Milton Keynes parkrun23317:26 Tout - Graph It!
Black Park parkrun31100:17:25 +
Preston Park parkrun, Brighton22217:40 Tout - Graph It!
Riddlesdown parkrun32200:17:01 +
Shorne Woods parkrun21118:14 Tout - Graph It!
Dulwich parkrun33300:17:11 +
Canons Park parkrun27720:50 Tout - Graph It!
Guildford parkrun31100:17:17 +
Osterley parkrun21117:57 Tout - Graph It!
Old Deer Park parkrun31100:17:41 +
Eastleigh parkrun27719:14 Tout - Graph It!
Wimbledon Common parkrun35500:17:27 +
Brooklands parkrun2394223:22 Tout - Graph It!
Homewood parkrun3151700:22:21 +
Great Lines parkrun, Medway25518:25 Tout - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Malling Rec parkrun2738526:59 Tout - Graph It!
Pymmes parkrun21100:17:06 +
Crystal Palace parkrun21117:24 Tout - Graph It!
Hove Promenade parkrun27700:19:23 +
Northala Fields parkrun22218:06 Tout - Graph It!
Netley Abbey parkrun21100:17:21 +
Northampton parkrun21116:56 Tout - Graph It!
Mile End parkrun21100:16:53 +
Oak Hill parkrun21117:13 Tout - Graph It!
Southampton parkrun23300:16:44 +
Lloyd parkrun, Croydon21118:01 Tout - Graph It!
Northala Fields parkrun22200:18:06 +
Newbury parkrun21117:20 Tout - Graph It!
Hockley Woods parkrun26600:21:09 +
Cranleigh parkrun26620:49 Tout - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Littlehampton Prom parkrun2384324:22 Tout - Graph It!
Upton Court parkrun22200:17:24 +
Whitstable parkrun23318:12 Tout - Graph It!
Alice Holt parkrun21100:17:59 +
Bethlem Royal Hospital parkrun2263223:22 Tout - Graph It!
Osterley parkrun21100:17:57 +
Cyclopark parkrun2353824:01 Tout - Graph It!
Burgess parkrun22200:16:45 +
Hockley Woods parkrun26621:09 Tout - Graph It!
Gladstone parkrun21100:17:09 +
South Oxhey parkrun21119:13 Tout - Graph It!
Havant parkrun21100:17:46 +
Pymmes parkrun21117:06 Tout - Graph It!
Cranleigh parkrun26600:20:49 +
Hastings parkrun291120:41 Tout - Graph It!
Finsbury parkrun22200:17:15 +
Wycombe Rye parkrun22217:17 Tout - Graph It!
Southsea parkrun23300:17:55 +
Hove Promenade parkrun27719:23 Tout - Graph It!
Margate parkrun21100:18:16 +
Banstead Woods parkrun21117:31 Tout - Graph It!
Northampton parkrun21100:16:56 +
Wormwood Scrubs parkrun21118:00 Tout - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Roundshaw Downs parkrun23318:14 Tout - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Mile End parkrun21116:53 Tout - Graph It!
Crystal Palace parkrun21100:17:24 +
Bevendean Down parkrun28923:21 Tout - Graph It!
Eastleigh parkrun27700:19:14 +
Finsbury parkrun22217:15 Tout - Graph It!
Hastings parkrun291100:20:41 +
Tooting Common parkrun2181819:14 Tout - Graph It!
Banstead Woods parkrun21100:17:31 +
Bromley parkrun13317:18 Tout - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Houghton Hall parkrun1131321:48 Tout - Graph It!
Hackney Marshes parkrun22200:16:46 +
Sittingbourne parkrun18820:56 Tout - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Sharpham Road Playing Fields parkrun1253124:41 Tout - Graph It!
Woodley parkrun21100:17:02 +
Gadebridge parkrun1141422:22 Tout - Graph It!
Tooting Common parkrun2181800:19:14 +
Chilton Fields parkrun1405428:26 Tout - Graph It!
Milton Keynes parkrun23300:17:26 +
Storeys Field parkrun115121128:49 Tout - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Hadleigh parkrun, Essex1252624:27 Tout - Graph It!
Barking parkrun22200:16:45 +
Marple parkrun11117:15 Tout - Graph It!
Canons Park parkrun27700:20:50 +
Portsmouth Lakeside parkrun19919:12 Tout - Graph It!
Newbury parkrun21100:17:20 +
Grove Fields parkrun1578528:03 Tout - Graph It!
Shorne Woods parkrun21100:18:14 +
Banbury parkrun1222321:16 Tout - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Graves parkrun11118:18 Tout - Graph It!
Mole Valley parkrun2262600:22:56 +
Watermead Country Park parkrun110818235:52 Tout - Graph It!
Oak Hill parkrun21100:17:13 +
Eastbourne parkrun12217:24 Tout - Graph It!
Cyclopark parkrun2353800:24:01 +
Malahide parkrun11116:54 Tout - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Fareham parkrun16619:21 Tout - Graph It!
South Oxhey parkrun21100:19:13 +
Sutcliffe parkrun113117230:34 Tout - Graph It!
Chelmsford Central parkrun22200:17:24 +
Fritton Lake parkrun11118:26 Tout - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Bicester parkrun14420:13 Tout - Graph It!
Bevendean Down parkrun28900:23:21 +
Sandringham parkrun1466330:18 Tout - Graph It!
Bedford parkrun21100:16:55 +
Luton Wardown parkrun191019:36 Tout - Graph It!
Whitstable parkrun23300:18:12 +
Cwmbran parkrun1171723:29 Tout - Graph It!
Orpington parkrun22200:17:27 +
Broadwater parkrun110321335:19 Tout - Graph It!
Ashford parkrun22200:17:57 +
Basildon parkrun15518:13 Tout - Graph It!
Hazelwood parkrun2182200:22:21 +
Marecchia parkrun11119:50 Tout - Graph It!
Brooklands parkrun2394200:23:22 +
Harleston Magpies parkrun1293525:12 Tout - Graph It!
Wycombe Rye parkrun22200:17:17 +
Kingsway parkrun, Gloucester1192021:20 Tout - Graph It!
Harrow parkrun25500:20:23 +
Bryn Bach parkrun11116:50 Tout - Graph It!
Beckton parkrun23300:17:24 +
Mersea Island parkrun1121220:59 Tout - Graph It!
St Albans parkrun21100:16:37 +
Charlton parkrun18213032:05 Tout - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
parkrun de Rouen15521:41 Tout -  
Buckingham parkrun12200:18:37 +
Dallas Burston Polo Club parkrun19614732:26 Tout -  
Thomas Mills parkrun1486500:30:19 +
Ashton Court parkrun1859522:59 Tout -  
Leamington parkrun12200:18:52 +
Tøyen parkrun1668526:32 Tout -  
Church Mead parkrun16610200:32:53 +
The Great Field parkrun19313529:12 Tout -  
Letchworth parkrun1141400:23:13 +
Castle Park parkrun1394122:34 Tout -  
Mulbarton parkrun12200:19:55 +
Swanley parkrun19712531:18 Tout -  
Arrow Valley parkrun13300:18:05 +
Greenwich parkrun12218:07 Tout -  
Frogmary Green Farm parkrun1597200:25:58 +
Neckarau parkrun1243027:11 Tout -  
Sutton Park parkrun1475500:24:54 +
Bury Field parkrun1669033:07 Tout -  
Reigate Priory parkrun16600:19:06 +
Clifton parkrun1101025:14 Tout -  
Bury St Edmunds parkrun13300:18:17 +
Alton Water parkrun1538335:09 Tout -  
Pollok parkrun, Glasgow11100:17:00 +
Colwick parkrun18819:46 Tout -  
Kingdom parkrun1222500:24:39 +
Melksham parkrun1171724:31 Tout -  
Barclay parkrun15600:23:13 +
Markshall Estate parkrun110315632:26 Tout -  
Chippenham parkrun1212100:20:08 +
Rogiet parkrun1151624:27 Tout -  
Ipswich parkrun11100:17:34 +
Bartley Park parkrun18415132:38 Tout -  
Itchen Valley Country parkrun1476100:27:37 +
Lydiard parkrun18818:25 Tout -  
Neckarau parkrun1243000:27:11 +
Little Stoke parkrun11117:03 Tout -  
Brandon Country Park parkrun11100:18:30 +
Letchworth parkrun1141423:13 Tout -  
Boston parkrun17700:21:18 +
Belvoir Castle parkrun1131925:42 Tout -  
University Parks parkrun119032600:31:42 +
Andover parkrun11117:33 Tout -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Rushcliffe parkrun1617323:54 Tout -  
Lullingstone parkrun17700:21:21 +
Cirencester parkrun1222422:40 Tout -  
Coventry parkrun1292900:20:51 +
Southall parkrun1557531:38 Tout -  
Berkeley Green parkrun1233100:28:31 +
Forest of Dean parkrun1182224:51 Tout -  
Mersea Island parkrun1121200:20:59 +
parkrun des Dougnes, Cubnezais12219:42 Tout -  
Aylesbury parkrun11100:17:51 +
South Woodham Ferrers parkrun18821:14 Tout -  
Royal Tunbridge Wells parkrun18900:19:23 +
Marine Parade parkrun17711129:24 Tout -  
Southall parkrun1557500:31:38 +
Coventry parkrun1292920:51 Tout -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Wotton parkrun1182124:45 Tout -  
Pomphrey Hill parkrun1364100:23:02 +
Gloucester City parkrun1171922:35 Tout -  
Henley-on-Thames parkrun1111100:22:25 +
Great Salterns parkrun19212430:27 Tout -  
Aachener Weiher parkrun1101100:24:55 +
Bedworth parkrun1171722:14 Tout -  
Penrose parkrun1151600:19:40 +
University Parks parkrun119032631:42 Tout -  
King’s Lynn parkrun1151500:20:07 +
Hampstead Heath parkrun11117:45 Tout -  
Fulbourn Hospital parkrun1344700:24:59 +
Great Denham parkrun16619:27 Tout -  
Fareham parkrun16600:19:21 +
Downham Market Academy parkrun1121324:35 Tout -  
Brockenhurst parkrun13300:18:23 +
Ipswich parkrun11117:34 Tout -  
Canterbury parkrun16600:21:56 +
Sixfields Upton parkrun18819:58 Tout -  
Alton Water parkrun1538300:35:09 +
Rendlesham Forest parkrun1264637:01 Tout -  
Littleport parkrun1445100:25:16 +
Frogmary Green Farm parkrun1597225:58 Tout -  
Newport parkrun11100:17:29 +
Harrow Lodge parkrun11118:48 Tout -  
California Country parkrun1649000:28:49 +
Witney parkrun1202022:34 Tout -  
Thornbury parkrun1323400:28:19 +
Leamington parkrun12218:52 Tout -  
Greenwich parkrun12200:18:07 +
Brockenhurst parkrun13318:23 Tout -  
Seven Fields parkrun1475500:26:28 +
Hogmoor Inclosure parkrun1262625:26 Tout -  
Highbury Fields parkrun11100:17:25 +
Hastings High School parkrun1637827:33 Tout -  
The Great Field parkrun19313500:29:12 +
Cannock Chase parkrun1384425:49 Tout -  
Street parkrun1283500:25:52 +
Wimpole Estate parkrun1202122:14 Tout -  
South Norwood parkrun1121200:21:11 +
Haverhill parkrun1121323:32 Tout -  
Dunstable Downs parkrun1374300:24:58 +
Edenbrook Country parkrun110514828:01 Tout -  
Melton Mowbray parkrun1192200:22:38 +
Maidstone River Park parkrun13318:00 Tout -  
Horsham parkrun14500:18:16 +
Cheltenham parkrun12217:24 Tout -  
Irchester Country parkrun1586200:25:13 +
Victoria Dock parkrun1273020:04 Tout -  
Stratford-upon-Avon parkrun1202500:21:14 +
Ekebergsletta parkrun1304325:57 Tout -  
Wotton parkrun1182100:24:45 +
Oxford parkrun11117:18 Tout -  
Bath Skyline parkrun1192000:21:08 +
Aylesbury parkrun11117:51 Tout -  
Great Dunmow parkrun14400:20:25 +
Mote Park parkrun19712231:28 Tout -  
Corby parkrun18800:23:09 +
Riverfront parkrun1404622:57 Tout -  
Bracknell parkrun18800:20:04 +
Newent parkrun1182225:27 Tout -  
Cromhall parkrun1151600:24:20 +
Clapham Common parkrun1404220:22 Tout -  
Perry Hall parkrun1464900:24:58 +
Llanishen Park parkrun1303323:48 Tout -  
Gunpowder parkrun12200:17:34 +
Heartwood Forest parkrun1252721:41 Tout -  
Luton Wardown parkrun191000:19:36 +
Walthamstow parkrun11117:48 Tout -  
Ifield Mill Pond parkrun1373800:24:33 +
Malmö Ribersborg parkrun111215128:46 Tout -  
March parkrun15500:21:11 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 Tout -  
Roding Valley parkrun1111300:21:26 +
Huntingdon parkrun1202121:10 Tout -  
Charlton parkrun18213000:32:05 +
Felixstowe parkrun1121221:07 Tout -  
Malmö Ribersborg parkrun111215100:28:46 +
Tidworth parkrun110815535:14 Tout -  
Worcester parkrun114418500:29:30 +
Brandon Country Park parkrun11118:30 Tout -  
Wolford Wood parkrun1212700:30:24 +
Prospect parkrun1232322:42 Tout -  
Fire Service College parkrun1181900:22:12 +
Mildenhall Hub parkrun1273124:33 Tout -  
Panshanger parkrun17700:20:14 +
York parkrun12217:12 Tout -  
Conkers parkrun12200:17:46 +
Thetford parkrun1161721:45 Tout -  
Banbury parkrun1222300:21:16 +
Great Dunmow parkrun14420:25 Tout -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Leavesden Country parkrun1506928:32 Tout -  
Rushmere parkrun1131400:22:39 +
Catford parkrun1303322:32 Tout -  
Whiteley parkrun1141500:20:56 +
Lordship Recreation Ground parkrun19112425:22 Tout -  
Sandringham parkrun1466300:30:18 +
Rugby parkrun1181822:26 Tout -  
Victoria Dock parkrun1283000:20:04 +
Mulbarton parkrun12219:55 Tout -  
Queen Elizabeth parkrun12200:19:08 +
Swaffham parkrun191022:19 Tout -  
Lordship Recreation Ground parkrun19112400:25:22 +
Ganger Farm parkrun19811426:34 Tout -  
Somerdale Pavilion parkrun1384600:31:17 +
Beckenham Place parkrun1121220:28 Tout -  
Dartford parkrun11100:17:59 +
Forest Rec parkrun1677626:35 Tout -  
Winchester parkrun14500:18:28 +
Street parkrun1283525:52 Tout -  
Stratford Park parkrun, Stroud1566500:27:51 +
Market Bosworth Country Park parkrun110614435:35 Tout -  
Sherwood Pines parkrun1161800:21:33 +
Whiteley parkrun1141520:56 Tout -  
Grove Fields parkrun1578500:28:03 +
Kingsbury Water parkrun1394725:05 Tout -  
Witney parkrun1202000:22:34 +
Springhill parkrun14422:18 Tout -  
Preston Park parkrun, Brighton12200:17:40 +
Wolford Wood parkrun1212730:24 Tout -  
Colchester Castle parkrun14400:18:04 +
Pontypridd parkrun12217:54 Tout -  
Tidworth parkrun110815500:35:14 +
Pocket parkrun1222321:38 Tout -  
Walmer and Deal Seafront parkrun18800:21:38 +
Stockley Country parkrun111917935:32 Tout -  
Ferry Meadows parkrun15500:17:27 +
Braunstone parkrun1262720:41 Tout -  
St Mary’s parkrun1587400:29:14 +
Didcot parkrun1101121:28 Tout -  
Dartford Heath parkrun1171700:22:06 +
Littleport parkrun1445125:16 Tout -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Yarborough Leisure Centre parkrun1466125:59 Tout -  
Great Denham parkrun16600:19:27 +
Roding Valley parkrun1111321:26 Tout -  
Hastings High School parkrun1637800:27:33 +
Clair parkrun13318:36 Tout -  
Wendover Woods parkrun1262600:23:51 +
Dinton Pastures parkrun1131321:23 Tout -  
Peckham Rye parkrun11100:17:49 +
Beacon Hill Country Park parkrun1273725:54 Tout -  
Upton House parkrun1252700:22:34 +
Severn Bridge parkrun1353921:32 Tout -  
Lee-on-the-Solent parkrun17700:19:40 +
Abbey Park parkrun1779425:21 Tout -  
Graves parkrun11100:18:18 +
Dudley parkrun1445626:35 Tout -  
Maidstone parkrun13300:18:00 +
Pegwell Bay parkrun12217:40 Tout -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Manor Field parkrun, Whittlesey1121324:25 Tout -  
South Woodham Ferrers parkrun18800:21:14 +
Blaise Castle parkrun112816326:20 Tout -  
Pontypridd parkrun12200:17:54 +
Chipping Sodbury parkrun1303221:20 Tout -  
Bournemouth parkrun14400:17:43 +
Foots Cray Meadows parkrun1212323:17 Tout -  
Sizewell parkrun1172000:23:30 +
Thames Path parkrun, Woolwich1789023:42 Tout -  
Rushmoor parkrun19900:18:29 +
Bath Skyline parkrun1192021:08 Tout -  
Walsall Arboretum parkrun19810600:25:31 +
Dishley parkrun, Loughborough110311424:30 Tout -  
Gorleston Cliffs parkrun12200:17:43 +
Thornham Walks parkrun1363826:52 Tout -  
Uckfield parkrun1404300:24:12 +
Moors Valley parkrun19919:40 Tout -  
Aldenham parkrun1141400:21:37 +
East Grinstead parkrun1131423:10 Tout -  
Gadebridge parkrun1141400:22:22 +
Sutton Park parkrun1475524:54 Tout -  
Horspath parkrun17410600:28:12 +
University of Northampton parkrun1192223:24 Tout -  
Rogiet parkrun1151600:24:27 +
Shipley Country parkrun1232424:45 Tout -  
Rendlesham Forest parkrun1264600:37:01 +
Lancing Beach Green parkrun1141421:08 Tout -  
Dishley parkrun, Loughborough110311400:24:30 +
Dover Waterfront parkrun1374525:22 Tout -  
Great Cornard parkrun1192000:20:33 +
Rickmansworth parkrun1242721:39 Tout -  
Kettering parkrun1232600:22:50 +
Queen Elizabeth parkrun12219:08 Tout -  
Pont y Bala parkrun15700:23:18 +
Sizewell parkrun1172023:30 Tout -  
Burnham and Highbridge parkrun17510000:27:51 +
Holbrooks parkrun1202223:43 Tout -  
Stonehouse parkrun1131300:20:09 +
Highbury Fields parkrun11117:25 Tout -  
Hampstead Heath parkrun11100:17:45 +
Clacton Seafront parkrun19920:35 Tout -  
Wickford Memorial parkrun1436600:51:15 +
Delaware and Raritan Canal parkrun12221:06 Tout -  
Castle Park parkrun1394100:22:34 +
Wisbech parkrun1111523:03 Tout -  
Huntingdon parkrun1202100:21:10 +
Milton Country parkrun13317:43 Tout -  
Great Salterns parkrun19212400:30:27 +
Seaton parkrun1394824:09 Tout -  
Snowden Field parkrun1242600:24:15 +
Higginson parkrun, Marlow1272922:17 Tout -  
Southend parkrun11100:16:28 +
Quakers Walk parkrun1566825:05 Tout -  
Andover parkrun11100:17:33 +
Lister Park parkrun, Bradford1313621:55 Tout -  
parkrun Zalew Żyrardowski16700:24:38 +
Wendover Woods parkrun1262623:51 Tout -  
Marecchia parkrun11100:19:50 +
Sence Valley Forest Park parkrun1232526:28 Tout -  
Cheltenham parkrun12200:17:24 +
Canterbury parkrun16621:56 Tout -  
St Helens parkrun1606800:24:27 +
Henstridge Airfield parkrun18821:41 Tout -  
Bartley Park parkrun18415100:32:38 +
Five Arches parkrun1455422:58 Tout -  
Severn Bridge parkrun1353900:21:32 +
Yeovil Montacute parkrun1707525:51 Tout -  
Pontypool parkrun1232300:23:51 +
Watermeadows parkrun1283124:57 Tout -  
Poole parkrun14400:16:57 +
Tamworth Castle Grounds parkrun1333523:26 Tout -  
Bramhall parkrun115924700:35:16 +
St Helens parkrun1606824:27 Tout -  
Sunny Hill parkrun1202400:24:39 +
Weymouth parkrun1141420:45 Tout -  
Cassiobury parkrun1111100:20:14 +
Walmer and Deal Seafront parkrun18821:38 Tout -  
Hoblingwell parkrun1202400:23:52 +
Aston Hall parkrun1202225:01 Tout -  
Colwick parkrun18800:19:46 +
Royal Tunbridge Wells parkrun18919:23 Tout -  
Chipping Norton School parkrun1455100:26:40 +
Corby parkrun18823:09 Tout -  
Worthing parkrun18900:18:44 +
Marlborough Common parkrun1202122:48 Tout -  
Harrow Lodge parkrun11100:18:48 +
Battlestead Croft parkrun1111122:53 Tout -  
Bradford parkrun1313600:21:55 +
Shepton Mallet parkrun1121421:50 Tout -  
Bury Field parkrun1669000:33:07 +
Clare Castle parkrun1252723:04 Tout -  
Pocket parkrun1222300:21:38 +
Coldham’s Common parkrun1535923:04 Tout -  
Longrun Meadow parkrun111416500:32:01 +
Brunswick Park parkrun1212223:58 Tout -  
Worcester Pitchcroft parkrun111814300:27:04 +
Brentwood parkrun17722:28 Tout -  
Highwoods parkrun1252600:24:49 +
Somerdale Pavilion parkrun1384631:17 Tout -  
Maidenhead parkrun17700:18:49 +
Wakehurst parkrun18810525:00 Tout -  
Soham Village College parkrun1253200:28:03 +
Boston parkrun17721:18 Tout -  
Rickmansworth parkrun1242700:21:39 +
Morden parkrun111715526:58 Tout -  
Swaffham parkrun191000:22:19 +
Pontefract parkrun1718724:10 Tout -  
Brentwood parkrun17700:22:28 +
Jersey Farm parkrun1252723:11 Tout -  
Lymington Woodside parkrun15700:21:59 +
Bug Hunter Waters parkrun1455022:41 Tout -  
Loch Neaton parkrun, Watton1171700:25:49 +
Rosliston parkrun1333624:41 Tout -  
Daventry parkrun1151500:21:10 +
Longrun Meadow parkrun111416532:01 Tout -  
Hatfield Forest parkrun1181800:20:36 +
Fire Service College parkrun1181922:12 Tout -  
Kingsway parkrun, Gloucester1192000:21:20 +
Woolacombe Dunes parkrun19410931:20 Tout -  
Salcey Forest parkrun1384300:24:53 +
The Plens parkrun1303124:04 Tout -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Arrow Valley parkrun13318:05 Tout -  
Prospect parkrun1232300:22:42 +
Tonbridge parkrun14418:40 Tout -  
Weymouth parkrun1141400:20:45 +
East Brighton parkrun1182123:56 Tout -  
Westmill parkrun1101000:22:55 +
Three Brooks parkrun1697223:46 Tout -  
East Brighton parkrun1182100:23:56 +
Peacehaven parkrun17721:07 Tout -  
Harlow parkrun1151500:23:00 +
Pontypool parkrun1232323:51 Tout -  
Linford Wood parkrun1222200:21:45 +
Cromhall parkrun1151624:20 Tout -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Dereham parkrun1323323:47 Tout -  
Lydney parkrun1202100:23:19 +
Bournemouth parkrun14417:43 Tout -  
Braunstone parkrun1262700:20:41 +
Pomphrey Hill parkrun1364123:02 Tout -  
Harleston Magpies parkrun1293500:25:12 +
Seaford Beach parkrun1535622:25 Tout -  
Clapham Common parkrun1404200:20:22 +
Mansfield parkrun11117:09 Tout -  
Market Bosworth Country Park parkrun110614400:35:35 +
Fountains Abbey parkrun11118:03 Tout -  
Jersey Farm parkrun1252700:23:11 +
Loch Neaton parkrun, Watton1171725:49 Tout -  
Kesgrave parkrun1374000:21:18 +
Brueton parkrun1475021:33 Tout -  
Stevenage parkrun17700:19:32 +
Great Cornard parkrun1192020:33 Tout -  
Hadleigh parkrun, Essex1252600:24:27 +
Dunstable Downs parkrun1374324:58 Tout -  
Squerryes Winery parkrun1323600:27:45 +
Beeston parkrun1374023:53 Tout -  
Rutland Water parkrun1293000:22:44 +
Feltham parkrun13424:56 Tout -  
Beckenham Place parkrun1121200:20:28 +
Markeaton parkrun1576422:56 Tout -  
Sutcliffe parkrun113117200:30:34 +
Reigate Priory parkrun16619:06 Tout -  
Haverhill parkrun1121300:23:32 +
Highwoods parkrun1252624:49 Tout -  
Leavesden Country parkrun1506900:28:32 +
Valentines parkrun11116:49 Tout -  
Coldham’s Common parkrun1535900:23:04 +
Springburn parkrun, Glasgow13318:05 Tout -  
Chichester parkrun13300:19:05 +
California Country parkrun1649028:49 Tout -  
Billericay parkrun1121300:21:20 +
Rushmoor parkrun19918:29 Tout -  
Bromley parkrun13300:17:18 +
Mountbatten School parkrun1323424:11 Tout -  
Babbs Mill parkrun1405100:28:00 +
Colchester Castle parkrun14418:04 Tout -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Buckingham parkrun12218:37 Tout -  
Bryn Bach parkrun11100:16:50 +
Sunny Hill parkrun1202424:39 Tout -  
York parkrun12200:17:12 +
Bognor Regis parkrun12218:12 Tout -  
Storeys Field parkrun115121100:28:49 +
Aachener Weiher parkrun1101124:55 Tout -  
Chipping Sodbury parkrun1303200:21:20 +
Peckham Rye parkrun11117:49 Tout -  
Mote Park parkrun19712200:31:28 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 Tout -  
Watermeadows parkrun1283100:24:57 +
Great Notley parkrun16620:16 Tout -  
Woking parkrun18800:18:19 +
Snowden Field parkrun1242624:15 Tout -  
Raphael parkrun13300:19:35 +
Burnham-on-Crouch parkrun18822:01 Tout -  
Harwich parkrun191000:21:22 +
Woking parkrun18818:19 Tout -  
Fritton Lake parkrun11100:18:26 +
Neckarufer parkrun, Esslingen1364425:12 Tout -  
Heartwood Forest parkrun1252700:21:41 +
Worcester parkrun114418529:30 Tout -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Blandford parkrun18920:11 Tout -  
Bedworth parkrun1171700:22:14 +
Pont y Bala parkrun15723:18 Tout -  
Clair parkrun13300:18:36 +
Chichester parkrun13319:05 Tout -  
Brueton parkrun1475000:21:33 +
Kingdom parkrun1222524:39 Tout -  
Higginson parkrun, Marlow1272900:22:17 +
Westmill parkrun1101022:55 Tout -  
Bognor Regis parkrun12200:18:12 +
Dartford parkrun11117:59 Tout -  
Huddersfield parkrun1626700:22:02 +
Hanworth parkrun1364024:26 Tout -  
Heaton parkrun13300:18:08 +
Bracknell parkrun18820:04 Tout -  
Chasewater parkrun18210000:26:19 +
Folkestone parkrun1212521:48 Tout -  
Tewkesbury parkrun1111400:22:50 +
Uckfield parkrun1404324:12 Tout -  
Marple parkrun11100:17:15 +
Harrogate parkrun13318:11 Tout -  
Cannock Chase parkrun1384400:25:49 +
Kesgrave parkrun1374021:18 Tout -  
Edgbaston Reservoir parkrun1658600:26:24 +
Thomas Mills parkrun1486530:19 Tout -  
Cirencester parkrun1222400:22:40 +
Lymington Woodside parkrun15721:59 Tout -  
Kingsbury Water parkrun1394700:25:05 +
Hereford parkrun1535323:07 Tout -  
Peacehaven parkrun17700:21:07 +
Chasewater parkrun18210026:19 Tout -  
Lancing Beach Green parkrun1141400:21:08 +
South Norwood parkrun1121221:11 Tout -  
Springburn parkrun, Glasgow13300:18:05 +
Panshanger parkrun17720:14 Tout -  
Market Harborough parkrun1303100:21:17 +
Wolverhampton parkrun1556624:54 Tout -  
Amager Fælled parkrun1333700:24:23 +
Harcourt Hill parkrun1171721:13 Tout -  
Hanworth parkrun1364000:24:26 +
Tetbury Goods Shed parkrun1253024:25 Tout -  
Salisbury parkrun1111100:19:34 +
Gloucester North parkrun1101022:14 Tout -  
Houghton Hall parkrun1131300:21:48 +
Harlow parkrun1151523:00 Tout -  
Chalkwell Beach parkrun1819600:24:40 +
Alvaston parkrun1515922:24 Tout -  
Melksham parkrun1171700:24:31 +
Worcester Pitchcroft parkrun111814327:04 Tout -  
Thetford parkrun1161700:21:45 +
Perry Hall parkrun1464924:58 Tout -  
Pontefract parkrun1718700:24:10 +
Newport parkrun11117:29 Tout -  
Downham Market Academy parkrun1121300:24:35 +
Tring parkrun1171823:38 Tout -  
Fountains Abbey parkrun11100:18:03 +
Severn Valley Country parkrun1141626:13 Tout -  
Cardiff parkrun111011700:22:02 +
Wanstead Flats parkrun13317:13 Tout -  
Littlehampton Prom parkrun1384300:24:22 +
Daventry parkrun1151521:10 Tout -  
Uditore parkrun13300:20:28 +
St Mary’s parkrun1587429:14 Tout -  
Beacon parkrun1587300:26:41 +
Poole parkrun14416:57 Tout -  
parkrun de Rouen15500:21:41 +
Melton Mowbray parkrun1192222:38 Tout -  
Walthamstow parkrun11100:17:48 +
The Old Showfield parkrun1636923:30 Tout -  
Shepton Mallet parkrun1121400:21:50 +
Henley-on-Thames parkrun1111122:25 Tout -  
Marine Parade parkrun17711100:29:24 +
Crissy Field parkrun1101220:40 Tout -  
Foots Cray Meadows parkrun1212300:23:17 +
Babbs Mill parkrun1405128:00 Tout -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Maidenhead parkrun17718:49 Tout -  
Evesham parkrun1111100:21:39 +
Ross-on-Wye parkrun1172124:22 Tout -  
Southwick Country parkrun1272900:21:47 +
Kettering parkrun1232622:50 Tout -  
Lydiard parkrun18800:18:25 +
Stratford Park parkrun, Stroud1566527:51 Tout -  
Sandhurst Memorial parkrun1537300:28:54 +
Bury St Edmunds parkrun13318:17 Tout -  
Bicester parkrun14400:20:13 +
Mallards Pike parkrun1324630:57 Tout -  
Wimpole Estate parkrun1202100:22:14 +
Market Harborough parkrun1303121:17 Tout -  
Markshall Estate parkrun110315600:32:26 +
Cassiobury parkrun1111120:14 Tout -  
Dinton Pastures parkrun1131300:21:23 +
Squerryes Winery parkrun1323627:45 Tout -  
Tonbridge parkrun14400:18:40 +
Walsall Arboretum parkrun19010625:31 Tout -  
Wanstead Flats parkrun13300:17:13 +
Penrose parkrun1151619:40 Tout -  
Woodhouse Moor parkrun11100:17:22 +
King George V Playing Field parkrun, Cheltenham1232826:08 Tout -  
Mountbatten School parkrun1323400:24:11 +
Evesham parkrun1111121:39 Tout -  
Eastville parkrun120525300:25:12 +
Warwick Racecourse parkrun1486024:55 Tout -  
Brixworth Country parkrun1496100:26:53 +
Huddersfield parkrun1626722:02 Tout -  
Portsmouth Lakeside parkrun19900:19:12 +
Clevedon Salthouse Fields parkrun1384925:13 Tout -  
Milton Country parkrun13300:17:43 +
Long Eaton parkrun19912124:06 Tout -  
Swanley parkrun19712500:31:18 +
Barry Island parkrun1394223:51 Tout -  
Springhill parkrun14400:22:18 +
Ifield Mill Pond parkrun1373824:33 Tout -  
Gloucester North parkrun1101000:22:14 +
Upton House parkrun1252722:34 Tout -  
Feltham parkrun13400:24:56 +
Lullingstone parkrun17721:21 Tout -  
Crissy Field parkrun1101200:20:40 +
The Leas parkrun, Minster1252524:37 Tout -  
Ally Pally parkrun11100:18:09 +
Medina I.O.W. parkrun11117:20 Tout -  
Ashton Court parkrun1859500:22:59 +
Uditore parkrun13320:28 Tout -  
Oaklands parkrun111820300:36:10 +
Hunstanton Promenade parkrun1283523:45 Tout -  
Sittingbourne parkrun18800:20:56 +
Raphael parkrun13319:35 Tout -  
Moors Valley parkrun19900:19:40 +
Burnham and Highbridge parkrun17510027:51 Tout -  
Catford parkrun1303300:22:32 +
Salcey Forest parkrun1384324:53 Tout -  
Clare Castle parkrun1252700:23:04 +
Ferry Meadows parkrun15517:27 Tout -  
Harrogate parkrun13300:18:11 +
Barclay parkrun15623:13 Tout -  
Seaford Beach parkrun1535600:22:25 +
Irchester Country parkrun1586225:13 Tout -  
Tring parkrun1171800:23:38 +
Maldon Prom parkrun11118:04 Tout -  
Sandwell Valley parkrun1455900:30:43 +
Salisbury parkrun1111119:34 Tout -  
Basildon parkrun15500:18:13 +
Tremorfa parkrun1272923:30 Tout -  
The Leas parkrun, Minster1252500:24:37 +
Billericay parkrun1121321:20 Tout -  
Little Stoke parkrun11100:17:03 +
Gedling parkrun1273224:59 Tout -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Oaklands parkrun111820336:10 Tout -  
Felixstowe parkrun1121200:21:07 +
Winchester parkrun14518:28 Tout -  
Yeovil Montacute parkrun1707500:25:51 +
Aldenham parkrun1141421:37 Tout -  
Stockley Country parkrun111917900:35:32 +
East Park parkrun1121424:18 Tout -  
Woolacombe Dunes parkrun19410900:31:20 +
Soham Village College parkrun1253228:03 Tout -  
Harcourt Hill parkrun1171700:21:13 +
Stevenage parkrun17719:32 Tout -  
Abingdon parkrun15500:18:03 +
Tewkesbury parkrun1111422:50 Tout -  
Eastbourne parkrun12200:17:24 +
Seven Fields parkrun1475526:28 Tout -  
Warwick Racecourse parkrun1486000:24:55 +
Conkers parkrun12217:46 Tout -  
Leicester Victoria parkrun19711600:26:45 +
Lee-on-the-Solent parkrun17719:40 Tout -  
Broadwater parkrun110321300:35:19 +
Brixworth Country parkrun1496126:53 Tout -  
Clacton Seafront parkrun19900:20:35 +
Abingdon parkrun15518:03 Tout -  
Burnham-on-Crouch parkrun18800:22:01 +
Lowestoft parkrun1232621:10 Tout -  
Ganger Farm parkrun19811400:26:34 +
Chipping Norton School parkrun1455126:40 Tout -  
Folkestone parkrun1212500:21:48 +
Linford Wood parkrun1222221:45 Tout -  
Mallards Pike parkrun1324600:30:57 +
Harwich parkrun191021:22 Tout -  
Malling parkrun18314500:47:25 +
Fulbourn Hospital parkrun1344724:59 Tout -  
Rugby parkrun1181800:22:26 +
Gunpowder parkrun12217:34 Tout -  
Watermead Country Park parkrun110818200:35:52 +
Dartford Heath parkrun1171722:06 Tout -  
Hogmoor Inclosure parkrun1262600:25:26 +
Sandhurst Memorial parkrun1537328:54 Tout -  
East Grinstead parkrun1131400:23:10 +
Woodhouse Moor parkrun11117:22 Tout -  
Mildenhall Hub parkrun1273100:24:33 +
Sandwell Valley parkrun1455930:43 Tout -  
Marlborough Common parkrun1202100:22:48 +
Wyre Forest parkrun1434825:56 Tout -  
Blandford parkrun18900:20:11 +
parkrun Zalew Żyrardowski16724:38 Tout -  
Maldon Prom parkrun11100:18:04 +
Bramhall parkrun115924735:16 Tout -  
Edinburgh parkrun12200:17:00 +
Hatfield Forest parkrun1181820:36 Tout -  
The Old Showfield parkrun1636900:23:30 +
Swansea Bay parkrun1748323:44 Tout -  
Jersey parkrun16600:19:41 +
Wollaton Hall parkrun1889723:51 Tout -  
Chilton Fields parkrun1405400:28:26 +
Horsham parkrun14518:16 Tout -  
Sixfields Upton parkrun18800:19:58 +
Jersey parkrun16619:41 Tout -  
Pegwell Bay parkrun12200:17:40 +
Berkeley Green parkrun1233128:31 Tout -  
Valentines parkrun11100:16:49 +
Cardiff parkrun111011722:02 Tout -  
Edenbrook Country parkrun110514800:28:01 +
Ally Pally parkrun11118:09 Tout -  
Henstridge Airfield parkrun18800:21:41 +
Thurrock parkrun, Orsett Heath16620:41 Tout -  
Great Notley parkrun16600:20:16 +
Beacon parkrun1587326:41 Tout -  
Medina I.O.W. parkrun11100:17:20 +
Albert parkrun, Middlesbrough1515423:17 Tout -  
Reading parkrun12200:17:18 +
Sherwood Pines parkrun1161821:33 Tout -  
Tetbury Goods Shed parkrun1253000:24:25 +
Wickford Memorial parkrun1436651:15 Tout -  
Lowestoft parkrun1232600:21:10 +
Thornbury parkrun1323428:19 Tout -  
Malahide parkrun11100:16:54 +
Malling parkrun18314547:25 Tout -  
Oxford parkrun11100:17:18 +
Itchen Valley Country parkrun1476127:37 Tout -  
Rheinpark parkrun1151800:25:30 +
Pollok parkrun, Glasgow11117:00 Tout -  
Gloucester City parkrun1171900:22:35 +
Eastville parkrun120525325:12 Tout -  
Didcot parkrun1101100:21:28 +
Rutland Water parkrun1293022:44 Tout -  
Mansfield parkrun11100:17:09 +
Chalkwell Beach parkrun1819624:40 Tout -  
7851100:16:25 +
Amager Fælled parkrun1333724:23 + Tout +
Hoblingwell parkrun1202423:52 + Tout +
Belton House parkrun1141523:48 + Tout +
Kagerzoom parkrun1435824:39 + Tout +
Gorleston Cliffs parkrun12217:43 + Tout +
King’s Lynn parkrun1151520:07 + Tout +
Holkham parkrun1506925:37 + Tout +
Horspath parkrun17410628:12 + Tout +
Southwick Country parkrun1272921:47 + Tout +
Rushmere parkrun1131422:39 + Tout +
Zuiderpark parkrun, Den Haag1738124:07 + Tout +
Heaton parkrun13318:08 + Tout +
Colney Lane parkrun1495524:01 + Tout +
Leicester Victoria parkrun19711626:45 + Tout +
Church Mead parkrun16610232:53 + Tout +
Southend parkrun11116:28 + Tout +
Lydney parkrun1202123:19 + Tout +
Edgbaston Reservoir parkrun1658626:24 + Tout +
Reading parkrun12217:18 + Tout +
March parkrun15521:11 + Tout +
Woodgate Valley Country Park parkrun16513245:50 + Tout +
Maaraue parkrun1232522:34 + Tout +
Stonehouse parkrun1131320:09 + Tout +
Rheinpark parkrun1151825:30 + Tout +
Edinburgh parkrun12217:00 + Tout +
Chippenham parkrun1212120:08 + Tout +
Stratford-upon-Avon parkrun1202521:14 + Tout +
Henlow Bridge Lakes parkrun17511532:34 + Tout +
8671116:25 Tout  


Récapitulatif de bénévolat

RôleNombre de fois
- Responsable du run - 94
- Responsable chrono - 59
- Classement des jetons - 3
- Mise en ligne des participations - 87
- Photographe - 6
- Responsable communication - 10
- Aiguilleur - 39
- Balisage du parcours - 130
- Rangement & Mise à disposition de l'équipement - 128
- Autre - 23
- Scannage des codes-barres - 55
- Débalisage du parcours - 45
- Distribution des jetons - 15
- Vérification des jetons - 2
- Briefing des nouveaux participants - 68
- Gestion SAS - 15
- Assistant distribution des jetons - 9
- Fermeur marcheur - 29
- Coordinateur des bénévoles - 146
- Rédacteur du compte-rendu - 97
- Chronomètre de secours - 3
- Leader d'échauffement - 16
- Aiguilleur parking - 1
- Verification du Parcours - Jour de l'évènement - 8
- parkwalker - 9
Total crédits396

+ Responsable du run +

99
+ Responsable chrono + 94
+ Classement des jetons + 12
+ Mise en ligne des participations + 87
+ Photographe + 6
+ Responsable communication + 10
+ Aiguilleur + 54
+ Balisage du parcours + 148
+ Rangement & Mise à disposition de l'équipement + 130
+ Autre + 26
+ Scannage des codes-barres + 78
+ Débalisage du parcours + 51
+ Distribution des jetons + 21
+ Vérification des jetons + 2
+ Accueil des nouveaux participants + 82
+ Gestion SAS + 15
+ Assistant distribution des jetons + 12
+ Fermeur marcheur + 29
+ Coordinateur des bénévoles + 148
+ Rédacteur du compte-rendu + 100
+ Chronomètre de secours + 3
+ Responsable de l'échauffement + 16
+ Aiguilleur parking + 1
+ Verification du Parcours - Jour de l'évènement + 14
+ parkwalker + 10
Total crédits499

Ce tableau récapitule le nombre d'occasions où chaque rôle de bénévole a été rempli.
Veuillez noter que le total peut différer du total de vos crédits de bénévolat ; si vous avez effectué plusieurs tâches le même jour.
Pour en savoir plus ici.



parkrun Freedoms

DateTempsEmplacement
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(pas)parkruns

SemaineDate départDate Fin(pas)parkrunsMeilleur Temps
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1014,60 +1133,58 @@

Danny NORMAN (A48 Localisations: 8

- Finishers: 14 939 + Finishers: 14935
- Nombre de runs effectués: 49 321 + Nombre de runs effectués: 49321
- Nombre total de tous les événements: 1 973 + Nombre total de tous les événements: 1973
Bénévoles: 811
- MP: 6 145 + MP: 6145
Temps moyen: 00:29:10
- Nombre moyen de runs effectués par participant: 3,3 + Groupes: 1757
-
- Groupes: 1 719 -
-
+
- Dernières stats mises à jour: ven. 14 avril 2023 00:35:22 UTC + Dernières stats mises à jour: lun. 30 sept. 2024 00:36:09 UTC
-

© parkrun Global Limited (Company number: 09411750)

Aucune partie de ce site ne peut être reproduite, en tout ou en partie, de quelque manière que ce soit, sans l’autorisation du titulaire du droit d’auteur.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1101,8 +1228,8 @@

Danny NORMAN (A48 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/88720/all/index.html index 242abc6b..1d3b9fec 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + participation | parkrun France - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,27 +66,24 @@
@@ -100,7 +93,7 @@
-

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

+

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

@@ -108,633 +101,731 @@ -

Phillip WHETTLOCK (A88720)

+

Phillip WHETTLOCK (A88720)

Membre du Club parkrun 250 - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns au total + 345 parkruns au total

Consulter le résumé des stats pour ce parkrunnneur
- A couru le plus récemment dans la catégorie d'âge VH55-59 + A couru le plus récemment dans la catégorie d'âge VH60-64

Résumé des stats pour tous les -
+ RapideMoyen
(mean)
+ Lent
Temps21:4025:2552:00
Gradient d'âge69.71%60.41%29.55%
Place Scratch648.88374

+
+ RapideMoyen
(mean)
+ Lent
Temps21:3625:2654:59
Gradient d'âge72.99%60.80%28.92%
Place Scratch648.44374

Meilleurs résultats généraux annuels -
AnnéeMeilleur TempsMeilleur Gradient d'âge
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
AnnéeMeilleur TempsMeilleur Gradient d'âge
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

– Toutes les participations -
ÉvénementDate du FootingNuméro du parkrunPosTempsGradient d'âgeMP?
Halifax08/04/20233313225:0063.07% +
ÉvénementDate du FootingNuméro du parkrunPosTempsGradient d'âgeMP?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73%   -
Fulham Palace01/04/202339110924:0965.29% +
Halifax04/05/20243842924:2665.08%   -
Halifax25/03/20233291624:4363.79% +
Hyndburn27/04/20242593125:5161.51%   -
Halifax18/03/20233282326:4758.87% +
Zuiderpark20/04/20241261722:0372.11%   -
Halifax04/03/20233273825:1962.28% +
Halifax13/04/20243813524:3764.59%   -
Myrtle25/02/20231593824:5263.40% +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% MP   -
Halifax18/02/20233252926:0360.52% +
Conwy18/11/20233764424:5363.90%   -
Halifax11/02/20233243124:0365.56% +
Penistone28/10/20231393724:2065.34%   -
Bradford04/02/20235795022:3769.71% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Bowling Park28/01/202379924:1165.20% +
Halifax16/09/20233532123:4367.04%   -
Bramley21/01/20233004925:3461.67% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax14/01/20233213325:5260.95% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Halifax07/01/20233203026:2659.65% +
Glossop12/08/20233152824:2564.57%   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax05/08/20233473024:4363.79%   -
Nostell31/12/20223614325:0063.07% +
Huddersfield29/07/20235456722:4769.20%   -
Halifax24/12/20223173125:4661.19% +
Brighouse15/07/20232544223:5366.02% + MP + +   +
Stratford Park, Stroud01/07/20231253126:2959.53% +   +
Wetherby24/06/20233094124:4663.66%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax10/06/20233402524:0265.60%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax03/06/20233392124:1365.11% +   +
Long Eaton20/05/20233306921:3672.99% +   +
Halifax06/05/20233352423:4566.39% +   +
Keswick29/04/20233904121:3672.99% MP   -
Conkers19/11/20225485624:1465.06% +
Halifax22/04/20233334725:0262.98%   -
Brighouse12/11/20222213725:1762.36% +
Halifax08/04/20233313225:0063.07%   -
Halifax05/11/20223122424:5163.45% +
Fulham Palace01/04/202339110924:0965.29%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax25/03/20233291624:4363.79%   -
Halifax15/10/202230910749:5431.60% +
Halifax18/03/20233282326:4758.87%   -
Crosby08/10/20222833525:3861.51% +
Halifax04/03/20233273825:1962.28%   -
Alness01/10/20221801024:0965.29% +
Myrtle25/02/20231593824:5263.40% + MP + +   +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71% +   +
Bowling Park28/01/202379924:1165.20% +   +
Bramley21/01/20233004925:3461.67% +   +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + MP + +   +
Conkers19/11/20225485624:1465.06%   -
Victoria24/09/20223736722:5468.85% +
Brighouse12/11/20222213725:1762.36%   -
Halifax17/09/20223052625:0063.07% +
Halifax05/11/20223122424:5163.45%   -
Centre Vale10/09/20221034428:4454.87% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax03/09/20223033125:3361.71% +
Halifax15/10/202230910749:5431.60%   -
Skipton27/08/20224035325:3561.11% +
Crosby08/10/20222833525:3861.51%   -
Halifax20/08/20223012824:5262.87% +
Alness01/10/20221801024:0965.29%   -
Halifax06/08/20222996426:0360.01% +
Victoria24/09/20223736722:5468.85%   -
Armley30/07/20221432724:2863.90% +
Halifax17/09/20223052625:0063.07%   -
Halifax16/07/20222962524:2663.98% +
Centre Vale10/09/20221034428:4454.87%   -
Halifax02/07/20222942524:4863.04% +
Halifax03/09/20223033125:3361.71%   -
Halifax18/06/20222922424:5462.78% +
Skipton27/08/20224035325:3561.11%   -
The Pastures11/06/2022991826:2159.33% +
Halifax20/08/20223012824:5262.87%   -
Halifax04/06/20222913826:4858.33% +
Halifax06/08/20222996426:0360.01%   -
Horton Park28/05/20222942225:1262.04% +
Armley30/07/20221432724:2863.90%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax16/07/20222962524:2663.98%   -
Halifax07/05/20222877529:3552.85% +
Halifax02/07/20222942524:4863.04%   -
Harrogate30/04/202246716226:4458.48% +
Halifax18/06/20222922424:5462.78%   -
Halifax23/04/20222854927:0057.90% +
The Pastures11/06/2022991826:2159.33%   -
Halifax09/04/20222834526:3758.74% +
Halifax04/06/20222913826:4858.33%   -
Halifax02/04/20222822924:4463.21% +
Horton Park28/05/20222942225:1262.04%   -
Pendle26/03/20223443126:1659.52% +
Bushy Park21/05/202287737424:0664.87%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax07/05/20222877529:3552.85%   -
Halifax05/03/20222784925:3761.03% +
Harrogate30/04/202246716226:4458.48%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax23/04/20222854927:0057.90% +   +
Halifax09/04/20222834526:3758.74% +   +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% MP   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% MP   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% MP   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% MP   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% MP   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -768,60 +859,58 @@

Phillip WHETTLOCK 8

- Finishers: 14 939 + Finishers: 14935
- Nombre de runs effectués: 49 321 + Nombre de runs effectués: 49321
- Nombre total de tous les événements: 1 973 + Nombre total de tous les événements: 1973
Bénévoles: 811
- MP: 6 145 + MP: 6145
Temps moyen: 00:29:10
- Nombre moyen de runs effectués par participant: 3,3 -
-
- Groupes: 1 720 + Groupes: 1757
-
+
- Dernières stats mises à jour: lun. 17 avril 2023 00:35:27 UTC + Dernières stats mises à jour: lun. 30 sept. 2024 00:36:09 UTC
-

© parkrun Global Limited (Company number: 09411750)

Aucune partie de ce site ne peut être reproduite, en tout ou en partie, de quelque manière que ce soit, sans l’autorisation du titulaire du droit d’auteur.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -855,8 +954,8 @@

Phillip WHETTLOCK  - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/88720/index.html index d04bbe23..6494eba0 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + participation | parkrun France - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,27 +66,24 @@
@@ -100,7 +93,7 @@
-

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

+

Les événements parkrun en France sont actuellement suspendus. Cliquez ici pour plus d'informations.

@@ -108,185 +101,241 @@ -

Phillip WHETTLOCK (A88720)

+

Phillip WHETTLOCK (A88720)

Membre du Club parkrun 250 - - Member of the Volunteer 100 club -

299 parkruns au total

+ + Member of the Volunteer 250 club +

345 parkruns au total

Consulter les stats de ce parkrunneur tous parkruns confondus
- A couru le plus récemment dans la catégorie d'âge VH55-59 -

Footings les Plus Récents

ÉvénementDate du FootingPos. GenrePlace ScratchTempsGradient d'âge
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Récapitulatifs parkrun

ÉvénementFootingsMeilleure position genreMeilleure position généraleMeilleur Temps  
Bradford parkrun1166600:21:40 + A couru le plus récemment dans la catégorie d'âge VH60-64 +

Footings les Plus Récents

ÉvénementDate du FootingPos. GenrePlace ScratchTempsGradient d'âge
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Récapitulatifs parkrun

ÉvénementFootingsMeilleure position genreMeilleure position généraleMeilleur Temps  
Halifax parkrun1268822:13 + Tout +
Lister Park parkrun, Bradford1166621:40 + Tout +
Horton Park parkrun9131322:18 + Tout +
Keswick parkrun4253321:36 + Tout +
Sewerby parkrun3121222:08 + Tout +
Pontefract parkrun2273222:08 + Tout +
Brighouse parkrun2333723:53 + Tout +
Temple Newsam parkrun2272925:14 + Tout +
Fountains Abbey parkrun2394822:26 + Tout +
Oakwell Hall parkrun2293626:10 + Tout +
Whinlatter Forest parkrun2283227:23 + Tout +
Bramley parkrun2252524:06 + Tout +
Middleton Woods parkrun2121424:55 + Tout +
Myrtle parkrun2333824:52 + Tout +
Centre Vale parkrun2303626:37 + Tout +
Bushy parkrun130137424:06 + Tout +
Woodhouse Moor parkrun1778222:18 + Tout +
Pollok parkrun, Glasgow1667223:58 + Tout +
Edinburgh parkrun1646721:54 Tout - Graph It!
Halifax parkrun1148800:22:13 +
Wakefield Thornes parkrun1545824:29 Tout - Graph It!
Horton Park parkrun9131300:22:18 +
Hyndburn parkrun1253125:51 Tout - Graph It!
Sewerby parkrun3121200:22:08 +
York parkrun111413522:55 Tout - Graph It!
Keswick parkrun3253300:23:33 +
Milton Country parkrun1707522:40 Tout - Graph It!
Pontefract parkrun2273200:22:08 +
Carlisle parkrun1567126:05 Tout - Graph It!
Temple Newsam parkrun2272900:25:14 +
Harrogate parkrun112316226:44 Tout - Graph It!
Myrtle parkrun2333800:24:52 +
Southport parkrun1545723:57 Tout - Graph It!
Middleton Woods parkrun2121400:24:55 +
Barnsley parkrun1414325:05 Tout - Graph It!
Bramley parkrun2252500:24:06 +
Rothwell parkrun1535724:20 Tout - Graph It!
Druridge Bay parkrun1354200:23:35 +
Huddersfield parkrun1596722:47 Tout -  
Fountains Abbey parkrun1394800:22:26 +
Long Eaton parkrun1556921:36 Tout -  
Victoria parkrun, Glasgow1546700:22:54 +
Wycombe Rye parkrun1232622:35 Tout -  
Clumber Park parkrun1101100:21:46 +
Conkers parkrun1525624:14 Tout -  
Rothay Park parkrun1202700:24:48 +
Roundhay parkrun112815726:55 Tout -  
Warwick Racecourse parkrun1638200:24:06 +
Hanley parkrun16622:03 Tout -  
Conkers parkrun1525600:24:14 +
Worsley Woods parkrun1728824:46 Tout -  
The Pastures parkrun1161800:26:21 +
Burnley parkrun1545725:21 Tout -  
Harrogate parkrun112316200:26:44 +
Dewsbury parkrun18610128:15 Tout -  
Dishley parkrun, Loughborough1535700:24:25 +
Cross Flatts parkrun1303724:16 Tout -  
Dalby Forest parkrun1283200:23:06 +
Clumber Park parkrun1101121:46 Tout -  
Woodhouse Moor parkrun1778200:22:18 +
Skipton parkrun1505325:35 Tout -  
Whinlatter Forest parkrun1283200:27:23 +
Flatts Lane parkrun1171826:53 Tout -  
Watergrove parkrun, Rochdale1111200:27:57 +
Victoria parkrun, Glasgow1546722:54 Tout -  
Springburn parkrun, Glasgow1161600:23:14 +
Alness parkrun171024:09 Tout -  
Fulham Palace parkrun18610900:24:09 +
Fulham Palace parkrun18610924:09 Tout -  
Flatts Lane parkrun1171800:26:53 +
Springburn parkrun, Glasgow1161623:14 Tout -  
Roberts Park parkrun1657500:24:54 +
Druridge Bay parkrun1354223:35 Tout -  
Bowling Park parkrun18900:24:11 +
Pendle parkrun1263126:16 Tout -  
Hanley parkrun16600:22:03 +
Watergrove parkrun, Rochdale1111227:57 Tout -  
Centre Vale parkrun1304400:28:44 +
Wetherby parkrun1374124:46 Tout -  
Wycombe Rye parkrun1232600:22:35 +
Portobello parkrun, Edinburgh1668024:16 Tout -  
Carlisle parkrun1567100:26:05 +
Nostell parkrun1374325:00 Tout -  
Armley parkrun1262700:24:28 +
Fell Foot parkrun, Newby Bridge1161722:57 Tout -  
Crosby parkrun1293500:25:38 +
Conwy parkrun1394424:53 Tout -  
Edinburgh parkrun1646700:21:54 +
Glossop parkrun1242824:25 Tout -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Crosby parkrun1293525:38 Tout -  
Bushy parkrun130137400:24:06 +
Dolgellau parkrun1459954:59 Tout -  
Oakwell Hall parkrun1344000:26:10 +
Dalby Forest parkrun1283223:06 Tout -  
Pendle parkrun1263100:26:16 +
Clitheroe Castle parkrun1192525:41 Tout -  
Alness parkrun171000:24:09 +
Armley parkrun1262724:28 Tout -  
Skipton parkrun1505300:25:35 +
Dishley parkrun, Loughborough1535724:25 Tout -  
Chevin Forest parkrun1213000:26:47 +
Ford parkrun1202525:00 Tout -  
Burnley parkrun1545700:25:21 +
Cliffe Castle parkrun1151725:18 Tout -  
Queen’s parkrun, Glasgow1677900:25:29 +
Potternewton parkrun1293625:04 Tout -  
Roundhay parkrun112815700:26:55 +
Isabel Trail parkrun1293422:02 Tout -  
Storthes Hall parkrun1263000:26:20 +
The Pastures parkrun1161826:21 Tout -  
Southport parkrun1545700:23:57 +
Storthes Hall parkrun1263026:20 Tout -  
Cliffe Castle parkrun1151700:25:18 +
Hafan Pwllheli parkrun1212726:48 Tout -  
Brighouse parkrun1333700:25:17 +
Penistone parkrun1343724:20 Tout -  
Milton Country parkrun1707500:22:40 +
Conyngham Hall parkrun1363824:55 Tout -  
Pollok parkrun, Glasgow1667200:23:58 +
Stratford Park parkrun, Stroud1303126:29 Tout -  
Nostell parkrun1384300:25:00 +
Warwick Racecourse parkrun1638224:06 Tout -  
Portobello parkrun, Edinburgh1668000:24:16 +
University of Stirling parkrun1343723:52 Tout -  
2996600:21:40 +
Jubilee parkrun1121926:42 + Tout +
Queen’s parkrun, Glasgow1677925:29 + Tout +
Bowling Park parkrun18924:11 + Tout +
Rothay Park parkrun1202724:48 + Tout +
Zuiderpark parkrun, Den Haag1151722:03 + Tout +
Carlisle Park parkrun, Morpeth1293325:44 + Tout +
Chevin Forest parkrun1213026:47 + Tout +
Roberts Park parkrun1657524:54 + Tout +
Beacon Hill Country Park parkrun1192325:36 + Tout +
Thames Path parkrun, Woolwich1586323:49 + Tout +
3456621:36 Tout  


Récapitulatif de bénévolat

RôleNombre de fois
- Responsable du run - 32
- Responsable chrono - 17
- Classement des jetons - 5
- Mise en ligne des participations - 1
- Photographe - 1
- Responsable communication - 5
- Aiguilleur - 35
- Balisage du parcours - 28
- Rangement & Mise à disposition de l'équipement - 5
- Autre - 1
- Scannage des codes-barres - 27
- Débalisage du parcours - 24
- Distribution des jetons - 11
- Vérification des jetons - 1
- Briefing des nouveaux participants - 77
- Gestion SAS - 12
- Assistant distribution des jetons - 10
- Fermeur marcheur - 5
- Coordinateur des bénévoles - 10
- Rédacteur du compte-rendu - 1
- Lièvre - 5
- Chronomètre de secours - 14
- Guide déficient visuel - 1
- Leader d'échauffement - 5
- Assistance langage des signes - 1
- Aiguilleur parking - 1
- Verification du Parcours - Jour de l'évènement - 25
- parkwalker - 1
Total crédits249

+ Responsable du run +

33
+ Responsable chrono + 28
+ Classement des jetons + 5
+ Mise en ligne des participations + 4
+ Photographe + 1
+ Responsable communication + 6
+ Aiguilleur + 35
+ Balisage du parcours + 29
+ Rangement & Mise à disposition de l'équipement + 6
+ Autre + 2
+ Scannage des codes-barres + 46
+ Débalisage du parcours + 25
+ Distribution des jetons + 16
+ Vérification des jetons + 1
+ Accueil des nouveaux participants + 82
+ Gestion SAS + 16
+ Assistant distribution des jetons + 16
+ Fermeur marcheur + 15
+ Coordinateur des bénévoles + 11
+ Rédacteur du compte-rendu + 1
+ Meneur d'allure + 10
+ Chronomètre de secours + 14
+ Guide déficient visuel + 1
+ Responsable de l'échauffement + 15
+ Assistance langage des signes + 1
+ Aiguilleur parking + 1
+ Verification du Parcours - Jour de l'évènement + 57
+ parkwalker + 1
Total crédits316

Ce tableau récapitule le nombre d'occasions où chaque rôle de bénévole a été rempli.
Veuillez noter que le total peut différer du total de vos crédits de bénévolat ; si vous avez effectué plusieurs tâches le même jour.
Pour en savoir plus ici. -



parkrun Freedoms

DateTempsEmplacement
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(pas)parkruns

SemaineDate départDate Fin(pas)parkrunsMeilleur Temps
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+



parkrun Freedoms

DateTempsEmplacement
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(pas)parkruns

SemaineDate départDate Fin(pas)parkrunsMeilleur Temps
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -318,60 +367,58 @@

Phillip WHETTLOCK 8

- Finishers: 14 939 + Finishers: 14935
- Nombre de runs effectués: 49 321 + Nombre de runs effectués: 49321
- Nombre total de tous les événements: 1 973 + Nombre total de tous les événements: 1973
Bénévoles: 811
- MP: 6 145 + MP: 6145
Temps moyen: 00:29:10
- Nombre moyen de runs effectués par participant: 3,3 + Groupes: 1757
-
- Groupes: 1 720 -
-
+
- Dernières stats mises à jour: lun. 17 avril 2023 00:35:27 UTC + Dernières stats mises à jour: lun. 30 sept. 2024 00:36:09 UTC
-

© parkrun Global Limited (Company number: 09411750)

Aucune partie de ce site ne peut être reproduite, en tout ou en partie, de quelque manière que ce soit, sans l’autorisation du titulaire du droit d’auteur.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -405,8 +462,8 @@

Phillip WHETTLOCK  - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/999999/all/index.html index f1a88234..599d0853 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + participation | parkrun France @@ -226,8 +232,8 @@

Jakub WOLSKI (A99 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/999999/index.html index 21687ac6..bc8ebd6b 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.fr/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + participation | parkrun France @@ -222,8 +228,8 @@

Jakub WOLSKI (A99 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/1309364/all/index.html index e97eae89..f8637cea 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Ireland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +53,7 @@
@@ -70,47 +65,35 @@
@@ -127,549 +110,655 @@ - - + -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM35-39 + Most recent age category was VM40-44

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time20:0628:4757:34
Age Grading64.51%47.44%23.54%
Overall Position5165.361021

+
FastestAverage
(mean)
Slowest
Time20:0629:2057:34
Age Grading64.51%46.67%23.54%
Overall Position5182.341021

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60% +   +
Whiteley18/11/202324721037:0536.54%   -
Whiteley25/03/202321418332:2441.82% +
Whiteley11/11/202324617430:3744.26%   -
Winchester11/03/202342821230:3744.26% +
Winchester21/10/202345731533:5140.03%   -
Winchester04/03/202342730935:4537.90% +
Winchester14/10/202345634233:5439.97%   -
Winchester25/02/202342632536:0937.48% +
Ganger Farm07/10/20234713233:4940.07%   -
Winchester18/02/202342530336:3137.11% +
Winchester30/09/202345427529:3145.91%   -
Delamere31/12/202242331536:2537.21% +
Winchester23/09/202345321928:2247.77%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester16/09/202345235430:3244.38%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester09/09/202345129229:1146.43%   -
Winchester26/11/202241229335:3137.87% +
Delamere02/09/202345822633:2840.49%   -
Whiteley12/11/202221016534:2839.02% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester29/10/202240924429:5544.96% +
Winchester29/07/202344622227:3649.09%   -
Winchester22/10/202240833736:0837.22% +
Winchester22/07/202344540537:0036.62%   -
Winchester17/09/202240326230:2944.12% +
Whiteley15/07/202322915731:1643.34%   -
Winchester10/09/202240231134:3338.93% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Alice Holt03/09/202241817936:3236.82% +
Winchester17/06/202344128530:4144.16%   -
Winchester27/08/202240042335:2138.05% +
Winchester10/06/202344032435:2138.33%   -
Winchester13/08/202239823431:3042.70% +
Winchester20/05/202343822427:0949.91%   -
Tidworth30/07/2022615151:4226.02% +
Winchester13/05/202343733232:4341.42%   -
Uckfield23/07/20221006028:4346.84% +
Whiteley29/04/202321919635:3138.15%   -
Winchester09/07/202239428633:1640.43% +
Winchester22/04/202343431731:1143.45%   -
Eastleigh28/05/202254015531:2042.93% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Winchester21/05/202238930733:2840.19% +
Whiteley25/03/202321418332:2441.82%   -
Alice Holt14/05/202240216932:0142.01% +
Winchester11/03/202342821230:3744.26%   -
Winchester07/05/202238734034:1339.31% +
Winchester04/03/202342730935:4537.90%   -
Guildford30/04/202242825130:0144.81% +
Winchester25/02/202342632536:0937.48%   -
Winchester23/04/202238522932:0241.99% +
Winchester18/02/202342530336:3137.11%   -
Winchester16/04/202238431033:2340.29% +
Delamere31/12/202242331536:2537.21%   -
Winchester19/03/202238025033:5439.68% +
Ganger Farm10/12/2022418257:3423.54%   -
Alice Holt01/01/202238524237:4635.61% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester04/12/202136518229:2045.85% +
Winchester26/11/202241229335:3137.87%   -
Winchester20/11/202136338445:0729.59% +
Whiteley12/11/202221016534:2839.02%   -
Winchester09/10/202135739843:0730.96% +
Winchester29/10/202240924429:5544.96%   -
Winchester25/09/202135538955:0324.25% +
Winchester22/10/202240833736:0837.22%   -
Winchester18/09/202135433938:1234.95% +
Winchester17/09/202240326230:2944.12%   -
Winchester04/09/202135233838:2434.77% +
Winchester10/09/202240231134:3338.93%   -
Winchester28/08/202135139841:0132.55% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester14/08/202134936055:4623.94% +
Winchester27/08/202240042335:2138.05%   -
Winchester31/07/202134832845:2029.45% +
Winchester13/08/202239823431:3042.70%   -
Winchester14/03/202034625851:3825.69% +
Tidworth30/07/2022615151:4226.02%   -
Winchester07/03/202034510325:5251.29% +
Uckfield23/07/20221006028:4346.84%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Winchester09/07/202239428633:1640.43%   -
Newbury22/02/202043434631:1142.54% +
Eastleigh28/05/202254015531:2042.93%   -
Alice Holt08/02/202036010727:1948.57% +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -700,50 +789,32 @@

Andrew TAYLOR (A13093
- Locations: 104 + Locations: 110
- Finishers: 234,396 + Finishers: 290255
- Finishes: 2,439,045 + Finishes: 3162741
- All-time events: 25,415 + All-time events: 33395
- Volunteers: 33,906 + Volunteers: 40927
- PBs: 389,055 + PBs: 475561
- Average finish time: 00:30:06 + Average finish time: 00:30:21
- Average finishes per participant: 10.4 + Groups: 3422
-
- Groups: 2,863 -
-
-
- Female record: - Meghan RYAN – 16:41 - (27 Nov 2021) -
-
- Male record: - Sean TOBIN – 14:19 - (16 Nov 2019) -
-
- Age graded record: - Mary MARTIN - 103.49% 23:26 - ( 5 Oct 2019) -
+
- Stats last updated: Fri 14 Apr 2023 00:39:47 UTC + Stats last updated: Mon 30 Sep 2024 00:39:57 UTC
@@ -762,28 +833,29 @@

Andrew TAYLOR (A13093 Lidl - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -817,8 +899,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/1309364/index.html index 29cb4c22..5281a4be 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + results | parkrun Ireland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +53,7 @@
@@ -70,47 +65,35 @@
@@ -133,178 +116,188 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club -

245 parkruns total

+

297 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM35-39 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun146121300:20:18 + Most recent age category was VM40-44 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun173121320:18 + All +
Whiteley parkrun1410714629:06 + All +
Delamere parkrun11232321:42 + All +
Eastleigh parkrun6242524:08 + All +
Alice Holt parkrun59010727:19 All - Graph It!
Delamere parkrun8232300:21:42 +
Southampton parkrun5687021:17 All - Graph It!
Whiteley parkrun610714600:29:06 +
Fell Foot parkrun, Newby Bridge4212223:48 All - Graph It!
Alice Holt parkrun59010700:27:19 +
Witton parkrun4303525:40 All - Graph It!
Southampton parkrun5687000:21:17 +
Northwich parkrun4485224:55 All - Graph It!
Eastleigh parkrun5242500:24:08 +
Newbury parkrun4829123:49 All - Graph It!
Congleton parkrun49900:20:06 +
Congleton parkrun49920:06 All - Graph It!
Witton parkrun4303500:25:40 +
Medina I.O.W. parkrun4667525:13 All - Graph It!
Northwich parkrun4485200:24:55 +
Ganger Farm parkrun38013229:25 All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Burnley parkrun212718929:06 All - Graph It!
Andover parkrun2242600:22:24 +
Queen Elizabeth parkrun2364026:36 All - Graph It!
Ganger Farm parkrun29713500:29:25 +
Andover parkrun2242622:24 All - Graph It!
Hanley parkrun2333900:22:31 +
Hanley parkrun2333922:31 All - Graph It!
Newbury parkrun2829100:23:49 +
Netley Abbey parkrun1586424:21 All - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Hilly Fields parkrun1859925:03 All - Graph It!
Hagley parkrun1182000:22:38 +
Brockenhurst parkrun112718632:41 All -  
Ormskirk parkrun120930300:31:04 +
Wimpole Estate parkrun112916928:07 All -  
Basingstoke parkrun111212900:24:31 +
Clumber Park parkrun112117629:51 All -  
Cuerden Valley parkrun1192000:24:47 +
Cuerden Valley parkrun1192024:47 All -  
Seven Fields parkrun1546700:28:28 +
Hamilton Lake parkrun1151621:47 All -  
Netley Abbey parkrun1586400:24:21 +
Fountains Abbey parkrun1283020:33 All -  
Mountbatten School parkrun17110100:31:29 +
Ormskirk parkrun120930331:04 All -  
Clitheroe Castle parkrun1639700:35:46 +
Pendle parkrun1465926:37 All -  
Medina I.O.W. parkrun19513900:30:57 +
Woking parkrun1485824:01 All -  
Hogmoor Inclosure parkrun111314000:29:34 +
Hagley parkrun1182022:38 All -  
Milano Nord parkrun1475300:27:49 +
Penrhyn parkrun1232624:33 All -  
Jersey parkrun111018500:30:53 +
Salisbury parkrun119326729:45 All -  
Canterbury parkrun1323600:27:29 +
Jersey parkrun111018530:53 All -  
Penrhyn parkrun1232600:24:33 +
Haigh Woodland parkrun18916837:04 All -  
Hyndburn parkrun1425300:29:55 +
Stretford parkrun127540530:23 All -  
Woking parkrun1485800:24:01 +
Portsmouth Lakeside parkrun1818726:32 All -  
Fountains Abbey parkrun1283000:20:33 +
Fareham parkrun19011428:52 All -  
Bushy parkrun1681102100:33:01 +
Milano Nord parkrun1475327:49 All -  
Clumber Park parkrun112117600:29:51 +
Richmond Olympic parkrun15521:59 All -  
Wimpole Estate parkrun112916900:28:07 +
Crewe parkrun112315430:05 All -  
Tidworth parkrun18615100:51:42 +
Hogmoor Inclosure parkrun111314029:34 All -  
Hilly Fields parkrun1859900:25:03 +
Catford parkrun19512527:24 All -  
Tawd Valley parkrun18111000:29:25 +
Clitheroe Castle parkrun1639735:46 All -  
Watermeadows parkrun1151500:23:51 +
Pocket parkrun112419533:47 All -  
Eden Project parkrun111116200:30:21 +
Ford parkrun1477432:29 All -  
Catford parkrun19512500:27:24 +
Watermeadows parkrun1151523:51 All -  
Crewe parkrun112315400:30:05 +
Mountbatten School parkrun17110131:29 All -  
Long Eaton parkrun118122900:28:06 +
Uckfield parkrun1416028:43 All -  
Fareham parkrun19511400:28:52 +
Tawd Valley parkrun18111029:25 All -  
Phoenix parkrun1232600:27:31 +
Seven Fields parkrun1546728:28 All -  
Guildford parkrun117125100:30:01 +
Itchen Valley Country parkrun110613529:53 All -  
Pendle parkrun1465900:26:37 +
Bartley Park parkrun1628430:26 All -  
Heaton parkrun133846700:31:01 +
Tidworth parkrun18615151:42 All -  
Hamilton Lake parkrun1151600:21:47 +
Bushy parkrun1681102133:01 All -  
Brockenhurst parkrun112718600:32:41 +
Basingstoke parkrun111212924:31 All -  
Itchen Valley Country parkrun110713500:29:53 +
Heaton parkrun133846731:01 All -  
Burnley parkrun114120400:29:06 +
Guildford parkrun117125130:01 All -  
Uckfield parkrun1416000:28:43 +
Hyndburn parkrun1425329:55 All -  
Abingdon parkrun114220200:29:14 +
Phoenix parkrun1232627:31 All -  
Pocket parkrun112419500:33:47 +
Canterbury parkrun1323627:29 All -  
Bolton parkrun116221800:31:49 +
Valentines parkrun1698025:14 All -  
Richmond Olympic parkrun15500:21:59 +
Poole parkrun121328428:59 All -  
Poole parkrun121328400:28:59 +
Long Eaton parkrun118122928:06 All -  
Portsmouth Lakeside parkrun1818700:26:32 +
Bolton parkrun116221831:49 All -  
Salisbury parkrun119326700:29:45 +
Eden Project parkrun111116230:21 All -  
2455500:20:06 +
Abingdon parkrun114220229:14 + All +
2975520:06 All  


Volunteer Summary

RoleOccasions
- Run Director - 21
- Timekeeper - 2
- Token Sorting - 8
- Results Processor - 6
- Photographer - 4
- Marshal - 4
- Pre-event Setup - 6
- Equipment Storage and Delivery - 2
- Barcode Scanning - 2
- Post-event Close Down - 10
- Finish Tokens - 1
- Number Checker - 2
- First Timers Welcome - 1
- Funnel Manager - 1
- Tail Walker - 4
- Volunteer Co-ordinator - 1
- Report Writer - 10
- Pacer (5k only) - 1
Total Credits58

+ Run Director +

21
+ Timekeeper + 2
+ Token Sorting + 8
+ Results Processor + 6
+ Photographer + 4
+ Marshal + 5
+ Pre-event Setup + 6
+ Equipment Storage and Delivery + 2
+ Barcode Scanning + 3
+ Post-event Close Down + 10
+ Finish Tokens + 1
+ Number Checker + 2
+ First Timers Welcome + 1
+ Funnel Manager + 1
+ Tail Walker + 4
+ Volunteer Co-ordinator + 1
+ Report Writer + 10
+ Pacer (5k only) + 1
Total Credits60

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -334,50 +327,32 @@

Andrew TAYLOR (A13093
- Locations: 104 -
-
- Finishers: 234,396 + Locations: 110
- Finishes: 2,439,045 + Finishers: 290255
- All-time events: 25,415 + Finishes: 3162741
- Volunteers: 33,906 + All-time events: 33395
- PBs: 389,055 + Volunteers: 40927
- Average finish time: 00:30:06 + PBs: 475561
- Average finishes per participant: 10.4 + Average finish time: 00:30:21
- Groups: 2,863 + Groups: 3422
-
-
- Female record: - Meghan RYAN – 16:41 - (27 Nov 2021) -
-
- Male record: - Sean TOBIN – 14:19 - (16 Nov 2019) -
-
- Age graded record: - Mary MARTIN - 103.49% 23:26 - ( 5 Oct 2019) -
+

- Stats last updated: Fri 14 Apr 2023 00:39:47 UTC + Stats last updated: Mon 30 Sep 2024 00:39:57 UTC
@@ -396,28 +371,29 @@

Andrew TAYLOR (A13093 Lidl - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -451,8 +437,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/2705084/all/index.html index 8cd4770b..11f41fc6 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Ireland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +53,7 @@
@@ -70,47 +65,35 @@
@@ -127,16 +110,16 @@ - - + -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -168,50 +151,32 @@

Duncan BOOTH (A270508
- Locations: 104 -
-
- Finishers: 235,027 + Locations: 110
- Finishes: 2,448,160 + Finishers: 290255
- All-time events: 25,518 + Finishes: 3162741
- Volunteers: 33,995 + All-time events: 33395
- PBs: 390,368 + Volunteers: 40927
- Average finish time: 00:30:06 + PBs: 475561
- Average finishes per participant: 10.4 + Average finish time: 00:30:21
- Groups: 2,868 + Groups: 3422
-
-
- Female record: - Meghan RYAN – 16:41 - (27 Nov 2021) -
-
- Male record: - Sean TOBIN – 14:19 - (16 Nov 2019) -
-
- Age graded record: - Mary MARTIN - 103.49% 23:26 - ( 5 Oct 2019) -
+
- Stats last updated: Mon 17 Apr 2023 00:39:58 UTC + Stats last updated: Mon 30 Sep 2024 00:39:57 UTC
@@ -230,28 +195,29 @@

Duncan BOOTH (A270508 Lidl - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -285,8 +261,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/2705084/index.html index 9594c40c..c840dee8 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + results | parkrun Ireland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +53,7 @@
@@ -70,47 +65,35 @@
@@ -133,18 +116,18 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volunteer Summary

RoleOccasions
- Marshal - 260
- Lead Bike - 130
- Event Day Course Check - 9
Total Credits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Volunteer Summary

RoleOccasions
+ Marshal + 350
+ Lead Bike + 130
+ Event Day Course Check + 82
Total Credits540

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



@@ -174,50 +157,32 @@

Duncan BOOTH (A270508
- Locations: 104 -
-
- Finishers: 235,027 + Locations: 110
- Finishes: 2,448,160 + Finishers: 290255
- All-time events: 25,518 + Finishes: 3162741
- Volunteers: 33,995 + All-time events: 33395
- PBs: 390,368 + Volunteers: 40927
- Average finish time: 00:30:06 + PBs: 475561
- Average finishes per participant: 10.4 + Average finish time: 00:30:21
- Groups: 2,868 + Groups: 3422
-
-
- Female record: - Meghan RYAN – 16:41 - (27 Nov 2021) -
-
- Male record: - Sean TOBIN – 14:19 - (16 Nov 2019) -
-
- Age graded record: - Mary MARTIN - 103.49% 23:26 - ( 5 Oct 2019) -
+

- Stats last updated: Mon 17 Apr 2023 00:39:58 UTC + Stats last updated: Mon 30 Sep 2024 00:39:57 UTC
@@ -236,28 +201,29 @@

Duncan BOOTH (A270508 Lidl - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -292,7 +268,7 @@

Duncan BOOTH (A270508 - + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/482/all/index.html index bd3dd47a..45deb9ba 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Ireland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +53,7 @@
@@ -70,47 +65,35 @@
@@ -127,8 +110,8 @@ - - + @@ -138,1650 +121,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM40-44 + Most recent age category was VM45-49

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time16:2521:0459:17
Age Grading79.25%65.45%23.56%
Overall Position134.831692

+
FastestAverage
(mean)
Slowest
Time16:2521:2659:17
Age Grading79.25%64.63%23.56%
Overall Position138.841692

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Harleston Magpies08/04/2023793525:1255.42% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03% +   +
Quakers Walk25/11/2023126825:0556.08%   -
Cannock Chase01/04/20232434425:4954.10% +
Aston Hall18/11/202352225:0156.23%   -
Kingston25/03/202360216430:0946.32% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Wolford Wood18/03/202352730:2445.94% +
Belvoir Castle04/11/2023911925:4254.73%   -
Kingston11/03/202360015027:1851.16% +
Five Arches28/10/202365422:5861.25%   -
Stockley Country04/03/2023817935:3239.31% +
Dover Waterfront21/10/202374525:2255.45%   -
Chasewater25/02/202310010026:1953.07% +
Rushcliffe14/10/20235087323:5458.86%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Kingston07/10/202363033150:2927.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Maaraue03/10/20231012522:3462.33%   -
Worcester04/02/202354318529:3047.34% +
University of Northampton30/09/2023112223:2460.11%   -
Crane Park28/01/202349014550:3727.59% +
Clifton23/09/20231911025:1455.75%   -
Kingston21/01/202359431139:3935.22% +
Wisbech16/09/202351523:0361.03%   -
Brooklands14/01/202313018830:4445.44% +
Holbrooks09/09/202362223:4359.31%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston01/01/202359113340:3134.47% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Kingston31/12/202259026442:4432.68% +
Riverfront19/08/20232594622:5761.29%   -
Bushy Park25/12/2022909169244:3931.28% +
Long Eaton12/08/202334112124:0658.37%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Kingston05/08/20236216723:2160.24%   -
Kingston17/12/202258818059:1723.56% +
Kingston29/07/20236208725:0955.93%   -
Kingston10/12/202258723255:4025.09% +
Kingston22/07/20236199224:2457.65%   -
Beacon03/12/2022737326:4152.34% +
Severn Valley Country15/07/20231411626:1353.66%   -
Ganger Farm26/11/2022211426:3452.57% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Bushy Park19/11/2022903110553:2326.16% +
Thornham Walks01/07/202353826:5251.99%   -
Leavesden Country12/11/202246928:3248.95% +
Kingston24/06/20236156524:0957.83%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Rosliston17/06/20233073624:4156.58%   -
Durlston Country Park29/10/2022335032:4542.65% +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1812,50 +1961,32 @@

Danny NORMAN (A482)
- Locations: 104 + Locations: 110
- Finishers: 234,396 + Finishers: 290255
- Finishes: 2,439,045 + Finishes: 3162741
- All-time events: 25,415 + All-time events: 33395
- Volunteers: 33,906 + Volunteers: 40927
- PBs: 389,055 + PBs: 475561
- Average finish time: 00:30:06 + Average finish time: 00:30:21
- Average finishes per participant: 10.4 + Groups: 3422
-
- Groups: 2,863 -
- -
- Female record: - Meghan RYAN – 16:41 - (27 Nov 2021) -
-
- Male record: - Sean TOBIN – 14:19 - (16 Nov 2019) -
-
- Age graded record: - Mary MARTIN - 103.49% 23:26 - ( 5 Oct 2019) -
+
- Stats last updated: Fri 14 Apr 2023 00:39:47 UTC + Stats last updated: Mon 30 Sep 2024 00:39:57 UTC
@@ -1874,28 +2005,29 @@

Danny NORMAN (A482) - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1929,8 +2071,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/482/index.html index da06567f..45d93e87 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + results | parkrun Ireland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +53,7 @@
@@ -70,47 +65,35 @@
@@ -127,8 +110,8 @@ - - + @@ -137,878 +120,1004 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns total

+

867 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM40-44 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2321100:16:25 + Most recent age category was VM45-49 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2341116:25 + All +
Kingston parkrun471116:51 + All +
Bedfont Lakes parkrun81117:04 + All +
Nonsuch parkrun71116:52 + All +
Richmond parkrun71117:13 + All +
Crane Park parkrun61116:48 + All +
Riddlesdown parkrun42217:01 + All +
Brockwell parkrun, Herne Hill31116:56 + All +
Southwark parkrun34417:27 + All +
Fulham Palace parkrun33317:47 + All +
Cannon Hill parkrun, Birmingham3111118:04 + All +
Gunnersbury parkrun31116:51 + All +
Wimbledon Common parkrun35517:27 + All +
Brighton & Hove parkrun31116:27 + All +
Basingstoke parkrun35517:48 + All +
Black Park parkrun31117:25 + All +
Dulwich parkrun33317:11 + All +
Bexley parkrun31117:48 + All +
Tilgate parkrun31117:10 + All +
Frimley Lodge parkrun31117:11 + All +
Hilly Fields parkrun31117:50 + All +
Old Deer Park parkrun31117:41 + All +
Guildford parkrun31117:17 + All +
Homewood parkrun3151722:21 + All +
Chelmsford Central parkrun22217:24 + All +
Mole Valley parkrun2262622:56 + All +
Durlston Country Park parkrun2355032:45 + All +
Hazelwood parkrun2182222:21 + All +
Southsea parkrun23317:55 + All +
St Albans parkrun21116:37 + All +
Havant parkrun21117:46 + All +
Ashford parkrun22217:57 + All +
Bedford parkrun21116:55 + All +
Margate parkrun21118:16 + All +
Milton Keynes parkrun23317:26 + All +
Preston Park parkrun, Brighton22217:40 + All +
Shorne Woods parkrun21118:14 + All +
Canons Park parkrun27720:50 All - Graph It!
Kingston parkrun351100:16:51 +
Osterley parkrun21117:57 All - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Eastleigh parkrun27719:14 All - Graph It!
Richmond parkrun71100:17:13 +
Brooklands parkrun2394223:22 All - Graph It!
Nonsuch parkrun71100:16:52 +
Great Lines parkrun, Medway25518:25 All - Graph It!
Crane Park parkrun61100:16:48 +
Malling Rec parkrun2738526:59 All - Graph It!
Brighton & Hove parkrun31100:16:27 +
Crystal Palace parkrun21117:24 All - Graph It!
Fulham Palace parkrun33300:17:47 +
Northala Fields parkrun22218:06 All - Graph It!
Frimley Lodge parkrun31100:17:11 +
Northampton parkrun21116:56 All - Graph It!
Gunnersbury parkrun31100:16:51 +
Oak Hill parkrun21117:13 All - Graph It!
Bexley parkrun31100:17:48 +
Lloyd parkrun, Croydon21118:01 All - Graph It!
Tilgate parkrun31100:17:10 +
Newbury parkrun21117:20 All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Cranleigh parkrun26620:49 All - Graph It!
Southwark parkrun34400:17:27 +
Littlehampton Prom parkrun2384324:22 All - Graph It!
Basingstoke parkrun35500:17:48 +
Whitstable parkrun23318:12 All - Graph It!
Hilly Fields parkrun31100:17:50 +
Bethlem Royal Hospital parkrun2263223:22 All - Graph It!
Black Park parkrun31100:17:25 +
Cyclopark parkrun2353824:01 All - Graph It!
Riddlesdown parkrun32200:17:01 +
Hockley Woods parkrun26621:09 All - Graph It!
Dulwich parkrun33300:17:11 +
South Oxhey parkrun21119:13 All - Graph It!
Guildford parkrun31100:17:17 +
Pymmes parkrun21117:06 All - Graph It!
Old Deer Park parkrun31100:17:41 +
Hastings parkrun291120:41 All - Graph It!
Wimbledon Common parkrun35500:17:27 +
Wycombe Rye parkrun22217:17 All - Graph It!
Homewood parkrun3151700:22:21 +
Hove Promenade parkrun27719:23 All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Banstead Woods parkrun21117:31 All - Graph It!
Pymmes parkrun21100:17:06 +
Wormwood Scrubs parkrun21118:00 All - Graph It!
Hove Promenade parkrun27700:19:23 +
Roundshaw Downs parkrun23318:14 All - Graph It!
Netley Abbey parkrun21100:17:21 +
Mile End parkrun21116:53 All - Graph It!
Mile End parkrun21100:16:53 +
Bevendean Down parkrun28923:21 All - Graph It!
Southampton parkrun23300:16:44 +
Finsbury parkrun22217:15 All - Graph It!
Northala Fields parkrun22200:18:06 +
Tooting Common parkrun2181819:14 All - Graph It!
Hockley Woods parkrun26600:21:09 +
Bedgebury Pinetum parkrun28921:24 All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Harrow parkrun25520:23 All - Graph It!
Upton Court parkrun22200:17:24 +
Netley Abbey parkrun21117:21 All - Graph It!
Alice Holt parkrun21100:17:59 +
Ellenbrook Fields parkrun2141519:58 All - Graph It!
Osterley parkrun21100:17:57 +
Worthing parkrun28918:44 All - Graph It!
Burgess parkrun22200:16:45 +
Grovelands parkrun, Enfield22217:21 All - Graph It!
Gladstone parkrun21100:17:09 +
Beckton parkrun23317:24 All - Graph It!
Havant parkrun21100:17:46 +
Gladstone parkrun21117:09 All - Graph It!
Cranleigh parkrun26600:20:49 +
Hackney Marshes parkrun22216:46 All - Graph It!
Finsbury parkrun22200:17:15 +
Burgess parkrun22216:45 All - Graph It!
Southsea parkrun23300:17:55 +
Orpington parkrun22217:27 All - Graph It!
Margate parkrun21100:18:16 +
Barking parkrun22216:45 All - Graph It!
Northampton parkrun21100:16:56 +
Southampton parkrun23316:44 All - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Alice Holt parkrun21117:59 All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Woodley parkrun21117:02 All - Graph It!
Crystal Palace parkrun21100:17:24 +
Upton Court parkrun22217:24 All - Graph It!
Eastleigh parkrun27700:19:14 +
Frogmary Green Farm parkrun1597225:58 All - Graph It!
Hastings parkrun291100:20:41 +
Harrow Lodge parkrun11118:48 All - Graph It!
Banstead Woods parkrun21100:17:31 +
Witney parkrun1202022:34 All - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Leamington parkrun12218:52 All - Graph It!
Hackney Marshes parkrun22200:16:46 +
Brockenhurst parkrun13318:23 All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Hogmoor Inclosure parkrun1262625:26 All - Graph It!
Woodley parkrun21100:17:02 +
Hastings High School parkrun1637827:33 All - Graph It!
Tooting Common parkrun2181800:19:14 +
Cannock Chase parkrun1384425:49 All - Graph It!
Milton Keynes parkrun23300:17:26 +
Wimpole Estate parkrun1202122:14 All - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Haverhill parkrun1121323:32 All - Graph It!
Barking parkrun22200:16:45 +
Edenbrook Country parkrun110514828:01 All - Graph It!
Canons Park parkrun27700:20:50 +
Maidstone River Park parkrun13318:00 All - Graph It!
Newbury parkrun21100:17:20 +
Cheltenham parkrun12217:24 All - Graph It!
Shorne Woods parkrun21100:18:14 +
Victoria Dock parkrun1273020:04 All - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Ekebergsletta parkrun1304325:57 All - Graph It!
Mole Valley parkrun2262600:22:56 +
Oxford parkrun11117:18 All - Graph It!
Oak Hill parkrun21100:17:13 +
Aylesbury parkrun11117:51 All - Graph It!
Cyclopark parkrun2353800:24:01 +
Mote Park parkrun19712231:28 All - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Riverfront parkrun1404622:57 All - Graph It!
South Oxhey parkrun21100:19:13 +
Newent parkrun1182225:27 All - Graph It!
Chelmsford Central parkrun22200:17:24 +
Clapham Common parkrun1404220:22 All - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Llanishen Park parkrun1303323:48 All - Graph It!
Bevendean Down parkrun28900:23:21 +
Heartwood Forest parkrun1252721:41 All - Graph It!
Bedford parkrun21100:16:55 +
Walthamstow parkrun11117:48 All - Graph It!
Whitstable parkrun23300:18:12 +
Malmö Ribersborg parkrun111215128:46 All - Graph It!
Orpington parkrun22200:17:27 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 All - Graph It!
Ashford parkrun22200:17:57 +
Huntingdon parkrun1202121:10 All - Graph It!
Hazelwood parkrun2182200:22:21 +
Felixstowe parkrun1121221:07 All - Graph It!
Brooklands parkrun2394200:23:22 +
Tidworth parkrun110815535:14 All - Graph It!
Wycombe Rye parkrun22200:17:17 +
Brandon Country Park parkrun11118:30 All - Graph It!
Harrow parkrun25500:20:23 +
Prospect parkrun1232322:42 All - Graph It!
Beckton parkrun23300:17:24 +
Mildenhall Hub parkrun1273124:33 All - Graph It!
St Albans parkrun21100:16:37 +
York parkrun12217:12 All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Thetford parkrun1161721:45 All -  
Buckingham parkrun12200:18:37 +
Great Dunmow parkrun14420:25 All -  
Thomas Mills parkrun1486500:30:19 +
Leavesden Country parkrun1506928:32 All -  
Leamington parkrun12200:18:52 +
Catford parkrun1303322:32 All -  
Church Mead parkrun16610200:32:53 +
Lordship Recreation Ground parkrun19112425:22 All -  
Letchworth parkrun1141400:23:13 +
Rugby parkrun1181822:26 All -  
Mulbarton parkrun12200:19:55 +
Mulbarton parkrun12219:55 All -  
Arrow Valley parkrun13300:18:05 +
Swaffham parkrun191022:19 All -  
Frogmary Green Farm parkrun1597200:25:58 +
Ganger Farm parkrun19811426:34 All -  
Sutton Park parkrun1475500:24:54 +
Beckenham Place parkrun1121220:28 All -  
Reigate Priory parkrun16600:19:06 +
Forest Rec parkrun1677626:35 All -  
Bury St Edmunds parkrun13300:18:17 +
Street parkrun1283525:52 All -  
Pollok parkrun, Glasgow11100:17:00 +
Market Bosworth Country Park parkrun110614435:35 All -  
Kingdom parkrun1222500:24:39 +
Whiteley parkrun1141520:56 All -  
Barclay parkrun15600:23:13 +
Kingsbury Water parkrun1394725:05 All -  
Chippenham parkrun1212100:20:08 +
Springhill parkrun14422:18 All -  
Ipswich parkrun11100:17:34 +
Wolford Wood parkrun1212730:24 All -  
Itchen Valley Country parkrun1476100:27:37 +
Pontypridd parkrun12217:54 All -  
Neckarau parkrun1243000:27:11 +
Pocket parkrun1222321:38 All -  
Brandon Country Park parkrun11100:18:30 +
Stockley Country parkrun111917935:32 All -  
Boston parkrun17700:21:18 +
Braunstone parkrun1262720:41 All -  
University Parks parkrun119032600:31:42 +
Didcot parkrun1101121:28 All -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Littleport parkrun1445125:16 All -  
Lullingstone parkrun17700:21:21 +
Yarborough Leisure Centre parkrun1466125:59 All -  
Coventry parkrun1292900:20:51 +
Roding Valley parkrun1111321:26 All -  
Berkeley Green parkrun1233100:28:31 +
Clair parkrun13318:36 All -  
Mersea Island parkrun1121200:20:59 +
Dinton Pastures parkrun1131321:23 All -  
Aylesbury parkrun11100:17:51 +
Beacon Hill Country Park parkrun1273725:54 All -  
Royal Tunbridge Wells parkrun18900:19:23 +
Severn Bridge parkrun1353921:32 All -  
Southall parkrun1557500:31:38 +
Abbey Park parkrun1779425:21 All -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Dudley parkrun1445626:35 All -  
Pomphrey Hill parkrun1364100:23:02 +
Pegwell Bay parkrun12217:40 All -  
Henley-on-Thames parkrun1111100:22:25 +
Manor Field parkrun, Whittlesey1121324:25 All -  
Aachener Weiher parkrun1101100:24:55 +
Blaise Castle parkrun112816326:20 All -  
Penrose parkrun1151600:19:40 +
Chipping Sodbury parkrun1303221:20 All -  
King’s Lynn parkrun1151500:20:07 +
Foots Cray Meadows parkrun1212323:17 All -  
Fulbourn Hospital parkrun1344700:24:59 +
Thames Path parkrun, Woolwich1789023:42 All -  
Fareham parkrun16600:19:21 +
Bath Skyline parkrun1192021:08 All -  
Brockenhurst parkrun13300:18:23 +
Dishley parkrun, Loughborough110311424:30 All -  
Canterbury parkrun16600:21:56 +
Thornham Walks parkrun1363826:52 All -  
Alton Water parkrun1538300:35:09 +
Moors Valley parkrun19919:40 All -  
Littleport parkrun1445100:25:16 +
East Grinstead parkrun1131423:10 All -  
Newport parkrun11100:17:29 +
Sutton Park parkrun1475524:54 All -  
California Country parkrun1649000:28:49 +
University of Northampton parkrun1192223:24 All -  
Thornbury parkrun1323400:28:19 +
Shipley Country parkrun1232424:45 All -  
Greenwich parkrun12200:18:07 +
Lancing Beach Green parkrun1141421:08 All -  
Seven Fields parkrun1475500:26:28 +
Dover Waterfront parkrun1374525:22 All -  
Highbury Fields parkrun11100:17:25 +
Rickmansworth parkrun1242721:39 All -  
The Great Field parkrun19313500:29:12 +
Queen Elizabeth parkrun12219:08 All -  
Street parkrun1283500:25:52 +
Sizewell parkrun1172023:30 All -  
South Norwood parkrun1121200:21:11 +
Holbrooks parkrun1202223:43 All -  
Dunstable Downs parkrun1374300:24:58 +
Highbury Fields parkrun11117:25 All -  
Melton Mowbray parkrun1192200:22:38 +
Clacton Seafront parkrun19920:35 All -  
Horsham parkrun14500:18:16 +
Delaware and Raritan Canal parkrun12221:06 All -  
Irchester Country parkrun1586200:25:13 +
Wisbech parkrun1111523:03 All -  
Stratford-upon-Avon parkrun1202500:21:14 +
Milton Country parkrun13317:43 All -  
Wotton parkrun1182100:24:45 +
Seaton parkrun1394824:09 All -  
Bath Skyline parkrun1192000:21:08 +
Higginson parkrun, Marlow1272922:17 All -  
Great Dunmow parkrun14400:20:25 +
Quakers Walk parkrun1566825:05 All -  
Corby parkrun18800:23:09 +
Lister Park parkrun, Bradford1313621:55 All -  
Bracknell parkrun18800:20:04 +
Wendover Woods parkrun1262623:51 All -  
Cromhall parkrun1151600:24:20 +
Sence Valley Forest Park parkrun1232526:28 All -  
Perry Hall parkrun1464900:24:58 +
Canterbury parkrun16621:56 All -  
Gunpowder parkrun12200:17:34 +
Henstridge Airfield parkrun18821:41 All -  
Luton Wardown parkrun191000:19:36 +
Five Arches parkrun1455422:58 All -  
Ifield Mill Pond parkrun1373800:24:33 +
Yeovil Montacute parkrun1707525:51 All -  
March parkrun15500:21:11 +
Watermeadows parkrun1283124:57 All -  
Roding Valley parkrun1111300:21:26 +
Tamworth Castle Grounds parkrun1333523:26 All -  
Charlton parkrun18213000:32:05 +
St Helens parkrun1606824:27 All -  
Malmö Ribersborg parkrun111215100:28:46 +
Weymouth parkrun1141420:45 All -  
Worcester parkrun114418500:29:30 +
Walmer and Deal Seafront parkrun18821:38 All -  
Wolford Wood parkrun1212700:30:24 +
Aston Hall parkrun1202225:01 All -  
Fire Service College parkrun1181900:22:12 +
Royal Tunbridge Wells parkrun18919:23 All -  
Panshanger parkrun17700:20:14 +
Corby parkrun18823:09 All -  
Conkers parkrun12200:17:46 +
Marlborough Common parkrun1202122:48 All -  
Banbury parkrun1222300:21:16 +
Battlestead Croft parkrun1111122:53 All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Shepton Mallet parkrun1121421:50 All -  
Rushmere parkrun1131400:22:39 +
Clare Castle parkrun1252723:04 All -  
Whiteley parkrun1141500:20:56 +
Coldham’s Common parkrun1535923:04 All -  
Sandringham parkrun1466300:30:18 +
Brunswick Park parkrun1212223:58 All -  
Victoria Dock parkrun1283000:20:04 +
Brentwood parkrun17722:28 All -  
Queen Elizabeth parkrun12200:19:08 +
Somerdale Pavilion parkrun1384631:17 All -  
Lordship Recreation Ground parkrun19112400:25:22 +
Wakehurst parkrun18810525:00 All -  
Somerdale Pavilion parkrun1384600:31:17 +
Boston parkrun17721:18 All -  
Dartford parkrun11100:17:59 +
Morden parkrun111715526:58 All -  
Winchester parkrun14500:18:28 +
Pontefract parkrun1718724:10 All -  
Stratford Park parkrun, Stroud1566500:27:51 +
Jersey Farm parkrun1252723:11 All -  
Sherwood Pines parkrun1161800:21:33 +
Bug Hunter Waters parkrun1455022:41 All -  
Grove Fields parkrun1578500:28:03 +
Rosliston parkrun1333624:41 All -  
Witney parkrun1202000:22:34 +
Longrun Meadow parkrun111416532:01 All -  
Preston Park parkrun, Brighton12200:17:40 +
Fire Service College parkrun1181922:12 All -  
Colchester Castle parkrun14400:18:04 +
Woolacombe Dunes parkrun19410931:20 All -  
Tidworth parkrun110815500:35:14 +
The Plens parkrun1303124:04 All -  
Walmer and Deal Seafront parkrun18800:21:38 +
Arrow Valley parkrun13318:05 All -  
Ferry Meadows parkrun15500:17:27 +
Tonbridge parkrun14418:40 All -  
St Mary’s parkrun1587400:29:14 +
East Brighton parkrun1182123:56 All -  
Dartford Heath parkrun1171700:22:06 +
Three Brooks parkrun1697223:46 All -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Peacehaven parkrun17721:07 All -  
Great Denham parkrun16600:19:27 +
Pontypool parkrun1232323:51 All -  
Hastings High School parkrun1637800:27:33 +
Cromhall parkrun1151624:20 All -  
Wendover Woods parkrun1262600:23:51 +
Dereham parkrun1323323:47 All -  
Peckham Rye parkrun11100:17:49 +
Bournemouth parkrun14417:43 All -  
Upton House parkrun1252700:22:34 +
Pomphrey Hill parkrun1364123:02 All -  
Lee-on-the-Solent parkrun17700:19:40 +
Seaford Beach parkrun1535622:25 All -  
Graves parkrun11100:18:18 +
Mansfield parkrun11117:09 All -  
Maidstone parkrun13300:18:00 +
Fountains Abbey parkrun11118:03 All -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Loch Neaton parkrun, Watton1171725:49 All -  
South Woodham Ferrers parkrun18800:21:14 +
Brueton parkrun1475021:33 All -  
Pontypridd parkrun12200:17:54 +
Great Cornard parkrun1192020:33 All -  
Bournemouth parkrun14400:17:43 +
Dunstable Downs parkrun1374324:58 All -  
Sizewell parkrun1172000:23:30 +
Beeston parkrun1374023:53 All -  
Rushmoor parkrun19900:18:29 +
Feltham parkrun13424:56 All -  
Walsall Arboretum parkrun19810600:25:31 +
Markeaton parkrun1576422:56 All -  
Gorleston Cliffs parkrun12200:17:43 +
Reigate Priory parkrun16619:06 All -  
Uckfield parkrun1404300:24:12 +
Highwoods parkrun1252624:49 All -  
Aldenham parkrun1141400:21:37 +
Valentines parkrun11116:49 All -  
Gadebridge parkrun1141400:22:22 +
Springburn parkrun, Glasgow13318:05 All -  
Horspath parkrun17410600:28:12 +
California Country parkrun1649028:49 All -  
Rogiet parkrun1151600:24:27 +
Rushmoor parkrun19918:29 All -  
Rendlesham Forest parkrun1264600:37:01 +
Mountbatten School parkrun1323424:11 All -  
Dishley parkrun, Loughborough110311400:24:30 +
Colchester Castle parkrun14418:04 All -  
Great Cornard parkrun1192000:20:33 +
Buckingham parkrun12218:37 All -  
Kettering parkrun1232600:22:50 +
Sunny Hill parkrun1202424:39 All -  
Pont y Bala parkrun15700:23:18 +
Bognor Regis parkrun12218:12 All -  
Burnham and Highbridge parkrun17510000:27:51 +
Aachener Weiher parkrun1101124:55 All -  
Stonehouse parkrun1131300:20:09 +
Peckham Rye parkrun11117:49 All -  
Hampstead Heath parkrun11100:17:45 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 All -  
Wickford Memorial parkrun1436600:51:15 +
Great Notley parkrun16620:16 All -  
Castle Park parkrun1394100:22:34 +
Snowden Field parkrun1242624:15 All -  
Huntingdon parkrun1202100:21:10 +
Burnham-on-Crouch parkrun18822:01 All -  
Great Salterns parkrun19212400:30:27 +
Woking parkrun18818:19 All -  
Snowden Field parkrun1242600:24:15 +
Neckarufer parkrun, Esslingen1364425:12 All -  
Southend parkrun11100:16:28 +
Worcester parkrun114418529:30 All -  
Andover parkrun11100:17:33 +
Blandford parkrun18920:11 All -  
parkrun Zalew Żyrardowski16700:24:38 +
Pont y Bala parkrun15723:18 All -  
Marecchia parkrun11100:19:50 +
Chichester parkrun13319:05 All -  
Cheltenham parkrun12200:17:24 +
Kingdom parkrun1222524:39 All -  
St Helens parkrun1606800:24:27 +
Westmill parkrun1101022:55 All -  
Bartley Park parkrun18415100:32:38 +
Dartford parkrun11117:59 All -  
Severn Bridge parkrun1353900:21:32 +
Hanworth parkrun1364024:26 All -  
Pontypool parkrun1232300:23:51 +
Bracknell parkrun18820:04 All -  
Poole parkrun14400:16:57 +
Folkestone parkrun1212521:48 All -  
Bramhall parkrun115924700:35:16 +
Uckfield parkrun1404324:12 All -  
Sunny Hill parkrun1202400:24:39 +
Harrogate parkrun13318:11 All -  
Cassiobury parkrun1111100:20:14 +
Kesgrave parkrun1374021:18 All -  
Hoblingwell parkrun1202400:23:52 +
Thomas Mills parkrun1486530:19 All -  
Colwick parkrun18800:19:46 +
Lymington Woodside parkrun15721:59 All -  
Chipping Norton School parkrun1455100:26:40 +
Hereford parkrun1535323:07 All -  
Worthing parkrun18900:18:44 +
Chasewater parkrun18210026:19 All -  
Harrow Lodge parkrun11100:18:48 +
South Norwood parkrun1121221:11 All -  
Bradford parkrun1313600:21:55 +
Panshanger parkrun17720:14 All -  
Bury Field parkrun1669000:33:07 +
Wolverhampton parkrun1556624:54 All -  
Pocket parkrun1222300:21:38 +
Harcourt Hill parkrun1171721:13 All -  
Longrun Meadow parkrun111416500:32:01 +
Tetbury Goods Shed parkrun1253024:25 All -  
Worcester Pitchcroft parkrun111814300:27:04 +
Gloucester North parkrun1101022:14 All -  
Highwoods parkrun1252600:24:49 +
Harlow parkrun1151523:00 All -  
Maidenhead parkrun17700:18:49 +
Alvaston parkrun1515922:24 All -  
Soham Village College parkrun1253200:28:03 +
Worcester Pitchcroft parkrun111814327:04 All -  
Rickmansworth parkrun1242700:21:39 +
Perry Hall parkrun1464924:58 All -  
Swaffham parkrun191000:22:19 +
Newport parkrun11117:29 All -  
Brentwood parkrun17700:22:28 +
Tring parkrun1171823:38 All -  
Lymington Woodside parkrun15700:21:59 +
Severn Valley Country parkrun1141626:13 All -  
Loch Neaton parkrun, Watton1171700:25:49 +
Wanstead Flats parkrun13317:13 All -  
Daventry parkrun1151500:21:10 +
Daventry parkrun1151521:10 All -  
Hatfield Forest parkrun1181800:20:36 +
St Mary’s parkrun1587429:14 All -  
Kingsway parkrun, Gloucester1192000:21:20 +
Poole parkrun14416:57 All -  
Salcey Forest parkrun1384300:24:53 +
Melton Mowbray parkrun1192222:38 All -  
parkrun des Dougnes, Cubnezais12200:19:42 +
The Old Showfield parkrun1636923:30 All -  
Prospect parkrun1232300:22:42 +
Henley-on-Thames parkrun1111122:25 All -  
Weymouth parkrun1141400:20:45 +
Crissy Field parkrun1101220:40 All -  
Westmill parkrun1101000:22:55 +
Babbs Mill parkrun1405128:00 All -  
East Brighton parkrun1182100:23:56 +
Maidenhead parkrun17718:49 All -  
Harlow parkrun1151500:23:00 +
Ross-on-Wye parkrun1172124:22 All -  
Linford Wood parkrun1222200:21:45 +
Kettering parkrun1232622:50 All -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Stratford Park parkrun, Stroud1566527:51 All -  
Lydney parkrun1202100:23:19 +
Bury St Edmunds parkrun13318:17 All -  
Braunstone parkrun1262700:20:41 +
Mallards Pike parkrun1324630:57 All -  
Harleston Magpies parkrun1293500:25:12 +
Market Harborough parkrun1303121:17 All -  
Clapham Common parkrun1404200:20:22 +
Cassiobury parkrun1111120:14 All -  
Market Bosworth Country Park parkrun110614400:35:35 +
Squerryes Winery parkrun1323627:45 All -  
Jersey Farm parkrun1252700:23:11 +
Walsall Arboretum parkrun19010625:31 All -  
Kesgrave parkrun1374000:21:18 +
Penrose parkrun1151619:40 All -  
Stevenage parkrun17700:19:32 +
King George V Playing Field parkrun, Cheltenham1232826:08 All -  
Hadleigh parkrun, Essex1252600:24:27 +
Evesham parkrun1111121:39 All -  
Squerryes Winery parkrun1323600:27:45 +
Warwick Racecourse parkrun1486024:55 All -  
Rutland Water parkrun1293000:22:44 +
Huddersfield parkrun1626722:02 All -  
Beckenham Place parkrun1121200:20:28 +
Clevedon Salthouse Fields parkrun1384925:13 All -  
Sutcliffe parkrun113117200:30:34 +
Long Eaton parkrun19912124:06 All -  
Haverhill parkrun1121300:23:32 +
Barry Island parkrun1394223:51 All -  
Leavesden Country parkrun1506900:28:32 +
Ifield Mill Pond parkrun1373824:33 All -  
Coldham’s Common parkrun1535900:23:04 +
Upton House parkrun1252722:34 All -  
Chichester parkrun13300:19:05 +
Lullingstone parkrun17721:21 All -  
Billericay parkrun1121300:21:20 +
The Leas parkrun, Minster1252524:37 All -  
Bromley parkrun13300:17:18 +
Medina I.O.W. parkrun11117:20 All -  
Babbs Mill parkrun1405100:28:00 +
Uditore parkrun13320:28 All -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Hunstanton Promenade parkrun1283523:45 All -  
Bryn Bach parkrun11100:16:50 +
Raphael parkrun13319:35 All -  
York parkrun12200:17:12 +
Burnham and Highbridge parkrun17510027:51 All -  
Storeys Field parkrun115121100:28:49 +
Salcey Forest parkrun1384324:53 All -  
Chipping Sodbury parkrun1303200:21:20 +
Ferry Meadows parkrun15517:27 All -  
Mote Park parkrun19712200:31:28 +
Barclay parkrun15623:13 All -  
Watermeadows parkrun1283100:24:57 +
Irchester Country parkrun1586225:13 All -  
Woking parkrun18800:18:19 +
Maldon Prom parkrun11118:04 All -  
Raphael parkrun13300:19:35 +
Salisbury parkrun1111119:34 All -  
Harwich parkrun191000:21:22 +
Tremorfa parkrun1272923:30 All -  
Fritton Lake parkrun11100:18:26 +
Billericay parkrun1121321:20 All -  
Heartwood Forest parkrun1252700:21:41 +
Gedling parkrun1273224:59 All -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Oaklands parkrun111820336:10 All -  
Bedworth parkrun1171700:22:14 +
Winchester parkrun14518:28 All -  
Clair parkrun13300:18:36 +
Aldenham parkrun1141421:37 All -  
Brueton parkrun1475000:21:33 +
East Park parkrun1121424:18 All -  
Higginson parkrun, Marlow1272900:22:17 +
Soham Village College parkrun1253228:03 All -  
Bognor Regis parkrun12200:18:12 +
Stevenage parkrun17719:32 All -  
Huddersfield parkrun1626700:22:02 +
Tewkesbury parkrun1111422:50 All -  
Heaton parkrun13300:18:08 +
Seven Fields parkrun1475526:28 All -  
Chasewater parkrun18210000:26:19 +
Conkers parkrun12217:46 All -  
Tewkesbury parkrun1111400:22:50 +
Lee-on-the-Solent parkrun17719:40 All -  
Marple parkrun11100:17:15 +
Brixworth Country parkrun1496126:53 All -  
Cannock Chase parkrun1384400:25:49 +
Abingdon parkrun15518:03 All -  
Edgbaston Reservoir parkrun1658600:26:24 +
Lowestoft parkrun1232621:10 All -  
Cirencester parkrun1222400:22:40 +
Chipping Norton School parkrun1455126:40 All -  
Kingsbury Water parkrun1394700:25:05 +
Linford Wood parkrun1222221:45 All -  
Peacehaven parkrun17700:21:07 +
Harwich parkrun191021:22 All -  
Lancing Beach Green parkrun1141400:21:08 +
Fulbourn Hospital parkrun1344724:59 All -  
Springburn parkrun, Glasgow13300:18:05 +
Gunpowder parkrun12217:34 All -  
Market Harborough parkrun1303100:21:17 +
Dartford Heath parkrun1171722:06 All -  
Amager Fælled parkrun1333700:24:23 +
Sandhurst Memorial parkrun1537328:54 All -  
Hanworth parkrun1364000:24:26 +
Woodhouse Moor parkrun11117:22 All -  
Salisbury parkrun1111100:19:34 +
Sandwell Valley parkrun1455930:43 All -  
Houghton Hall parkrun1131300:21:48 +
Wyre Forest parkrun1434825:56 All -  
Chalkwell Beach parkrun1819600:24:40 +
parkrun Zalew Żyrardowski16724:38 All -  
Melksham parkrun1171700:24:31 +
Bramhall parkrun115924735:16 All -  
Thetford parkrun1161700:21:45 +
Hatfield Forest parkrun1181820:36 All -  
Pontefract parkrun1718700:24:10 +
Swansea Bay parkrun1748323:44 All -  
Downham Market Academy parkrun1121300:24:35 +
Wollaton Hall parkrun1889723:51 All -  
Fountains Abbey parkrun11100:18:03 +
Horsham parkrun14518:16 All -  
Cardiff parkrun111011700:22:02 +
Jersey parkrun16619:41 All -  
Littlehampton Prom parkrun1384300:24:22 +
Berkeley Green parkrun1233128:31 All -  
Uditore parkrun13300:20:28 +
Cardiff parkrun111011722:02 All -  
Beacon parkrun1587300:26:41 +
Ally Pally parkrun11118:09 All -  
parkrun de Rouen15500:21:41 +
Thurrock parkrun, Orsett Heath16620:41 All -  
Walthamstow parkrun11100:17:48 +
Beacon parkrun1587326:41 All -  
Shepton Mallet parkrun1121400:21:50 +
Albert parkrun, Middlesbrough1515423:17 All -  
Marine Parade parkrun17711100:29:24 +
Sherwood Pines parkrun1161821:33 All -  
Foots Cray Meadows parkrun1212300:23:17 +
Wickford Memorial parkrun1436651:15 All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Thornbury parkrun1323428:19 All -  
Evesham parkrun1111100:21:39 +
Malling parkrun18314547:25 All -  
Southwick Country parkrun1272900:21:47 +
Itchen Valley Country parkrun1476127:37 All -  
Lydiard parkrun18800:18:25 +
Pollok parkrun, Glasgow11117:00 All -  
Sandhurst Memorial parkrun1537300:28:54 +
Eastville parkrun120525325:12 All -  
Bicester parkrun14400:20:13 +
Rutland Water parkrun1293022:44 All -  
Wimpole Estate parkrun1202100:22:14 +
Chalkwell Beach parkrun1819624:40 All -  
Markshall Estate parkrun110315600:32:26 +
Amager Fælled parkrun1333724:23 All -  
Dinton Pastures parkrun1131300:21:23 +
Hoblingwell parkrun1202423:52 All -  
Tonbridge parkrun14400:18:40 +
Belton House parkrun1141523:48 All -  
Wanstead Flats parkrun13300:17:13 +
Kagerzoom parkrun1435824:39 All -  
Woodhouse Moor parkrun11100:17:22 +
Gorleston Cliffs parkrun12217:43 All -  
Mountbatten School parkrun1323400:24:11 +
King’s Lynn parkrun1151520:07 All -  
Eastville parkrun120525300:25:12 +
Holkham parkrun1506925:37 All -  
Brixworth Country parkrun1496100:26:53 +
Horspath parkrun17410628:12 All -  
Portsmouth Lakeside parkrun19900:19:12 +
Southwick Country parkrun1272921:47 All -  
Milton Country parkrun13300:17:43 +
Rushmere parkrun1131422:39 All -  
Swanley parkrun19712500:31:18 +
Zuiderpark parkrun, Den Haag1738124:07 All -  
Springhill parkrun14400:22:18 +
Heaton parkrun13318:08 All -  
Gloucester North parkrun1101000:22:14 +
Colney Lane parkrun1495524:01 All -  
Feltham parkrun13400:24:56 +
Leicester Victoria parkrun19711626:45 All -  
Crissy Field parkrun1101200:20:40 +
Church Mead parkrun16610232:53 All -  
Ally Pally parkrun11100:18:09 +
Southend parkrun11116:28 All -  
Ashton Court parkrun1859500:22:59 +
Lydney parkrun1202123:19 All -  
Oaklands parkrun111820300:36:10 +
Edgbaston Reservoir parkrun1658626:24 All -  
Sittingbourne parkrun18800:20:56 +
Reading parkrun12217:18 All -  
Moors Valley parkrun19900:19:40 +
March parkrun15521:11 All -  
Catford parkrun1303300:22:32 +
Woodgate Valley Country Park parkrun16513245:50 All -  
Clare Castle parkrun1252700:23:04 +
Maaraue parkrun1232522:34 All -  
Harrogate parkrun13300:18:11 +
Stonehouse parkrun1131320:09 All -  
Seaford Beach parkrun1535600:22:25 +
Rheinpark parkrun1151825:30 All -  
Tring parkrun1171800:23:38 +
Edinburgh parkrun12217:00 All -  
Sandwell Valley parkrun1455900:30:43 +
Chippenham parkrun1212120:08 All -  
Basildon parkrun15500:18:13 +
Stratford-upon-Avon parkrun1202521:14 All -  
The Leas parkrun, Minster1252500:24:37 +
Henlow Bridge Lakes parkrun17511532:34 All -  
Little Stoke parkrun11100:17:03 +
Bromley parkrun13317:18 All -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Houghton Hall parkrun1131321:48 All -  
Felixstowe parkrun1121200:21:07 +
Sittingbourne parkrun18820:56 All -  
Yeovil Montacute parkrun1707500:25:51 +
Sharpham Road Playing Fields parkrun1253124:41 All -  
Stockley Country parkrun111917900:35:32 +
Gadebridge parkrun1141422:22 All -  
Woolacombe Dunes parkrun19410900:31:20 +
Chilton Fields parkrun1405428:26 All -  
Harcourt Hill parkrun1171700:21:13 +
Storeys Field parkrun115121128:49 All -  
Abingdon parkrun15500:18:03 +
Hadleigh parkrun, Essex1252624:27 All -  
Eastbourne parkrun12200:17:24 +
Marple parkrun11117:15 All -  
Warwick Racecourse parkrun1486000:24:55 +
Portsmouth Lakeside parkrun19919:12 All -  
Leicester Victoria parkrun19711600:26:45 +
Grove Fields parkrun1578528:03 All -  
Broadwater parkrun110321300:35:19 +
Banbury parkrun1222321:16 All -  
Clacton Seafront parkrun19900:20:35 +
Graves parkrun11118:18 All -  
Burnham-on-Crouch parkrun18800:22:01 +
Watermead Country Park parkrun110818235:52 All -  
Ganger Farm parkrun19811400:26:34 +
Eastbourne parkrun12217:24 All -  
Folkestone parkrun1212500:21:48 +
Malahide parkrun11116:54 All -  
Mallards Pike parkrun1324600:30:57 +
Fareham parkrun16619:21 All -  
Malling parkrun18314500:47:25 +
Sutcliffe parkrun113117230:34 All -  
Rugby parkrun1181800:22:26 +
Fritton Lake parkrun11118:26 All -  
Watermead Country Park parkrun110818200:35:52 +
Bicester parkrun14420:13 All -  
Hogmoor Inclosure parkrun1262600:25:26 +
Sandringham parkrun1466330:18 All -  
East Grinstead parkrun1131400:23:10 +
Luton Wardown parkrun191019:36 All -  
Mildenhall Hub parkrun1273100:24:33 +
Cwmbran parkrun1171723:29 All -  
Marlborough Common parkrun1202100:22:48 +
Broadwater parkrun110321335:19 All -  
Blandford parkrun18900:20:11 +
Basildon parkrun15518:13 All -  
Maldon Prom parkrun11100:18:04 +
Marecchia parkrun11119:50 All -  
Edinburgh parkrun12200:17:00 +
Harleston Magpies parkrun1293525:12 All -  
The Old Showfield parkrun1636900:23:30 +
Kingsway parkrun, Gloucester1192021:20 All -  
Jersey parkrun16600:19:41 +
Bryn Bach parkrun11116:50 All -  
Chilton Fields parkrun1405400:28:26 +
Mersea Island parkrun1121220:59 All -  
Sixfields Upton parkrun18800:19:58 +
Charlton parkrun18213032:05 All -  
Pegwell Bay parkrun12200:17:40 +
parkrun de Rouen15521:41 All -  
Valentines parkrun11100:16:49 +
Dallas Burston Polo Club parkrun19614732:26 All -  
Edenbrook Country parkrun110514800:28:01 +
Ashton Court parkrun1859522:59 All -  
Henstridge Airfield parkrun18800:21:41 +
Tøyen parkrun1668526:32 All -  
Great Notley parkrun16600:20:16 +
The Great Field parkrun19313529:12 All -  
Medina I.O.W. parkrun11100:17:20 +
Castle Park parkrun1394122:34 All -  
Reading parkrun12200:17:18 +
Swanley parkrun19712531:18 All -  
Tetbury Goods Shed parkrun1253000:24:25 +
Greenwich parkrun12218:07 All -  
Lowestoft parkrun1232600:21:10 +
Neckarau parkrun1243027:11 All -  
Malahide parkrun11100:16:54 +
Bury Field parkrun1669033:07 All -  
Oxford parkrun11100:17:18 +
Clifton parkrun1101025:14 All -  
Rheinpark parkrun1151800:25:30 +
Alton Water parkrun1538335:09 All -  
Gloucester City parkrun1171900:22:35 +
Colwick parkrun18819:46 All -  
Didcot parkrun1101100:21:28 +
Melksham parkrun1171724:31 All -  
Mansfield parkrun11100:17:09 +
Markshall Estate parkrun110315632:26 All -  
7851100:16:25 +
Rogiet parkrun1151624:27 + All +
Bartley Park parkrun18415132:38 + All +
Lydiard parkrun18818:25 + All +
Little Stoke parkrun11117:03 + All +
Letchworth parkrun1141423:13 + All +
Belvoir Castle parkrun1131925:42 + All +
Andover parkrun11117:33 + All +
Rushcliffe parkrun1617323:54 + All +
Cirencester parkrun1222422:40 + All +
Southall parkrun1557531:38 + All +
Forest of Dean parkrun1182224:51 + All +
parkrun des Dougnes, Cubnezais12219:42 + All +
South Woodham Ferrers parkrun18821:14 + All +
Marine Parade parkrun17711129:24 + All +
Coventry parkrun1292920:51 + All +
Wotton parkrun1182124:45 + All +
Gloucester City parkrun1171922:35 + All +
Great Salterns parkrun19212430:27 + All +
Bedworth parkrun1171722:14 + All +
University Parks parkrun119032631:42 + All +
Hampstead Heath parkrun11117:45 + All +
Great Denham parkrun16619:27 + All +
Downham Market Academy parkrun1121324:35 + All +
Ipswich parkrun11117:34 + All +
Sixfields Upton parkrun18819:58 + All +
Rendlesham Forest parkrun1264637:01 + All +
8671116:25 All  


Volunteer Summary

RoleOccasions
- Run Director - 94
- Timekeeper - 59
- Token Sorting - 3
- Results Processor - 87
- Photographer - 6
- Communications Person - 10
- Marshal - 39
- Pre-event Setup - 130
- Equipment Storage and Delivery - 128
- Other - 23
- Barcode Scanning - 55
- Post-event Close Down - 45
- Finish Tokens - 15
- Number Checker - 2
- First Timers Welcome - 68
- Funnel Manager - 15
- Finish Token Support - 9
- Tail Walker - 29
- Volunteer Co-ordinator - 146
- Report Writer - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Car Park Marshal - 1
- Event Day Course Check - 8
- parkwalker - 9
Total Credits396

+ Run Director +

99
+ Timekeeper + 94
+ Token Sorting + 12
+ Results Processor + 87
+ Photographer + 6
+ Communications Person + 10
+ Marshal + 54
+ Pre-event Setup + 148
+ Equipment Storage and Delivery + 130
+ Other + 26
+ Barcode Scanning + 78
+ Post-event Close Down + 51
+ Finish Tokens + 21
+ Number Checker + 2
+ First Timers Welcome + 82
+ Funnel Manager + 15
+ Finish Token Support + 12
+ Tail Walker + 29
+ Volunteer Co-ordinator + 148
+ Report Writer + 100
+ Backup Timer + 3
+ Warm Up Leader + 16
+ Car Park Marshal + 1
+ Event Day Course Check + 14
+ parkwalker + 10
Total Credits499

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1038,50 +1147,32 @@

Danny NORMAN (A482)
- Locations: 104 + Locations: 110
- Finishers: 234,396 + Finishers: 290255
- Finishes: 2,439,045 + Finishes: 3162741
- All-time events: 25,415 + All-time events: 33395
- Volunteers: 33,906 + Volunteers: 40927
- PBs: 389,055 + PBs: 475561
- Average finish time: 00:30:06 + Average finish time: 00:30:21
- Average finishes per participant: 10.4 + Groups: 3422
-
- Groups: 2,863 -
-

-
- Female record: - Meghan RYAN – 16:41 - (27 Nov 2021) -
-
- Male record: - Sean TOBIN – 14:19 - (16 Nov 2019) -
-
- Age graded record: - Mary MARTIN - 103.49% 23:26 - ( 5 Oct 2019) -
+
- Stats last updated: Fri 14 Apr 2023 00:39:47 UTC + Stats last updated: Mon 30 Sep 2024 00:39:57 UTC
@@ -1100,28 +1191,29 @@

Danny NORMAN (A482) - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1155,8 +1257,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/88720/all/index.html index ee11738e..9d3d6c8b 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Ireland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +53,7 @@
@@ -70,47 +65,35 @@
@@ -135,631 +118,729 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM55-59 + Most recent age category was VM60-64

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time21:4025:2552:00
Age Grading69.71%60.41%29.55%
Overall Position648.88374

+
FastestAverage
(mean)
Slowest
Time21:3625:2654:59
Age Grading72.99%60.80%28.92%
Overall Position648.44374

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Halifax08/04/20233313225:0063.07% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51%   -
Fulham Palace01/04/202339110924:0965.29% +
Zuiderpark20/04/20241261722:0372.11%   -
Halifax25/03/20233291624:4363.79% +
Halifax13/04/20243813524:3764.59%   -
Halifax18/03/20233282326:4758.87% +
Conyngham Hall30/03/20241773824:5563.81%   -
Halifax04/03/20233273825:1962.28% +
Jubilee09/03/20241421926:4259.55%   -
Myrtle25/02/20231593824:5263.40% +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% PB   -
Halifax18/02/20233252926:0360.52% +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34% +   +
Wakefield Thornes23/09/20233745824:2964.94%   -
Halifax11/02/20233243124:0365.56% +
Halifax16/09/20233532123:4367.04%   -
Bradford04/02/20235795022:3769.71% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Bowling Park28/01/202379924:1165.20% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Bramley21/01/20233004925:3461.67% +
Glossop12/08/20233152824:2564.57%   -
Halifax14/01/20233213325:5260.95% +
Halifax05/08/20233473024:4363.79%   -
Halifax07/01/20233203026:2659.65% +
Huddersfield29/07/20235456722:4769.20%   -
Chevin Forest01/01/2023703026:4758.87% +
Brighouse15/07/20232544223:5366.02% + PB + +   +
Stratford Park, Stroud01/07/20231253126:2959.53% +   +
Wetherby24/06/20233094124:4663.66%   -
Nostell31/12/20223614325:0063.07% +
Halifax10/06/20233402524:0265.60%   -
Halifax24/12/20223173125:4661.19% +
Halifax03/06/20233392124:1365.11%   -
Rothay Park03/12/2022732724:4863.58% +
Long Eaton20/05/20233306921:3672.99%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax06/05/20233352423:4566.39% +   +
Keswick29/04/20233904121:3672.99% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax22/04/20233334725:0262.98%   -
Brighouse12/11/20222213725:1762.36% +
Halifax08/04/20233313225:0063.07%   -
Halifax05/11/20223122424:5163.45% +
Fulham Palace01/04/202339110924:0965.29%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax25/03/20233291624:4363.79%   -
Halifax15/10/202230910749:5431.60% +
Halifax18/03/20233282326:4758.87%   -
Crosby08/10/20222833525:3861.51% +
Halifax04/03/20233273825:1962.28%   -
Alness01/10/20221801024:0965.29% +
Myrtle25/02/20231593824:5263.40% + PB +   -
Victoria24/09/20223736722:5468.85% +
Halifax18/02/20233252926:0360.52%   -
Halifax17/09/20223052625:0063.07% +
Halifax11/02/20233243124:0365.56%   -
Centre Vale10/09/20221034428:4454.87% +
Lister Park, Bradford04/02/20235795022:3769.71%   -
Halifax03/09/20223033125:3361.71% +
Bowling Park28/01/202379924:1165.20%   -
Skipton27/08/20224035325:3561.11% +
Bramley21/01/20233004925:3461.67%   -
Halifax20/08/20223012824:5262.87% +
Halifax14/01/20233213325:5260.95%   -
Halifax06/08/20222996426:0360.01% +
Halifax07/01/20233203026:2659.65%   -
Armley30/07/20221432724:2863.90% +
Chevin Forest01/01/2023703026:4758.87%   -
Halifax16/07/20222962524:2663.98% +
Nostell31/12/20223614325:0063.07%   -
Halifax02/07/20222942524:4863.04% +
Halifax24/12/20223173125:4661.19%   -
Halifax18/06/20222922424:5462.78% +
Rothay Park03/12/2022732724:4863.58%   -
The Pastures11/06/2022991826:2159.33% +
Temple Newsam26/11/20224172925:1462.48% + PB + +   +
Conkers19/11/20225485624:1465.06% +   +
Brighouse12/11/20222213725:1762.36% +   +
Halifax05/11/20223122424:5163.45% +   +
Oakwell Hall22/10/20222974026:1060.25% +   +
Halifax15/10/202230910749:5431.60% +   +
Crosby08/10/20222833525:3861.51% +   +
Alness01/10/20221801024:0965.29% +   +
Victoria24/09/20223736722:5468.85% +   +
Halifax17/09/20223052625:0063.07% +   +
Centre Vale10/09/20221034428:4454.87% +   +
Halifax03/09/20223033125:3361.71% +   +
Skipton27/08/20224035325:3561.11% +   +
Halifax20/08/20223012824:5262.87% +   +
Halifax06/08/20222996426:0360.01% +   +
Armley30/07/20221432724:2863.90%   -
Halifax04/06/20222913826:4858.33% +
Halifax16/07/20222962524:2663.98%   -
Horton Park28/05/20222942225:1262.04% +
Halifax02/07/20222942524:4863.04%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax18/06/20222922424:5462.78%   -
Halifax07/05/20222877529:3552.85% +
The Pastures11/06/2022991826:2159.33%   -
Harrogate30/04/202246716226:4458.48% +
Halifax04/06/20222913826:4858.33%   -
Halifax23/04/20222854927:0057.90% +
Horton Park28/05/20222942225:1262.04%   -
Halifax09/04/20222834526:3758.74% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax02/04/20222822924:4463.21% +
Halifax07/05/20222877529:3552.85%   -
Pendle26/03/20223443126:1659.52% +
Harrogate30/04/202246716226:4458.48%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax23/04/20222854927:0057.90%   -
Halifax05/03/20222784925:3761.03% +
Halifax09/04/20222834526:3758.74%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -790,50 +871,32 @@

Phillip WHETTLOCK (A8
- Locations: 104 + Locations: 110
- Finishers: 235,027 + Finishers: 290255
- Finishes: 2,448,160 + Finishes: 3162741
- All-time events: 25,518 + All-time events: 33395
- Volunteers: 33,995 + Volunteers: 40927
- PBs: 390,368 + PBs: 475561
- Average finish time: 00:30:06 + Average finish time: 00:30:21
- Average finishes per participant: 10.4 + Groups: 3422
-
- Groups: 2,868 -
-
-
- Female record: - Meghan RYAN – 16:41 - (27 Nov 2021) -
-
- Male record: - Sean TOBIN – 14:19 - (16 Nov 2019) -
-
- Age graded record: - Mary MARTIN - 103.49% 23:26 - ( 5 Oct 2019) -
+
- Stats last updated: Mon 17 Apr 2023 00:39:58 UTC + Stats last updated: Mon 30 Sep 2024 00:39:57 UTC
@@ -852,28 +915,29 @@

Phillip WHETTLOCK (A8 Lidl - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -907,8 +981,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/88720/index.html index ff05d780..05b78ef2 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + results | parkrun Ireland - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +53,7 @@
@@ -70,47 +65,35 @@
@@ -135,185 +118,241 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns total

+ + Member of the Volunteer 250 club +

345 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM55-59 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bradford parkrun1166600:21:40 + Most recent age category was VM60-64 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Halifax parkrun1268822:13 + All +
Lister Park parkrun, Bradford1166621:40 + All +
Horton Park parkrun9131322:18 + All +
Keswick parkrun4253321:36 + All +
Sewerby parkrun3121222:08 + All +
Pontefract parkrun2273222:08 + All +
Brighouse parkrun2333723:53 + All +
Temple Newsam parkrun2272925:14 + All +
Fountains Abbey parkrun2394822:26 + All +
Oakwell Hall parkrun2293626:10 + All +
Whinlatter Forest parkrun2283227:23 + All +
Bramley parkrun2252524:06 + All +
Middleton Woods parkrun2121424:55 + All +
Myrtle parkrun2333824:52 + All +
Centre Vale parkrun2303626:37 + All +
Bushy parkrun130137424:06 + All +
Woodhouse Moor parkrun1778222:18 + All +
Pollok parkrun, Glasgow1667223:58 + All +
Edinburgh parkrun1646721:54 + All +
Wakefield Thornes parkrun1545824:29 + All +
Hyndburn parkrun1253125:51 All - Graph It!
Halifax parkrun1148800:22:13 +
York parkrun111413522:55 All - Graph It!
Horton Park parkrun9131300:22:18 +
Milton Country parkrun1707522:40 All - Graph It!
Sewerby parkrun3121200:22:08 +
Carlisle parkrun1567126:05 All - Graph It!
Keswick parkrun3253300:23:33 +
Harrogate parkrun112316226:44 All - Graph It!
Pontefract parkrun2273200:22:08 +
Southport parkrun1545723:57 All - Graph It!
Temple Newsam parkrun2272900:25:14 +
Barnsley parkrun1414325:05 All - Graph It!
Myrtle parkrun2333800:24:52 +
Rothwell parkrun1535724:20 All - Graph It!
Middleton Woods parkrun2121400:24:55 +
Huddersfield parkrun1596722:47 All - Graph It!
Bramley parkrun2252500:24:06 +
Long Eaton parkrun1556921:36 All - Graph It!
Druridge Bay parkrun1354200:23:35 +
Wycombe Rye parkrun1232622:35 All -  
Fountains Abbey parkrun1394800:22:26 +
Conkers parkrun1525624:14 All -  
Victoria parkrun, Glasgow1546700:22:54 +
Roundhay parkrun112815726:55 All -  
Clumber Park parkrun1101100:21:46 +
Hanley parkrun16622:03 All -  
Rothay Park parkrun1202700:24:48 +
Worsley Woods parkrun1728824:46 All -  
Warwick Racecourse parkrun1638200:24:06 +
Burnley parkrun1545725:21 All -  
Conkers parkrun1525600:24:14 +
Dewsbury parkrun18610128:15 All -  
The Pastures parkrun1161800:26:21 +
Cross Flatts parkrun1303724:16 All -  
Harrogate parkrun112316200:26:44 +
Clumber Park parkrun1101121:46 All -  
Dishley parkrun, Loughborough1535700:24:25 +
Skipton parkrun1505325:35 All -  
Dalby Forest parkrun1283200:23:06 +
Flatts Lane parkrun1171826:53 All -  
Woodhouse Moor parkrun1778200:22:18 +
Victoria parkrun, Glasgow1546722:54 All -  
Whinlatter Forest parkrun1283200:27:23 +
Alness parkrun171024:09 All -  
Watergrove parkrun, Rochdale1111200:27:57 +
Fulham Palace parkrun18610924:09 All -  
Springburn parkrun, Glasgow1161600:23:14 +
Springburn parkrun, Glasgow1161623:14 All -  
Fulham Palace parkrun18610900:24:09 +
Druridge Bay parkrun1354223:35 All -  
Flatts Lane parkrun1171800:26:53 +
Pendle parkrun1263126:16 All -  
Roberts Park parkrun1657500:24:54 +
Watergrove parkrun, Rochdale1111227:57 All -  
Bowling Park parkrun18900:24:11 +
Wetherby parkrun1374124:46 All -  
Hanley parkrun16600:22:03 +
Portobello parkrun, Edinburgh1668024:16 All -  
Centre Vale parkrun1304400:28:44 +
Nostell parkrun1374325:00 All -  
Wycombe Rye parkrun1232600:22:35 +
Fell Foot parkrun, Newby Bridge1161722:57 All -  
Carlisle parkrun1567100:26:05 +
Conwy parkrun1394424:53 All -  
Armley parkrun1262700:24:28 +
Glossop parkrun1242824:25 All -  
Crosby parkrun1293500:25:38 +
Crosby parkrun1293525:38 All -  
Edinburgh parkrun1646700:21:54 +
Dolgellau parkrun1459954:59 All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Dalby Forest parkrun1283223:06 All -  
Bushy parkrun130137400:24:06 +
Clitheroe Castle parkrun1192525:41 All -  
Oakwell Hall parkrun1344000:26:10 +
Armley parkrun1262724:28 All -  
Pendle parkrun1263100:26:16 +
Dishley parkrun, Loughborough1535724:25 All -  
Alness parkrun171000:24:09 +
Ford parkrun1202525:00 All -  
Skipton parkrun1505300:25:35 +
Cliffe Castle parkrun1151725:18 All -  
Chevin Forest parkrun1213000:26:47 +
Potternewton parkrun1293625:04 All -  
Burnley parkrun1545700:25:21 +
Isabel Trail parkrun1293422:02 All -  
Queen’s parkrun, Glasgow1677900:25:29 +
The Pastures parkrun1161826:21 All -  
Roundhay parkrun112815700:26:55 +
Storthes Hall parkrun1263026:20 All -  
Storthes Hall parkrun1263000:26:20 +
Hafan Pwllheli parkrun1212726:48 All -  
Southport parkrun1545700:23:57 +
Penistone parkrun1343724:20 All -  
Cliffe Castle parkrun1151700:25:18 +
Conyngham Hall parkrun1363824:55 All -  
Brighouse parkrun1333700:25:17 +
Stratford Park parkrun, Stroud1303126:29 All -  
Milton Country parkrun1707500:22:40 +
Warwick Racecourse parkrun1638224:06 All -  
Pollok parkrun, Glasgow1667200:23:58 +
University of Stirling parkrun1343723:52 All -  
Nostell parkrun1384300:25:00 +
Jubilee parkrun1121926:42 All -  
Portobello parkrun, Edinburgh1668000:24:16 +
Queen’s parkrun, Glasgow1677925:29 All -  
2996600:21:40 +
Bowling Park parkrun18924:11 + All +
Rothay Park parkrun1202724:48 + All +
Zuiderpark parkrun, Den Haag1151722:03 + All +
Carlisle Park parkrun, Morpeth1293325:44 + All +
Chevin Forest parkrun1213026:47 + All +
Roberts Park parkrun1657524:54 + All +
Beacon Hill Country Park parkrun1192325:36 + All +
Thames Path parkrun, Woolwich1586323:49 + All +
3456621:36 All  


Volunteer Summary

RoleOccasions
- Run Director - 32
- Timekeeper - 17
- Token Sorting - 5
- Results Processor - 1
- Photographer - 1
- Communications Person - 5
- Marshal - 35
- Pre-event Setup - 28
- Equipment Storage and Delivery - 5
- Other - 1
- Barcode Scanning - 27
- Post-event Close Down - 24
- Finish Tokens - 11
- Number Checker - 1
- First Timers Welcome - 77
- Funnel Manager - 12
- Finish Token Support - 10
- Tail Walker - 5
- Volunteer Co-ordinator - 10
- Report Writer - 1
- Pacer (5k only) - 5
- Backup Timer - 14
- VI Guide - 1
- Warm Up Leader - 5
- Sign Language Support - 1
- Car Park Marshal - 1
- Event Day Course Check - 25
- parkwalker - 1
Total Credits249

+ Run Director +

33
+ Timekeeper + 28
+ Token Sorting + 5
+ Results Processor + 4
+ Photographer + 1
+ Communications Person + 6
+ Marshal + 35
+ Pre-event Setup + 29
+ Equipment Storage and Delivery + 6
+ Other + 2
+ Barcode Scanning + 46
+ Post-event Close Down + 25
+ Finish Tokens + 16
+ Number Checker + 1
+ First Timers Welcome + 82
+ Funnel Manager + 16
+ Finish Token Support + 16
+ Tail Walker + 15
+ Volunteer Co-ordinator + 11
+ Report Writer + 1
+ Pacer (5k only) + 10
+ Backup Timer + 14
+ VI Guide + 1
+ Warm Up Leader + 15
+ Sign Language Support + 1
+ Car Park Marshal + 1
+ Event Day Course Check + 57
+ parkwalker + 1
Total Credits316

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. -



Freedom parkruns

DateTimeLocation
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here. +



Freedom parkruns

DateTimeLocation
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -342,50 +381,32 @@

Phillip WHETTLOCK (A8
- Locations: 104 -
-
- Finishers: 235,027 + Locations: 110
- Finishes: 2,448,160 + Finishers: 290255
- All-time events: 25,518 + Finishes: 3162741
- Volunteers: 33,995 + All-time events: 33395
- PBs: 390,368 + Volunteers: 40927
- Average finish time: 00:30:06 + PBs: 475561
- Average finishes per participant: 10.4 + Average finish time: 00:30:21
- Groups: 2,868 + Groups: 3422
-
-
- Female record: - Meghan RYAN – 16:41 - (27 Nov 2021) -
-
- Male record: - Sean TOBIN – 14:19 - (16 Nov 2019) -
-
- Age graded record: - Mary MARTIN - 103.49% 23:26 - ( 5 Oct 2019) -
+

- Stats last updated: Mon 17 Apr 2023 00:39:58 UTC + Stats last updated: Mon 30 Sep 2024 00:39:57 UTC
@@ -404,28 +425,29 @@

Phillip WHETTLOCK (A8 Lidl - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -459,8 +491,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/999999/all/index.html index 1263b889..03d594c4 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Ireland @@ -53,7 +53,7 @@
@@ -65,47 +65,35 @@
@@ -129,7 +117,7 @@

Jakub WOLSKI (A999999)

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -161,50 +149,32 @@

Jakub WOLSKI (A999999
- Locations: 105 -
-
- Finishers: 241,007 + Locations: 110
- Finishes: 2,532,920 + Finishers: 290255
- All-time events: 26,540 + Finishes: 3162741
- Volunteers: 34,911 + All-time events: 33395
- PBs: 401,174 + Volunteers: 40927
- Average finish time: 00:30:08 + PBs: 475561
- Average finishes per participant: 10.5 + Average finish time: 00:30:21
- Groups: 2,945 + Groups: 3422
-
-
- Female record: - Meghan RYAN – 16:41 - (27 Nov 2021) -
-
- Male record: - Sean TOBIN – 14:19 - (16 Nov 2019) -
-
- Age graded record: - Eileen KENNY - 104.31% 22:27 - (13 May 2023) -
+
- Stats last updated: Thu 29 Jun 2023 00:40:08 UTC + Stats last updated: Mon 30 Sep 2024 00:39:57 UTC
@@ -223,28 +193,29 @@

Jakub WOLSKI (A999999 Lidl - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -278,8 +259,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/999999/index.html index 0e97209f..3208e07f 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.ie/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + results | parkrun Ireland @@ -53,7 +53,7 @@
@@ -65,47 +65,35 @@
@@ -122,13 +110,13 @@ - - + -

Jakub WOLSKI (A999999)

No results have been recorded yet for this parkrunner.

+

Jakub WOLSKI (A999999)

@@ -157,50 +145,32 @@

Jakub WOLSKI (A999999
- Locations: 105 -
-
- Finishers: 241,007 + Locations: 110
- Finishes: 2,532,920 + Finishers: 290255
- All-time events: 26,540 + Finishes: 3162741
- Volunteers: 34,911 + All-time events: 33395
- PBs: 401,174 + Volunteers: 40927
- Average finish time: 00:30:08 + PBs: 475561
- Average finishes per participant: 10.5 + Average finish time: 00:30:21
- Groups: 2,945 + Groups: 3422
-
-
- Female record: - Meghan RYAN – 16:41 - (27 Nov 2021) -
-
- Male record: - Sean TOBIN – 14:19 - (16 Nov 2019) -
-
- Age graded record: - Eileen KENNY - 104.31% 22:27 - (13 May 2023) -
+

- Stats last updated: Thu 29 Jun 2023 00:40:08 UTC + Stats last updated: Mon 30 Sep 2024 00:39:57 UTC
@@ -219,28 +189,29 @@

Jakub WOLSKI (A999999 Lidl - Brooks + Brooks
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -274,8 +255,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.it/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.it/contents/parkrunner/1309364/all/index.html index c41a50ce..5fcfd9b0 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.it/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.it/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,7 @@ + risultati | parkrun Italia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +52,7 @@
@@ -70,34 +64,25 @@
@@ -120,543 +105,649 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Membro del Club dei 100 parkrun +

Andrew TAYLOR (A1309364)

+ Membro del Club dei 250 parkrun Member of the Volunteer 50 club

- 245 parkrun in totale + 297 parkrun in totale

Visualizza le statistiche riassuntive pe questo parkrunner
- La più recente nella categoria d'età è stata VM35-39 + La più recente nella categoria d'età è stata VM40-44

Statistiche di riepilogo per tutte le località -
Più veloceMedia
(mean)
Più lento
Tempo20:0628:4757:34
Age Grading64.51%47.44%23.54%
Posizione assoluta5165.361021

+
Più veloceMedia
(mean)
Più lento
Tempo20:0629:2057:34
Age Grading64.51%46.67%23.54%
Posizione assoluta5182.341021

I migliori risultati annuali complessivi -
AnnoMiglior TempoMiglior rapporto prestazione/età
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
AnnoMiglior TempoMiglior rapporto prestazione/età
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

Tutti i risultati -
EventoData corsaNumero corsaPosTempoRapporto prestazione/etàPB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventoData corsaNumero corsaPosTempoRapporto prestazione/etàPB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60%   -
Whiteley25/03/202321418332:2441.82% +
Whiteley18/11/202324721037:0536.54%   -
Winchester11/03/202342821230:3744.26% +
Whiteley11/11/202324617430:3744.26%   -
Winchester04/03/202342730935:4537.90% +
Winchester21/10/202345731533:5140.03%   -
Winchester25/02/202342632536:0937.48% +
Winchester14/10/202345634233:5439.97%   -
Winchester18/02/202342530336:3137.11% +
Ganger Farm07/10/20234713233:4940.07%   -
Delamere31/12/202242331536:2537.21% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester23/09/202345321928:2247.77%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester16/09/202345235430:3244.38%   -
Winchester26/11/202241229335:3137.87% +
Winchester09/09/202345129229:1146.43%   -
Whiteley12/11/202221016534:2839.02% +
Delamere02/09/202345822633:2840.49%   -
Winchester29/10/202240924429:5544.96% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester22/10/202240833736:0837.22% +
Winchester29/07/202344622227:3649.09%   -
Winchester17/09/202240326230:2944.12% +
Winchester22/07/202344540537:0036.62%   -
Winchester10/09/202240231134:3338.93% +
Whiteley15/07/202322915731:1643.34%   -
Alice Holt03/09/202241817936:3236.82% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester27/08/202240042335:2138.05% +
Winchester17/06/202344128530:4144.16%   -
Winchester13/08/202239823431:3042.70% +
Winchester10/06/202344032435:2138.33%   -
Tidworth30/07/2022615151:4226.02% +
Winchester20/05/202343822427:0949.91%   -
Uckfield23/07/20221006028:4346.84% +
Winchester13/05/202343733232:4341.42%   -
Winchester09/07/202239428633:1640.43% +
Whiteley29/04/202321919635:3138.15%   -
Eastleigh28/05/202254015531:2042.93% +
Winchester22/04/202343431731:1143.45%   -
Winchester21/05/202238930733:2840.19% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Alice Holt14/05/202240216932:0142.01% +
Whiteley25/03/202321418332:2441.82%   -
Winchester07/05/202238734034:1339.31% +
Winchester11/03/202342821230:3744.26%   -
Guildford30/04/202242825130:0144.81% +
Winchester04/03/202342730935:4537.90%   -
Winchester23/04/202238522932:0241.99% +
Winchester25/02/202342632536:0937.48%   -
Winchester16/04/202238431033:2340.29% +
Winchester18/02/202342530336:3137.11%   -
Winchester19/03/202238025033:5439.68% +
Delamere31/12/202242331536:2537.21%   -
Alice Holt01/01/202238524237:4635.61% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester20/11/202136338445:0729.59% +
Winchester26/11/202241229335:3137.87%   -
Winchester09/10/202135739843:0730.96% +
Whiteley12/11/202221016534:2839.02%   -
Winchester25/09/202135538955:0324.25% +
Winchester29/10/202240924429:5544.96%   -
Winchester18/09/202135433938:1234.95% +
Winchester22/10/202240833736:0837.22%   -
Winchester04/09/202135233838:2434.77% +
Winchester17/09/202240326230:2944.12%   -
Winchester28/08/202135139841:0132.55% +
Winchester10/09/202240231134:3338.93%   -
Winchester14/08/202134936055:4623.94% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester31/07/202134832845:2029.45% +
Winchester27/08/202240042335:2138.05%   -
Winchester14/03/202034625851:3825.69% +
Winchester13/08/202239823431:3042.70%   -
Winchester07/03/202034510325:5251.29% +
Tidworth30/07/2022615151:4226.02%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Uckfield23/07/20221006028:4346.84%   -
Newbury22/02/202043434631:1142.54% +
Winchester09/07/202239428633:1640.43%   -
Alice Holt08/02/202036010727:1948.57% +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -690,75 +781,58 @@

Andrew TAYLOR 14
- Partecipanti: 19.838 + Partecipanti: 31572
- Partecipazioni: 91.242 + Partecipazioni: 136605
- Totale eventi: 2.982 + Totale eventi: 4028
- Volontari: 1.701 + Volontari: 2370
- PB: 12.766 + PB: 16164
- Tempo medio di partecipazione: 00:30:55 + Tempo medio di partecipazione: 00:31:06
- Media di partecipazioni per partecipante: 4,6 + Gruppi: 2639
-
- Gruppi: 1.971 -
- -
- Record femminile: - Sophie WOOD – 17:27 - ( 4 feb 2023) -
-
- Record maschile: - Joseph BEECH – 15:13 - (14 set 2019) -
-
- Record di categoria: - Jane KIDD - 93,32% 21:43 - ( 1 ott 2022) -
+
- Ultimo aggiornamento statistiche: ven 14 apr 2023 00:39:50 UTC + Ultimo aggiornamento statistiche: lun 30 set 2024 00:40:00 UTC
-

© parkrun Global Limited (Company number: 09411750)

Nessuna parte di questo sito può essere riprodotta in tutto o in parte in alcun modo senza il permesso del proprietario dei diritti d'autore.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -792,8 +876,8 @@

Andrew TAYLOR  + risultati | parkrun Italia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +52,7 @@
@@ -70,34 +64,25 @@
@@ -120,176 +105,186 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Membro del Club dei 100 parkrun +

Andrew TAYLOR (A1309364)

+ Membro del Club dei 250 parkrun Member of the Volunteer 50 club -

245 parkrun in totale

+

297 parkrun in totale

Visualizza statistiche per tutti i parkrun di questo parkrunner
- La più recente nella categoria d'età è stata VM35-39 -

parkrun più recenti

EventoData corsaPos. di generePosizione assolutaTempoRapporto prestazione/età
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Sintesi eventi

EventoparkrunMiglior posizione di genereMigliore posizione assolutaMiglior Tempo  
Winchester parkrun146121300:20:18 + La più recente nella categoria d'età è stata VM40-44 +

parkrun più recenti

EventoData corsaPos. di generePosizione assolutaTempoRapporto prestazione/età
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Sintesi eventi

EventoparkrunMiglior posizione di genereMigliore posizione assolutaMiglior Tempo  
Winchester parkrun173121320:18 + Tutti +
Whiteley parkrun1410714629:06 + Tutti +
Delamere parkrun11232321:42 + Tutti +
Eastleigh parkrun6242524:08 Tutti - Graph It!
Delamere parkrun8232300:21:42 +
Southampton parkrun5687021:17 Tutti - Graph It!
Whiteley parkrun610714600:29:06 +
Alice Holt parkrun59010727:19 Tutti - Graph It!
Alice Holt parkrun59010700:27:19 +
Newbury parkrun4829123:49 Tutti - Graph It!
Southampton parkrun5687000:21:17 +
Congleton parkrun49920:06 Tutti - Graph It!
Eastleigh parkrun5242500:24:08 +
Medina I.O.W. parkrun4667525:13 Tutti - Graph It!
Congleton parkrun49900:20:06 +
Fell Foot parkrun, Newby Bridge4212223:48 Tutti - Graph It!
Witton parkrun4303500:25:40 +
Witton parkrun4303525:40 Tutti - Graph It!
Northwich parkrun4485200:24:55 +
Northwich parkrun4485224:55 Tutti - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Ganger Farm parkrun38013229:25 Tutti - Graph It!
Andover parkrun2242600:22:24 +
Andover parkrun2242622:24 Tutti - Graph It!
Ganger Farm parkrun29713500:29:25 +
Hanley parkrun2333922:31 Tutti - Graph It!
Hanley parkrun2333900:22:31 +
Burnley parkrun212718929:06 Tutti - Graph It!
Newbury parkrun2829100:23:49 +
Queen Elizabeth parkrun2364026:36 Tutti - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Heaton parkrun133846731:01 Tutti - Graph It!
Hagley parkrun1182000:22:38 +
Guildford parkrun117125130:01 Tutti -  
Ormskirk parkrun120930300:31:04 +
Hyndburn parkrun1425329:55 Tutti -  
Basingstoke parkrun111212900:24:31 +
Phoenix parkrun1232627:31 Tutti -  
Cuerden Valley parkrun1192000:24:47 +
Canterbury parkrun1323627:29 Tutti -  
Seven Fields parkrun1546700:28:28 +
Valentines parkrun1698025:14 Tutti -  
Netley Abbey parkrun1586400:24:21 +
Poole parkrun121328428:59 Tutti -  
Mountbatten School parkrun17110100:31:29 +
Long Eaton parkrun118122928:06 Tutti -  
Clitheroe Castle parkrun1639700:35:46 +
Bolton parkrun116221831:49 Tutti -  
Medina I.O.W. parkrun19513900:30:57 +
Eden Project parkrun111116230:21 Tutti -  
Hogmoor Inclosure parkrun111314000:29:34 +
Abingdon parkrun114220229:14 Tutti -  
Milano Nord parkrun1475300:27:49 +
Netley Abbey parkrun1586424:21 Tutti -  
Jersey parkrun111018500:30:53 +
Hilly Fields parkrun1859925:03 Tutti -  
Canterbury parkrun1323600:27:29 +
Brockenhurst parkrun112718632:41 Tutti -  
Penrhyn parkrun1232600:24:33 +
Wimpole Estate parkrun112916928:07 Tutti -  
Hyndburn parkrun1425300:29:55 +
Clumber Park parkrun112117629:51 Tutti -  
Woking parkrun1485800:24:01 +
Cuerden Valley parkrun1192024:47 Tutti -  
Fountains Abbey parkrun1283000:20:33 +
Hamilton Lake parkrun1151621:47 Tutti -  
Bushy parkrun1681102100:33:01 +
Fountains Abbey parkrun1283020:33 Tutti -  
Clumber Park parkrun112117600:29:51 +
Ormskirk parkrun120930331:04 Tutti -  
Wimpole Estate parkrun112916900:28:07 +
Pendle parkrun1465926:37 Tutti -  
Tidworth parkrun18615100:51:42 +
Woking parkrun1485824:01 Tutti -  
Hilly Fields parkrun1859900:25:03 +
Hagley parkrun1182022:38 Tutti -  
Tawd Valley parkrun18111000:29:25 +
Penrhyn parkrun1232624:33 Tutti -  
Watermeadows parkrun1151500:23:51 +
Salisbury parkrun119326729:45 Tutti -  
Eden Project parkrun111116200:30:21 +
Jersey parkrun111018530:53 Tutti -  
Catford parkrun19512500:27:24 +
Haigh Woodland parkrun18916837:04 Tutti -  
Crewe parkrun112315400:30:05 +
Stretford parkrun127540530:23 Tutti -  
Long Eaton parkrun118122900:28:06 +
Portsmouth Lakeside parkrun1818726:32 Tutti -  
Fareham parkrun19511400:28:52 +
Fareham parkrun19011428:52 Tutti -  
Phoenix parkrun1232600:27:31 +
Milano Nord parkrun1475327:49 Tutti -  
Guildford parkrun117125100:30:01 +
Richmond Olympic parkrun15521:59 Tutti -  
Pendle parkrun1465900:26:37 +
Crewe parkrun112315430:05 Tutti -  
Heaton parkrun133846700:31:01 +
Hogmoor Inclosure parkrun111314029:34 Tutti -  
Hamilton Lake parkrun1151600:21:47 +
Catford parkrun19512527:24 Tutti -  
Brockenhurst parkrun112718600:32:41 +
Clitheroe Castle parkrun1639735:46 Tutti -  
Itchen Valley Country parkrun110713500:29:53 +
Pocket parkrun112419533:47 Tutti -  
Burnley parkrun114120400:29:06 +
Ford parkrun1477432:29 Tutti -  
Uckfield parkrun1416000:28:43 +
Watermeadows parkrun1151523:51 Tutti -  
Abingdon parkrun114220200:29:14 +
Mountbatten School parkrun17110131:29 Tutti -  
Pocket parkrun112419500:33:47 +
Uckfield parkrun1416028:43 Tutti -  
Bolton parkrun116221800:31:49 +
Tawd Valley parkrun18111029:25 Tutti -  
Richmond Olympic parkrun15500:21:59 +
Seven Fields parkrun1546728:28 Tutti -  
Poole parkrun121328400:28:59 +
Itchen Valley Country parkrun110613529:53 Tutti -  
Portsmouth Lakeside parkrun1818700:26:32 +
Bartley Park parkrun1628430:26 Tutti -  
Salisbury parkrun119326700:29:45 +
Tidworth parkrun18615151:42 Tutti -  
2455500:20:06 +
Bushy parkrun1681102133:01 + Tutti +
Basingstoke parkrun111212924:31 + Tutti +
2975520:06 Tutti  


21
+ Cronometrista + 2
+ Sistemazione token + 8
+ Elaboratore risultati + 6
+ Fotografo + 4
+ Marshal + 5
+ Preparazione evento + 6
+ Addetto magazzino e forniture + 2
+ Addetto scanner + 3
+ Chiusura evento + 10
+ Addetto token + 1
+ Controllo posizioni + 2
+ Benvenuto ai nuovi partecipanti + 1
+ Addetto imbuto arrivo + 1
+ Camminatore di coda + 4
+ Coordinatore volontari + 1
+ Addetto report finale + 10
+ Pacer + 1
Crediti totali60

+ Questa tabella riassume il numero di occasioni in cui ogni ruolo di volontario è stato completato.
Tieni presente che il totale potrebbe differire dal totale dei crediti di volontariato se hai svolto più attività nello stesso giorno.
Scopri di più qui.



Freedom parkrun

DataTempoLocalità
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(non)parkrun

SettimanaData di inizioData di fine(non)parkrunMiglior Tempo
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -322,75 +317,58 @@

Andrew TAYLOR 14

- Partecipanti: 19.838 + Partecipanti: 31572
- Partecipazioni: 91.242 + Partecipazioni: 136605
- Totale eventi: 2.982 + Totale eventi: 4028
- Volontari: 1.701 + Volontari: 2370
- PB: 12.766 + PB: 16164
- Tempo medio di partecipazione: 00:30:55 + Tempo medio di partecipazione: 00:31:06
- Media di partecipazioni per partecipante: 4,6 + Gruppi: 2639
-
- Gruppi: 1.971 -
- -
- Record femminile: - Sophie WOOD – 17:27 - ( 4 feb 2023) -
-
- Record maschile: - Joseph BEECH – 15:13 - (14 set 2019) -
-
- Record di categoria: - Jane KIDD - 93,32% 21:43 - ( 1 ott 2022) -
+
- Ultimo aggiornamento statistiche: ven 14 apr 2023 00:39:50 UTC + Ultimo aggiornamento statistiche: lun 30 set 2024 00:40:00 UTC
-

© parkrun Global Limited (Company number: 09411750)

Nessuna parte di questo sito può essere riprodotta in tutto o in parte in alcun modo senza il permesso del proprietario dei diritti d'autore.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -424,8 +412,8 @@

Andrew TAYLOR  + risultati | parkrun Italia - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - - @@ -58,7 +52,7 @@
@@ -70,34 +64,25 @@
@@ -120,10 +105,10 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- Nessun risultato è stato ancora registrato per questo parkrunner. + ​

Visualizza le statistiche riassuntive per questo parkrunner

@@ -158,75 +143,58 @@

Duncan BOOTH 14
- Partecipanti: 19.916 -
-
- Partecipazioni: 91.643 + Partecipanti: 31572
- Totale eventi: 2.995 + Partecipazioni: 136605
- Volontari: 1.711 + Totale eventi: 4028
- PB: 12.792 + Volontari: 2370
- Tempo medio di partecipazione: 00:30:55 + PB: 16164
- Media di partecipazioni per partecipante: 4,6 + Tempo medio di partecipazione: 00:31:06
- Gruppi: 1.973 + Gruppi: 2639
- -
- Record femminile: - Sophie WOOD – 17:27 - ( 4 feb 2023) -
-
- Record maschile: - Joseph BEECH – 15:13 - (14 set 2019) -
-
- Record di categoria: - Jane KIDD - 93,32% 21:43 - ( 1 ott 2022) -
+
- Ultimo aggiornamento statistiche: lun 17 apr 2023 00:40:02 UTC + Ultimo aggiornamento statistiche: lun 30 set 2024 00:40:00 UTC
-

© parkrun Global Limited (Company number: 09411750)

Nessuna parte di questo sito può essere riprodotta in tutto o in parte in alcun modo senza il permesso del proprietario dei diritti d'autore.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -260,8 +238,8 @@

Duncan BOOTH  + risultati | parkrun Italia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +52,7 @@
@@ -70,34 +64,25 @@
@@ -120,16 +105,16 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

Nessun risultato è stato ancora registrato per questo parkrunner.

Sommario volontari

RuoloOccasioni
- Marshal - 260
- Ciclista apripista - 130
- Controllo percorso nel giorno dell'evento - 9
Crediti totali393

- Questa tabella riassume il numero di occasioni in cui ogni ruolo di volontario è stato completato.
Tieni presente che il totale potrebbe differire dal totale dei crediti di volontariato se hai svolto più attività nello stesso giorno.
Scopri di più qui. +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Sommario volontari

RuoloOccasioni
+ Marshal + 350
+ Ciclista apripista + 130
+ Controllo percorso nel giorno dell'evento + 82
Crediti totali540

+ Questa tabella riassume il numero di occasioni in cui ogni ruolo di volontario è stato completato.
Tieni presente che il totale potrebbe differire dal totale dei crediti di volontariato se hai svolto più attività nello stesso giorno.
Scopri di più qui.



@@ -162,75 +147,58 @@

Duncan BOOTH 14

- Partecipanti: 19.916 -
-
- Partecipazioni: 91.643 + Partecipanti: 31572
- Totale eventi: 2.995 + Partecipazioni: 136605
- Volontari: 1.711 + Totale eventi: 4028
- PB: 12.792 + Volontari: 2370
- Tempo medio di partecipazione: 00:30:55 + PB: 16164
- Media di partecipazioni per partecipante: 4,6 + Tempo medio di partecipazione: 00:31:06
- Gruppi: 1.973 + Gruppi: 2639
-
-
- Record femminile: - Sophie WOOD – 17:27 - ( 4 feb 2023) -
-
- Record maschile: - Joseph BEECH – 15:13 - (14 set 2019) -
-
- Record di categoria: - Jane KIDD - 93,32% 21:43 - ( 1 ott 2022) -
+
- Ultimo aggiornamento statistiche: lun 17 apr 2023 00:40:02 UTC + Ultimo aggiornamento statistiche: lun 30 set 2024 00:40:00 UTC
-

© parkrun Global Limited (Company number: 09411750)

Nessuna parte di questo sito può essere riprodotta in tutto o in parte in alcun modo senza il permesso del proprietario dei diritti d'autore.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -264,8 +242,8 @@

Duncan BOOTH  + risultati | parkrun Italia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +52,7 @@
@@ -70,34 +64,25 @@
@@ -125,1650 +110,1816 @@

Danny NORMAN  Member of the Volunteer 250 club

- 785 parkrun in totale + 867 parkrun in totale

Visualizza le statistiche riassuntive pe questo parkrunner
- La più recente nella categoria d'età è stata VM40-44 + La più recente nella categoria d'età è stata VM45-49

Statistiche di riepilogo per tutte le località -
Più veloceMedia
(mean)
Più lento
Tempo16:2521:0459:17
Age Grading79.25%65.45%23.56%
Posizione assoluta134.831692

+
Più veloceMedia
(mean)
Più lento
Tempo16:2521:2659:17
Age Grading79.25%64.63%23.56%
Posizione assoluta138.841692

I migliori risultati annuali complessivi -
AnnoMiglior TempoMiglior rapporto prestazione/età
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
AnnoMiglior TempoMiglior rapporto prestazione/età
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

Tutti i risultati -
EventoData corsaNumero corsaPosTempoRapporto prestazione/etàPB?
Harleston Magpies08/04/2023793525:1255.42% +
EventoData corsaNumero corsaPosTempoRapporto prestazione/etàPB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Cannock Chase01/04/20232434425:4954.10% +
Quakers Walk25/11/2023126825:0556.08%   -
Kingston25/03/202360216430:0946.32% +
Aston Hall18/11/202352225:0156.23%   -
Wolford Wood18/03/202352730:2445.94% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Kingston11/03/202360015027:1851.16% +
Belvoir Castle04/11/2023911925:4254.73%   -
Stockley Country04/03/2023817935:3239.31% +
Five Arches28/10/202365422:5861.25%   -
Chasewater25/02/202310010026:1953.07% +
Dover Waterfront21/10/202374525:2255.45%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Rushcliffe14/10/20235087323:5458.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Kingston07/10/202363033150:2927.86%   -
Worcester04/02/202354318529:3047.34% +
Maaraue03/10/20231012522:3462.33%   -
Crane Park28/01/202349014550:3727.59% +
University of Northampton30/09/2023112223:2460.11%   -
Kingston21/01/202359431139:3935.22% +
Clifton23/09/20231911025:1455.75%   -
Brooklands14/01/202313018830:4445.44% +
Wisbech16/09/202351523:0361.03%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Holbrooks09/09/202362223:4359.31%   -
Kingston01/01/202359113340:3134.47% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston31/12/202259026442:4432.68% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Bushy Park25/12/2022909169244:3931.28% +
Riverfront19/08/20232594622:5761.29%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston17/12/202258818059:1723.56% +
Kingston05/08/20236216723:2160.24%   -
Kingston10/12/202258723255:4025.09% +
Kingston29/07/20236208725:0955.93%   -
Beacon03/12/2022737326:4152.34% +
Kingston22/07/20236199224:2457.65%   -
Ganger Farm26/11/2022211426:3452.57% +
Severn Valley Country15/07/20231411626:1353.66%   -
Bushy Park19/11/2022903110553:2326.16% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Leavesden Country12/11/202246928:3248.95% +
Thornham Walks01/07/202353826:5251.99%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Kingston24/06/20236156524:0957.83%   -
Durlston Country Park29/10/2022335032:4542.65% +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1802,75 +1953,58 @@

Danny NORMAN 14
- Partecipanti: 19.838 + Partecipanti: 31572
- Partecipazioni: 91.242 + Partecipazioni: 136605
- Totale eventi: 2.982 + Totale eventi: 4028
- Volontari: 1.701 + Volontari: 2370
- PB: 12.766 + PB: 16164
- Tempo medio di partecipazione: 00:30:55 + Tempo medio di partecipazione: 00:31:06
- Media di partecipazioni per partecipante: 4,6 + Gruppi: 2639
-
- Gruppi: 1.971 -
- -
- Record femminile: - Sophie WOOD – 17:27 - ( 4 feb 2023) -
-
- Record maschile: - Joseph BEECH – 15:13 - (14 set 2019) -
-
- Record di categoria: - Jane KIDD - 93,32% 21:43 - ( 1 ott 2022) -
+
- Ultimo aggiornamento statistiche: ven 14 apr 2023 00:39:50 UTC + Ultimo aggiornamento statistiche: lun 30 set 2024 00:40:00 UTC
-

© parkrun Global Limited (Company number: 09411750)

Nessuna parte di questo sito può essere riprodotta in tutto o in parte in alcun modo senza il permesso del proprietario dei diritti d'autore.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1904,8 +2048,8 @@

Danny NORMAN  + risultati | parkrun Italia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +52,7 @@
@@ -70,34 +64,25 @@
@@ -124,876 +109,1002 @@

Danny NORMAN  Member of the Volunteer 250 club -

785 parkrun in totale

+

867 parkrun in totale

Visualizza statistiche per tutti i parkrun di questo parkrunner
- La più recente nella categoria d'età è stata VM40-44 -

parkrun più recenti

EventoData corsaPos. di generePosizione assolutaTempoRapporto prestazione/età
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Sintesi eventi

EventoparkrunMiglior posizione di genereMigliore posizione assolutaMiglior Tempo  
Bushy parkrun2321100:16:25 + La più recente nella categoria d'età è stata VM45-49 +

parkrun più recenti

EventoData corsaPos. di generePosizione assolutaTempoRapporto prestazione/età
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Sintesi eventi

EventoparkrunMiglior posizione di genereMigliore posizione assolutaMiglior Tempo  
Bushy parkrun2341116:25 + Tutti +
Kingston parkrun471116:51 + Tutti +
Bedfont Lakes parkrun81117:04 + Tutti +
Nonsuch parkrun71116:52 + Tutti +
Richmond parkrun71117:13 + Tutti +
Crane Park parkrun61116:48 + Tutti +
Riddlesdown parkrun42217:01 + Tutti +
Bexley parkrun31117:48 + Tutti +
Tilgate parkrun31117:10 + Tutti +
Frimley Lodge parkrun31117:11 + Tutti +
Hilly Fields parkrun31117:50 + Tutti +
Old Deer Park parkrun31117:41 + Tutti +
Guildford parkrun31117:17 + Tutti +
Homewood parkrun3151722:21 + Tutti +
Brockwell parkrun, Herne Hill31116:56 + Tutti +
Southwark parkrun34417:27 + Tutti +
Fulham Palace parkrun33317:47 + Tutti +
Cannon Hill parkrun, Birmingham3111118:04 + Tutti +
Gunnersbury parkrun31116:51 + Tutti +
Wimbledon Common parkrun35517:27 + Tutti +
Brighton & Hove parkrun31116:27 + Tutti +
Basingstoke parkrun35517:48 + Tutti +
Black Park parkrun31117:25 + Tutti +
Dulwich parkrun33317:11 + Tutti +
Bedgebury Pinetum parkrun28921:24 + Tutti +
Harrow parkrun25520:23 + Tutti +
Netley Abbey parkrun21117:21 + Tutti +
Ellenbrook Fields parkrun2141519:58 + Tutti +
Worthing parkrun28918:44 + Tutti +
Grovelands parkrun, Enfield22217:21 + Tutti +
Beckton parkrun23317:24 + Tutti +
Gladstone parkrun21117:09 + Tutti +
Hackney Marshes parkrun22216:46 + Tutti +
Burgess parkrun22216:45 + Tutti +
Orpington parkrun22217:27 + Tutti +
Barking parkrun22216:45 + Tutti +
Southampton parkrun23316:44 + Tutti +
Alice Holt parkrun21117:59 Tutti - Graph It!
Kingston parkrun351100:16:51 +
Woodley parkrun21117:02 Tutti - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Upton Court parkrun22217:24 Tutti - Graph It!
Richmond parkrun71100:17:13 +
Chelmsford Central parkrun22217:24 Tutti - Graph It!
Nonsuch parkrun71100:16:52 +
Mole Valley parkrun2262622:56 Tutti - Graph It!
Crane Park parkrun61100:16:48 +
Durlston Country Park parkrun2355032:45 Tutti - Graph It!
Brighton & Hove parkrun31100:16:27 +
Hazelwood parkrun2182222:21 Tutti - Graph It!
Fulham Palace parkrun33300:17:47 +
Southsea parkrun23317:55 Tutti - Graph It!
Frimley Lodge parkrun31100:17:11 +
St Albans parkrun21116:37 Tutti - Graph It!
Gunnersbury parkrun31100:16:51 +
Havant parkrun21117:46 Tutti - Graph It!
Bexley parkrun31100:17:48 +
Ashford parkrun22217:57 Tutti - Graph It!
Tilgate parkrun31100:17:10 +
Bedford parkrun21116:55 Tutti - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Margate parkrun21118:16 Tutti - Graph It!
Southwark parkrun34400:17:27 +
Milton Keynes parkrun23317:26 Tutti - Graph It!
Basingstoke parkrun35500:17:48 +
Preston Park parkrun, Brighton22217:40 Tutti - Graph It!
Hilly Fields parkrun31100:17:50 +
Shorne Woods parkrun21118:14 Tutti - Graph It!
Black Park parkrun31100:17:25 +
Canons Park parkrun27720:50 Tutti - Graph It!
Riddlesdown parkrun32200:17:01 +
Osterley parkrun21117:57 Tutti - Graph It!
Dulwich parkrun33300:17:11 +
Eastleigh parkrun27719:14 Tutti - Graph It!
Guildford parkrun31100:17:17 +
Brooklands parkrun2394223:22 Tutti - Graph It!
Old Deer Park parkrun31100:17:41 +
Great Lines parkrun, Medway25518:25 Tutti - Graph It!
Wimbledon Common parkrun35500:17:27 +
Malling Rec parkrun2738526:59 Tutti - Graph It!
Homewood parkrun3151700:22:21 +
Crystal Palace parkrun21117:24 Tutti - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Northala Fields parkrun22218:06 Tutti - Graph It!
Pymmes parkrun21100:17:06 +
Northampton parkrun21116:56 Tutti - Graph It!
Hove Promenade parkrun27700:19:23 +
Oak Hill parkrun21117:13 Tutti - Graph It!
Netley Abbey parkrun21100:17:21 +
Lloyd parkrun, Croydon21118:01 Tutti - Graph It!
Mile End parkrun21100:16:53 +
Newbury parkrun21117:20 Tutti - Graph It!
Southampton parkrun23300:16:44 +
Cranleigh parkrun26620:49 Tutti - Graph It!
Northala Fields parkrun22200:18:06 +
Littlehampton Prom parkrun2384324:22 Tutti - Graph It!
Hockley Woods parkrun26600:21:09 +
Whitstable parkrun23318:12 Tutti - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Bethlem Royal Hospital parkrun2263223:22 Tutti - Graph It!
Upton Court parkrun22200:17:24 +
Cyclopark parkrun2353824:01 Tutti - Graph It!
Alice Holt parkrun21100:17:59 +
Hockley Woods parkrun26621:09 Tutti - Graph It!
Osterley parkrun21100:17:57 +
South Oxhey parkrun21119:13 Tutti - Graph It!
Burgess parkrun22200:16:45 +
Pymmes parkrun21117:06 Tutti - Graph It!
Gladstone parkrun21100:17:09 +
Hastings parkrun291120:41 Tutti - Graph It!
Havant parkrun21100:17:46 +
Wycombe Rye parkrun22217:17 Tutti - Graph It!
Cranleigh parkrun26600:20:49 +
Hove Promenade parkrun27719:23 Tutti - Graph It!
Finsbury parkrun22200:17:15 +
Banstead Woods parkrun21117:31 Tutti - Graph It!
Southsea parkrun23300:17:55 +
Wormwood Scrubs parkrun21118:00 Tutti - Graph It!
Margate parkrun21100:18:16 +
Roundshaw Downs parkrun23318:14 Tutti - Graph It!
Northampton parkrun21100:16:56 +
Mile End parkrun21116:53 Tutti - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Bevendean Down parkrun28923:21 Tutti - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Finsbury parkrun22217:15 Tutti - Graph It!
Crystal Palace parkrun21100:17:24 +
Tooting Common parkrun2181819:14 Tutti - Graph It!
Eastleigh parkrun27700:19:14 +
Bromley parkrun13317:18 Tutti - Graph It!
Hastings parkrun291100:20:41 +
Houghton Hall parkrun1131321:48 Tutti - Graph It!
Banstead Woods parkrun21100:17:31 +
Sittingbourne parkrun18820:56 Tutti - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Sharpham Road Playing Fields parkrun1253124:41 Tutti - Graph It!
Hackney Marshes parkrun22200:16:46 +
Gadebridge parkrun1141422:22 Tutti - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Chilton Fields parkrun1405428:26 Tutti - Graph It!
Woodley parkrun21100:17:02 +
Storeys Field parkrun115121128:49 Tutti - Graph It!
Tooting Common parkrun2181800:19:14 +
Hadleigh parkrun, Essex1252624:27 Tutti - Graph It!
Milton Keynes parkrun23300:17:26 +
Marple parkrun11117:15 Tutti - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Portsmouth Lakeside parkrun19919:12 Tutti - Graph It!
Barking parkrun22200:16:45 +
Grove Fields parkrun1578528:03 Tutti - Graph It!
Canons Park parkrun27700:20:50 +
Banbury parkrun1222321:16 Tutti - Graph It!
Newbury parkrun21100:17:20 +
Graves parkrun11118:18 Tutti - Graph It!
Shorne Woods parkrun21100:18:14 +
Watermead Country Park parkrun110818235:52 Tutti - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Eastbourne parkrun12217:24 Tutti - Graph It!
Mole Valley parkrun2262600:22:56 +
Malahide parkrun11116:54 Tutti - Graph It!
Oak Hill parkrun21100:17:13 +
Fareham parkrun16619:21 Tutti - Graph It!
Cyclopark parkrun2353800:24:01 +
Sutcliffe parkrun113117230:34 Tutti - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Fritton Lake parkrun11118:26 Tutti - Graph It!
South Oxhey parkrun21100:19:13 +
Bicester parkrun14420:13 Tutti - Graph It!
Chelmsford Central parkrun22200:17:24 +
Sandringham parkrun1466330:18 Tutti - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Luton Wardown parkrun191019:36 Tutti - Graph It!
Bevendean Down parkrun28900:23:21 +
Cwmbran parkrun1171723:29 Tutti - Graph It!
Bedford parkrun21100:16:55 +
Broadwater parkrun110321335:19 Tutti - Graph It!
Whitstable parkrun23300:18:12 +
Basildon parkrun15518:13 Tutti - Graph It!
Orpington parkrun22200:17:27 +
Marecchia parkrun11119:50 Tutti - Graph It!
Ashford parkrun22200:17:57 +
Harleston Magpies parkrun1293525:12 Tutti - Graph It!
Hazelwood parkrun2182200:22:21 +
Kingsway parkrun, Gloucester1192021:20 Tutti - Graph It!
Brooklands parkrun2394200:23:22 +
Bryn Bach parkrun11116:50 Tutti - Graph It!
Wycombe Rye parkrun22200:17:17 +
Mersea Island parkrun1121220:59 Tutti - Graph It!
Harrow parkrun25500:20:23 +
Charlton parkrun18213032:05 Tutti - Graph It!
Beckton parkrun23300:17:24 +
parkrun de Rouen15521:41 Tutti - Graph It!
St Albans parkrun21100:16:37 +
Dallas Burston Polo Club parkrun19614732:26 Tutti - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Ashton Court parkrun1859522:59 Tutti -  
Buckingham parkrun12200:18:37 +
Tøyen parkrun1668526:32 Tutti -  
Thomas Mills parkrun1486500:30:19 +
The Great Field parkrun19313529:12 Tutti -  
Leamington parkrun12200:18:52 +
Castle Park parkrun1394122:34 Tutti -  
Church Mead parkrun16610200:32:53 +
Swanley parkrun19712531:18 Tutti -  
Letchworth parkrun1141400:23:13 +
Greenwich parkrun12218:07 Tutti -  
Mulbarton parkrun12200:19:55 +
Neckarau parkrun1243027:11 Tutti -  
Arrow Valley parkrun13300:18:05 +
Bury Field parkrun1669033:07 Tutti -  
Frogmary Green Farm parkrun1597200:25:58 +
Clifton parkrun1101025:14 Tutti -  
Sutton Park parkrun1475500:24:54 +
Alton Water parkrun1538335:09 Tutti -  
Reigate Priory parkrun16600:19:06 +
Colwick parkrun18819:46 Tutti -  
Bury St Edmunds parkrun13300:18:17 +
Melksham parkrun1171724:31 Tutti -  
Pollok parkrun, Glasgow11100:17:00 +
Markshall Estate parkrun110315632:26 Tutti -  
Kingdom parkrun1222500:24:39 +
Rogiet parkrun1151624:27 Tutti -  
Barclay parkrun15600:23:13 +
Bartley Park parkrun18415132:38 Tutti -  
Chippenham parkrun1212100:20:08 +
Lydiard parkrun18818:25 Tutti -  
Ipswich parkrun11100:17:34 +
Little Stoke parkrun11117:03 Tutti -  
Itchen Valley Country parkrun1476100:27:37 +
Letchworth parkrun1141423:13 Tutti -  
Neckarau parkrun1243000:27:11 +
Belvoir Castle parkrun1131925:42 Tutti -  
Brandon Country Park parkrun11100:18:30 +
Andover parkrun11117:33 Tutti -  
Boston parkrun17700:21:18 +
Rushcliffe parkrun1617323:54 Tutti -  
University Parks parkrun119032600:31:42 +
Cirencester parkrun1222422:40 Tutti -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Southall parkrun1557531:38 Tutti -  
Lullingstone parkrun17700:21:21 +
Forest of Dean parkrun1182224:51 Tutti -  
Coventry parkrun1292900:20:51 +
parkrun des Dougnes, Cubnezais12219:42 Tutti -  
Berkeley Green parkrun1233100:28:31 +
South Woodham Ferrers parkrun18821:14 Tutti -  
Mersea Island parkrun1121200:20:59 +
Marine Parade parkrun17711129:24 Tutti -  
Aylesbury parkrun11100:17:51 +
Coventry parkrun1292920:51 Tutti -  
Royal Tunbridge Wells parkrun18900:19:23 +
Wotton parkrun1182124:45 Tutti -  
Southall parkrun1557500:31:38 +
Gloucester City parkrun1171922:35 Tutti -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Great Salterns parkrun19212430:27 Tutti -  
Pomphrey Hill parkrun1364100:23:02 +
Bedworth parkrun1171722:14 Tutti -  
Henley-on-Thames parkrun1111100:22:25 +
University Parks parkrun119032631:42 Tutti -  
Aachener Weiher parkrun1101100:24:55 +
Hampstead Heath parkrun11117:45 Tutti -  
Penrose parkrun1151600:19:40 +
Great Denham parkrun16619:27 Tutti -  
King’s Lynn parkrun1151500:20:07 +
Downham Market Academy parkrun1121324:35 Tutti -  
Fulbourn Hospital parkrun1344700:24:59 +
Ipswich parkrun11117:34 Tutti -  
Fareham parkrun16600:19:21 +
Sixfields Upton parkrun18819:58 Tutti -  
Brockenhurst parkrun13300:18:23 +
Rendlesham Forest parkrun1264637:01 Tutti -  
Canterbury parkrun16600:21:56 +
Frogmary Green Farm parkrun1597225:58 Tutti -  
Alton Water parkrun1538300:35:09 +
Harrow Lodge parkrun11118:48 Tutti -  
Littleport parkrun1445100:25:16 +
Witney parkrun1202022:34 Tutti -  
Newport parkrun11100:17:29 +
Leamington parkrun12218:52 Tutti -  
California Country parkrun1649000:28:49 +
Brockenhurst parkrun13318:23 Tutti -  
Thornbury parkrun1323400:28:19 +
Hogmoor Inclosure parkrun1262625:26 Tutti -  
Greenwich parkrun12200:18:07 +
Hastings High School parkrun1637827:33 Tutti -  
Seven Fields parkrun1475500:26:28 +
Cannock Chase parkrun1384425:49 Tutti -  
Highbury Fields parkrun11100:17:25 +
Wimpole Estate parkrun1202122:14 Tutti -  
The Great Field parkrun19313500:29:12 +
Haverhill parkrun1121323:32 Tutti -  
Street parkrun1283500:25:52 +
Edenbrook Country parkrun110514828:01 Tutti -  
South Norwood parkrun1121200:21:11 +
Maidstone River Park parkrun13318:00 Tutti -  
Dunstable Downs parkrun1374300:24:58 +
Cheltenham parkrun12217:24 Tutti -  
Melton Mowbray parkrun1192200:22:38 +
Victoria Dock parkrun1273020:04 Tutti -  
Horsham parkrun14500:18:16 +
Ekebergsletta parkrun1304325:57 Tutti -  
Irchester Country parkrun1586200:25:13 +
Oxford parkrun11117:18 Tutti -  
Stratford-upon-Avon parkrun1202500:21:14 +
Aylesbury parkrun11117:51 Tutti -  
Wotton parkrun1182100:24:45 +
Mote Park parkrun19712231:28 Tutti -  
Bath Skyline parkrun1192000:21:08 +
Riverfront parkrun1404622:57 Tutti -  
Great Dunmow parkrun14400:20:25 +
Newent parkrun1182225:27 Tutti -  
Corby parkrun18800:23:09 +
Clapham Common parkrun1404220:22 Tutti -  
Bracknell parkrun18800:20:04 +
Llanishen Park parkrun1303323:48 Tutti -  
Cromhall parkrun1151600:24:20 +
Heartwood Forest parkrun1252721:41 Tutti -  
Perry Hall parkrun1464900:24:58 +
Walthamstow parkrun11117:48 Tutti -  
Gunpowder parkrun12200:17:34 +
Malmö Ribersborg parkrun111215128:46 Tutti -  
Luton Wardown parkrun191000:19:36 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 Tutti -  
Ifield Mill Pond parkrun1373800:24:33 +
Huntingdon parkrun1202121:10 Tutti -  
March parkrun15500:21:11 +
Felixstowe parkrun1121221:07 Tutti -  
Roding Valley parkrun1111300:21:26 +
Tidworth parkrun110815535:14 Tutti -  
Charlton parkrun18213000:32:05 +
Brandon Country Park parkrun11118:30 Tutti -  
Malmö Ribersborg parkrun111215100:28:46 +
Prospect parkrun1232322:42 Tutti -  
Worcester parkrun114418500:29:30 +
Mildenhall Hub parkrun1273124:33 Tutti -  
Wolford Wood parkrun1212700:30:24 +
York parkrun12217:12 Tutti -  
Fire Service College parkrun1181900:22:12 +
Thetford parkrun1161721:45 Tutti -  
Panshanger parkrun17700:20:14 +
Great Dunmow parkrun14420:25 Tutti -  
Conkers parkrun12200:17:46 +
Leavesden Country parkrun1506928:32 Tutti -  
Banbury parkrun1222300:21:16 +
Catford parkrun1303322:32 Tutti -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Lordship Recreation Ground parkrun19112425:22 Tutti -  
Rushmere parkrun1131400:22:39 +
Rugby parkrun1181822:26 Tutti -  
Whiteley parkrun1141500:20:56 +
Mulbarton parkrun12219:55 Tutti -  
Sandringham parkrun1466300:30:18 +
Swaffham parkrun191022:19 Tutti -  
Victoria Dock parkrun1283000:20:04 +
Ganger Farm parkrun19811426:34 Tutti -  
Queen Elizabeth parkrun12200:19:08 +
Beckenham Place parkrun1121220:28 Tutti -  
Lordship Recreation Ground parkrun19112400:25:22 +
Forest Rec parkrun1677626:35 Tutti -  
Somerdale Pavilion parkrun1384600:31:17 +
Street parkrun1283525:52 Tutti -  
Dartford parkrun11100:17:59 +
Market Bosworth Country Park parkrun110614435:35 Tutti -  
Winchester parkrun14500:18:28 +
Whiteley parkrun1141520:56 Tutti -  
Stratford Park parkrun, Stroud1566500:27:51 +
Kingsbury Water parkrun1394725:05 Tutti -  
Sherwood Pines parkrun1161800:21:33 +
Springhill parkrun14422:18 Tutti -  
Grove Fields parkrun1578500:28:03 +
Wolford Wood parkrun1212730:24 Tutti -  
Witney parkrun1202000:22:34 +
Pontypridd parkrun12217:54 Tutti -  
Preston Park parkrun, Brighton12200:17:40 +
Pocket parkrun1222321:38 Tutti -  
Colchester Castle parkrun14400:18:04 +
Stockley Country parkrun111917935:32 Tutti -  
Tidworth parkrun110815500:35:14 +
Braunstone parkrun1262720:41 Tutti -  
Walmer and Deal Seafront parkrun18800:21:38 +
Didcot parkrun1101121:28 Tutti -  
Ferry Meadows parkrun15500:17:27 +
Littleport parkrun1445125:16 Tutti -  
St Mary’s parkrun1587400:29:14 +
Yarborough Leisure Centre parkrun1466125:59 Tutti -  
Dartford Heath parkrun1171700:22:06 +
Roding Valley parkrun1111321:26 Tutti -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Clair parkrun13318:36 Tutti -  
Great Denham parkrun16600:19:27 +
Dinton Pastures parkrun1131321:23 Tutti -  
Hastings High School parkrun1637800:27:33 +
Beacon Hill Country Park parkrun1273725:54 Tutti -  
Wendover Woods parkrun1262600:23:51 +
Severn Bridge parkrun1353921:32 Tutti -  
Peckham Rye parkrun11100:17:49 +
Abbey Park parkrun1779425:21 Tutti -  
Upton House parkrun1252700:22:34 +
Dudley parkrun1445626:35 Tutti -  
Lee-on-the-Solent parkrun17700:19:40 +
Pegwell Bay parkrun12217:40 Tutti -  
Graves parkrun11100:18:18 +
Manor Field parkrun, Whittlesey1121324:25 Tutti -  
Maidstone parkrun13300:18:00 +
Blaise Castle parkrun112816326:20 Tutti -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Chipping Sodbury parkrun1303221:20 Tutti -  
South Woodham Ferrers parkrun18800:21:14 +
Foots Cray Meadows parkrun1212323:17 Tutti -  
Pontypridd parkrun12200:17:54 +
Thames Path parkrun, Woolwich1789023:42 Tutti -  
Bournemouth parkrun14400:17:43 +
Bath Skyline parkrun1192021:08 Tutti -  
Sizewell parkrun1172000:23:30 +
Dishley parkrun, Loughborough110311424:30 Tutti -  
Rushmoor parkrun19900:18:29 +
Thornham Walks parkrun1363826:52 Tutti -  
Walsall Arboretum parkrun19810600:25:31 +
Moors Valley parkrun19919:40 Tutti -  
Gorleston Cliffs parkrun12200:17:43 +
East Grinstead parkrun1131423:10 Tutti -  
Uckfield parkrun1404300:24:12 +
Sutton Park parkrun1475524:54 Tutti -  
Aldenham parkrun1141400:21:37 +
University of Northampton parkrun1192223:24 Tutti -  
Gadebridge parkrun1141400:22:22 +
Shipley Country parkrun1232424:45 Tutti -  
Horspath parkrun17410600:28:12 +
Lancing Beach Green parkrun1141421:08 Tutti -  
Rogiet parkrun1151600:24:27 +
Dover Waterfront parkrun1374525:22 Tutti -  
Rendlesham Forest parkrun1264600:37:01 +
Rickmansworth parkrun1242721:39 Tutti -  
Dishley parkrun, Loughborough110311400:24:30 +
Queen Elizabeth parkrun12219:08 Tutti -  
Great Cornard parkrun1192000:20:33 +
Sizewell parkrun1172023:30 Tutti -  
Kettering parkrun1232600:22:50 +
Holbrooks parkrun1202223:43 Tutti -  
Pont y Bala parkrun15700:23:18 +
Highbury Fields parkrun11117:25 Tutti -  
Burnham and Highbridge parkrun17510000:27:51 +
Clacton Seafront parkrun19920:35 Tutti -  
Stonehouse parkrun1131300:20:09 +
Delaware and Raritan Canal parkrun12221:06 Tutti -  
Hampstead Heath parkrun11100:17:45 +
Wisbech parkrun1111523:03 Tutti -  
Wickford Memorial parkrun1436600:51:15 +
Milton Country parkrun13317:43 Tutti -  
Castle Park parkrun1394100:22:34 +
Seaton parkrun1394824:09 Tutti -  
Huntingdon parkrun1202100:21:10 +
Higginson parkrun, Marlow1272922:17 Tutti -  
Great Salterns parkrun19212400:30:27 +
Quakers Walk parkrun1566825:05 Tutti -  
Snowden Field parkrun1242600:24:15 +
Lister Park parkrun, Bradford1313621:55 Tutti -  
Southend parkrun11100:16:28 +
Wendover Woods parkrun1262623:51 Tutti -  
Andover parkrun11100:17:33 +
Sence Valley Forest Park parkrun1232526:28 Tutti -  
parkrun Zalew Żyrardowski16700:24:38 +
Canterbury parkrun16621:56 Tutti -  
Marecchia parkrun11100:19:50 +
Henstridge Airfield parkrun18821:41 Tutti -  
Cheltenham parkrun12200:17:24 +
Five Arches parkrun1455422:58 Tutti -  
St Helens parkrun1606800:24:27 +
Yeovil Montacute parkrun1707525:51 Tutti -  
Bartley Park parkrun18415100:32:38 +
Watermeadows parkrun1283124:57 Tutti -  
Severn Bridge parkrun1353900:21:32 +
Tamworth Castle Grounds parkrun1333523:26 Tutti -  
Pontypool parkrun1232300:23:51 +
St Helens parkrun1606824:27 Tutti -  
Poole parkrun14400:16:57 +
Weymouth parkrun1141420:45 Tutti -  
Bramhall parkrun115924700:35:16 +
Walmer and Deal Seafront parkrun18821:38 Tutti -  
Sunny Hill parkrun1202400:24:39 +
Aston Hall parkrun1202225:01 Tutti -  
Cassiobury parkrun1111100:20:14 +
Royal Tunbridge Wells parkrun18919:23 Tutti -  
Hoblingwell parkrun1202400:23:52 +
Corby parkrun18823:09 Tutti -  
Colwick parkrun18800:19:46 +
Marlborough Common parkrun1202122:48 Tutti -  
Chipping Norton School parkrun1455100:26:40 +
Battlestead Croft parkrun1111122:53 Tutti -  
Worthing parkrun18900:18:44 +
Shepton Mallet parkrun1121421:50 Tutti -  
Harrow Lodge parkrun11100:18:48 +
Clare Castle parkrun1252723:04 Tutti -  
Bradford parkrun1313600:21:55 +
Coldham’s Common parkrun1535923:04 Tutti -  
Bury Field parkrun1669000:33:07 +
Brunswick Park parkrun1212223:58 Tutti -  
Pocket parkrun1222300:21:38 +
Brentwood parkrun17722:28 Tutti -  
Longrun Meadow parkrun111416500:32:01 +
Somerdale Pavilion parkrun1384631:17 Tutti -  
Worcester Pitchcroft parkrun111814300:27:04 +
Wakehurst parkrun18810525:00 Tutti -  
Highwoods parkrun1252600:24:49 +
Boston parkrun17721:18 Tutti -  
Maidenhead parkrun17700:18:49 +
Morden parkrun111715526:58 Tutti -  
Soham Village College parkrun1253200:28:03 +
Pontefract parkrun1718724:10 Tutti -  
Rickmansworth parkrun1242700:21:39 +
Jersey Farm parkrun1252723:11 Tutti -  
Swaffham parkrun191000:22:19 +
Bug Hunter Waters parkrun1455022:41 Tutti -  
Brentwood parkrun17700:22:28 +
Rosliston parkrun1333624:41 Tutti -  
Lymington Woodside parkrun15700:21:59 +
Longrun Meadow parkrun111416532:01 Tutti -  
Loch Neaton parkrun, Watton1171700:25:49 +
Fire Service College parkrun1181922:12 Tutti -  
Daventry parkrun1151500:21:10 +
Woolacombe Dunes parkrun19410931:20 Tutti -  
Hatfield Forest parkrun1181800:20:36 +
The Plens parkrun1303124:04 Tutti -  
Kingsway parkrun, Gloucester1192000:21:20 +
Arrow Valley parkrun13318:05 Tutti -  
Salcey Forest parkrun1384300:24:53 +
Tonbridge parkrun14418:40 Tutti -  
parkrun des Dougnes, Cubnezais12200:19:42 +
East Brighton parkrun1182123:56 Tutti -  
Prospect parkrun1232300:22:42 +
Three Brooks parkrun1697223:46 Tutti -  
Weymouth parkrun1141400:20:45 +
Peacehaven parkrun17721:07 Tutti -  
Westmill parkrun1101000:22:55 +
Pontypool parkrun1232323:51 Tutti -  
East Brighton parkrun1182100:23:56 +
Cromhall parkrun1151624:20 Tutti -  
Harlow parkrun1151500:23:00 +
Dereham parkrun1323323:47 Tutti -  
Linford Wood parkrun1222200:21:45 +
Bournemouth parkrun14417:43 Tutti -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Pomphrey Hill parkrun1364123:02 Tutti -  
Lydney parkrun1202100:23:19 +
Seaford Beach parkrun1535622:25 Tutti -  
Braunstone parkrun1262700:20:41 +
Mansfield parkrun11117:09 Tutti -  
Harleston Magpies parkrun1293500:25:12 +
Fountains Abbey parkrun11118:03 Tutti -  
Clapham Common parkrun1404200:20:22 +
Loch Neaton parkrun, Watton1171725:49 Tutti -  
Market Bosworth Country Park parkrun110614400:35:35 +
Brueton parkrun1475021:33 Tutti -  
Jersey Farm parkrun1252700:23:11 +
Great Cornard parkrun1192020:33 Tutti -  
Kesgrave parkrun1374000:21:18 +
Dunstable Downs parkrun1374324:58 Tutti -  
Stevenage parkrun17700:19:32 +
Beeston parkrun1374023:53 Tutti -  
Hadleigh parkrun, Essex1252600:24:27 +
Feltham parkrun13424:56 Tutti -  
Squerryes Winery parkrun1323600:27:45 +
Markeaton parkrun1576422:56 Tutti -  
Rutland Water parkrun1293000:22:44 +
Reigate Priory parkrun16619:06 Tutti -  
Beckenham Place parkrun1121200:20:28 +
Highwoods parkrun1252624:49 Tutti -  
Sutcliffe parkrun113117200:30:34 +
Valentines parkrun11116:49 Tutti -  
Haverhill parkrun1121300:23:32 +
Springburn parkrun, Glasgow13318:05 Tutti -  
Leavesden Country parkrun1506900:28:32 +
California Country parkrun1649028:49 Tutti -  
Coldham’s Common parkrun1535900:23:04 +
Rushmoor parkrun19918:29 Tutti -  
Chichester parkrun13300:19:05 +
Mountbatten School parkrun1323424:11 Tutti -  
Billericay parkrun1121300:21:20 +
Colchester Castle parkrun14418:04 Tutti -  
Bromley parkrun13300:17:18 +
Buckingham parkrun12218:37 Tutti -  
Babbs Mill parkrun1405100:28:00 +
Sunny Hill parkrun1202424:39 Tutti -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Bognor Regis parkrun12218:12 Tutti -  
Bryn Bach parkrun11100:16:50 +
Aachener Weiher parkrun1101124:55 Tutti -  
York parkrun12200:17:12 +
Peckham Rye parkrun11117:49 Tutti -  
Storeys Field parkrun115121100:28:49 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 Tutti -  
Chipping Sodbury parkrun1303200:21:20 +
Great Notley parkrun16620:16 Tutti -  
Mote Park parkrun19712200:31:28 +
Snowden Field parkrun1242624:15 Tutti -  
Watermeadows parkrun1283100:24:57 +
Burnham-on-Crouch parkrun18822:01 Tutti -  
Woking parkrun18800:18:19 +
Woking parkrun18818:19 Tutti -  
Raphael parkrun13300:19:35 +
Neckarufer parkrun, Esslingen1364425:12 Tutti -  
Harwich parkrun191000:21:22 +
Worcester parkrun114418529:30 Tutti -  
Fritton Lake parkrun11100:18:26 +
Blandford parkrun18920:11 Tutti -  
Heartwood Forest parkrun1252700:21:41 +
Pont y Bala parkrun15723:18 Tutti -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Chichester parkrun13319:05 Tutti -  
Bedworth parkrun1171700:22:14 +
Kingdom parkrun1222524:39 Tutti -  
Clair parkrun13300:18:36 +
Westmill parkrun1101022:55 Tutti -  
Brueton parkrun1475000:21:33 +
Dartford parkrun11117:59 Tutti -  
Higginson parkrun, Marlow1272900:22:17 +
Hanworth parkrun1364024:26 Tutti -  
Bognor Regis parkrun12200:18:12 +
Bracknell parkrun18820:04 Tutti -  
Huddersfield parkrun1626700:22:02 +
Folkestone parkrun1212521:48 Tutti -  
Heaton parkrun13300:18:08 +
Uckfield parkrun1404324:12 Tutti -  
Chasewater parkrun18210000:26:19 +
Harrogate parkrun13318:11 Tutti -  
Tewkesbury parkrun1111400:22:50 +
Kesgrave parkrun1374021:18 Tutti -  
Marple parkrun11100:17:15 +
Thomas Mills parkrun1486530:19 Tutti -  
Cannock Chase parkrun1384400:25:49 +
Lymington Woodside parkrun15721:59 Tutti -  
Edgbaston Reservoir parkrun1658600:26:24 +
Hereford parkrun1535323:07 Tutti -  
Cirencester parkrun1222400:22:40 +
Chasewater parkrun18210026:19 Tutti -  
Kingsbury Water parkrun1394700:25:05 +
South Norwood parkrun1121221:11 Tutti -  
Peacehaven parkrun17700:21:07 +
Panshanger parkrun17720:14 Tutti -  
Lancing Beach Green parkrun1141400:21:08 +
Wolverhampton parkrun1556624:54 Tutti -  
Springburn parkrun, Glasgow13300:18:05 +
Harcourt Hill parkrun1171721:13 Tutti -  
Market Harborough parkrun1303100:21:17 +
Tetbury Goods Shed parkrun1253024:25 Tutti -  
Amager Fælled parkrun1333700:24:23 +
Gloucester North parkrun1101022:14 Tutti -  
Hanworth parkrun1364000:24:26 +
Harlow parkrun1151523:00 Tutti -  
Salisbury parkrun1111100:19:34 +
Alvaston parkrun1515922:24 Tutti -  
Houghton Hall parkrun1131300:21:48 +
Worcester Pitchcroft parkrun111814327:04 Tutti -  
Chalkwell Beach parkrun1819600:24:40 +
Perry Hall parkrun1464924:58 Tutti -  
Melksham parkrun1171700:24:31 +
Newport parkrun11117:29 Tutti -  
Thetford parkrun1161700:21:45 +
Tring parkrun1171823:38 Tutti -  
Pontefract parkrun1718700:24:10 +
Severn Valley Country parkrun1141626:13 Tutti -  
Downham Market Academy parkrun1121300:24:35 +
Wanstead Flats parkrun13317:13 Tutti -  
Fountains Abbey parkrun11100:18:03 +
Daventry parkrun1151521:10 Tutti -  
Cardiff parkrun111011700:22:02 +
St Mary’s parkrun1587429:14 Tutti -  
Littlehampton Prom parkrun1384300:24:22 +
Poole parkrun14416:57 Tutti -  
Uditore parkrun13300:20:28 +
Melton Mowbray parkrun1192222:38 Tutti -  
Beacon parkrun1587300:26:41 +
The Old Showfield parkrun1636923:30 Tutti -  
parkrun de Rouen15500:21:41 +
Henley-on-Thames parkrun1111122:25 Tutti -  
Walthamstow parkrun11100:17:48 +
Crissy Field parkrun1101220:40 Tutti -  
Shepton Mallet parkrun1121400:21:50 +
Babbs Mill parkrun1405128:00 Tutti -  
Marine Parade parkrun17711100:29:24 +
Maidenhead parkrun17718:49 Tutti -  
Foots Cray Meadows parkrun1212300:23:17 +
Ross-on-Wye parkrun1172124:22 Tutti -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Kettering parkrun1232622:50 Tutti -  
Evesham parkrun1111100:21:39 +
Stratford Park parkrun, Stroud1566527:51 Tutti -  
Southwick Country parkrun1272900:21:47 +
Bury St Edmunds parkrun13318:17 Tutti -  
Lydiard parkrun18800:18:25 +
Mallards Pike parkrun1324630:57 Tutti -  
Sandhurst Memorial parkrun1537300:28:54 +
Market Harborough parkrun1303121:17 Tutti -  
Bicester parkrun14400:20:13 +
Cassiobury parkrun1111120:14 Tutti -  
Wimpole Estate parkrun1202100:22:14 +
Squerryes Winery parkrun1323627:45 Tutti -  
Markshall Estate parkrun110315600:32:26 +
Walsall Arboretum parkrun19010625:31 Tutti -  
Dinton Pastures parkrun1131300:21:23 +
Penrose parkrun1151619:40 Tutti -  
Tonbridge parkrun14400:18:40 +
King George V Playing Field parkrun, Cheltenham1232826:08 Tutti -  
Wanstead Flats parkrun13300:17:13 +
Evesham parkrun1111121:39 Tutti -  
Woodhouse Moor parkrun11100:17:22 +
Warwick Racecourse parkrun1486024:55 Tutti -  
Mountbatten School parkrun1323400:24:11 +
Huddersfield parkrun1626722:02 Tutti -  
Eastville parkrun120525300:25:12 +
Clevedon Salthouse Fields parkrun1384925:13 Tutti -  
Brixworth Country parkrun1496100:26:53 +
Long Eaton parkrun19912124:06 Tutti -  
Portsmouth Lakeside parkrun19900:19:12 +
Barry Island parkrun1394223:51 Tutti -  
Milton Country parkrun13300:17:43 +
Ifield Mill Pond parkrun1373824:33 Tutti -  
Swanley parkrun19712500:31:18 +
Upton House parkrun1252722:34 Tutti -  
Springhill parkrun14400:22:18 +
Lullingstone parkrun17721:21 Tutti -  
Gloucester North parkrun1101000:22:14 +
The Leas parkrun, Minster1252524:37 Tutti -  
Feltham parkrun13400:24:56 +
Medina I.O.W. parkrun11117:20 Tutti -  
Crissy Field parkrun1101200:20:40 +
Uditore parkrun13320:28 Tutti -  
Ally Pally parkrun11100:18:09 +
Hunstanton Promenade parkrun1283523:45 Tutti -  
Ashton Court parkrun1859500:22:59 +
Raphael parkrun13319:35 Tutti -  
Oaklands parkrun111820300:36:10 +
Burnham and Highbridge parkrun17510027:51 Tutti -  
Sittingbourne parkrun18800:20:56 +
Salcey Forest parkrun1384324:53 Tutti -  
Moors Valley parkrun19900:19:40 +
Ferry Meadows parkrun15517:27 Tutti -  
Catford parkrun1303300:22:32 +
Barclay parkrun15623:13 Tutti -  
Clare Castle parkrun1252700:23:04 +
Irchester Country parkrun1586225:13 Tutti -  
Harrogate parkrun13300:18:11 +
Maldon Prom parkrun11118:04 Tutti -  
Seaford Beach parkrun1535600:22:25 +
Salisbury parkrun1111119:34 Tutti -  
Tring parkrun1171800:23:38 +
Tremorfa parkrun1272923:30 Tutti -  
Sandwell Valley parkrun1455900:30:43 +
Billericay parkrun1121321:20 Tutti -  
Basildon parkrun15500:18:13 +
Gedling parkrun1273224:59 Tutti -  
The Leas parkrun, Minster1252500:24:37 +
Oaklands parkrun111820336:10 Tutti -  
Little Stoke parkrun11100:17:03 +
Winchester parkrun14518:28 Tutti -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Aldenham parkrun1141421:37 Tutti -  
Felixstowe parkrun1121200:21:07 +
East Park parkrun1121424:18 Tutti -  
Yeovil Montacute parkrun1707500:25:51 +
Soham Village College parkrun1253228:03 Tutti -  
Stockley Country parkrun111917900:35:32 +
Stevenage parkrun17719:32 Tutti -  
Woolacombe Dunes parkrun19410900:31:20 +
Tewkesbury parkrun1111422:50 Tutti -  
Harcourt Hill parkrun1171700:21:13 +
Seven Fields parkrun1475526:28 Tutti -  
Abingdon parkrun15500:18:03 +
Conkers parkrun12217:46 Tutti -  
Eastbourne parkrun12200:17:24 +
Lee-on-the-Solent parkrun17719:40 Tutti -  
Warwick Racecourse parkrun1486000:24:55 +
Brixworth Country parkrun1496126:53 Tutti -  
Leicester Victoria parkrun19711600:26:45 +
Abingdon parkrun15518:03 Tutti -  
Broadwater parkrun110321300:35:19 +
Lowestoft parkrun1232621:10 Tutti -  
Clacton Seafront parkrun19900:20:35 +
Chipping Norton School parkrun1455126:40 Tutti -  
Burnham-on-Crouch parkrun18800:22:01 +
Linford Wood parkrun1222221:45 Tutti -  
Ganger Farm parkrun19811400:26:34 +
Harwich parkrun191021:22 Tutti -  
Folkestone parkrun1212500:21:48 +
Fulbourn Hospital parkrun1344724:59 Tutti -  
Mallards Pike parkrun1324600:30:57 +
Gunpowder parkrun12217:34 Tutti -  
Malling parkrun18314500:47:25 +
Dartford Heath parkrun1171722:06 Tutti -  
Rugby parkrun1181800:22:26 +
Sandhurst Memorial parkrun1537328:54 Tutti -  
Watermead Country Park parkrun110818200:35:52 +
Woodhouse Moor parkrun11117:22 Tutti -  
Hogmoor Inclosure parkrun1262600:25:26 +
Sandwell Valley parkrun1455930:43 Tutti -  
East Grinstead parkrun1131400:23:10 +
Wyre Forest parkrun1434825:56 Tutti -  
Mildenhall Hub parkrun1273100:24:33 +
parkrun Zalew Żyrardowski16724:38 Tutti -  
Marlborough Common parkrun1202100:22:48 +
Bramhall parkrun115924735:16 Tutti -  
Blandford parkrun18900:20:11 +
Hatfield Forest parkrun1181820:36 Tutti -  
Maldon Prom parkrun11100:18:04 +
Swansea Bay parkrun1748323:44 Tutti -  
Edinburgh parkrun12200:17:00 +
Wollaton Hall parkrun1889723:51 Tutti -  
The Old Showfield parkrun1636900:23:30 +
Horsham parkrun14518:16 Tutti -  
Jersey parkrun16600:19:41 +
Jersey parkrun16619:41 Tutti -  
Chilton Fields parkrun1405400:28:26 +
Berkeley Green parkrun1233128:31 Tutti -  
Sixfields Upton parkrun18800:19:58 +
Cardiff parkrun111011722:02 Tutti -  
Pegwell Bay parkrun12200:17:40 +
Ally Pally parkrun11118:09 Tutti -  
Valentines parkrun11100:16:49 +
Thurrock parkrun, Orsett Heath16620:41 Tutti -  
Edenbrook Country parkrun110514800:28:01 +
Beacon parkrun1587326:41 Tutti -  
Henstridge Airfield parkrun18800:21:41 +
Albert parkrun, Middlesbrough1515423:17 Tutti -  
Great Notley parkrun16600:20:16 +
Sherwood Pines parkrun1161821:33 Tutti -  
Medina I.O.W. parkrun11100:17:20 +
Wickford Memorial parkrun1436651:15 Tutti -  
Reading parkrun12200:17:18 +
Thornbury parkrun1323428:19 Tutti -  
Tetbury Goods Shed parkrun1253000:24:25 +
Malling parkrun18314547:25 Tutti -  
Lowestoft parkrun1232600:21:10 +
Itchen Valley Country parkrun1476127:37 Tutti -  
Malahide parkrun11100:16:54 +
Pollok parkrun, Glasgow11117:00 Tutti -  
Oxford parkrun11100:17:18 +
Eastville parkrun120525325:12 Tutti -  
Rheinpark parkrun1151800:25:30 +
Rutland Water parkrun1293022:44 Tutti -  
Gloucester City parkrun1171900:22:35 +
Chalkwell Beach parkrun1819624:40 Tutti -  
Didcot parkrun1101100:21:28 +
Amager Fælled parkrun1333724:23 Tutti -  
Mansfield parkrun11100:17:09 +
Hoblingwell parkrun1202423:52 Tutti -  
7851100:16:25 +
Belton House parkrun1141523:48 + Tutti +
Kagerzoom parkrun1435824:39 + Tutti +
Gorleston Cliffs parkrun12217:43 + Tutti +
King’s Lynn parkrun1151520:07 + Tutti +
Holkham parkrun1506925:37 + Tutti +
Horspath parkrun17410628:12 + Tutti +
Southwick Country parkrun1272921:47 + Tutti +
Rushmere parkrun1131422:39 + Tutti +
Zuiderpark parkrun, Den Haag1738124:07 + Tutti +
Heaton parkrun13318:08 + Tutti +
Colney Lane parkrun1495524:01 + Tutti +
Leicester Victoria parkrun19711626:45 + Tutti +
Church Mead parkrun16610232:53 + Tutti +
Southend parkrun11116:28 + Tutti +
Lydney parkrun1202123:19 + Tutti +
Edgbaston Reservoir parkrun1658626:24 + Tutti +
Reading parkrun12217:18 + Tutti +
March parkrun15521:11 + Tutti +
Woodgate Valley Country Park parkrun16513245:50 + Tutti +
Maaraue parkrun1232522:34 + Tutti +
Stonehouse parkrun1131320:09 + Tutti +
Rheinpark parkrun1151825:30 + Tutti +
Edinburgh parkrun12217:00 + Tutti +
Chippenham parkrun1212120:08 + Tutti +
Stratford-upon-Avon parkrun1202521:14 + Tutti +
Henlow Bridge Lakes parkrun17511532:34 + Tutti +
8671116:25 Tutti  


Sommario volontari

RuoloOccasioni
- Direttore di Corsa - 94
- Cronometrista - 59
- Sistemazione token - 3
- Elaboratore risultati - 87
- Fotografo - 6
- Addetto comunicazioni - 10
- Marshal - 39
- Preparazione evento - 130
- Addetto magazzino e forniture - 128
- Altro - 23
- Addetto scanner - 55
- Chiusura evento - 45
- Addetto token - 15
- Controllo posizioni - 2
- Benvenuto ai nuovi partecipanti - 68
- Addetto imbuto arrivo - 15
- Aiuto distribuzione token - 9
- Camminatore di coda - 29
- Coordinatore volontari - 146
- Addetto report finale - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Addetto parcheggio - 1
- Controllo percorso nel giorno dell'evento - 8
- parkwalker - 9
Crediti totali396

- Questa tabella riassume il numero di occasioni in cui ogni ruolo di volontario è stato completato.
Tieni presente che il totale potrebbe differire dal totale dei crediti di volontariato se hai svolto più attività nello stesso giorno.
Scopri di più
qui. + Direttore di Corsa +

99
+ Cronometrista + 94
+ Sistemazione token + 12
+ Elaboratore risultati + 87
+ Fotografo + 6
+ Addetto comunicazioni + 10
+ Marshal + 54
+ Preparazione evento + 148
+ Addetto magazzino e forniture + 130
+ Altro + 26
+ Addetto scanner + 78
+ Chiusura evento + 51
+ Addetto token + 21
+ Controllo posizioni + 2
+ Benvenuto ai nuovi partecipanti + 82
+ Addetto imbuto arrivo + 15
+ Aiuto distribuzione token + 12
+ Camminatore di coda + 29
+ Coordinatore volontari + 148
+ Addetto report finale + 100
+ Backup Timer + 3
+ Warm Up Leader + 16
+ Addetto parcheggio + 1
+ Controllo percorso nel giorno dell'evento + 14
+ parkwalker + 10
Crediti totali499

+ Questa tabella riassume il numero di occasioni in cui ogni ruolo di volontario è stato completato.
Tieni presente che il totale potrebbe differire dal totale dei crediti di volontariato se hai svolto più attività nello stesso giorno.
Scopri di più qui.



Freedom parkrun

DataTempoLocalità
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(non)parkrun

SettimanaData di inizioData di fine(non)parkrunMiglior Tempo
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1026,75 +1137,58 @@

Danny NORMAN 14

- Partecipanti: 19.838 + Partecipanti: 31572
- Partecipazioni: 91.242 + Partecipazioni: 136605
- Totale eventi: 2.982 + Totale eventi: 4028
- Volontari: 1.701 + Volontari: 2370
- PB: 12.766 + PB: 16164
- Tempo medio di partecipazione: 00:30:55 + Tempo medio di partecipazione: 00:31:06
- Media di partecipazioni per partecipante: 4,6 + Gruppi: 2639
-
- Gruppi: 1.971 -
- -
- Record femminile: - Sophie WOOD – 17:27 - ( 4 feb 2023) -
-
- Record maschile: - Joseph BEECH – 15:13 - (14 set 2019) -
-
- Record di categoria: - Jane KIDD - 93,32% 21:43 - ( 1 ott 2022) -
+
- Ultimo aggiornamento statistiche: ven 14 apr 2023 00:39:50 UTC + Ultimo aggiornamento statistiche: lun 30 set 2024 00:40:00 UTC
-

© parkrun Global Limited (Company number: 09411750)

Nessuna parte di questo sito può essere riprodotta in tutto o in parte in alcun modo senza il permesso del proprietario dei diritti d'autore.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1128,8 +1232,8 @@

Danny NORMAN  + risultati | parkrun Italia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -58,7 +52,7 @@
@@ -70,34 +64,25 @@
@@ -122,631 +107,729 @@

Phillip WHETTLOCK (A88720)

Membro del Club dei 250 parkrun - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkrun in totale + 345 parkrun in totale

Visualizza le statistiche riassuntive pe questo parkrunner
- La più recente nella categoria d'età è stata VM55-59 + La più recente nella categoria d'età è stata VM60-64

Statistiche di riepilogo per tutte le località -
Più veloceMedia
(mean)
Più lento
Tempo21:4025:2552:00
Age Grading69.71%60.41%29.55%
Posizione assoluta648.88374

+
Più veloceMedia
(mean)
Più lento
Tempo21:3625:2654:59
Age Grading72.99%60.80%28.92%
Posizione assoluta648.44374

I migliori risultati annuali complessivi -
AnnoMiglior TempoMiglior rapporto prestazione/età
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
AnnoMiglior TempoMiglior rapporto prestazione/età
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

Tutti i risultati -
EventoData corsaNumero corsaPosTempoRapporto prestazione/etàPB?
Halifax08/04/20233313225:0063.07% +
EventoData corsaNumero corsaPosTempoRapporto prestazione/etàPB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + PB + +   +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34%   -
Fulham Palace01/04/202339110924:0965.29% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Halifax25/03/20233291624:4363.79% +
Halifax16/09/20233532123:4367.04%   -
Halifax18/03/20233282326:4758.87% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax04/03/20233273825:1962.28% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Myrtle25/02/20231593824:5263.40% +
Glossop12/08/20233152824:2564.57% +   +
Halifax05/08/20233473024:4363.79% +   +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% PB   -
Halifax18/02/20233252926:0360.52% +
Stratford Park, Stroud01/07/20231253126:2959.53%   -
Halifax11/02/20233243124:0365.56% +
Wetherby24/06/20233094124:4663.66%   -
Bradford04/02/20235795022:3769.71% +
Halifax10/06/20233402524:0265.60%   -
Bowling Park28/01/202379924:1165.20% +
Halifax03/06/20233392124:1365.11%   -
Bramley21/01/20233004925:3461.67% +
Long Eaton20/05/20233306921:3672.99%   -
Halifax14/01/20233213325:5260.95% +
Halifax06/05/20233352423:4566.39%   -
Halifax07/01/20233203026:2659.65% +
Keswick29/04/20233904121:3672.99% + PB +   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax22/04/20233334725:0262.98%   -
Nostell31/12/20223614325:0063.07% +
Halifax08/04/20233313225:0063.07%   -
Halifax24/12/20223173125:4661.19% +
Fulham Palace01/04/202339110924:0965.29%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax25/03/20233291624:4363.79%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax18/03/20233282326:4758.87% +   +
Halifax04/03/20233273825:1962.28% +   +
Myrtle25/02/20231593824:5263.40% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71%   -
Brighouse12/11/20222213725:1762.36% +
Bowling Park28/01/202379924:1165.20%   -
Halifax05/11/20223122424:5163.45% +
Bramley21/01/20233004925:3461.67%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB +   -
Halifax15/10/202230910749:5431.60% +
Conkers19/11/20225485624:1465.06%   -
Crosby08/10/20222833525:3861.51% +
Brighouse12/11/20222213725:1762.36%   -
Alness01/10/20221801024:0965.29% +
Halifax05/11/20223122424:5163.45%   -
Victoria24/09/20223736722:5468.85% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax17/09/20223052625:0063.07% +
Halifax15/10/202230910749:5431.60%   -
Centre Vale10/09/20221034428:4454.87% +
Crosby08/10/20222833525:3861.51%   -
Halifax03/09/20223033125:3361.71% +
Alness01/10/20221801024:0965.29%   -
Skipton27/08/20224035325:3561.11% +
Victoria24/09/20223736722:5468.85%   -
Halifax20/08/20223012824:5262.87% +
Halifax17/09/20223052625:0063.07%   -
Halifax06/08/20222996426:0360.01% +
Centre Vale10/09/20221034428:4454.87%   -
Armley30/07/20221432724:2863.90% +
Halifax03/09/20223033125:3361.71%   -
Halifax16/07/20222962524:2663.98% +
Skipton27/08/20224035325:3561.11%   -
Halifax02/07/20222942524:4863.04% +
Halifax20/08/20223012824:5262.87%   -
Halifax18/06/20222922424:5462.78% +
Halifax06/08/20222996426:0360.01%   -
The Pastures11/06/2022991826:2159.33% +
Armley30/07/20221432724:2863.90%   -
Halifax04/06/20222913826:4858.33% +
Halifax16/07/20222962524:2663.98%   -
Horton Park28/05/20222942225:1262.04% +
Halifax02/07/20222942524:4863.04%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax18/06/20222922424:5462.78%   -
Halifax07/05/20222877529:3552.85% +
The Pastures11/06/2022991826:2159.33%   -
Harrogate30/04/202246716226:4458.48% +
Halifax04/06/20222913826:4858.33%   -
Halifax23/04/20222854927:0057.90% +
Horton Park28/05/20222942225:1262.04%   -
Halifax09/04/20222834526:3758.74% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax02/04/20222822924:4463.21% +
Halifax07/05/20222877529:3552.85%   -
Pendle26/03/20223443126:1659.52% +
Harrogate30/04/202246716226:4458.48%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax23/04/20222854927:0057.90%   -
Halifax05/03/20222784925:3761.03% +
Halifax09/04/20222834526:3758.74%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -780,75 +863,58 @@

Phillip WHETTLOCK 14
- Partecipanti: 19.916 + Partecipanti: 31572
- Partecipazioni: 91.643 + Partecipazioni: 136605
- Totale eventi: 2.995 + Totale eventi: 4028
- Volontari: 1.711 + Volontari: 2370
- PB: 12.792 + PB: 16164
- Tempo medio di partecipazione: 00:30:55 + Tempo medio di partecipazione: 00:31:06
- Media di partecipazioni per partecipante: 4,6 + Gruppi: 2639
-
- Gruppi: 1.973 -
- -
- Record femminile: - Sophie WOOD – 17:27 - ( 4 feb 2023) -
-
- Record maschile: - Joseph BEECH – 15:13 - (14 set 2019) -
-
- Record di categoria: - Jane KIDD - 93,32% 21:43 - ( 1 ott 2022) -
+
- Ultimo aggiornamento statistiche: lun 17 apr 2023 00:40:02 UTC + Ultimo aggiornamento statistiche: lun 30 set 2024 00:40:00 UTC
-

© parkrun Global Limited (Company number: 09411750)

Nessuna parte di questo sito può essere riprodotta in tutto o in parte in alcun modo senza il permesso del proprietario dei diritti d'autore.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -882,8 +958,8 @@

Phillip WHETTLOCK  + risultati | parkrun Italia - + + gtag('config', 'G-MG7X4X82TB'); + - - + + - + - - @@ -58,7 +52,7 @@
@@ -70,34 +64,25 @@
@@ -122,183 +107,239 @@

Phillip WHETTLOCK (A88720)

Membro del Club dei 250 parkrun - - Member of the Volunteer 100 club -

299 parkrun in totale

+ + Member of the Volunteer 250 club +

345 parkrun in totale

Visualizza statistiche per tutti i parkrun di questo parkrunner
- La più recente nella categoria d'età è stata VM55-59 -

parkrun più recenti

EventoData corsaPos. di generePosizione assolutaTempoRapporto prestazione/età
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Sintesi eventi

EventoparkrunMiglior posizione di genereMigliore posizione assolutaMiglior Tempo  
Bradford parkrun1166600:21:40 + La più recente nella categoria d'età è stata VM60-64 +

parkrun più recenti

EventoData corsaPos. di generePosizione assolutaTempoRapporto prestazione/età
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Sintesi eventi

EventoparkrunMiglior posizione di genereMigliore posizione assolutaMiglior Tempo  
Halifax parkrun1268822:13 + Tutti +
Lister Park parkrun, Bradford1166621:40 + Tutti +
Horton Park parkrun9131322:18 + Tutti +
Keswick parkrun4253321:36 + Tutti +
Sewerby parkrun3121222:08 + Tutti +
Pontefract parkrun2273222:08 + Tutti +
Brighouse parkrun2333723:53 + Tutti +
Temple Newsam parkrun2272925:14 + Tutti +
Fountains Abbey parkrun2394822:26 + Tutti +
Oakwell Hall parkrun2293626:10 + Tutti +
Whinlatter Forest parkrun2283227:23 + Tutti +
Bramley parkrun2252524:06 + Tutti +
Middleton Woods parkrun2121424:55 + Tutti +
Myrtle parkrun2333824:52 + Tutti +
Centre Vale parkrun2303626:37 + Tutti +
Bushy parkrun130137424:06 + Tutti +
Woodhouse Moor parkrun1778222:18 + Tutti +
Pollok parkrun, Glasgow1667223:58 + Tutti +
Edinburgh parkrun1646721:54 + Tutti +
Wakefield Thornes parkrun1545824:29 Tutti - Graph It!
Halifax parkrun1148800:22:13 +
Hyndburn parkrun1253125:51 Tutti - Graph It!
Horton Park parkrun9131300:22:18 +
York parkrun111413522:55 Tutti - Graph It!
Sewerby parkrun3121200:22:08 +
Milton Country parkrun1707522:40 Tutti - Graph It!
Keswick parkrun3253300:23:33 +
Carlisle parkrun1567126:05 Tutti - Graph It!
Pontefract parkrun2273200:22:08 +
Harrogate parkrun112316226:44 Tutti - Graph It!
Temple Newsam parkrun2272900:25:14 +
Southport parkrun1545723:57 Tutti - Graph It!
Myrtle parkrun2333800:24:52 +
Barnsley parkrun1414325:05 Tutti - Graph It!
Middleton Woods parkrun2121400:24:55 +
Rothwell parkrun1535724:20 Tutti - Graph It!
Bramley parkrun2252500:24:06 +
Huddersfield parkrun1596722:47 Tutti - Graph It!
Druridge Bay parkrun1354200:23:35 +
Long Eaton parkrun1556921:36 Tutti -  
Fountains Abbey parkrun1394800:22:26 +
Wycombe Rye parkrun1232622:35 Tutti -  
Victoria parkrun, Glasgow1546700:22:54 +
Conkers parkrun1525624:14 Tutti -  
Clumber Park parkrun1101100:21:46 +
Roundhay parkrun112815726:55 Tutti -  
Rothay Park parkrun1202700:24:48 +
Hanley parkrun16622:03 Tutti -  
Warwick Racecourse parkrun1638200:24:06 +
Worsley Woods parkrun1728824:46 Tutti -  
Conkers parkrun1525600:24:14 +
Burnley parkrun1545725:21 Tutti -  
The Pastures parkrun1161800:26:21 +
Dewsbury parkrun18610128:15 Tutti -  
Harrogate parkrun112316200:26:44 +
Cross Flatts parkrun1303724:16 Tutti -  
Dishley parkrun, Loughborough1535700:24:25 +
Clumber Park parkrun1101121:46 Tutti -  
Dalby Forest parkrun1283200:23:06 +
Skipton parkrun1505325:35 Tutti -  
Woodhouse Moor parkrun1778200:22:18 +
Flatts Lane parkrun1171826:53 Tutti -  
Whinlatter Forest parkrun1283200:27:23 +
Victoria parkrun, Glasgow1546722:54 Tutti -  
Watergrove parkrun, Rochdale1111200:27:57 +
Alness parkrun171024:09 Tutti -  
Springburn parkrun, Glasgow1161600:23:14 +
Fulham Palace parkrun18610924:09 Tutti -  
Fulham Palace parkrun18610900:24:09 +
Springburn parkrun, Glasgow1161623:14 Tutti -  
Flatts Lane parkrun1171800:26:53 +
Druridge Bay parkrun1354223:35 Tutti -  
Roberts Park parkrun1657500:24:54 +
Pendle parkrun1263126:16 Tutti -  
Bowling Park parkrun18900:24:11 +
Watergrove parkrun, Rochdale1111227:57 Tutti -  
Hanley parkrun16600:22:03 +
Wetherby parkrun1374124:46 Tutti -  
Centre Vale parkrun1304400:28:44 +
Portobello parkrun, Edinburgh1668024:16 Tutti -  
Wycombe Rye parkrun1232600:22:35 +
Nostell parkrun1374325:00 Tutti -  
Carlisle parkrun1567100:26:05 +
Fell Foot parkrun, Newby Bridge1161722:57 Tutti -  
Armley parkrun1262700:24:28 +
Conwy parkrun1394424:53 Tutti -  
Crosby parkrun1293500:25:38 +
Glossop parkrun1242824:25 Tutti -  
Edinburgh parkrun1646700:21:54 +
Crosby parkrun1293525:38 Tutti -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Dolgellau parkrun1459954:59 Tutti -  
Bushy parkrun130137400:24:06 +
Dalby Forest parkrun1283223:06 Tutti -  
Oakwell Hall parkrun1344000:26:10 +
Clitheroe Castle parkrun1192525:41 Tutti -  
Pendle parkrun1263100:26:16 +
Armley parkrun1262724:28 Tutti -  
Alness parkrun171000:24:09 +
Dishley parkrun, Loughborough1535724:25 Tutti -  
Skipton parkrun1505300:25:35 +
Ford parkrun1202525:00 Tutti -  
Chevin Forest parkrun1213000:26:47 +
Cliffe Castle parkrun1151725:18 Tutti -  
Burnley parkrun1545700:25:21 +
Potternewton parkrun1293625:04 Tutti -  
Queen’s parkrun, Glasgow1677900:25:29 +
Isabel Trail parkrun1293422:02 Tutti -  
Roundhay parkrun112815700:26:55 +
The Pastures parkrun1161826:21 Tutti -  
Storthes Hall parkrun1263000:26:20 +
Storthes Hall parkrun1263026:20 Tutti -  
Southport parkrun1545700:23:57 +
Hafan Pwllheli parkrun1212726:48 Tutti -  
Cliffe Castle parkrun1151700:25:18 +
Penistone parkrun1343724:20 Tutti -  
Brighouse parkrun1333700:25:17 +
Conyngham Hall parkrun1363824:55 Tutti -  
Milton Country parkrun1707500:22:40 +
Stratford Park parkrun, Stroud1303126:29 Tutti -  
Pollok parkrun, Glasgow1667200:23:58 +
Warwick Racecourse parkrun1638224:06 Tutti -  
Nostell parkrun1384300:25:00 +
University of Stirling parkrun1343723:52 Tutti -  
Portobello parkrun, Edinburgh1668000:24:16 +
Jubilee parkrun1121926:42 Tutti -  
2996600:21:40 +
Queen’s parkrun, Glasgow1677925:29 + Tutti +
Bowling Park parkrun18924:11 + Tutti +
Rothay Park parkrun1202724:48 + Tutti +
Zuiderpark parkrun, Den Haag1151722:03 + Tutti +
Carlisle Park parkrun, Morpeth1293325:44 + Tutti +
Chevin Forest parkrun1213026:47 + Tutti +
Roberts Park parkrun1657524:54 + Tutti +
Beacon Hill Country Park parkrun1192325:36 + Tutti +
Thames Path parkrun, Woolwich1586323:49 + Tutti +
3456621:36 Tutti  


Sommario volontari

RuoloOccasioni
- Direttore di Corsa - 32
- Cronometrista - 17
- Sistemazione token - 5
- Elaboratore risultati - 1
- Fotografo - 1
- Addetto comunicazioni - 5
- Marshal - 35
- Preparazione evento - 28
- Addetto magazzino e forniture - 5
- Altro - 1
- Addetto scanner - 27
- Chiusura evento - 24
- Addetto token - 11
- Controllo posizioni - 1
- Benvenuto ai nuovi partecipanti - 77
- Addetto imbuto arrivo - 12
- Aiuto distribuzione token - 10
- Camminatore di coda - 5
- Coordinatore volontari - 10
- Addetto report finale - 1
- Pacer - 5
- Backup Timer - 14
- Guida non vedenti - 1
- Warm Up Leader - 5
- Interprete lingua dei segni - 1
- Addetto parcheggio - 1
- Controllo percorso nel giorno dell'evento - 25
- parkwalker - 1
Crediti totali249

- Questa tabella riassume il numero di occasioni in cui ogni ruolo di volontario è stato completato.
Tieni presente che il totale potrebbe differire dal totale dei crediti di volontariato se hai svolto più attività nello stesso giorno.
Scopri di più
qui. -



Freedom parkrun

DataTempoLocalità
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(non)parkrun

SettimanaData di inizioData di fine(non)parkrunMiglior Tempo
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+ Direttore di Corsa +
33
+ Cronometrista + 28
+ Sistemazione token + 5
+ Elaboratore risultati + 4
+ Fotografo + 1
+ Addetto comunicazioni + 6
+ Marshal + 35
+ Preparazione evento + 29
+ Addetto magazzino e forniture + 6
+ Altro + 2
+ Addetto scanner + 46
+ Chiusura evento + 25
+ Addetto token + 16
+ Controllo posizioni + 1
+ Benvenuto ai nuovi partecipanti + 82
+ Addetto imbuto arrivo + 16
+ Aiuto distribuzione token + 16
+ Camminatore di coda + 15
+ Coordinatore volontari + 11
+ Addetto report finale + 1
+ Pacer + 10
+ Backup Timer + 14
+ Guida non vedenti + 1
+ Warm Up Leader + 15
+ Interprete lingua dei segni + 1
+ Addetto parcheggio + 1
+ Controllo percorso nel giorno dell'evento + 57
+ parkwalker + 1
Crediti totali316

+ Questa tabella riassume il numero di occasioni in cui ogni ruolo di volontario è stato completato.
Tieni presente che il totale potrebbe differire dal totale dei crediti di volontariato se hai svolto più attività nello stesso giorno.
Scopri di più qui. +



Freedom parkrun

DataTempoLocalità
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(non)parkrun

SettimanaData di inizioData di fine(non)parkrunMiglior Tempo
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -330,75 +371,58 @@

Phillip WHETTLOCK 14

- Partecipanti: 19.916 -
-
- Partecipazioni: 91.643 + Partecipanti: 31572
- Totale eventi: 2.995 + Partecipazioni: 136605
- Volontari: 1.711 + Totale eventi: 4028
- PB: 12.792 + Volontari: 2370
- Tempo medio di partecipazione: 00:30:55 + PB: 16164
- Media di partecipazioni per partecipante: 4,6 + Tempo medio di partecipazione: 00:31:06
- Gruppi: 1.973 + Gruppi: 2639
- -
- Record femminile: - Sophie WOOD – 17:27 - ( 4 feb 2023) -
-
- Record maschile: - Joseph BEECH – 15:13 - (14 set 2019) -
-
- Record di categoria: - Jane KIDD - 93,32% 21:43 - ( 1 ott 2022) -
+
- Ultimo aggiornamento statistiche: lun 17 apr 2023 00:40:02 UTC + Ultimo aggiornamento statistiche: lun 30 set 2024 00:40:00 UTC
-

© parkrun Global Limited (Company number: 09411750)

Nessuna parte di questo sito può essere riprodotta in tutto o in parte in alcun modo senza il permesso del proprietario dei diritti d'autore.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -432,8 +466,8 @@

Phillip WHETTLOCK  + risultati | parkrun Italia @@ -53,7 +52,7 @@
@@ -65,34 +64,25 @@
@@ -116,7 +106,7 @@

Jakub WOLSKI (A999999)

- Nessun risultato è stato ancora registrato per questo parkrunner. + ​

Visualizza le statistiche riassuntive per questo parkrunner

@@ -148,78 +138,61 @@

Jakub WOLSKI 
- Località: 15 -
-
- Partecipanti: 21.340 + Località: 14
- Partecipazioni: 97.453 + Partecipanti: 31572
- Totale eventi: 3.133 + Partecipazioni: 136605
- Volontari: 1.811 + Totale eventi: 4028
- PB: 13.242 + Volontari: 2370
- Tempo medio di partecipazione: 00:30:59 + PB: 16164
- Media di partecipazioni per partecipante: 4,6 + Tempo medio di partecipazione: 00:31:06
- Gruppi: 2.069 + Gruppi: 2639
- -
- Record femminile: - Sophie WOOD – 17:27 - ( 4 feb 2023) -
-
- Record maschile: - Joseph BEECH – 15:13 - (14 set 2019) -
-
- Record di categoria: - Jane KIDD - 93,32% 21:43 - ( 1 ott 2022) -
+
- Ultimo aggiornamento statistiche: gio 29 giu 2023 00:40:12 UTC + Ultimo aggiornamento statistiche: lun 30 set 2024 00:40:00 UTC
-

© parkrun Global Limited (Company number: 09411750)

Nessuna parte di questo sito può essere riprodotta in tutto o in parte in alcun modo senza il permesso del proprietario dei diritti d'autore.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -253,8 +236,8 @@

Jakub WOLSKI  + risultati | parkrun Italia @@ -53,7 +52,7 @@
@@ -65,34 +64,25 @@
@@ -115,7 +105,7 @@ style='width:auto;margin-bottom: 20px;'> -

Jakub WOLSKI (A999999)

Nessun risultato è stato ancora registrato per questo parkrunner.

+

Jakub WOLSKI (A999999)

@@ -144,78 +134,61 @@

Jakub WOLSKI 
- Località: 15 -
-
- Partecipanti: 21.340 + Località: 14
- Partecipazioni: 97.453 + Partecipanti: 31572
- Totale eventi: 3.133 + Partecipazioni: 136605
- Volontari: 1.811 + Totale eventi: 4028
- PB: 13.242 + Volontari: 2370
- Tempo medio di partecipazione: 00:30:59 + PB: 16164
- Media di partecipazioni per partecipante: 4,6 + Tempo medio di partecipazione: 00:31:06
- Gruppi: 2.069 + Gruppi: 2639
-

-
- Record femminile: - Sophie WOOD – 17:27 - ( 4 feb 2023) -
-
- Record maschile: - Joseph BEECH – 15:13 - (14 set 2019) -
-
- Record di categoria: - Jane KIDD - 93,32% 21:43 - ( 1 ott 2022) -
+
- Ultimo aggiornamento statistiche: gio 29 giu 2023 00:40:12 UTC + Ultimo aggiornamento statistiche: lun 30 set 2024 00:40:00 UTC
-

© parkrun Global Limited (Company number: 09411750)

Nessuna parte di questo sito può essere riprodotta in tutto o in parte in alcun modo senza il permesso del proprietario dei diritti d'autore.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -249,8 +232,8 @@

Jakub WOLSKI  + 結果 | parkrun Japan - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -59,7 +54,7 @@
@@ -71,35 +66,26 @@
@@ -114,551 +100,657 @@
- + - - + -

Andrew TAYLOR (A1309364)

- parkrun100クラブのメンバー - +

Andrew TAYLOR (A1309364)

+ parkrun250クラブのメンバー + Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns 回(合計)

View summary stats for this parkrunner
- 年齢別評価VM35-39 の中で最も最近の参加 + 年齢別評価VM40-44 の中で最も最近の参加

- Summary Stats for All Locations -
最上位平均
(mean)
最も遅い
時間20:0628:4757:34
年齢別評価64.51%47.44%23.54%
総合順位5165.361021

+ 箇所での全参加記録 +
最上位平均
(mean)
最も遅い
時間20:0629:2057:34
年齢別評価64.51%46.67%23.54%
総合順位5182.341021

Best Overall Annual Achievements -
ベスト・タイムベスト年齢別評価
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
ベスト・タイムベスト年齢別評価
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

– すべての結果 -
イベント日付番号順位時間年齢別評価自己最高記録?
Clitheroe Castle08/04/20231789735:4637.88% +
イベント日付番号順位時間年齢別評価自己最高記録?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + 自己最高記録 + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60% +   +
Whiteley18/11/202324721037:0536.54% +   +
Whiteley11/11/202324617430:3744.26%   -
Whiteley25/03/202321418332:2441.82% +
Winchester21/10/202345731533:5140.03%   -
Winchester11/03/202342821230:3744.26% +
Winchester14/10/202345634233:5439.97%   -
Winchester04/03/202342730935:4537.90% +
Ganger Farm07/10/20234713233:4940.07%   -
Winchester25/02/202342632536:0937.48% +
Winchester30/09/202345427529:3145.91%   -
Winchester18/02/202342530336:3137.11% +
Winchester23/09/202345321928:2247.77%   -
Delamere31/12/202242331536:2537.21% +
Winchester16/09/202345235430:3244.38%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester09/09/202345129229:1146.43%   -
Ganger Farm03/12/2022313529:2546.06% +
Delamere02/09/202345822633:2840.49%   -
Winchester26/11/202241229335:3137.87% +
Fell Foot26/08/202336724531:4742.63%   -
Whiteley12/11/202221016534:2839.02% +
Winchester29/07/202344622227:3649.09%   -
Winchester29/10/202240924429:5544.96% +
Winchester22/07/202344540537:0036.62%   -
Winchester22/10/202240833736:0837.22% +
Whiteley15/07/202322915731:1643.34%   -
Winchester17/09/202240326230:2944.12% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester10/09/202240231134:3338.93% +
Winchester17/06/202344128530:4144.16%   -
Alice Holt03/09/202241817936:3236.82% +
Winchester10/06/202344032435:2138.33%   -
Winchester27/08/202240042335:2138.05% +
Winchester20/05/202343822427:0949.91%   -
Winchester13/08/202239823431:3042.70% +
Winchester13/05/202343733232:4341.42%   -
Tidworth30/07/2022615151:4226.02% +
Whiteley29/04/202321919635:3138.15%   -
Uckfield23/07/20221006028:4346.84% +
Winchester22/04/202343431731:1143.45%   -
Winchester09/07/202239428633:1640.43% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Eastleigh28/05/202254015531:2042.93% +
Whiteley25/03/202321418332:2441.82%   -
Winchester21/05/202238930733:2840.19% +
Winchester11/03/202342821230:3744.26%   -
Alice Holt14/05/202240216932:0142.01% +
Winchester04/03/202342730935:4537.90%   -
Winchester07/05/202238734034:1339.31% +
Winchester25/02/202342632536:0937.48%   -
Guildford30/04/202242825130:0144.81% +
Winchester18/02/202342530336:3137.11%   -
Winchester23/04/202238522932:0241.99% +
Delamere31/12/202242331536:2537.21%   -
Winchester16/04/202238431033:2340.29% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester19/03/202238025033:5439.68% +
Ganger Farm03/12/2022313529:2546.06%   -
Alice Holt01/01/202238524237:4635.61% +
Winchester26/11/202241229335:3137.87%   -
Winchester04/12/202136518229:2045.85% +
Whiteley12/11/202221016534:2839.02%   -
Winchester20/11/202136338445:0729.59% +
Winchester29/10/202240924429:5544.96%   -
Winchester09/10/202135739843:0730.96% +
Winchester22/10/202240833736:0837.22%   -
Winchester25/09/202135538955:0324.25% +
Winchester17/09/202240326230:2944.12%   -
Winchester18/09/202135433938:1234.95% +
Winchester10/09/202240231134:3338.93%   -
Winchester04/09/202135233838:2434.77% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester28/08/202135139841:0132.55% +
Winchester27/08/202240042335:2138.05%   -
Winchester14/08/202134936055:4623.94% +
Winchester13/08/202239823431:3042.70%   -
Winchester31/07/202134832845:2029.45% +
Tidworth30/07/2022615151:4226.02%   -
Winchester14/03/202034625851:3825.69% +
Uckfield23/07/20221006028:4346.84%   -
Winchester07/03/202034510325:5251.29% +
Winchester09/07/202239428633:1640.43%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Eastleigh28/05/202254015531:2042.93%   -
Newbury22/02/202043434631:1142.54% +
Winchester21/05/202238930733:2840.19%   -
Alice Holt08/02/202036010727:1948.57% +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% 自己最高記録   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% 自己最高記録   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% 自己最高記録   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% 自己最高記録   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% 自己最高記録   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% 自己最高記録   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% 自己最高記録   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% 自己最高記録   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% 自己最高記録   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% 自己最高記録   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% 自己最高記録   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% 自己最高記録   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% 自己最高記録   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% 自己最高記録   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% 自己最高記録   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% 自己最高記録   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -689,50 +781,32 @@

Andrew TAYLOR (A130936
- 開催地数: 32 + 開催地数: 38
- 参加者数: 12,668 + 参加者数: 21932
- 累計参加者数: 92,692 + 累計参加者数: 175804
- 総イベント開催数: 2,926 + 総イベント開催数: 5384
- ボランティア数: 2,163 + ボランティア数: 3455
- 自己ベスト数: 15,699 + 自己ベスト数: 24431
- 平均フィニッシュタイム: 00:33:24 + 平均フィニッシュタイム: 00:32:20
- 一人当たり平均参加回数: 7.3 + グループ: 1051
-
- グループ: 548 -
-
-
- 女子記録: - 真奈美 加藤 – 17:28 - (15 1月 2022) -
-
- 男子記録: - 飯山 直輝 – 15:06 - (15 10月 2022) -
-
- 年齢別評価の記録: - 美砂子 益田 - 100.09% 17:51 - (29 10月 2022) -
+

- 過去にアップデートされた統計: 2023年04月14日 00時39分53秒 + 過去にアップデートされた統計: 2024年09月30日 00時40分03秒
@@ -741,26 +815,30 @@

Andrew TAYLOR (A130936 Sumitomo Life + + Brooks +
-

© parkrun Global Limited (Company number: 09411750)

このサイトの一部または全部を著作権所有者の許可なしに複製することは禁じられています。

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ + +
- + - - + + @@ -794,8 +887,8 @@

Andrew TAYLOR (A130936 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/1309364/index.html index 2f29063e..70eca1ac 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/1309364/index.html @@ -14,6 +14,7 @@ + 結果 | parkrun Japan - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -59,7 +54,7 @@
@@ -71,35 +66,26 @@
@@ -114,186 +100,196 @@
- + - - + -

Andrew TAYLOR (A1309364)

- parkrun100クラブのメンバー - +

Andrew TAYLOR (A1309364)

+ parkrun250クラブのメンバー + Member of the Volunteer 50 club -

245 parkruns total

+

297 parkruns 回(合計)

この登録者の回すべてのparkrunの記録を見る。
- 年齢別評価VM35-39 の中で最も最近の参加 -

最も最近の参加

イベント日付性別順位総合順位時間年齢別評価
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


イベント要約

イベント参加性別最高順位総合最高順位ベスト・タイム  
Winchester parkrun146121300:20:18 + 年齢別評価VM40-44 の中で最も最近の参加 +

最も最近の参加

イベント日付性別順位総合順位時間年齢別評価
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


イベント要約

イベント参加性別最高順位総合最高順位ベスト・タイム  
Winchester parkrun173121320:18 + All +
Whiteley parkrun1410714629:06 + All +
Delamere parkrun11232321:42 + All +
Eastleigh parkrun6242524:08 + All +
Southampton parkrun5687021:17 All - Graph It!
Delamere parkrun8232300:21:42 +
Alice Holt parkrun59010727:19 All - Graph It!
Whiteley parkrun610714600:29:06 +
Northwich parkrun4485224:55 All - Graph It!
Alice Holt parkrun59010700:27:19 +
Newbury parkrun4829123:49 All - Graph It!
Southampton parkrun5687000:21:17 +
Congleton parkrun49920:06 All - Graph It!
Eastleigh parkrun5242500:24:08 +
Medina I.O.W. parkrun4667525:13 All - Graph It!
Congleton parkrun49900:20:06 +
Fell Foot parkrun, Newby Bridge4212223:48 All - Graph It!
Witton parkrun4303500:25:40 +
Witton parkrun4303525:40 All - Graph It!
Northwich parkrun4485200:24:55 +
Ganger Farm parkrun38013229:25 All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Andover parkrun2242622:24 All - Graph It!
Andover parkrun2242600:22:24 +
Hanley parkrun2333922:31 All - Graph It!
Ganger Farm parkrun29713500:29:25 +
Burnley parkrun212718929:06 All - Graph It!
Hanley parkrun2333900:22:31 +
Queen Elizabeth parkrun2364026:36 All - Graph It!
Newbury parkrun2829100:23:49 +
Stretford parkrun127540530:23 All - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Portsmouth Lakeside parkrun1818726:32 All - Graph It!
Hagley parkrun1182000:22:38 +
Fareham parkrun19011428:52 All -  
Ormskirk parkrun120930300:31:04 +
Milano Nord parkrun1475327:49 All -  
Basingstoke parkrun111212900:24:31 +
Richmond Olympic parkrun15521:59 All -  
Cuerden Valley parkrun1192000:24:47 +
Crewe parkrun112315430:05 All -  
Seven Fields parkrun1546700:28:28 +
Hogmoor Inclosure parkrun111314029:34 All -  
Netley Abbey parkrun1586400:24:21 +
Catford parkrun19512527:24 All -  
Mountbatten School parkrun17110100:31:29 +
Clitheroe Castle parkrun1639735:46 All -  
Clitheroe Castle parkrun1639700:35:46 +
Pocket parkrun112419533:47 All -  
Medina I.O.W. parkrun19513900:30:57 +
Ford parkrun1477432:29 All -  
Hogmoor Inclosure parkrun111314000:29:34 +
Watermeadows parkrun1151523:51 All -  
Milano Nord parkrun1475300:27:49 +
Mountbatten School parkrun17110131:29 All -  
Jersey parkrun111018500:30:53 +
Uckfield parkrun1416028:43 All -  
Canterbury parkrun1323600:27:29 +
Tawd Valley parkrun18111029:25 All -  
Penrhyn parkrun1232600:24:33 +
Seven Fields parkrun1546728:28 All -  
Hyndburn parkrun1425300:29:55 +
Itchen Valley Country parkrun110613529:53 All -  
Woking parkrun1485800:24:01 +
Bartley Park parkrun1628430:26 All -  
Fountains Abbey parkrun1283000:20:33 +
Tidworth parkrun18615151:42 All -  
Bushy parkrun1681102100:33:01 +
Bushy parkrun1681102133:01 All -  
Clumber Park parkrun112117600:29:51 +
Basingstoke parkrun111212924:31 All -  
Wimpole Estate parkrun112916900:28:07 +
Heaton parkrun133846731:01 All -  
Tidworth parkrun18615100:51:42 +
Guildford parkrun117125130:01 All -  
Hilly Fields parkrun1859900:25:03 +
Hyndburn parkrun1425329:55 All -  
Tawd Valley parkrun18111000:29:25 +
Phoenix parkrun1232627:31 All -  
Watermeadows parkrun1151500:23:51 +
Canterbury parkrun1323627:29 All -  
Eden Project parkrun111116200:30:21 +
Valentines parkrun1698025:14 All -  
Catford parkrun19512500:27:24 +
Poole parkrun121328428:59 All -  
Crewe parkrun112315400:30:05 +
Long Eaton parkrun118122928:06 All -  
Long Eaton parkrun118122900:28:06 +
Bolton parkrun116221831:49 All -  
Fareham parkrun19511400:28:52 +
Eden Project parkrun111116230:21 All -  
Phoenix parkrun1232600:27:31 +
Abingdon parkrun114220229:14 All -  
Guildford parkrun117125100:30:01 +
Netley Abbey parkrun1586424:21 All -  
Pendle parkrun1465900:26:37 +
Hilly Fields parkrun1859925:03 All -  
Heaton parkrun133846700:31:01 +
Brockenhurst parkrun112718632:41 All -  
Hamilton Lake parkrun1151600:21:47 +
Wimpole Estate parkrun112916928:07 All -  
Brockenhurst parkrun112718600:32:41 +
Clumber Park parkrun112117629:51 All -  
Itchen Valley Country parkrun110713500:29:53 +
Cuerden Valley parkrun1192024:47 All -  
Burnley parkrun114120400:29:06 +
Hamilton Lake parkrun1151621:47 All -  
Uckfield parkrun1416000:28:43 +
Fountains Abbey parkrun1283020:33 All -  
Abingdon parkrun114220200:29:14 +
Ormskirk parkrun120930331:04 All -  
Pocket parkrun112419500:33:47 +
Pendle parkrun1465926:37 All -  
Bolton parkrun116221800:31:49 +
Woking parkrun1485824:01 All -  
Richmond Olympic parkrun15500:21:59 +
Hagley parkrun1182022:38 All -  
Poole parkrun121328400:28:59 +
Penrhyn parkrun1232624:33 All -  
Portsmouth Lakeside parkrun1818700:26:32 +
Salisbury parkrun119326729:45 All -  
Salisbury parkrun119326700:29:45 +
Jersey parkrun111018530:53 All -  
2455500:20:06 +
Haigh Woodland parkrun18916837:04 + All +
2975520:06 All  


ボランティア要約

回数
- ランディレクター - 21
- タイム計測係 - 2
- 着順トークン整理係 - 8
- 結果集計係 - 6
- カメラマン - 4
- コース誘導係 - 4
- イベント準備係 - 6
- 用具管理係 - 2
- バーコード・スキャン係 - 2
- イベント後片付け係 - 10
- 着順トークン配布係 - 1
- 着順確認係 - 2
- 初参加者歓迎係 - 1
- フィニッシュ後サポート係 - 1
- 最後尾確認係 - 4
- ボランティア・コーディネーター - 1
- レポート作成係 - 10
- ペースメーカー - 1
Total Credits58

+ ランディレクター +

21
+ タイム計測係 + 2
+ 着順トークン整理係 + 8
+ 結果集計係 + 6
+ カメラマン + 4
+ コース誘導係 + 5
+ イベント準備係 + 6
+ 用具管理係 + 2
+ バーコード・スキャン係 + 3
+ イベント後片付け係 + 10
+ 着順トークン配布係 + 1
+ 着順確認係 + 2
+ 初参加者歓迎係 + 1
+ フィニッシュ後サポート係 + 1
+ 最後尾確認係 + 4
+ ボランティア・コーディネーター + 1
+ レポート作成係 + 10
+ ペースメーカー + 1
Total Credits60

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



フリーダムparkrun

日付時間所在地
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkrun

開始日終了日(not)parkrunベスト・タイム
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -323,50 +319,32 @@

Andrew TAYLOR (A130936
- 開催地数: 32 -
-
- 参加者数: 12,668 + 開催地数: 38
- 累計参加者数: 92,692 + 参加者数: 21932
- 総イベント開催数: 2,926 + 累計参加者数: 175804
- ボランティア数: 2,163 + 総イベント開催数: 5384
- 自己ベスト数: 15,699 + ボランティア数: 3455
- 平均フィニッシュタイム: 00:33:24 + 自己ベスト数: 24431
- 一人当たり平均参加回数: 7.3 + 平均フィニッシュタイム: 00:32:20
- グループ: 548 + グループ: 1051
-
-
- 女子記録: - 真奈美 加藤 – 17:28 - (15 1月 2022) -
-
- 男子記録: - 飯山 直輝 – 15:06 - (15 10月 2022) -
-
- 年齢別評価の記録: - 美砂子 益田 - 100.09% 17:51 - (29 10月 2022) -
+

- 過去にアップデートされた統計: 2023年04月14日 00時39分53秒 + 過去にアップデートされた統計: 2024年09月30日 00時40分03秒
@@ -375,26 +353,30 @@

Andrew TAYLOR (A130936 Sumitomo Life + + Brooks +
-

© parkrun Global Limited (Company number: 09411750)

このサイトの一部または全部を著作権所有者の許可なしに複製することは禁じられています。

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ + +
- + - - + + @@ -428,8 +425,8 @@

Andrew TAYLOR (A130936 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/2705084/all/index.html index 0ab82e29..7a82cc6a 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,7 @@ + 結果 | parkrun Japan - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -59,7 +54,7 @@
@@ -71,35 +66,26 @@
@@ -114,20 +100,20 @@
- + - - + -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

- View summary stats for this parkrunner + この参加者の参加記録

@@ -157,50 +143,32 @@

Duncan BOOTH (A2705084
- 開催地数: 32 + 開催地数: 38
- 参加者数: 12,731 + 参加者数: 21932
- 累計参加者数: 92,933 + 累計参加者数: 175804
- 総イベント開催数: 2,941 + 総イベント開催数: 5384
- ボランティア数: 2,173 + ボランティア数: 3455
- 自己ベスト数: 15,711 + 自己ベスト数: 24431
- 平均フィニッシュタイム: 00:33:24 + 平均フィニッシュタイム: 00:32:20
- 一人当たり平均参加回数: 7.3 + グループ: 1051
-
- グループ: 551 -
-
-
- 女子記録: - 真奈美 加藤 – 17:28 - (15 1月 2022) -
-
- 男子記録: - 飯山 直輝 – 15:06 - (15 10月 2022) -
-
- 年齢別評価の記録: - 美砂子 益田 - 100.09% 17:51 - (29 10月 2022) -
+

- 過去にアップデートされた統計: 2023年04月17日 00時40分05秒 + 過去にアップデートされた統計: 2024年09月30日 00時40分03秒
@@ -209,26 +177,30 @@

Duncan BOOTH (A2705084 Sumitomo Life + + Brooks +
-

© parkrun Global Limited (Company number: 09411750)

このサイトの一部または全部を著作権所有者の許可なしに複製することは禁じられています。

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ + +
- + - - + + @@ -262,8 +249,8 @@

Duncan BOOTH (A2705084 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/2705084/index.html index 56961c1f..6b2f28f7 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/2705084/index.html @@ -14,6 +14,7 @@ + 結果 | parkrun Japan - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -59,7 +54,7 @@
@@ -71,35 +66,26 @@
@@ -114,26 +100,26 @@
- + - - + -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

ボランティア要約

回数
- コース誘導係 - 260
- 先導バイク - 130
- 当日コース状況確認係 - 9
Total Credits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

ボランティア要約

回数
+ コース誘導係 + 350
+ 先導バイク + 130
+ 当日コース状況確認係 + 82
Total Credits540

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



@@ -163,50 +149,32 @@

Duncan BOOTH (A2705084
- 開催地数: 32 + 開催地数: 38
- 参加者数: 12,731 + 参加者数: 21932
- 累計参加者数: 92,933 + 累計参加者数: 175804
- 総イベント開催数: 2,941 + 総イベント開催数: 5384
- ボランティア数: 2,173 + ボランティア数: 3455
- 自己ベスト数: 15,711 + 自己ベスト数: 24431
- 平均フィニッシュタイム: 00:33:24 + 平均フィニッシュタイム: 00:32:20
- 一人当たり平均参加回数: 7.3 + グループ: 1051
-
- グループ: 551 -
-
-
- 女子記録: - 真奈美 加藤 – 17:28 - (15 1月 2022) -
-
- 男子記録: - 飯山 直輝 – 15:06 - (15 10月 2022) -
-
- 年齢別評価の記録: - 美砂子 益田 - 100.09% 17:51 - (29 10月 2022) -
+

- 過去にアップデートされた統計: 2023年04月17日 00時40分05秒 + 過去にアップデートされた統計: 2024年09月30日 00時40分03秒
@@ -215,26 +183,30 @@

Duncan BOOTH (A2705084 Sumitomo Life + + Brooks +
-

© parkrun Global Limited (Company number: 09411750)

このサイトの一部または全部を著作権所有者の許可なしに複製することは禁じられています。

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ + +
- + - - + + @@ -268,8 +255,8 @@

Duncan BOOTH (A2705084 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/482/all/index.html index 54b58f92..1926d344 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/482/all/index.html @@ -14,6 +14,7 @@ + 結果 | parkrun Japan - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -59,7 +54,7 @@
@@ -71,35 +66,26 @@
@@ -114,1663 +100,1829 @@
- + - - + -

Danny NORMAN (A482)

+

Danny NORMAN (A482)

parkrun500クラブのメンバー - + Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns 回(合計)

View summary stats for this parkrunner
- 年齢別評価VM40-44 の中で最も最近の参加 + 年齢別評価VM45-49 の中で最も最近の参加

- Summary Stats for All Locations -
最上位平均
(mean)
最も遅い
時間16:2521:0459:17
年齢別評価79.25%65.45%23.56%
総合順位134.831692

+ 箇所での全参加記録 +
最上位平均
(mean)
最も遅い
時間16:2521:2659:17
年齢別評価79.25%64.63%23.56%
総合順位138.841692

Best Overall Annual Achievements -
ベスト・タイムベスト年齢別評価
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
ベスト・タイムベスト年齢別評価
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

– すべての結果 -
イベント日付番号順位時間年齢別評価自己最高記録?
Harleston Magpies08/04/2023793525:1255.42% +
イベント日付番号順位時間年齢別評価自己最高記録?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + 自己最高記録 + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03% +   +
Quakers Walk25/11/2023126825:0556.08% +   +
Aston Hall18/11/202352225:0156.23%   -
Cannock Chase01/04/20232434425:4954.10% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Kingston25/03/202360216430:0946.32% +
Belvoir Castle04/11/2023911925:4254.73%   -
Wolford Wood18/03/202352730:2445.94% +
Five Arches28/10/202365422:5861.25%   -
Kingston11/03/202360015027:1851.16% +
Dover Waterfront21/10/202374525:2255.45%   -
Stockley Country04/03/2023817935:3239.31% +
Rushcliffe14/10/20235087323:5458.86%   -
Chasewater25/02/202310010026:1953.07% +
Kingston07/10/202363033150:2927.86%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Maaraue03/10/20231012522:3462.33%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
University of Northampton30/09/2023112223:2460.11%   -
Worcester04/02/202354318529:3047.34% +
Clifton23/09/20231911025:1455.75%   -
Crane Park28/01/202349014550:3727.59% +
Wisbech16/09/202351523:0361.03%   -
Kingston21/01/202359431139:3935.22% +
Holbrooks09/09/202362223:4359.31%   -
Brooklands14/01/202313018830:4445.44% +
Wyre Forest02/09/20233404825:5654.24%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Kingston01/01/202359113340:3134.47% +
Riverfront19/08/20232594622:5761.29%   -
Kingston31/12/202259026442:4432.68% +
Long Eaton12/08/202334112124:0658.37%   -
Bushy Park25/12/2022909169244:3931.28% +
Kingston05/08/20236216723:2160.24%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Kingston29/07/20236208725:0955.93%   -
Kingston17/12/202258818059:1723.56% +
Kingston22/07/20236199224:2457.65%   -
Kingston10/12/202258723255:4025.09% +
Severn Valley Country15/07/20231411626:1353.66%   -
Beacon03/12/2022737326:4152.34% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Ganger Farm26/11/2022211426:3452.57% +
Thornham Walks01/07/202353826:5251.99%   -
Bushy Park19/11/2022903110553:2326.16% +
Kingston24/06/20236156524:0957.83%   -
Leavesden Country12/11/202246928:3248.95% +
Rosliston17/06/20233073624:4156.58%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
East Park10/06/20231101424:1857.48%   -
Durlston Country Park29/10/2022335032:4542.65% +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% 自己最高記録   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% 自己最高記録   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% 自己最高記録   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% 自己最高記録   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% 自己最高記録   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% 自己最高記録   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% 自己最高記録   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% 自己最高記録   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% 自己最高記録   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% 自己最高記録   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% 自己最高記録   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% 自己最高記録   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% 自己最高記録   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% 自己最高記録   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% 自己最高記録   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% 自己最高記録   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% 自己最高記録   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% 自己最高記録   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% 自己最高記録   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% 自己最高記録   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% 自己最高記録   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% 自己最高記録   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% 自己最高記録   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% 自己最高記録   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% 自己最高記録   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% 自己最高記録   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% 自己最高記録   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% 自己最高記録   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% 自己最高記録   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% 自己最高記録   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% 自己最高記録   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% 自己最高記録   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1801,50 +1953,32 @@

Danny NORMAN (A482)
- 開催地数: 32 -
-
- 参加者数: 12,668 + 開催地数: 38
- 累計参加者数: 92,692 + 参加者数: 21932
- 総イベント開催数: 2,926 + 累計参加者数: 175804
- ボランティア数: 2,163 + 総イベント開催数: 5384
- 自己ベスト数: 15,699 + ボランティア数: 3455
- 平均フィニッシュタイム: 00:33:24 + 自己ベスト数: 24431
- 一人当たり平均参加回数: 7.3 + 平均フィニッシュタイム: 00:32:20
- グループ: 548 + グループ: 1051
-

-
- 女子記録: - 真奈美 加藤 – 17:28 - (15 1月 2022) -
-
- 男子記録: - 飯山 直輝 – 15:06 - (15 10月 2022) -
-
- 年齢別評価の記録: - 美砂子 益田 - 100.09% 17:51 - (29 10月 2022) -
+
- 過去にアップデートされた統計: 2023年04月14日 00時39分53秒 + 過去にアップデートされた統計: 2024年09月30日 00時40分03秒
@@ -1853,26 +1987,30 @@

Danny NORMAN (A482) Sumitomo Life + + Brooks +
-

© parkrun Global Limited (Company number: 09411750)

このサイトの一部または全部を著作権所有者の許可なしに複製することは禁じられています。

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ + +
- + - - + + @@ -1906,8 +2059,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/482/index.html index 48fb1fe4..e683ed4c 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/482/index.html @@ -14,6 +14,7 @@ + 結果 | parkrun Japan - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -59,7 +54,7 @@
@@ -71,35 +66,26 @@
@@ -114,890 +100,1016 @@
- + - - + -

Danny NORMAN (A482)

+

Danny NORMAN (A482)

parkrun500クラブのメンバー - + Member of the Volunteer 250 club -

785 parkruns total

+

867 parkruns 回(合計)

この登録者の回すべてのparkrunの記録を見る。
- 年齢別評価VM40-44 の中で最も最近の参加 -

最も最近の参加

イベント日付性別順位総合順位時間年齢別評価
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


イベント要約

イベント参加性別最高順位総合最高順位ベスト・タイム  
Bushy parkrun2321100:16:25 + 年齢別評価VM45-49 の中で最も最近の参加 +

最も最近の参加

イベント日付性別順位総合順位時間年齢別評価
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


イベント要約

イベント参加性別最高順位総合最高順位ベスト・タイム  
Bushy parkrun2341116:25 + All +
Kingston parkrun471116:51 + All +
Bedfont Lakes parkrun81117:04 + All +
Nonsuch parkrun71116:52 + All +
Richmond parkrun71117:13 + All +
Crane Park parkrun61116:48 + All +
Riddlesdown parkrun42217:01 + All +
Southwark parkrun34417:27 + All +
Fulham Palace parkrun33317:47 + All +
Cannon Hill parkrun, Birmingham3111118:04 + All +
Gunnersbury parkrun31116:51 + All +
Wimbledon Common parkrun35517:27 + All +
Brighton & Hove parkrun31116:27 + All +
Basingstoke parkrun35517:48 + All +
Black Park parkrun31117:25 + All +
Dulwich parkrun33317:11 + All +
Bexley parkrun31117:48 + All +
Tilgate parkrun31117:10 + All +
Frimley Lodge parkrun31117:11 + All +
Hilly Fields parkrun31117:50 + All +
Old Deer Park parkrun31117:41 + All +
Guildford parkrun31117:17 + All +
Homewood parkrun3151722:21 + All +
Brockwell parkrun, Herne Hill31116:56 + All +
St Albans parkrun21116:37 + All +
Havant parkrun21117:46 + All +
Ashford parkrun22217:57 + All +
Bedford parkrun21116:55 + All +
Margate parkrun21118:16 + All +
Milton Keynes parkrun23317:26 + All +
Preston Park parkrun, Brighton22217:40 + All +
Shorne Woods parkrun21118:14 + All +
Canons Park parkrun27720:50 + All +
Osterley parkrun21117:57 + All +
Eastleigh parkrun27719:14 + All +
Brooklands parkrun2394223:22 + All +
Great Lines parkrun, Medway25518:25 + All +
Malling Rec parkrun2738526:59 + All +
Crystal Palace parkrun21117:24 + All +
Northala Fields parkrun22218:06 All - Graph It!
Kingston parkrun351100:16:51 +
Northampton parkrun21116:56 All - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Oak Hill parkrun21117:13 All - Graph It!
Richmond parkrun71100:17:13 +
Lloyd parkrun, Croydon21118:01 All - Graph It!
Nonsuch parkrun71100:16:52 +
Newbury parkrun21117:20 All - Graph It!
Crane Park parkrun61100:16:48 +
Cranleigh parkrun26620:49 All - Graph It!
Brighton & Hove parkrun31100:16:27 +
Littlehampton Prom parkrun2384324:22 All - Graph It!
Fulham Palace parkrun33300:17:47 +
Whitstable parkrun23318:12 All - Graph It!
Frimley Lodge parkrun31100:17:11 +
Bethlem Royal Hospital parkrun2263223:22 All - Graph It!
Gunnersbury parkrun31100:16:51 +
Cyclopark parkrun2353824:01 All - Graph It!
Bexley parkrun31100:17:48 +
Hockley Woods parkrun26621:09 All - Graph It!
Tilgate parkrun31100:17:10 +
South Oxhey parkrun21119:13 All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Pymmes parkrun21117:06 All - Graph It!
Southwark parkrun34400:17:27 +
Hastings parkrun291120:41 All - Graph It!
Basingstoke parkrun35500:17:48 +
Wycombe Rye parkrun22217:17 All - Graph It!
Hilly Fields parkrun31100:17:50 +
Hove Promenade parkrun27719:23 All - Graph It!
Black Park parkrun31100:17:25 +
Banstead Woods parkrun21117:31 All - Graph It!
Riddlesdown parkrun32200:17:01 +
Wormwood Scrubs parkrun21118:00 All - Graph It!
Dulwich parkrun33300:17:11 +
Roundshaw Downs parkrun23318:14 All - Graph It!
Guildford parkrun31100:17:17 +
Mile End parkrun21116:53 All - Graph It!
Old Deer Park parkrun31100:17:41 +
Bevendean Down parkrun28923:21 All - Graph It!
Wimbledon Common parkrun35500:17:27 +
Finsbury parkrun22217:15 All - Graph It!
Homewood parkrun3151700:22:21 +
Tooting Common parkrun2181819:14 All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Bedgebury Pinetum parkrun28921:24 All - Graph It!
Pymmes parkrun21100:17:06 +
Harrow parkrun25520:23 All - Graph It!
Hove Promenade parkrun27700:19:23 +
Netley Abbey parkrun21117:21 All - Graph It!
Netley Abbey parkrun21100:17:21 +
Ellenbrook Fields parkrun2141519:58 All - Graph It!
Mile End parkrun21100:16:53 +
Worthing parkrun28918:44 All - Graph It!
Southampton parkrun23300:16:44 +
Grovelands parkrun, Enfield22217:21 All - Graph It!
Northala Fields parkrun22200:18:06 +
Beckton parkrun23317:24 All - Graph It!
Hockley Woods parkrun26600:21:09 +
Gladstone parkrun21117:09 All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Hackney Marshes parkrun22216:46 All - Graph It!
Upton Court parkrun22200:17:24 +
Burgess parkrun22216:45 All - Graph It!
Alice Holt parkrun21100:17:59 +
Orpington parkrun22217:27 All - Graph It!
Osterley parkrun21100:17:57 +
Barking parkrun22216:45 All - Graph It!
Burgess parkrun22200:16:45 +
Southampton parkrun23316:44 All - Graph It!
Gladstone parkrun21100:17:09 +
Alice Holt parkrun21117:59 All - Graph It!
Havant parkrun21100:17:46 +
Woodley parkrun21117:02 All - Graph It!
Cranleigh parkrun26600:20:49 +
Upton Court parkrun22217:24 All - Graph It!
Finsbury parkrun22200:17:15 +
Chelmsford Central parkrun22217:24 All - Graph It!
Southsea parkrun23300:17:55 +
Mole Valley parkrun2262622:56 All - Graph It!
Margate parkrun21100:18:16 +
Durlston Country Park parkrun2355032:45 All - Graph It!
Northampton parkrun21100:16:56 +
Hazelwood parkrun2182222:21 All - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Southsea parkrun23317:55 All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Brandon Country Park parkrun11118:30 All - Graph It!
Crystal Palace parkrun21100:17:24 +
Prospect parkrun1232322:42 All - Graph It!
Eastleigh parkrun27700:19:14 +
Mildenhall Hub parkrun1273124:33 All - Graph It!
Hastings parkrun291100:20:41 +
York parkrun12217:12 All - Graph It!
Banstead Woods parkrun21100:17:31 +
Thetford parkrun1161721:45 All - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Great Dunmow parkrun14420:25 All - Graph It!
Hackney Marshes parkrun22200:16:46 +
Leavesden Country parkrun1506928:32 All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Catford parkrun1303322:32 All - Graph It!
Woodley parkrun21100:17:02 +
Lordship Recreation Ground parkrun19112425:22 All - Graph It!
Tooting Common parkrun2181800:19:14 +
Rugby parkrun1181822:26 All - Graph It!
Milton Keynes parkrun23300:17:26 +
Mulbarton parkrun12219:55 All - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Swaffham parkrun191022:19 All - Graph It!
Barking parkrun22200:16:45 +
Ganger Farm parkrun19811426:34 All - Graph It!
Canons Park parkrun27700:20:50 +
Beckenham Place parkrun1121220:28 All - Graph It!
Newbury parkrun21100:17:20 +
Forest Rec parkrun1677626:35 All - Graph It!
Shorne Woods parkrun21100:18:14 +
Street parkrun1283525:52 All - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Market Bosworth Country Park parkrun110614435:35 All - Graph It!
Mole Valley parkrun2262600:22:56 +
Whiteley parkrun1141520:56 All - Graph It!
Oak Hill parkrun21100:17:13 +
Kingsbury Water parkrun1394725:05 All - Graph It!
Cyclopark parkrun2353800:24:01 +
Springhill parkrun14422:18 All - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Wolford Wood parkrun1212730:24 All - Graph It!
South Oxhey parkrun21100:19:13 +
Pontypridd parkrun12217:54 All - Graph It!
Chelmsford Central parkrun22200:17:24 +
Pocket parkrun1222321:38 All - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Stockley Country parkrun111917935:32 All - Graph It!
Bevendean Down parkrun28900:23:21 +
Braunstone parkrun1262720:41 All - Graph It!
Bedford parkrun21100:16:55 +
Didcot parkrun1101121:28 All - Graph It!
Whitstable parkrun23300:18:12 +
Littleport parkrun1445125:16 All - Graph It!
Orpington parkrun22200:17:27 +
Yarborough Leisure Centre parkrun1466125:59 All - Graph It!
Ashford parkrun22200:17:57 +
Roding Valley parkrun1111321:26 All - Graph It!
Hazelwood parkrun2182200:22:21 +
Clair parkrun13318:36 All - Graph It!
Brooklands parkrun2394200:23:22 +
Dinton Pastures parkrun1131321:23 All - Graph It!
Wycombe Rye parkrun22200:17:17 +
Beacon Hill Country Park parkrun1273725:54 All - Graph It!
Harrow parkrun25500:20:23 +
Severn Bridge parkrun1353921:32 All - Graph It!
Beckton parkrun23300:17:24 +
Abbey Park parkrun1779425:21 All - Graph It!
St Albans parkrun21100:16:37 +
Dudley parkrun1445626:35 All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Pegwell Bay parkrun12217:40 All -  
Buckingham parkrun12200:18:37 +
Manor Field parkrun, Whittlesey1121324:25 All -  
Thomas Mills parkrun1486500:30:19 +
Blaise Castle parkrun112816326:20 All -  
Leamington parkrun12200:18:52 +
Chipping Sodbury parkrun1303221:20 All -  
Church Mead parkrun16610200:32:53 +
Foots Cray Meadows parkrun1212323:17 All -  
Letchworth parkrun1141400:23:13 +
Thames Path parkrun, Woolwich1789023:42 All -  
Mulbarton parkrun12200:19:55 +
Bath Skyline parkrun1192021:08 All -  
Arrow Valley parkrun13300:18:05 +
Dishley parkrun, Loughborough110311424:30 All -  
Frogmary Green Farm parkrun1597200:25:58 +
Thornham Walks parkrun1363826:52 All -  
Sutton Park parkrun1475500:24:54 +
Moors Valley parkrun19919:40 All -  
Reigate Priory parkrun16600:19:06 +
East Grinstead parkrun1131423:10 All -  
Bury St Edmunds parkrun13300:18:17 +
Sutton Park parkrun1475524:54 All -  
Pollok parkrun, Glasgow11100:17:00 +
University of Northampton parkrun1192223:24 All -  
Kingdom parkrun1222500:24:39 +
Shipley Country parkrun1232424:45 All -  
Barclay parkrun15600:23:13 +
Lancing Beach Green parkrun1141421:08 All -  
Chippenham parkrun1212100:20:08 +
Dover Waterfront parkrun1374525:22 All -  
Ipswich parkrun11100:17:34 +
Rickmansworth parkrun1242721:39 All -  
Itchen Valley Country parkrun1476100:27:37 +
Queen Elizabeth parkrun12219:08 All -  
Neckarau parkrun1243000:27:11 +
Sizewell parkrun1172023:30 All -  
Brandon Country Park parkrun11100:18:30 +
Holbrooks parkrun1202223:43 All -  
Boston parkrun17700:21:18 +
Highbury Fields parkrun11117:25 All -  
University Parks parkrun119032600:31:42 +
Clacton Seafront parkrun19920:35 All -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Delaware and Raritan Canal parkrun12221:06 All -  
Lullingstone parkrun17700:21:21 +
Wisbech parkrun1111523:03 All -  
Coventry parkrun1292900:20:51 +
Milton Country parkrun13317:43 All -  
Berkeley Green parkrun1233100:28:31 +
Seaton parkrun1394824:09 All -  
Mersea Island parkrun1121200:20:59 +
Higginson parkrun, Marlow1272922:17 All -  
Aylesbury parkrun11100:17:51 +
Quakers Walk parkrun1566825:05 All -  
Royal Tunbridge Wells parkrun18900:19:23 +
Lister Park parkrun, Bradford1313621:55 All -  
Southall parkrun1557500:31:38 +
Wendover Woods parkrun1262623:51 All -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Sence Valley Forest Park parkrun1232526:28 All -  
Pomphrey Hill parkrun1364100:23:02 +
Canterbury parkrun16621:56 All -  
Henley-on-Thames parkrun1111100:22:25 +
Henstridge Airfield parkrun18821:41 All -  
Aachener Weiher parkrun1101100:24:55 +
Five Arches parkrun1455422:58 All -  
Penrose parkrun1151600:19:40 +
Yeovil Montacute parkrun1707525:51 All -  
King’s Lynn parkrun1151500:20:07 +
Watermeadows parkrun1283124:57 All -  
Fulbourn Hospital parkrun1344700:24:59 +
Tamworth Castle Grounds parkrun1333523:26 All -  
Fareham parkrun16600:19:21 +
St Helens parkrun1606824:27 All -  
Brockenhurst parkrun13300:18:23 +
Weymouth parkrun1141420:45 All -  
Canterbury parkrun16600:21:56 +
Walmer and Deal Seafront parkrun18821:38 All -  
Alton Water parkrun1538300:35:09 +
Aston Hall parkrun1202225:01 All -  
Littleport parkrun1445100:25:16 +
Royal Tunbridge Wells parkrun18919:23 All -  
Newport parkrun11100:17:29 +
Corby parkrun18823:09 All -  
California Country parkrun1649000:28:49 +
Marlborough Common parkrun1202122:48 All -  
Thornbury parkrun1323400:28:19 +
Battlestead Croft parkrun1111122:53 All -  
Greenwich parkrun12200:18:07 +
Shepton Mallet parkrun1121421:50 All -  
Seven Fields parkrun1475500:26:28 +
Clare Castle parkrun1252723:04 All -  
Highbury Fields parkrun11100:17:25 +
Coldham’s Common parkrun1535923:04 All -  
The Great Field parkrun19313500:29:12 +
Brunswick Park parkrun1212223:58 All -  
Street parkrun1283500:25:52 +
Brentwood parkrun17722:28 All -  
South Norwood parkrun1121200:21:11 +
Somerdale Pavilion parkrun1384631:17 All -  
Dunstable Downs parkrun1374300:24:58 +
Wakehurst parkrun18810525:00 All -  
Melton Mowbray parkrun1192200:22:38 +
Boston parkrun17721:18 All -  
Horsham parkrun14500:18:16 +
Morden parkrun111715526:58 All -  
Irchester Country parkrun1586200:25:13 +
Pontefract parkrun1718724:10 All -  
Stratford-upon-Avon parkrun1202500:21:14 +
Jersey Farm parkrun1252723:11 All -  
Wotton parkrun1182100:24:45 +
Bug Hunter Waters parkrun1455022:41 All -  
Bath Skyline parkrun1192000:21:08 +
Rosliston parkrun1333624:41 All -  
Great Dunmow parkrun14400:20:25 +
Longrun Meadow parkrun111416532:01 All -  
Corby parkrun18800:23:09 +
Fire Service College parkrun1181922:12 All -  
Bracknell parkrun18800:20:04 +
Woolacombe Dunes parkrun19410931:20 All -  
Cromhall parkrun1151600:24:20 +
The Plens parkrun1303124:04 All -  
Perry Hall parkrun1464900:24:58 +
Arrow Valley parkrun13318:05 All -  
Gunpowder parkrun12200:17:34 +
Tonbridge parkrun14418:40 All -  
Luton Wardown parkrun191000:19:36 +
East Brighton parkrun1182123:56 All -  
Ifield Mill Pond parkrun1373800:24:33 +
Three Brooks parkrun1697223:46 All -  
March parkrun15500:21:11 +
Peacehaven parkrun17721:07 All -  
Roding Valley parkrun1111300:21:26 +
Pontypool parkrun1232323:51 All -  
Charlton parkrun18213000:32:05 +
Cromhall parkrun1151624:20 All -  
Malmö Ribersborg parkrun111215100:28:46 +
Dereham parkrun1323323:47 All -  
Worcester parkrun114418500:29:30 +
Bournemouth parkrun14417:43 All -  
Wolford Wood parkrun1212700:30:24 +
Pomphrey Hill parkrun1364123:02 All -  
Fire Service College parkrun1181900:22:12 +
Seaford Beach parkrun1535622:25 All -  
Panshanger parkrun17700:20:14 +
Mansfield parkrun11117:09 All -  
Conkers parkrun12200:17:46 +
Fountains Abbey parkrun11118:03 All -  
Banbury parkrun1222300:21:16 +
Loch Neaton parkrun, Watton1171725:49 All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Brueton parkrun1475021:33 All -  
Rushmere parkrun1131400:22:39 +
Great Cornard parkrun1192020:33 All -  
Whiteley parkrun1141500:20:56 +
Dunstable Downs parkrun1374324:58 All -  
Sandringham parkrun1466300:30:18 +
Beeston parkrun1374023:53 All -  
Victoria Dock parkrun1283000:20:04 +
Feltham parkrun13424:56 All -  
Queen Elizabeth parkrun12200:19:08 +
Markeaton parkrun1576422:56 All -  
Lordship Recreation Ground parkrun19112400:25:22 +
Reigate Priory parkrun16619:06 All -  
Somerdale Pavilion parkrun1384600:31:17 +
Highwoods parkrun1252624:49 All -  
Dartford parkrun11100:17:59 +
Valentines parkrun11116:49 All -  
Winchester parkrun14500:18:28 +
Springburn parkrun, Glasgow13318:05 All -  
Stratford Park parkrun, Stroud1566500:27:51 +
California Country parkrun1649028:49 All -  
Sherwood Pines parkrun1161800:21:33 +
Rushmoor parkrun19918:29 All -  
Grove Fields parkrun1578500:28:03 +
Mountbatten School parkrun1323424:11 All -  
Witney parkrun1202000:22:34 +
Colchester Castle parkrun14418:04 All -  
Preston Park parkrun, Brighton12200:17:40 +
Buckingham parkrun12218:37 All -  
Colchester Castle parkrun14400:18:04 +
Sunny Hill parkrun1202424:39 All -  
Tidworth parkrun110815500:35:14 +
Bognor Regis parkrun12218:12 All -  
Walmer and Deal Seafront parkrun18800:21:38 +
Aachener Weiher parkrun1101124:55 All -  
Ferry Meadows parkrun15500:17:27 +
Peckham Rye parkrun11117:49 All -  
St Mary’s parkrun1587400:29:14 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 All -  
Dartford Heath parkrun1171700:22:06 +
Great Notley parkrun16620:16 All -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Snowden Field parkrun1242624:15 All -  
Great Denham parkrun16600:19:27 +
Burnham-on-Crouch parkrun18822:01 All -  
Hastings High School parkrun1637800:27:33 +
Woking parkrun18818:19 All -  
Wendover Woods parkrun1262600:23:51 +
Neckarufer parkrun, Esslingen1364425:12 All -  
Peckham Rye parkrun11100:17:49 +
Worcester parkrun114418529:30 All -  
Upton House parkrun1252700:22:34 +
Blandford parkrun18920:11 All -  
Lee-on-the-Solent parkrun17700:19:40 +
Pont y Bala parkrun15723:18 All -  
Graves parkrun11100:18:18 +
Chichester parkrun13319:05 All -  
Maidstone parkrun13300:18:00 +
Kingdom parkrun1222524:39 All -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Westmill parkrun1101022:55 All -  
South Woodham Ferrers parkrun18800:21:14 +
Dartford parkrun11117:59 All -  
Pontypridd parkrun12200:17:54 +
Hanworth parkrun1364024:26 All -  
Bournemouth parkrun14400:17:43 +
Bracknell parkrun18820:04 All -  
Sizewell parkrun1172000:23:30 +
Folkestone parkrun1212521:48 All -  
Rushmoor parkrun19900:18:29 +
Uckfield parkrun1404324:12 All -  
Walsall Arboretum parkrun19810600:25:31 +
Harrogate parkrun13318:11 All -  
Gorleston Cliffs parkrun12200:17:43 +
Kesgrave parkrun1374021:18 All -  
Uckfield parkrun1404300:24:12 +
Thomas Mills parkrun1486530:19 All -  
Aldenham parkrun1141400:21:37 +
Lymington Woodside parkrun15721:59 All -  
Gadebridge parkrun1141400:22:22 +
Hereford parkrun1535323:07 All -  
Horspath parkrun17410600:28:12 +
Chasewater parkrun18210026:19 All -  
Rogiet parkrun1151600:24:27 +
South Norwood parkrun1121221:11 All -  
Rendlesham Forest parkrun1264600:37:01 +
Panshanger parkrun17720:14 All -  
Dishley parkrun, Loughborough110311400:24:30 +
Wolverhampton parkrun1556624:54 All -  
Great Cornard parkrun1192000:20:33 +
Harcourt Hill parkrun1171721:13 All -  
Kettering parkrun1232600:22:50 +
Tetbury Goods Shed parkrun1253024:25 All -  
Pont y Bala parkrun15700:23:18 +
Gloucester North parkrun1101022:14 All -  
Burnham and Highbridge parkrun17510000:27:51 +
Harlow parkrun1151523:00 All -  
Stonehouse parkrun1131300:20:09 +
Alvaston parkrun1515922:24 All -  
Hampstead Heath parkrun11100:17:45 +
Worcester Pitchcroft parkrun111814327:04 All -  
Wickford Memorial parkrun1436600:51:15 +
Perry Hall parkrun1464924:58 All -  
Castle Park parkrun1394100:22:34 +
Newport parkrun11117:29 All -  
Huntingdon parkrun1202100:21:10 +
Tring parkrun1171823:38 All -  
Great Salterns parkrun19212400:30:27 +
Severn Valley Country parkrun1141626:13 All -  
Snowden Field parkrun1242600:24:15 +
Wanstead Flats parkrun13317:13 All -  
Southend parkrun11100:16:28 +
Daventry parkrun1151521:10 All -  
Andover parkrun11100:17:33 +
St Mary’s parkrun1587429:14 All -  
parkrun Zalew Żyrardowski16700:24:38 +
Poole parkrun14416:57 All -  
Marecchia parkrun11100:19:50 +
Melton Mowbray parkrun1192222:38 All -  
Cheltenham parkrun12200:17:24 +
The Old Showfield parkrun1636923:30 All -  
St Helens parkrun1606800:24:27 +
Henley-on-Thames parkrun1111122:25 All -  
Bartley Park parkrun18415100:32:38 +
Crissy Field parkrun1101220:40 All -  
Severn Bridge parkrun1353900:21:32 +
Babbs Mill parkrun1405128:00 All -  
Pontypool parkrun1232300:23:51 +
Maidenhead parkrun17718:49 All -  
Poole parkrun14400:16:57 +
Ross-on-Wye parkrun1172124:22 All -  
Bramhall parkrun115924700:35:16 +
Kettering parkrun1232622:50 All -  
Sunny Hill parkrun1202400:24:39 +
Stratford Park parkrun, Stroud1566527:51 All -  
Cassiobury parkrun1111100:20:14 +
Bury St Edmunds parkrun13318:17 All -  
Hoblingwell parkrun1202400:23:52 +
Mallards Pike parkrun1324630:57 All -  
Colwick parkrun18800:19:46 +
Market Harborough parkrun1303121:17 All -  
Chipping Norton School parkrun1455100:26:40 +
Cassiobury parkrun1111120:14 All -  
Worthing parkrun18900:18:44 +
Squerryes Winery parkrun1323627:45 All -  
Harrow Lodge parkrun11100:18:48 +
Walsall Arboretum parkrun19010625:31 All -  
Bradford parkrun1313600:21:55 +
Penrose parkrun1151619:40 All -  
Bury Field parkrun1669000:33:07 +
King George V Playing Field parkrun, Cheltenham1232826:08 All -  
Pocket parkrun1222300:21:38 +
Evesham parkrun1111121:39 All -  
Longrun Meadow parkrun111416500:32:01 +
Warwick Racecourse parkrun1486024:55 All -  
Worcester Pitchcroft parkrun111814300:27:04 +
Huddersfield parkrun1626722:02 All -  
Highwoods parkrun1252600:24:49 +
Clevedon Salthouse Fields parkrun1384925:13 All -  
Maidenhead parkrun17700:18:49 +
Long Eaton parkrun19912124:06 All -  
Soham Village College parkrun1253200:28:03 +
Barry Island parkrun1394223:51 All -  
Rickmansworth parkrun1242700:21:39 +
Ifield Mill Pond parkrun1373824:33 All -  
Swaffham parkrun191000:22:19 +
Upton House parkrun1252722:34 All -  
Brentwood parkrun17700:22:28 +
Lullingstone parkrun17721:21 All -  
Lymington Woodside parkrun15700:21:59 +
The Leas parkrun, Minster1252524:37 All -  
Loch Neaton parkrun, Watton1171700:25:49 +
Medina I.O.W. parkrun11117:20 All -  
Daventry parkrun1151500:21:10 +
Uditore parkrun13320:28 All -  
Hatfield Forest parkrun1181800:20:36 +
Hunstanton Promenade parkrun1283523:45 All -  
Kingsway parkrun, Gloucester1192000:21:20 +
Raphael parkrun13319:35 All -  
Salcey Forest parkrun1384300:24:53 +
Burnham and Highbridge parkrun17510027:51 All -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Salcey Forest parkrun1384324:53 All -  
Prospect parkrun1232300:22:42 +
Ferry Meadows parkrun15517:27 All -  
Weymouth parkrun1141400:20:45 +
Barclay parkrun15623:13 All -  
Westmill parkrun1101000:22:55 +
Irchester Country parkrun1586225:13 All -  
East Brighton parkrun1182100:23:56 +
Maldon Prom parkrun11118:04 All -  
Harlow parkrun1151500:23:00 +
Salisbury parkrun1111119:34 All -  
Linford Wood parkrun1222200:21:45 +
Tremorfa parkrun1272923:30 All -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Billericay parkrun1121321:20 All -  
Lydney parkrun1202100:23:19 +
Gedling parkrun1273224:59 All -  
Braunstone parkrun1262700:20:41 +
Oaklands parkrun111820336:10 All -  
Harleston Magpies parkrun1293500:25:12 +
Winchester parkrun14518:28 All -  
Clapham Common parkrun1404200:20:22 +
Aldenham parkrun1141421:37 All -  
Market Bosworth Country Park parkrun110614400:35:35 +
East Park parkrun1121424:18 All -  
Jersey Farm parkrun1252700:23:11 +
Soham Village College parkrun1253228:03 All -  
Kesgrave parkrun1374000:21:18 +
Stevenage parkrun17719:32 All -  
Stevenage parkrun17700:19:32 +
Tewkesbury parkrun1111422:50 All -  
Hadleigh parkrun, Essex1252600:24:27 +
Seven Fields parkrun1475526:28 All -  
Squerryes Winery parkrun1323600:27:45 +
Conkers parkrun12217:46 All -  
Rutland Water parkrun1293000:22:44 +
Lee-on-the-Solent parkrun17719:40 All -  
Beckenham Place parkrun1121200:20:28 +
Brixworth Country parkrun1496126:53 All -  
Sutcliffe parkrun113117200:30:34 +
Abingdon parkrun15518:03 All -  
Haverhill parkrun1121300:23:32 +
Lowestoft parkrun1232621:10 All -  
Leavesden Country parkrun1506900:28:32 +
Chipping Norton School parkrun1455126:40 All -  
Coldham’s Common parkrun1535900:23:04 +
Linford Wood parkrun1222221:45 All -  
Chichester parkrun13300:19:05 +
Harwich parkrun191021:22 All -  
Billericay parkrun1121300:21:20 +
Fulbourn Hospital parkrun1344724:59 All -  
Bromley parkrun13300:17:18 +
Gunpowder parkrun12217:34 All -  
Babbs Mill parkrun1405100:28:00 +
Dartford Heath parkrun1171722:06 All -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Sandhurst Memorial parkrun1537328:54 All -  
Bryn Bach parkrun11100:16:50 +
Woodhouse Moor parkrun11117:22 All -  
York parkrun12200:17:12 +
Sandwell Valley parkrun1455930:43 All -  
Storeys Field parkrun115121100:28:49 +
Wyre Forest parkrun1434825:56 All -  
Chipping Sodbury parkrun1303200:21:20 +
parkrun Zalew Żyrardowski16724:38 All -  
Mote Park parkrun19712200:31:28 +
Bramhall parkrun115924735:16 All -  
Watermeadows parkrun1283100:24:57 +
Hatfield Forest parkrun1181820:36 All -  
Woking parkrun18800:18:19 +
Swansea Bay parkrun1748323:44 All -  
Raphael parkrun13300:19:35 +
Wollaton Hall parkrun1889723:51 All -  
Harwich parkrun191000:21:22 +
Horsham parkrun14518:16 All -  
Fritton Lake parkrun11100:18:26 +
Jersey parkrun16619:41 All -  
Heartwood Forest parkrun1252700:21:41 +
Berkeley Green parkrun1233128:31 All -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Cardiff parkrun111011722:02 All -  
Bedworth parkrun1171700:22:14 +
Ally Pally parkrun11118:09 All -  
Clair parkrun13300:18:36 +
Thurrock parkrun, Orsett Heath16620:41 All -  
Brueton parkrun1475000:21:33 +
Beacon parkrun1587326:41 All -  
Higginson parkrun, Marlow1272900:22:17 +
Albert parkrun, Middlesbrough1515423:17 All -  
Bognor Regis parkrun12200:18:12 +
Sherwood Pines parkrun1161821:33 All -  
Huddersfield parkrun1626700:22:02 +
Wickford Memorial parkrun1436651:15 All -  
Heaton parkrun13300:18:08 +
Thornbury parkrun1323428:19 All -  
Chasewater parkrun18210000:26:19 +
Malling parkrun18314547:25 All -  
Tewkesbury parkrun1111400:22:50 +
Itchen Valley Country parkrun1476127:37 All -  
Marple parkrun11100:17:15 +
Pollok parkrun, Glasgow11117:00 All -  
Cannock Chase parkrun1384400:25:49 +
Eastville parkrun120525325:12 All -  
Edgbaston Reservoir parkrun1658600:26:24 +
Rutland Water parkrun1293022:44 All -  
Cirencester parkrun1222400:22:40 +
Chalkwell Beach parkrun1819624:40 All -  
Kingsbury Water parkrun1394700:25:05 +
Amager Fælled parkrun1333724:23 All -  
Peacehaven parkrun17700:21:07 +
Hoblingwell parkrun1202423:52 All -  
Lancing Beach Green parkrun1141400:21:08 +
Belton House parkrun1141523:48 All -  
Springburn parkrun, Glasgow13300:18:05 +
Kagerzoom parkrun1435824:39 All -  
Market Harborough parkrun1303100:21:17 +
Gorleston Cliffs parkrun12217:43 All -  
Amager Fælled parkrun1333700:24:23 +
King’s Lynn parkrun1151520:07 All -  
Hanworth parkrun1364000:24:26 +
Holkham parkrun1506925:37 All -  
Salisbury parkrun1111100:19:34 +
Horspath parkrun17410628:12 All -  
Houghton Hall parkrun1131300:21:48 +
Southwick Country parkrun1272921:47 All -  
Chalkwell Beach parkrun1819600:24:40 +
Rushmere parkrun1131422:39 All -  
Melksham parkrun1171700:24:31 +
Zuiderpark parkrun, Den Haag1738124:07 All -  
Thetford parkrun1161700:21:45 +
Heaton parkrun13318:08 All -  
Pontefract parkrun1718700:24:10 +
Colney Lane parkrun1495524:01 All -  
Downham Market Academy parkrun1121300:24:35 +
Leicester Victoria parkrun19711626:45 All -  
Fountains Abbey parkrun11100:18:03 +
Church Mead parkrun16610232:53 All -  
Cardiff parkrun111011700:22:02 +
Southend parkrun11116:28 All -  
Littlehampton Prom parkrun1384300:24:22 +
Lydney parkrun1202123:19 All -  
Uditore parkrun13300:20:28 +
Edgbaston Reservoir parkrun1658626:24 All -  
Beacon parkrun1587300:26:41 +
Reading parkrun12217:18 All -  
parkrun de Rouen15500:21:41 +
March parkrun15521:11 All -  
Walthamstow parkrun11100:17:48 +
Woodgate Valley Country Park parkrun16513245:50 All -  
Shepton Mallet parkrun1121400:21:50 +
Maaraue parkrun1232522:34 All -  
Marine Parade parkrun17711100:29:24 +
Stonehouse parkrun1131320:09 All -  
Foots Cray Meadows parkrun1212300:23:17 +
Rheinpark parkrun1151825:30 All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Edinburgh parkrun12217:00 All -  
Evesham parkrun1111100:21:39 +
Chippenham parkrun1212120:08 All -  
Southwick Country parkrun1272900:21:47 +
Stratford-upon-Avon parkrun1202521:14 All -  
Lydiard parkrun18800:18:25 +
Henlow Bridge Lakes parkrun17511532:34 All -  
Sandhurst Memorial parkrun1537300:28:54 +
Bromley parkrun13317:18 All -  
Bicester parkrun14400:20:13 +
Houghton Hall parkrun1131321:48 All -  
Wimpole Estate parkrun1202100:22:14 +
Sittingbourne parkrun18820:56 All -  
Markshall Estate parkrun110315600:32:26 +
Sharpham Road Playing Fields parkrun1253124:41 All -  
Dinton Pastures parkrun1131300:21:23 +
Gadebridge parkrun1141422:22 All -  
Tonbridge parkrun14400:18:40 +
Chilton Fields parkrun1405428:26 All -  
Wanstead Flats parkrun13300:17:13 +
Storeys Field parkrun115121128:49 All -  
Woodhouse Moor parkrun11100:17:22 +
Hadleigh parkrun, Essex1252624:27 All -  
Mountbatten School parkrun1323400:24:11 +
Marple parkrun11117:15 All -  
Eastville parkrun120525300:25:12 +
Portsmouth Lakeside parkrun19919:12 All -  
Brixworth Country parkrun1496100:26:53 +
Grove Fields parkrun1578528:03 All -  
Portsmouth Lakeside parkrun19900:19:12 +
Banbury parkrun1222321:16 All -  
Milton Country parkrun13300:17:43 +
Graves parkrun11118:18 All -  
Swanley parkrun19712500:31:18 +
Watermead Country Park parkrun110818235:52 All -  
Springhill parkrun14400:22:18 +
Eastbourne parkrun12217:24 All -  
Gloucester North parkrun1101000:22:14 +
Malahide parkrun11116:54 All -  
Feltham parkrun13400:24:56 +
Fareham parkrun16619:21 All -  
Crissy Field parkrun1101200:20:40 +
Sutcliffe parkrun113117230:34 All -  
Ally Pally parkrun11100:18:09 +
Fritton Lake parkrun11118:26 All -  
Ashton Court parkrun1859500:22:59 +
Bicester parkrun14420:13 All -  
Oaklands parkrun111820300:36:10 +
Sandringham parkrun1466330:18 All -  
Sittingbourne parkrun18800:20:56 +
Luton Wardown parkrun191019:36 All -  
Moors Valley parkrun19900:19:40 +
Cwmbran parkrun1171723:29 All -  
Catford parkrun1303300:22:32 +
Broadwater parkrun110321335:19 All -  
Clare Castle parkrun1252700:23:04 +
Basildon parkrun15518:13 All -  
Harrogate parkrun13300:18:11 +
Marecchia parkrun11119:50 All -  
Seaford Beach parkrun1535600:22:25 +
Harleston Magpies parkrun1293525:12 All -  
Tring parkrun1171800:23:38 +
Kingsway parkrun, Gloucester1192021:20 All -  
Sandwell Valley parkrun1455900:30:43 +
Bryn Bach parkrun11116:50 All -  
Basildon parkrun15500:18:13 +
Mersea Island parkrun1121220:59 All -  
The Leas parkrun, Minster1252500:24:37 +
Charlton parkrun18213032:05 All -  
Little Stoke parkrun11100:17:03 +
parkrun de Rouen15521:41 All -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Dallas Burston Polo Club parkrun19614732:26 All -  
Felixstowe parkrun1121200:21:07 +
Ashton Court parkrun1859522:59 All -  
Yeovil Montacute parkrun1707500:25:51 +
Tøyen parkrun1668526:32 All -  
Stockley Country parkrun111917900:35:32 +
The Great Field parkrun19313529:12 All -  
Woolacombe Dunes parkrun19410900:31:20 +
Castle Park parkrun1394122:34 All -  
Harcourt Hill parkrun1171700:21:13 +
Swanley parkrun19712531:18 All -  
Abingdon parkrun15500:18:03 +
Greenwich parkrun12218:07 All -  
Eastbourne parkrun12200:17:24 +
Neckarau parkrun1243027:11 All -  
Warwick Racecourse parkrun1486000:24:55 +
Bury Field parkrun1669033:07 All -  
Leicester Victoria parkrun19711600:26:45 +
Clifton parkrun1101025:14 All -  
Broadwater parkrun110321300:35:19 +
Alton Water parkrun1538335:09 All -  
Clacton Seafront parkrun19900:20:35 +
Colwick parkrun18819:46 All -  
Burnham-on-Crouch parkrun18800:22:01 +
Melksham parkrun1171724:31 All -  
Ganger Farm parkrun19811400:26:34 +
Markshall Estate parkrun110315632:26 All -  
Folkestone parkrun1212500:21:48 +
Rogiet parkrun1151624:27 All -  
Mallards Pike parkrun1324600:30:57 +
Bartley Park parkrun18415132:38 All -  
Malling parkrun18314500:47:25 +
Lydiard parkrun18818:25 All -  
Rugby parkrun1181800:22:26 +
Little Stoke parkrun11117:03 All -  
Watermead Country Park parkrun110818200:35:52 +
Letchworth parkrun1141423:13 All -  
Hogmoor Inclosure parkrun1262600:25:26 +
Belvoir Castle parkrun1131925:42 All -  
East Grinstead parkrun1131400:23:10 +
Andover parkrun11117:33 All -  
Mildenhall Hub parkrun1273100:24:33 +
Rushcliffe parkrun1617323:54 All -  
Marlborough Common parkrun1202100:22:48 +
Cirencester parkrun1222422:40 All -  
Blandford parkrun18900:20:11 +
Southall parkrun1557531:38 All -  
Maldon Prom parkrun11100:18:04 +
Forest of Dean parkrun1182224:51 All -  
Edinburgh parkrun12200:17:00 +
parkrun des Dougnes, Cubnezais12219:42 All -  
The Old Showfield parkrun1636900:23:30 +
South Woodham Ferrers parkrun18821:14 All -  
Jersey parkrun16600:19:41 +
Marine Parade parkrun17711129:24 All -  
Chilton Fields parkrun1405400:28:26 +
Coventry parkrun1292920:51 All -  
Sixfields Upton parkrun18800:19:58 +
Wotton parkrun1182124:45 All -  
Pegwell Bay parkrun12200:17:40 +
Gloucester City parkrun1171922:35 All -  
Valentines parkrun11100:16:49 +
Great Salterns parkrun19212430:27 All -  
Edenbrook Country parkrun110514800:28:01 +
Bedworth parkrun1171722:14 All -  
Henstridge Airfield parkrun18800:21:41 +
University Parks parkrun119032631:42 All -  
Great Notley parkrun16600:20:16 +
Hampstead Heath parkrun11117:45 All -  
Medina I.O.W. parkrun11100:17:20 +
Great Denham parkrun16619:27 All -  
Reading parkrun12200:17:18 +
Downham Market Academy parkrun1121324:35 All -  
Tetbury Goods Shed parkrun1253000:24:25 +
Ipswich parkrun11117:34 All -  
Lowestoft parkrun1232600:21:10 +
Sixfields Upton parkrun18819:58 All -  
Malahide parkrun11100:16:54 +
Rendlesham Forest parkrun1264637:01 All -  
Oxford parkrun11100:17:18 +
Frogmary Green Farm parkrun1597225:58 All -  
Rheinpark parkrun1151800:25:30 +
Harrow Lodge parkrun11118:48 All -  
Gloucester City parkrun1171900:22:35 +
Witney parkrun1202022:34 All -  
Didcot parkrun1101100:21:28 +
Leamington parkrun12218:52 All -  
Mansfield parkrun11100:17:09 +
Brockenhurst parkrun13318:23 All -  
7851100:16:25 +
Hogmoor Inclosure parkrun1262625:26 + All +
Hastings High School parkrun1637827:33 + All +
Cannock Chase parkrun1384425:49 + All +
Wimpole Estate parkrun1202122:14 + All +
Haverhill parkrun1121323:32 + All +
Edenbrook Country parkrun110514828:01 + All +
Maidstone River Park parkrun13318:00 + All +
Cheltenham parkrun12217:24 + All +
Victoria Dock parkrun1273020:04 + All +
Ekebergsletta parkrun1304325:57 + All +
Oxford parkrun11117:18 + All +
Aylesbury parkrun11117:51 + All +
Mote Park parkrun19712231:28 + All +
Riverfront parkrun1404622:57 + All +
Newent parkrun1182225:27 + All +
Clapham Common parkrun1404220:22 + All +
Llanishen Park parkrun1303323:48 + All +
Heartwood Forest parkrun1252721:41 + All +
Walthamstow parkrun11117:48 + All +
Malmö Ribersborg parkrun111215128:46 + All +
Chippenham Playing Fields parkrun, Monmouth1161923:05 + All +
Huntingdon parkrun1202121:10 + All +
Felixstowe parkrun1121221:07 + All +
Tidworth parkrun110815535:14 + All +
8671116:25 All  


ボランティア要約

回数
- ランディレクター - 94
- タイム計測係 - 59
- 着順トークン整理係 - 3
- 結果集計係 - 87
- カメラマン - 6
- 連絡対応係 - 10
- コース誘導係 - 39
- イベント準備係 - 130
- 用具管理係 - 128
- その他 - 23
- バーコード・スキャン係 - 55
- イベント後片付け係 - 45
- 着順トークン配布係 - 15
- 着順確認係 - 2
- 初参加者歓迎係 - 68
- フィニッシュ後サポート係 - 15
- 着順トークン配布補助係 - 9
- 最後尾確認係 - 29
- ボランティア・コーディネーター - 146
- レポート作成係 - 97
- Do Not Translate - 3
- ウォームアップ・リーダー(ジュニアイベントのみ) - 16
- 駐車場整理係 - 1
- 当日コース状況確認係 - 8
- parkwalker - 9
Total Credits396

+ ランディレクター +

99
+ タイム計測係 + 94
+ 着順トークン整理係 + 12
+ 結果集計係 + 87
+ カメラマン + 6
+ 連絡対応係 + 10
+ コース誘導係 + 54
+ イベント準備係 + 148
+ 用具管理係 + 130
+ その他 + 26
+ バーコード・スキャン係 + 78
+ イベント後片付け係 + 51
+ 着順トークン配布係 + 21
+ 着順確認係 + 2
+ 初参加者歓迎係 + 82
+ フィニッシュ後サポート係 + 15
+ 着順トークン配布補助係 + 12
+ 最後尾確認係 + 29
+ ボランティア・コーディネーター + 148
+ レポート作成係 + 100
+ Do Not Translate + 3
+ ウォームアップ・リーダー(ジュニアイベントのみ) + 16
+ 駐車場整理係 + 1
+ 当日コース状況確認係 + 14
+ parkwalker + 10
Total Credits499

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



フリーダムparkrun

日付時間所在地
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkrun

開始日終了日(not)parkrunベスト・タイム
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1027,50 +1139,32 @@

Danny NORMAN (A482)
- 開催地数: 32 -
-
- 参加者数: 12,668 + 開催地数: 38
- 累計参加者数: 92,692 + 参加者数: 21932
- 総イベント開催数: 2,926 + 累計参加者数: 175804
- ボランティア数: 2,163 + 総イベント開催数: 5384
- 自己ベスト数: 15,699 + ボランティア数: 3455
- 平均フィニッシュタイム: 00:33:24 + 自己ベスト数: 24431
- 一人当たり平均参加回数: 7.3 + 平均フィニッシュタイム: 00:32:20
- グループ: 548 + グループ: 1051
-

-
- 女子記録: - 真奈美 加藤 – 17:28 - (15 1月 2022) -
-
- 男子記録: - 飯山 直輝 – 15:06 - (15 10月 2022) -
-
- 年齢別評価の記録: - 美砂子 益田 - 100.09% 17:51 - (29 10月 2022) -
+
- 過去にアップデートされた統計: 2023年04月14日 00時39分53秒 + 過去にアップデートされた統計: 2024年09月30日 00時40分03秒
@@ -1079,26 +1173,30 @@

Danny NORMAN (A482) Sumitomo Life + + Brooks +
-

© parkrun Global Limited (Company number: 09411750)

このサイトの一部または全部を著作権所有者の許可なしに複製することは禁じられています。

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ + +
- + - - + + @@ -1132,8 +1245,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/88720/all/index.html index c01678b4..478ae794 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/88720/all/index.html @@ -14,6 +14,7 @@ + 結果 | parkrun Japan - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -59,7 +54,7 @@
@@ -71,35 +66,26 @@
@@ -114,641 +100,739 @@
- + - - + -

Phillip WHETTLOCK (A88720)

+

Phillip WHETTLOCK (A88720)

parkrun250クラブのメンバー - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns 回(合計)

View summary stats for this parkrunner
- 年齢別評価VM55-59 の中で最も最近の参加 + 年齢別評価VM60-64 の中で最も最近の参加

- Summary Stats for All Locations -
最上位平均
(mean)
最も遅い
時間21:4025:2552:00
年齢別評価69.71%60.41%29.55%
総合順位648.88374

+ 箇所での全参加記録 +
最上位平均
(mean)
最も遅い
時間21:3625:2654:59
年齢別評価72.99%60.80%28.92%
総合順位648.44374

Best Overall Annual Achievements -
ベスト・タイムベスト年齢別評価
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
ベスト・タイムベスト年齢別評価
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

– すべての結果 -
イベント日付番号順位時間年齢別評価自己最高記録?
Halifax08/04/20233313225:0063.07% +
イベント日付番号順位時間年齢別評価自己最高記録?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + 自己最高記録 + +   +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34% +   +
Wakefield Thornes23/09/20233745824:2964.94% +   +
Halifax16/09/20233532123:4367.04%   -
Fulham Palace01/04/202339110924:0965.29% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax25/03/20233291624:4363.79% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Halifax18/03/20233282326:4758.87% +
Glossop12/08/20233152824:2564.57%   -
Halifax04/03/20233273825:1962.28% +
Halifax05/08/20233473024:4363.79%   -
Myrtle25/02/20231593824:5263.40% +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% 自己最高記録   -
Halifax18/02/20233252926:0360.52% +
Stratford Park, Stroud01/07/20231253126:2959.53% +   +
Wetherby24/06/20233094124:4663.66% +   +
Halifax10/06/20233402524:0265.60%   -
Halifax11/02/20233243124:0365.56% +
Halifax03/06/20233392124:1365.11%   -
Bradford04/02/20235795022:3769.71% +
Long Eaton20/05/20233306921:3672.99%   -
Bowling Park28/01/202379924:1165.20% +
Halifax06/05/20233352423:4566.39%   -
Bramley21/01/20233004925:3461.67% +
Keswick29/04/20233904121:3672.99% + 自己最高記録 +   -
Halifax14/01/20233213325:5260.95% +
Halifax22/04/20233334725:0262.98%   -
Halifax07/01/20233203026:2659.65% +
Halifax08/04/20233313225:0063.07%   -
Chevin Forest01/01/2023703026:4758.87% +
Fulham Palace01/04/202339110924:0965.29%   -
Nostell31/12/20223614325:0063.07% +
Halifax25/03/20233291624:4363.79%   -
Halifax24/12/20223173125:4661.19% +
Halifax18/03/20233282326:4758.87%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax04/03/20233273825:1962.28%   -
Temple Newsam26/11/20224172925:1462.48% +
Myrtle25/02/20231593824:5263.40% 自己最高記録   -
Conkers19/11/20225485624:1465.06% +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71% +   +
Bowling Park28/01/202379924:1165.20% +   +
Bramley21/01/20233004925:3461.67% +   +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + 自己最高記録 +   -
Brighouse12/11/20222213725:1762.36% +
Conkers19/11/20225485624:1465.06%   -
Halifax05/11/20223122424:5163.45% +
Brighouse12/11/20222213725:1762.36%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax05/11/20223122424:5163.45%   -
Halifax15/10/202230910749:5431.60% +
Oakwell Hall22/10/20222974026:1060.25%   -
Crosby08/10/20222833525:3861.51% +
Halifax15/10/202230910749:5431.60%   -
Alness01/10/20221801024:0965.29% +
Crosby08/10/20222833525:3861.51%   -
Victoria24/09/20223736722:5468.85% +
Alness01/10/20221801024:0965.29%   -
Halifax17/09/20223052625:0063.07% +
Victoria24/09/20223736722:5468.85%   -
Centre Vale10/09/20221034428:4454.87% +
Halifax17/09/20223052625:0063.07%   -
Halifax03/09/20223033125:3361.71% +
Centre Vale10/09/20221034428:4454.87%   -
Skipton27/08/20224035325:3561.11% +
Halifax03/09/20223033125:3361.71%   -
Halifax20/08/20223012824:5262.87% +
Skipton27/08/20224035325:3561.11%   -
Halifax06/08/20222996426:0360.01% +
Halifax20/08/20223012824:5262.87%   -
Armley30/07/20221432724:2863.90% +
Halifax06/08/20222996426:0360.01%   -
Halifax16/07/20222962524:2663.98% +
Armley30/07/20221432724:2863.90%   -
Halifax02/07/20222942524:4863.04% +
Halifax16/07/20222962524:2663.98%   -
Halifax18/06/20222922424:5462.78% +
Halifax02/07/20222942524:4863.04%   -
The Pastures11/06/2022991826:2159.33% +
Halifax18/06/20222922424:5462.78%   -
Halifax04/06/20222913826:4858.33% +
The Pastures11/06/2022991826:2159.33%   -
Horton Park28/05/20222942225:1262.04% +
Halifax04/06/20222913826:4858.33%   -
Bushy Park21/05/202287737424:0664.87% +
Horton Park28/05/20222942225:1262.04%   -
Halifax07/05/20222877529:3552.85% +
Bushy Park21/05/202287737424:0664.87%   -
Harrogate30/04/202246716226:4458.48% +
Halifax07/05/20222877529:3552.85%   -
Halifax23/04/20222854927:0057.90% +
Harrogate30/04/202246716226:4458.48%   -
Halifax09/04/20222834526:3758.74% +
Halifax23/04/20222854927:0057.90%   -
Halifax02/04/20222822924:4463.21% +
Halifax09/04/20222834526:3758.74%   -
Pendle26/03/20223443126:1659.52% +
Halifax02/04/20222822924:4463.21%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Pendle26/03/20223443126:1659.52%   -
Halifax05/03/20222784925:3761.03% +
Queen’s, Glasgow12/03/2022487925:2961.35%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% 自己最高記録   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% 自己最高記録   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% 自己最高記録   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% 自己最高記録   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% 自己最高記録   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -779,50 +863,32 @@

Phillip WHETTLOCK (A88
- 開催地数: 32 -
-
- 参加者数: 12,731 + 開催地数: 38
- 累計参加者数: 92,933 + 参加者数: 21932
- 総イベント開催数: 2,941 + 累計参加者数: 175804
- ボランティア数: 2,173 + 総イベント開催数: 5384
- 自己ベスト数: 15,711 + ボランティア数: 3455
- 平均フィニッシュタイム: 00:33:24 + 自己ベスト数: 24431
- 一人当たり平均参加回数: 7.3 + 平均フィニッシュタイム: 00:32:20
- グループ: 551 + グループ: 1051
-
-
- 女子記録: - 真奈美 加藤 – 17:28 - (15 1月 2022) -
-
- 男子記録: - 飯山 直輝 – 15:06 - (15 10月 2022) -
-
- 年齢別評価の記録: - 美砂子 益田 - 100.09% 17:51 - (29 10月 2022) -
+

- 過去にアップデートされた統計: 2023年04月17日 00時40分05秒 + 過去にアップデートされた統計: 2024年09月30日 00時40分03秒
@@ -831,26 +897,30 @@

Phillip WHETTLOCK (A88 Sumitomo Life + + Brooks +
-

© parkrun Global Limited (Company number: 09411750)

このサイトの一部または全部を著作権所有者の許可なしに複製することは禁じられています。

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ + +
- + - - + + @@ -884,8 +969,8 @@

Phillip WHETTLOCK (A88 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/88720/index.html index a66fa84d..249ddb28 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/88720/index.html @@ -14,6 +14,7 @@ + 結果 | parkrun Japan - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -59,7 +54,7 @@
@@ -71,35 +66,26 @@
@@ -114,195 +100,251 @@
- + - - + -

Phillip WHETTLOCK (A88720)

+

Phillip WHETTLOCK (A88720)

parkrun250クラブのメンバー - - Member of the Volunteer 100 club -

299 parkruns total

+ + Member of the Volunteer 250 club +

345 parkruns 回(合計)

この登録者の回すべてのparkrunの記録を見る。
- 年齢別評価VM55-59 の中で最も最近の参加 -

最も最近の参加

イベント日付性別順位総合順位時間年齢別評価
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


イベント要約

イベント参加性別最高順位総合最高順位ベスト・タイム  
Bradford parkrun1166600:21:40 + 年齢別評価VM60-64 の中で最も最近の参加 +

最も最近の参加

イベント日付性別順位総合順位時間年齢別評価
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


イベント要約

イベント参加性別最高順位総合最高順位ベスト・タイム  
Halifax parkrun1268822:13 + All +
Lister Park parkrun, Bradford1166621:40 + All +
Horton Park parkrun9131322:18 + All +
Keswick parkrun4253321:36 + All +
Sewerby parkrun3121222:08 + All +
Pontefract parkrun2273222:08 + All +
Brighouse parkrun2333723:53 + All +
Temple Newsam parkrun2272925:14 + All +
Fountains Abbey parkrun2394822:26 + All +
Oakwell Hall parkrun2293626:10 + All +
Whinlatter Forest parkrun2283227:23 + All +
Bramley parkrun2252524:06 + All +
Middleton Woods parkrun2121424:55 + All +
Myrtle parkrun2333824:52 + All +
Centre Vale parkrun2303626:37 + All +
Bushy parkrun130137424:06 + All +
Woodhouse Moor parkrun1778222:18 + All +
Pollok parkrun, Glasgow1667223:58 + All +
Edinburgh parkrun1646721:54 + All +
Wakefield Thornes parkrun1545824:29 + All +
Hyndburn parkrun1253125:51 + All +
York parkrun111413522:55 All - Graph It!
Halifax parkrun1148800:22:13 +
Milton Country parkrun1707522:40 All - Graph It!
Horton Park parkrun9131300:22:18 +
Carlisle parkrun1567126:05 All - Graph It!
Keswick parkrun3253300:23:33 +
Harrogate parkrun112316226:44 All - Graph It!
Sewerby parkrun3121200:22:08 +
Southport parkrun1545723:57 All - Graph It!
Temple Newsam parkrun2272900:25:14 +
Barnsley parkrun1414325:05 All - Graph It!
Myrtle parkrun2333800:24:52 +
Rothwell parkrun1535724:20 All - Graph It!
Middleton Woods parkrun2121400:24:55 +
Huddersfield parkrun1596722:47 All - Graph It!
Bramley parkrun2252500:24:06 +
Long Eaton parkrun1556921:36 All - Graph It!
Pontefract parkrun2273200:22:08 +
Wycombe Rye parkrun1232622:35 All - Graph It!
Whinlatter Forest parkrun1283200:27:23 +
Conkers parkrun1525624:14 All -  
Woodhouse Moor parkrun1778200:22:18 +
Roundhay parkrun112815726:55 All -  
Watergrove parkrun, Rochdale1111200:27:57 +
Hanley parkrun16622:03 All -  
Springburn parkrun, Glasgow1161600:23:14 +
Worsley Woods parkrun1728824:46 All -  
Fulham Palace parkrun18610900:24:09 +
Burnley parkrun1545725:21 All -  
Flatts Lane parkrun1171800:26:53 +
Dewsbury parkrun18610128:15 All -  
Roberts Park parkrun1657500:24:54 +
Cross Flatts parkrun1303724:16 All -  
Bowling Park parkrun18900:24:11 +
Clumber Park parkrun1101121:46 All -  
Centre Vale parkrun1304400:28:44 +
Skipton parkrun1505325:35 All -  
Hanley parkrun16600:22:03 +
Flatts Lane parkrun1171826:53 All -  
Wycombe Rye parkrun1232600:22:35 +
Victoria parkrun, Glasgow1546722:54 All -  
Armley parkrun1262700:24:28 +
Alness parkrun171024:09 All -  
Carlisle parkrun1567100:26:05 +
Fulham Palace parkrun18610924:09 All -  
Crosby parkrun1293500:25:38 +
Springburn parkrun, Glasgow1161623:14 All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Druridge Bay parkrun1354223:35 All -  
Edinburgh parkrun1646700:21:54 +
Pendle parkrun1263126:16 All -  
Oakwell Hall parkrun1344000:26:10 +
Watergrove parkrun, Rochdale1111227:57 All -  
Bushy parkrun130137400:24:06 +
Wetherby parkrun1374124:46 All -  
Pendle parkrun1263100:26:16 +
Portobello parkrun, Edinburgh1668024:16 All -  
Alness parkrun171000:24:09 +
Nostell parkrun1374325:00 All -  
Skipton parkrun1505300:25:35 +
Fell Foot parkrun, Newby Bridge1161722:57 All -  
Chevin Forest parkrun1213000:26:47 +
Conwy parkrun1394424:53 All -  
Queen’s parkrun, Glasgow1677900:25:29 +
Glossop parkrun1242824:25 All -  
Burnley parkrun1545700:25:21 +
Crosby parkrun1293525:38 All -  
Storthes Hall parkrun1263000:26:20 +
Dolgellau parkrun1459954:59 All -  
Roundhay parkrun112815700:26:55 +
Dalby Forest parkrun1283223:06 All -  
Cliffe Castle parkrun1151700:25:18 +
Clitheroe Castle parkrun1192525:41 All -  
Southport parkrun1545700:23:57 +
Armley parkrun1262724:28 All -  
Brighouse parkrun1333700:25:17 +
Dishley parkrun, Loughborough1535724:25 All -  
Milton Country parkrun1707500:22:40 +
Ford parkrun1202525:00 All -  
Nostell parkrun1384300:25:00 +
Cliffe Castle parkrun1151725:18 All -  
Pollok parkrun, Glasgow1667200:23:58 +
Potternewton parkrun1293625:04 All -  
Portobello parkrun, Edinburgh1668000:24:16 +
Isabel Trail parkrun1293422:02 All -  
Druridge Bay parkrun1354200:23:35 +
The Pastures parkrun1161826:21 All -  
Fountains Abbey parkrun1394800:22:26 +
Storthes Hall parkrun1263026:20 All -  
Victoria parkrun, Glasgow1546700:22:54 +
Hafan Pwllheli parkrun1212726:48 All -  
Clumber Park parkrun1101100:21:46 +
Penistone parkrun1343724:20 All -  
Rothay Park parkrun1202700:24:48 +
Conyngham Hall parkrun1363824:55 All -  
Warwick Racecourse parkrun1638200:24:06 +
Stratford Park parkrun, Stroud1303126:29 All -  
The Pastures parkrun1161800:26:21 +
Warwick Racecourse parkrun1638224:06 All -  
Conkers parkrun1525600:24:14 +
University of Stirling parkrun1343723:52 All -  
Dishley parkrun, Loughborough1535700:24:25 +
Jubilee parkrun1121926:42 All -  
Harrogate parkrun112316200:26:44 +
Queen’s parkrun, Glasgow1677925:29 All -  
Dalby Forest parkrun1283200:23:06 +
Bowling Park parkrun18924:11 All -  
2996600:21:40 +
Rothay Park parkrun1202724:48 + All +
Zuiderpark parkrun, Den Haag1151722:03 + All +
Carlisle Park parkrun, Morpeth1293325:44 + All +
Chevin Forest parkrun1213026:47 + All +
Roberts Park parkrun1657524:54 + All +
Beacon Hill Country Park parkrun1192325:36 + All +
Thames Path parkrun, Woolwich1586323:49 + All +
3456621:36 All  


ボランティア要約

回数
- ランディレクター - 32
- タイム計測係 - 17
- 着順トークン整理係 - 5
- 結果集計係 - 1
- カメラマン - 1
- 連絡対応係 - 5
- コース誘導係 - 35
- イベント準備係 - 28
- 用具管理係 - 5
- その他 - 1
- バーコード・スキャン係 - 27
- イベント後片付け係 - 24
- 着順トークン配布係 - 11
- 着順確認係 - 1
- 初参加者歓迎係 - 77
- フィニッシュ後サポート係 - 12
- 着順トークン配布補助係 - 10
- 最後尾確認係 - 5
- ボランティア・コーディネーター - 10
- レポート作成係 - 1
- ペースメーカー - 5
- Do Not Translate - 14
- VIガイド - 1
- ウォームアップ・リーダー(ジュニアイベントのみ) - 5
- 手話サポート - 1
- 駐車場整理係 - 1
- 当日コース状況確認係 - 25
- parkwalker - 1
Total Credits249

+ ランディレクター +

33
+ タイム計測係 + 28
+ 着順トークン整理係 + 5
+ 結果集計係 + 4
+ カメラマン + 1
+ 連絡対応係 + 6
+ コース誘導係 + 35
+ イベント準備係 + 29
+ 用具管理係 + 6
+ その他 + 2
+ バーコード・スキャン係 + 46
+ イベント後片付け係 + 25
+ 着順トークン配布係 + 16
+ 着順確認係 + 1
+ 初参加者歓迎係 + 82
+ フィニッシュ後サポート係 + 16
+ 着順トークン配布補助係 + 16
+ 最後尾確認係 + 15
+ ボランティア・コーディネーター + 11
+ レポート作成係 + 1
+ ペースメーカー + 10
+ Do Not Translate + 14
+ VIガイド + 1
+ ウォームアップ・リーダー(ジュニアイベントのみ) + 15
+ 手話サポート + 1
+ 駐車場整理係 + 1
+ 当日コース状況確認係 + 57
+ parkwalker + 1
Total Credits316

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. -



フリーダムparkrun

日付時間所在地
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkrun

開始日終了日(not)parkrunベスト・タイム
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here. +



フリーダムparkrun

日付時間所在地
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkrun

開始日終了日(not)parkrunベスト・タイム
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -331,50 +373,32 @@

Phillip WHETTLOCK (A88
- 開催地数: 32 -
-
- 参加者数: 12,731 + 開催地数: 38
- 累計参加者数: 92,933 + 参加者数: 21932
- 総イベント開催数: 2,941 + 累計参加者数: 175804
- ボランティア数: 2,173 + 総イベント開催数: 5384
- 自己ベスト数: 15,711 + ボランティア数: 3455
- 平均フィニッシュタイム: 00:33:24 + 自己ベスト数: 24431
- 一人当たり平均参加回数: 7.3 + 平均フィニッシュタイム: 00:32:20
- グループ: 551 + グループ: 1051
-
-
- 女子記録: - 真奈美 加藤 – 17:28 - (15 1月 2022) -
-
- 男子記録: - 飯山 直輝 – 15:06 - (15 10月 2022) -
-
- 年齢別評価の記録: - 美砂子 益田 - 100.09% 17:51 - (29 10月 2022) -
+

- 過去にアップデートされた統計: 2023年04月17日 00時40分05秒 + 過去にアップデートされた統計: 2024年09月30日 00時40分03秒
@@ -383,26 +407,30 @@

Phillip WHETTLOCK (A88 Sumitomo Life + + Brooks +
-

© parkrun Global Limited (Company number: 09411750)

このサイトの一部または全部を著作権所有者の許可なしに複製することは禁じられています。

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ + +
- + - - + + @@ -436,8 +479,8 @@

Phillip WHETTLOCK (A88 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/999999/all/index.html index 6b68d437..5b626b54 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/999999/all/index.html @@ -14,6 +14,7 @@ + 結果 | parkrun Japan @@ -255,8 +247,8 @@

Jakub WOLSKI (A999999) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/999999/index.html index 886b428c..cab2bfa8 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.jp/contents/parkrunner/999999/index.html @@ -14,6 +14,7 @@ + 結果 | parkrun Japan @@ -251,8 +243,8 @@

Jakub WOLSKI (A999999) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/1309364/all/index.html new file mode 100644 index 00000000..d904a508 --- /dev/null +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/1309364/all/index.html @@ -0,0 +1,883 @@ + + + + + + + + + + + + + + + + + +rezultatai | parkrun Lithuania + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ +
+
+ + + + + + Nemokamai, visiems, visuomet + + +

Andrew TAYLOR (A1309364)

+ parkrun 250 Klubo narys + + Member of the Volunteer 50 club +

+ Iš viso 297 parkrun +

+ Peržiūrėkite šio parkrun dalyvio/-ės statistikos santrauką +
+ Dabartinė amžiaus kategorija +

+ Visų renginio vietų statistikos santrauka +
GreičiausiasVidutinis
(vidurkis)
Lėčiausias
Laikas20:0629:2057:34
pasiekimų pagal amžių įvertinimas64.51%46.67%23.54%
Bendra pozicija5182.341021

+ Geriausi bendri metų pasiekimai +
MetaiGeriausias laikasGeriausias vertinimas pagal amžių
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

+ Visi rezultatai +
RenginysRenginio dataRenginio numerisPozicijaLaikasPasiekimai pagal amžiųGeriausias asmeninis pasiekimas?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + Geriausias asmeninis pasiekimas + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60% +   +
Whiteley18/11/202324721037:0536.54% +   +
Whiteley11/11/202324617430:3744.26% +   +
Winchester21/10/202345731533:5140.03% +   +
Winchester14/10/202345634233:5439.97% +   +
Ganger Farm07/10/20234713233:4940.07% +   +
Winchester30/09/202345427529:3145.91% +   +
Winchester23/09/202345321928:2247.77% +   +
Winchester16/09/202345235430:3244.38% +   +
Winchester09/09/202345129229:1146.43% +   +
Delamere02/09/202345822633:2840.49% +   +
Fell Foot26/08/202336724531:4742.63% +   +
Winchester29/07/202344622227:3649.09% +   +
Winchester22/07/202344540537:0036.62% +   +
Whiteley15/07/202322915731:1643.34% +   +
Medina I.O.W.01/07/202355221834:0239.81% +   +
Winchester17/06/202344128530:4144.16% +   +
Winchester10/06/202344032435:2138.33% +   +
Winchester20/05/202343822427:0949.91% +   +
Winchester13/05/202343733232:4341.42% +   +
Whiteley29/04/202321919635:3138.15% +   +
Winchester22/04/202343431731:1143.45% +   +
Clitheroe Castle08/04/20231789735:4637.88% +   +
Whiteley25/03/202321418332:2441.82% +   +
Winchester11/03/202342821230:3744.26% +   +
Winchester04/03/202342730935:4537.90% +   +
Winchester25/02/202342632536:0937.48% +   +
Winchester18/02/202342530336:3137.11% +   +
Delamere31/12/202242331536:2537.21% +   +
Ganger Farm10/12/2022418257:3423.54% +   +
Ganger Farm03/12/2022313529:2546.06% +   +
Winchester26/11/202241229335:3137.87% +   +
Whiteley12/11/202221016534:2839.02% +   +
Winchester29/10/202240924429:5544.96% +   +
Winchester22/10/202240833736:0837.22% +   +
Winchester17/09/202240326230:2944.12% +   +
Winchester10/09/202240231134:3338.93% +   +
Alice Holt03/09/202241817936:3236.82% +   +
Winchester27/08/202240042335:2138.05% +   +
Winchester13/08/202239823431:3042.70% +   +
Tidworth30/07/2022615151:4226.02% +   +
Uckfield23/07/20221006028:4346.84% +   +
Winchester09/07/202239428633:1640.43% +   +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% + Geriausias asmeninis pasiekimas + +   +
Southampton01/02/202039737225:3151.99% +   +
Queen Elizabeth25/01/20203564026:3649.87% + Geriausias asmeninis pasiekimas + +   +
Portsmouth Lakeside18/01/20201938726:3250.00% +   +
Hogmoor Inclosure11/01/20209914029:3444.87% +   +
Brockenhurst04/01/202033618632:4140.59% +   +
Tawd Valley01/01/20202311029:2545.10% +   +
Ormskirk01/01/202029830331:0442.70% +   +
Witton28/12/20192003525:4051.69% + Geriausias asmeninis pasiekimas + +   +
Northwich25/12/2019938829:1145.46% +   +
Fareham21/12/201919911428:5245.96% +   +
Winchester07/12/201933716426:4049.75% +   +
Seven Fields23/11/201926728:2846.31% +   +
Clumber Park16/11/201932617629:5144.17% +   +
Whiteley09/11/201913616429:2444.84% +   +
Winchester26/10/201933217629:1445.10% +   +
Heaton Park19/10/201947646731:0142.50% +   +
Winchester05/10/201932933732:0641.07% +   +
Winchester28/09/201932834031:3441.76% +   +
Winchester14/09/20193268822:4657.91% +   +
Catford07/09/20197112527:2448.11% +   +
Winchester24/08/201932325428:5145.70% +   +
Whiteley17/08/201912416829:0645.30% + Geriausias asmeninis pasiekimas + +   +
Winchester10/08/201932241035:2737.19% +   +
Winchester03/08/201932134230:5542.64% +   +
Bushy Park20/07/2019798102133:0139.93% +   +
Winchester13/07/201931838033:4239.12% +   +
Pocket06/07/20195719533:4739.02% +   +
Winchester29/06/201931630432:0041.20% +   +
Salisbury22/06/201921426729:4544.31% +   +
Eastleigh15/06/201946225531:4141.61% +   +
Watermeadows08/06/2019171523:5155.28% +   +
Winchester01/06/201931313523:4355.59% +   +
Milano Nord25/05/20191395327:4947.39% +   +
Eden Project04/05/20197416230:2143.44% +   +
Winchester27/04/201930825828:0646.92% +   +
Winchester20/04/201930731729:2544.82% +   +
Mountbatten School13/04/2019710131:2941.87% +   +
Long Eaton06/04/201919422928:0646.92% +   +
Hilly Fields23/03/20193499925:0352.63% +   +
Winchester16/03/201930225528:5145.70% +   +
Winchester09/03/201930121728:3446.15% +   +
Winchester02/03/201930021526:5149.10% +   +
Winchester23/02/201929939435:2837.17% +   +
Winchester26/01/201929538835:2637.21% +   +
Winchester19/01/201929440238:1434.48% +   +
Winchester12/01/201929319126:2250.00% +   +
Winchester05/01/201929229329:2844.74% +   +
Northwich01/01/20194229435:2737.19% +   +
Delamere01/01/201929236234:2938.23% +   +
Crewe29/12/20184715430:0543.82% +   +
Witton25/12/20181556829:1145.17% + Geriausias asmeninis pasiekimas + +   +
Alice Holt22/12/201830415329:3744.51% +   +
Winchester15/12/201828713227:3447.82% +   +
Winchester08/12/201828612825:2351.94% +   +
Winchester24/11/201828413325:0252.40% +   +
Winchester17/11/201828328229:4844.02% +   +
Whiteley10/11/20188318532:2640.44% +   +
Southampton03/11/201833132325:0152.43% +   +
Winchester27/10/201828128830:2143.22% +   +
Winchester13/10/20182797223:0456.86% +   +
Winchester06/10/201827812624:5552.64% +   +
Winchester15/09/201827535834:1438.32% +   +
Winchester08/09/201827418327:0448.46% +   +
Northwich01/09/20182310533:4838.81% +   +
Andover25/08/201838420533:2639.23% +   +
Winchester18/08/201827129030:2843.05% +   +
Winchester11/08/201827015025:2051.78% +   +
Queen Elizabeth04/08/20182777233:0439.67% +   +
Winchester28/07/201826820126:4249.13% +   +
Winchester07/07/201826527529:5843.77% +   +
Winchester30/06/201826428830:5242.49% +   +
Winchester09/06/201826232230:4942.56% +   +
Winchester02/06/201826136732:4040.15% +   +
Winchester19/05/201825934233:4438.88% +   +
Winchester12/05/201825814425:2751.54% +   +
Winchester05/05/201825720727:0148.55% +   +
Winchester28/04/201825613525:3851.17% +   +
Winchester21/04/201825532434:4737.71% +   +
Jersey07/04/201813118530:5342.47% +   +
Northwich31/03/201815224:5552.64% +   +
Winchester24/03/201825215630:4942.56% +   +
Poole17/03/201836328428:5945.26% +   +
Winchester10/03/201825015331:2741.71% +   +
Winchester03/03/20182499330:2843.05% +   +
Winchester10/02/201824614627:2247.93% +   +
Whiteley27/01/20184414629:1044.97% +   +
Winchester20/01/201824415129:4644.06% +   +
Winchester13/01/20182439725:1851.84% +   +
Pendle01/01/20181955926:3749.28% +   +
Hyndburn30/12/2017115329:5543.84% +   +
Delamere25/12/201724033033:4938.79% +   +
Phoenix23/12/2017452627:3147.67% +   +
Winchester09/12/201723918030:1943.27% +   +
Southampton02/12/201728448228:3245.97% +   +
Witton11/11/20171046634:5637.36% +   +
Eastleigh04/11/201738511126:5148.60% +   +
Winchester14/10/201723214725:1451.72% +   +
Winchester07/10/201723127633:3038.96% +   +
Winchester30/09/201723016427:1547.89% +   +
Winchester16/09/20172285322:0858.96% +   +
Cuerden Valley09/09/20172092024:4752.66% +   +
Winchester02/09/20172266522:2758.13% +   +
Wimpole Estate26/08/201723416928:0746.41% +   +
Canterbury19/08/20171793627:2947.48% +   +
Winchester05/08/20172236923:0656.49% +   +
Winchester22/07/201722121727:1847.80% +   +
Winchester15/07/201722025127:2947.48% +   +
Winchester08/07/201721925631:0242.05% +   +
Winchester24/06/201721730232:1840.40% +   +
Winchester10/06/20172169923:5654.53% +   +
Burnley27/05/201725720429:0644.85% +   +
Winchester06/05/201721130230:2842.83% +   +
Winchester29/04/20172107222:1958.48% +   +
Medina I.O.W.22/04/201730213930:5742.16% +   +
Winchester15/04/201720825829:1944.51% +   +
Hanley08/04/20172903922:3157.96% + Geriausias asmeninis pasiekimas + +   +
Eastleigh01/04/201735412527:5446.77% +   +
Winchester18/03/201720415628:4445.42% +   +
Newbury11/03/20172769123:4954.79% +   +
Winchester04/03/20172028925:5850.26% +   +
Richmond Olympic18/02/201714521:5959.36% +   +
Winchester21/01/20171977323:4355.02% +   +
Winchester14/01/201719611125:0552.03% +   +
Winchester07/01/20171959626:0450.06% +   +
Congleton01/01/201721411329:5743.57% +   +
Delamere31/12/201619119228:4745.34% +   +
Witton25/12/2016634530:3742.62% +   +
Bolton24/12/201629821831:4941.02% +   +
Winchester17/12/201619019530:3342.72% +   +
Winchester26/11/201618712225:3350.88% +   +
Basingstoke05/11/201645112924:3153.03% +   +
Winchester22/10/201618310924:5552.17% +   +
Winchester08/10/20161815522:3957.40% +   +
Winchester24/09/201617920131:2941.29% +   +
Winchester17/09/20161786323:2955.36% +   +
Winchester10/09/20161774822:3457.61% +   +
Winchester03/09/20161764923:0956.16% +   +
Fell Foot20/08/2016866426:1149.65% +   +
Woking13/08/20161015824:0154.13% +   +
Netley Abbey16/07/20162346424:2153.39% +   +
Winchester09/07/20161705922:4257.27% +   +
Winchester02/07/20161696723:0256.44% +   +
Winchester11/06/201616622532:1640.29% +   +
Abingdon28/05/201624820229:1444.47% +   +
Winchester21/05/20161632621:0161.86% +   +
Winchester14/05/201616214925:4150.62% +   +
Winchester30/04/20161601720:1864.04% + Geriausias asmeninis pasiekimas + +   +
Winchester23/04/20161592321:1861.03% +   +
Winchester02/04/201615610527:0947.88% +   +
Winchester26/03/20161551721:1061.42% +   +
Winchester19/03/20161541320:5961.95% +   +
Winchester12/03/20161532321:5059.54% +   +
Winchester05/03/20161525223:3655.08% +   +
Winchester20/02/201615010526:2249.30% +   +
Winchester13/02/20161491521:4159.95% +   +
Winchester30/01/20161475426:1949.40% +   +
Winchester23/01/20161466025:0052.00% +   +
Winchester16/01/201614518639:1133.18% +   +
Winchester09/01/201614417446:2727.99% +   +
Hanley01/01/20162248427:0348.06% +   +
Congleton01/01/20161615623:4754.66% +   +
Delamere25/12/20151394723:1455.95% +   +
Hagley12/12/2015622022:3857.44% +   +
Hamilton Lake05/12/20151121621:4759.68% +   +
Winchester21/11/20151362222:1658.23% +   +
Winchester14/11/20151352521:4959.43% +   +
Eastleigh07/11/20152822524:0853.73% +   +
Winchester31/10/20151342621:2160.73% +   +
Congleton24/10/2015150920:0664.51% + Geriausias asmeninis pasiekimas + +   +
Winchester17/10/20151322020:3263.15% + Geriausias asmeninis pasiekimas + +   +
Winchester10/10/20151312221:0061.75% +   +
Winchester03/10/20151306623:0056.38% +   +
Fountains Abbey26/09/2015813020:3363.10% +   +
Winchester05/09/20151263621:4259.75% +   +
Winchester15/08/20151233022:1358.36% +   +
Southampton01/08/20151637021:1760.92% + Geriausias asmeninis pasiekimas + +   +
Winchester25/07/20151214222:0958.54% +   +
Congleton18/07/20151362321:0461.55% +   +
Delamere20/06/20151162321:4259.75% + Geriausias asmeninis pasiekimas + +   +
Winchester13/06/20151163521:2060.78% +   +
Winchester30/05/20151142420:5062.24% +   +
Winchester23/05/20151131820:4462.54% +   +
Winchester16/05/20151122021:0761.40% +   +
Winchester09/05/20151112221:0461.55% +   +
Winchester02/05/20151102020:3563.00% + Geriausias asmeninis pasiekimas + +   +
Winchester25/04/20151097423:2755.29% +   +
Winchester18/04/20151083921:4359.71% +   +
Winchester11/04/20151073221:2060.78% + Geriausias asmeninis pasiekimas + +   +
Delamere04/04/20151055122:1158.45% + Geriausias asmeninis pasiekimas + +   +
Andover21/03/20151992622:2457.89% +   +
Fell Foot07/03/2015192223:4854.48% + Geriausias asmeninis pasiekimas + +   +
Southampton28/02/201514212722:3057.63% +   +
Penrhyn21/02/2015142624:3352.82% +   +
Winchester14/02/2015995324:4252.50% +   +
Winchester07/02/2015984824:1253.58% +   +
Winchester31/01/2015977327:2047.44% +   +
Delamere25/12/2014915823:1355.85% +   +
Winchester20/12/2014894723:1655.73% + Geriausias asmeninis pasiekimas + +   +
Winchester13/12/2014886725:4550.36% +   +
Winchester29/11/2014865424:0153.99% +   +
Fell Foot22/11/201464426:1949.15% +   +

+ +
+ + + + +
+ + +
+
+ + +
+ +
+
+ +
+
+
+ + +
+
+ Vietos: 1 +
+
+ Finišavę dalyviai: 274 +
+
+ Finišai: 318 +
+
+ Visų laikų renginiai: 2 +
+
+ Savanoriai: 27 +
+
+ Asmeniniai rekordai: 9 +
+
+ Vidutinis finišo laikas: 00:30:44 +
+
+ Grupės: 44 +
+
+
+ Statistika paskutinį kartą atnaujinta: 2024 m. rugsėjo 30 d. 00:40:03 +
+
+
+
+
+ + Brooks + +
+
+
+ +

© parkrun Global Limited (Company number: 09411750)

+

Be autorių teisių savininko leidimo jokia šios svetainės dalis jokiu būdu negali būti atkurta visa ar iš dalies.

+

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
+
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/1309364/index.html new file mode 100644 index 00000000..082d3362 --- /dev/null +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/1309364/index.html @@ -0,0 +1,419 @@ + + + + + + + + + + + + + + + + + +rezultatai | parkrun Lithuania + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ +
+
+ + + + + + Nemokamai, visiems, visuomet + + +

Andrew TAYLOR (A1309364)

+ parkrun 250 Klubo narys + + Member of the Volunteer 50 club +

Iš viso 297 parkrun

+ Peržiūrėkite šio parkrun dalyvio/-ės visų parkrun renginių statistiką +
+ Dabartinė amžiaus kategorija +

Naujausi parkrun bėgimai

RenginysRenginio dataPozicija pagal lytįBendra pozicijaLaikasPasiekimai pagal amžių
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Renginių santraukos

Renginysparkrun renginiaiGeriausia pozicija pagal lytįGeriausia pozicija apskritaiGeriausias laikas  
Winchester parkrun173121320:18 + Visi +
Whiteley parkrun1410714629:06 + Visi +
Delamere parkrun11232321:42 + Visi +
Eastleigh parkrun6242524:08 + Visi +
Alice Holt parkrun59010727:19 + Visi +
Southampton parkrun5687021:17 + Visi +
Fell Foot parkrun, Newby Bridge4212223:48 + Visi +
Witton parkrun4303525:40 + Visi +
Northwich parkrun4485224:55 + Visi +
Newbury parkrun4829123:49 + Visi +
Congleton parkrun49920:06 + Visi +
Medina I.O.W. parkrun4667525:13 + Visi +
Ganger Farm parkrun38013229:25 + Visi +
Hanley parkrun2333922:31 + Visi +
Burnley parkrun212718929:06 + Visi +
Queen Elizabeth parkrun2364026:36 + Visi +
Andover parkrun2242622:24 + Visi +
Abingdon parkrun114220229:14 + Visi +
Netley Abbey parkrun1586424:21 + Visi +
Hilly Fields parkrun1859925:03 + Visi +
Brockenhurst parkrun112718632:41 + Visi +
Wimpole Estate parkrun112916928:07 + Visi +
Clumber Park parkrun112117629:51 + Visi +
Cuerden Valley parkrun1192024:47 + Visi +
Hamilton Lake parkrun1151621:47 + Visi +
Fountains Abbey parkrun1283020:33 + Visi +
Ormskirk parkrun120930331:04 + Visi +
Pendle parkrun1465926:37 + Visi +
Woking parkrun1485824:01 + Visi +
Hagley parkrun1182022:38 + Visi +
Penrhyn parkrun1232624:33 + Visi +
Salisbury parkrun119326729:45 + Visi +
Jersey parkrun111018530:53 + Visi +
Haigh Woodland parkrun18916837:04 + Visi +
Stretford parkrun127540530:23 + Visi +
Portsmouth Lakeside parkrun1818726:32 + Visi +
Fareham parkrun19011428:52 + Visi +
Milano Nord parkrun1475327:49 + Visi +
Richmond Olympic parkrun15521:59 + Visi +
Crewe parkrun112315430:05 + Visi +
Hogmoor Inclosure parkrun111314029:34 + Visi +
Catford parkrun19512527:24 + Visi +
Clitheroe Castle parkrun1639735:46 + Visi +
Pocket parkrun112419533:47 + Visi +
Ford parkrun1477432:29 + Visi +
Watermeadows parkrun1151523:51 + Visi +
Mountbatten School parkrun17110131:29 + Visi +
Uckfield parkrun1416028:43 + Visi +
Tawd Valley parkrun18111029:25 + Visi +
Seven Fields parkrun1546728:28 + Visi +
Itchen Valley Country parkrun110613529:53 + Visi +
Bartley Park parkrun1628430:26 + Visi +
Tidworth parkrun18615151:42 + Visi +
Bushy parkrun1681102133:01 + Visi +
Basingstoke parkrun111212924:31 + Visi +
Heaton parkrun133846731:01 + Visi +
Guildford parkrun117125130:01 + Visi +
Hyndburn parkrun1425329:55 + Visi +
Phoenix parkrun1232627:31 + Visi +
Canterbury parkrun1323627:29 + Visi +
Valentines parkrun1698025:14 + Visi +
Poole parkrun121328428:59 + Visi +
Long Eaton parkrun118122928:06 + Visi +
Bolton parkrun116221831:49 + Visi +
Eden Project parkrun111116230:21 + Visi +
2975520:06 + Visi + +   +


Savanoriavimo santrauka

VaidmuoProgos
+ Renginio Vadovas + 21
+ Laiko Matuotojas + 2
+ Žetonų Rūšiavimas + 8
+ Rezultatų Įvedėjas + 6
+ Fotografas + 4
+ Savanoris (Maršalas) + 5
+ Pasiruošimas Prieš Renginį + 6
+ Įrangos Sandėliavimas ir Pristatymas + 2
+ Brūkšninio Kodo Skenavimas + 3
+ Renginio Užbaigimo Procedūros + 10
+ Finišo Žetonai + 1
+ Numerių Tikrintojas + 2
+ Pirmąkart Dalyvaujančiųjų Pasveikinimas + 1
+ Srauto Valdytojas + 1
+ Tail Walker + 4
+ Savanorių Koordinatorius + 1
+ Bėgimo Ataskaitos Rengėjas + 10
+ Laiko Vedlys + 1
Iš viso kreditų60

+ Šioje lentelėje apibendrinamas, kiek kartų buvo atliktas kiekvienas savanorio vaidmuo.
Atkreipkite dėmesį, kad bendra suma gali skirtis nuo visų savanorių kreditų; jei tą pačią dieną atlikote kelias užduotis.
Sužinokite daugiau čia. +



Freedom parkrun renginiai

DataLaikasVieta
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(ne)parktun'ai

SavaitėPradžios DataPabaigos data(ne)parktun'aiGeriausias laikas
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
+ +
+ + + + +
+ + +
+
+ + +
+ +
+
+ +
+
+
+ + +
+
+ Vietos: 1 +
+
+ Finišavę dalyviai: 274 +
+
+ Finišai: 318 +
+
+ Visų laikų renginiai: 2 +
+
+ Savanoriai: 27 +
+
+ Asmeniniai rekordai: 9 +
+
+ Vidutinis finišo laikas: 00:30:44 +
+
+ Grupės: 44 +
+
+
+ Statistika paskutinį kartą atnaujinta: 2024 m. rugsėjo 30 d. 00:40:03 +
+
+
+
+
+ + Brooks + +
+
+
+ +

© parkrun Global Limited (Company number: 09411750)

+

Be autorių teisių savininko leidimo jokia šios svetainės dalis jokiu būdu negali būti atkurta visa ar iš dalies.

+

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
+
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/2705084/all/index.html new file mode 100644 index 00000000..cb27f8f4 --- /dev/null +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/2705084/all/index.html @@ -0,0 +1,245 @@ + + + + + + + + + + + + + + + + + +rezultatai | parkrun Lithuania + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ + + + +
+ +
+
+ +
+
+
+ + +
+
+ Vietos: 1 +
+
+ Finišavę dalyviai: 274 +
+
+ Finišai: 318 +
+
+ Visų laikų renginiai: 2 +
+
+ Savanoriai: 27 +
+
+ Asmeniniai rekordai: 9 +
+
+ Vidutinis finišo laikas: 00:30:44 +
+
+ Grupės: 44 +
+
+
+ Statistika paskutinį kartą atnaujinta: 2024 m. rugsėjo 30 d. 00:40:03 +
+
+
+
+
+ + Brooks + +
+
+
+ +

© parkrun Global Limited (Company number: 09411750)

+

Be autorių teisių savininko leidimo jokia šios svetainės dalis jokiu būdu negali būti atkurta visa ar iš dalies.

+

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
+
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/2705084/index.html new file mode 100644 index 00000000..77f57977 --- /dev/null +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/2705084/index.html @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + +rezultatai | parkrun Lithuania + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ +
+
+ + + + + + Nemokamai, visiems, visuomet + + +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Savanoriavimo santrauka

VaidmuoProgos
+ Savanoris (Maršalas) + 350
+ Vedantysis Dviratininkas + 130
+ Renginio Dienos Trasos Patikra + 82
Iš viso kreditų540

+ Šioje lentelėje apibendrinamas, kiek kartų buvo atliktas kiekvienas savanorio vaidmuo.
Atkreipkite dėmesį, kad bendra suma gali skirtis nuo visų savanorių kreditų; jei tą pačią dieną atlikote kelias užduotis.
Sužinokite daugiau čia. +



+ +
+ + + + +
+ + +
+
+ + +
+ +
+
+ +
+
+
+ + +
+
+ Vietos: 1 +
+
+ Finišavę dalyviai: 274 +
+
+ Finišai: 318 +
+
+ Visų laikų renginiai: 2 +
+
+ Savanoriai: 27 +
+
+ Asmeniniai rekordai: 9 +
+
+ Vidutinis finišo laikas: 00:30:44 +
+
+ Grupės: 44 +
+
+
+ Statistika paskutinį kartą atnaujinta: 2024 m. rugsėjo 30 d. 00:40:03 +
+
+
+
+
+ + Brooks + +
+
+
+ +

© parkrun Global Limited (Company number: 09411750)

+

Be autorių teisių savininko leidimo jokia šios svetainės dalis jokiu būdu negali būti atkurta visa ar iš dalies.

+

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
+
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/482/all/index.html new file mode 100644 index 00000000..c09636f2 --- /dev/null +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/482/all/index.html @@ -0,0 +1,2055 @@ + + + + + + + + + + + + + + + + + +rezultatai | parkrun Lithuania + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ +
+
+ + + + + + Nemokamai, visiems, visuomet + + +

Danny NORMAN (A482)

+ parkrun 500 Klubo narys + + Member of the Volunteer 250 club +

+ Iš viso 867 parkrun +

+ Peržiūrėkite šio parkrun dalyvio/-ės statistikos santrauką +
+ Dabartinė amžiaus kategorija +

+ Visų renginio vietų statistikos santrauka +
GreičiausiasVidutinis
(vidurkis)
Lėčiausias
Laikas16:2521:2659:17
pasiekimų pagal amžių įvertinimas79.25%64.63%23.56%
Bendra pozicija138.841692

+ Geriausi bendri metų pasiekimai +
MetaiGeriausias laikasGeriausias vertinimas pagal amžių
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

+ Visi rezultatai +
RenginysRenginio dataRenginio numerisPozicijaLaikasPasiekimai pagal amžiųGeriausias asmeninis pasiekimas?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + Geriausias asmeninis pasiekimas + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03% +   +
Quakers Walk25/11/2023126825:0556.08% +   +
Aston Hall18/11/202352225:0156.23% +   +
Sence Valley Forest Park11/11/202352526:2853.15% +   +
Belvoir Castle04/11/2023911925:4254.73% +   +
Five Arches28/10/202365422:5861.25% +   +
Dover Waterfront21/10/202374525:2255.45% +   +
Rushcliffe14/10/20235087323:5458.86% +   +
Kingston07/10/202363033150:2927.86% +   +
Maaraue03/10/20231012522:3462.33% +   +
University of Northampton30/09/2023112223:2460.11% +   +
Clifton23/09/20231911025:1455.75% +   +
Wisbech16/09/202351523:0361.03% +   +
Holbrooks09/09/202362223:4359.31% +   +
Wyre Forest02/09/20233404825:5654.24% +   +
Hunstanton Promenade26/08/20231313523:4559.23% +   +
Riverfront19/08/20232594622:5761.29% +   +
Long Eaton12/08/202334112124:0658.37% +   +
Kingston05/08/20236216723:2160.24% +   +
Kingston29/07/20236208725:0955.93% +   +
Kingston22/07/20236199224:2457.65% +   +
Severn Valley Country15/07/20231411626:1353.66% +   +
Beacon Hill Country Park08/07/2023193725:5453.93% +   +
Thornham Walks01/07/202353826:5251.99% +   +
Kingston24/06/20236156524:0957.83% +   +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% + Geriausias asmeninis pasiekimas + +   +
Kingston22/10/20225808625:0755.61% +   +
Cannon Hill15/10/202253818325:1455.35% +   +
Sutton Park08/10/20221455524:5456.09% +   +
Aachener Weiher03/10/20221171124:5556.05% +   +
Rheinpark01/10/2022551825:3054.77% +   +
Kingston24/09/20225769324:3156.97% +   +
Kingsbury Water17/09/20223934725:0555.68% +   +
Loch Neaton10/09/20221131725:4954.10% +   +
Mole Valley03/09/202216814129:4047.08% +   +
Kingston27/08/20225729626:4652.18% +   +
Old Deer Park20/08/20225405625:3254.70% +   +
Rogiet13/08/20221611624:2757.12% +   +
Mildenhall Hub06/08/202273124:3356.89% +   +
Chilton Fields30/07/2022525428:2649.12% +   +
Kingston23/07/202256710225:5453.93% +   +
Downham Market Academy16/07/2022191324:3556.81% +   +
Perry Hall09/07/20223214924:5855.47% +   +
Rendlesham Forest02/07/2022194637:0137.42% +   +
Mote Park25/06/2022412231:2844.01% +   +
Durlston Country Park18/06/2022147939:4134.90% +   +
Tidworth11/06/2022215535:1439.31% +   +
Malmö Ribersborg06/06/202214615128:4648.15% +   +
Amager Fælled04/06/20226303724:2356.80% +   +
Northampton28/05/20224516923:5857.79% +   +
Edgbaston Reservoir21/05/2022398626:2452.46% +   +
Edenbrook Country14/05/2022414828:0149.43% +   +
Hastings High School07/05/202277827:3350.27% +   +
Church Mead30/04/2022410232:5342.12% +   +
Sandwell Valley23/04/20221485930:4345.09% +   +
Thornbury16/04/20221173428:1948.91% +   +
Sharpham Road Playing Fields09/04/2022283124:4156.11% +   +
Frogmary Green Farm02/04/202257225:5853.34% +   +
Street26/03/20221303525:5253.54% +   +
Kingston19/03/20225496825:2354.56% +   +
Marine Parade12/03/2022811129:2447.11% +   +
The Great Field05/03/20221813529:1247.43% +   +
University Parks26/02/2022332631:4243.69% +   +
Hazelwood19/02/202212612626:5951.33% +   +
Berkeley Green12/02/2022293128:3148.57% +   +
Great Salterns05/02/2022312430:2745.48% +   +
Southall29/01/202247531:3843.78% +   +
Bartley Park22/01/2022615132:3842.44% +   +
Sandringham15/01/2022166330:1845.71% +   +
Burnham and Highbridge08/01/202226910027:5149.73% +   +
Cyclopark01/01/2022597527:1750.76% +   +
Bushy Park25/12/2021857146038:3135.96% +   +
Watermead Country Park18/12/20211318235:5238.62% +   +
Longrun Meadow11/12/202135516532:0143.26% +   +
Alton Water04/12/202158335:0939.40% +   +
Bury Field27/11/202149033:0741.82% +   +
Markshall Estate20/11/2021215632:2642.70% +   +
Dallas Burston Polo Club13/11/2021514732:2642.70% +   +
Swanley06/11/2021312531:1844.25% +   +
Charlton30/10/2021513032:0543.17% +   +
Broadwater23/10/2021621335:1939.22% +   +
Oaklands16/10/20212920336:1038.29% +   +
Bramhall Park09/10/202160924735:1639.27% +   +
Henlow Bridge Lakes02/10/2021211532:3442.53% +   +
Mallards Pike25/09/2021304630:5744.75% +   +
Sutcliffe18/09/2021217230:3445.31% +   +
Thomas Mills11/09/2021466530:1945.68% +   +
St Mary’s04/09/2021447429:1447.38% +   +
Grove Fields28/08/202128528:0349.38% +   +
Storeys Field21/08/2021421128:4948.06% +   +
Horspath14/08/2021210628:1249.11% +   +
Babbs Mill07/08/2021365128:0049.46% +   +
Leicester Victoria31/07/202122511626:4551.78% +   +
Wickford Memorial24/07/202146651:1527.02% +   +
Chalkwell Beach14/03/202039624:4055.34% +   +
Itchen Valley Country07/03/202026127:3749.43% +   +
Soham Village College29/02/2020153228:0348.66% +   +
St Helens22/02/20202956824:2755.83% +   +
Bedfont Lakes15/02/20205485626:1751.93% +   +
Zalew Żyrardowski08/02/20209724:3855.41% +   +
Fulbourn Hospital01/02/202094724:5954.64% +   +
Pontefract25/01/20204528724:1056.48% +   +
Pont y Bala18/01/202041723:1858.58% +   +
Brixworth Country11/01/202076126:5350.77% +   +
Cromhall04/01/2020461624:2056.10% +   +
Milton Keynes01/01/202050918425:2253.81% +   +
Bedford01/01/202044011224:4055.34% +   +
Chipping Norton School28/12/201925126:4051.19% +   +
Bushy Park25/12/201982163024:5654.75% +   +
Sandhurst Memorial21/12/201927328:5447.23% +   +
Clevedon Salthouse Fields14/12/2019124925:1354.13% +   +
Neckarau07/12/20191073027:1150.21% +   +
Walsall Arboretum30/11/201940510625:3153.49% +   +
Seven Fields23/11/201925526:2851.57% +   +
Irchester Country16/11/201936225:1354.13% +   +
Salcey Forest09/11/201934324:5354.86% +   +
Warwick Racecourse02/11/201956024:5554.78% +   +
The Leas26/10/201952524:3755.45% +   +
King George V Playing Field19/10/201962826:0852.23% +   +
Squerryes Winery12/10/201953627:4549.19% +   +
Bushy Park05/10/201980945824:0456.72% +   +
Neckarufer, Esslingen03/10/2019274425:1254.17% +   +
Ifield Mill Pond28/09/201923824:3355.60% +   +
Stratford Park, Stroud21/09/201946527:5149.01% +   +
Feltham14/09/201929424:5654.75% +   +
Hockley Woods07/09/20192358526:1651.97% +   +
The Old Showfield31/08/201936923:3058.09% +   +
Watermeadows24/08/2019283124:5754.71% +   +
Woolacombe Dunes17/08/20193610931:2043.56% +   +
Cyclopark10/08/201943824:0156.84% +   +
Pontypool03/08/20192872323:5157.23% +   +
Dishley, Loughborough27/07/20195511424:3055.71% +   +
Bethlem Royal Hospital20/07/201983223:2258.42% +   +
Tetbury Goods Shed13/07/201993024:2555.90% +   +
Uckfield06/07/2019104324:1255.99% +   +
Springhill29/06/201954422:1860.76% +   +
Snowden Field22/06/201972624:1555.88% +   +
Kingston15/06/20194867823:3757.37% +   +
California Country08/06/2019169028:4947.02% +   +
Littlehampton Prom01/06/201984324:2255.61% +   +
Kingdom25/05/201952524:3954.97% +   +
Hanworth18/05/201934024:2655.46% +   +
Millennium Country11/05/201983923:0158.87% +   +
Lydney04/05/20191762123:1958.11% +   +
Sunny Hill27/04/201952424:3954.97% +   +
Seaford Beach20/04/201985622:2560.45% +   +
Wotton13/04/20191242124:4554.75% +   +
Mountbatten School06/04/201963424:1156.03% +   +
Sizewell30/03/2019322023:3057.66% +   +
Dunstable Downs23/03/201944324:5854.27% +   +
Highwoods16/03/201932624:4954.60% +   +
Somerdale Pavilion09/03/2019154631:1743.31% +   +
Tewkesbury02/03/20191751422:5059.34% +   +
Shepton Mallet23/02/2019931421:5062.06% +   +
Pomphrey Hill16/02/20192594123:0258.83% +   +
Cardiff09/02/201958311722:0261.50% +   +
Kingston02/02/20194684322:2960.27% +   +
Henstridge Airfield26/01/201923821:4162.49% +   +
Gloucester North19/01/20191661022:1460.94% +   +
Lowestoft12/01/20191682621:1064.02% +   +
Fire Service College05/01/201951922:1261.04% +   +
Eastville01/01/20195725325:1253.77% +   +
Ashton Court01/01/20193889522:5958.96% +   +
Severn Bridge29/12/2018183921:3262.93% +   +
Bushy Park25/12/201876719521:0264.42% +   +
East Brighton22/12/201832123:5656.62% +   +
Gloucester City15/12/2018381922:3560.00% +   +
Bedworth08/12/2018411722:1460.94% +   +
Brooklands01/12/201834223:2257.99% +   +
Jersey Farm24/11/201832723:1158.45% +   +
Coldham’s Common17/11/201885923:0458.74% +   +
Walmer and Deal Seafront10/11/20189821:3862.63% +   +
Manor Field, Whittlesey03/11/201891324:2555.49% +   +
Southwark27/10/20182594721:2163.47% +   +
Marlborough Common20/10/201832122:4859.43% +   +
Wendover Woods13/10/201852623:5156.81% +   +
Huddersfield06/10/20183796722:0261.50% +   +
Rouen29/09/201865521:4162.49% +   +
Delaware and Raritan Canal22/09/20186221:0664.22% +   +
Chipping Sodbury15/09/20182253221:2063.52% +   +
Lancing Beach Green08/09/201831421:0864.12% +   +
Swaffham01/09/2018151022:1960.72% +   +
Higginson, Marlow25/08/201822922:1760.81% +   +
Cirencester18/08/2018282422:4059.78% +   +
Littleport11/08/201885125:1653.63% +   +
Felixstowe04/08/2018171221:0764.17% +   +
Foots Cray Meadows28/07/201822323:1758.20% +   +
Dinton Pastures21/07/201821321:2363.37% +   +
Pocket14/07/201852321:3862.63% +   +
Great Dunmow07/07/201813420:2565.88% +   +
Kingston30/06/20184368724:0455.89% +   +
Boston23/06/2018140721:1863.15% +   +
Prospect16/06/201872322:4259.25% +   +
Yeovil Montacute09/06/20182157525:5152.03% +   +
Kingsway02/06/20181532021:2063.05% +   +
Dartford Heath26/05/201831722:0660.86% +   +
Hazelwood19/05/2018102222:2160.18% +   +
Catford12/05/201833322:3259.69% +   +
Witney05/05/201862022:3459.60% +   +
Mole Valley28/04/201872622:5658.65% +   +
Victoria Dock21/04/201863020:0467.03% +   +
South Woodham Ferrers14/04/20185821:1463.34% +   +
Clapham Common07/04/201834220:2266.04% +   +
Hogmoor Inclosure31/03/201842625:2652.88% +   +
Haverhill24/03/201831323:3257.15% +   +
Kingston17/03/20184211320:0766.86% +   +
Sixfields Upton10/03/20182819:5867.36% +   +
Kingston03/03/20184191722:3359.65% +   +
Great Denham24/02/20182619:2769.15% +   +
Bath Skyline17/02/20181772021:0863.64% +   +
Coventry10/02/20184032920:5164.51% +   +
Letchworth03/02/201821423:1357.93% +   +
King’s Lynn27/01/20183371520:0766.86% +   +
Melksham20/01/201861724:3154.86% +   +
Melton Mowbray13/01/20181622222:3859.43% +   +
Stratford-upon-Avon06/01/2018972521:1463.34% +   +
Kingston01/01/201841012324:3454.75% +   +
Bushy Park01/01/201871520323:0158.44% +   +
Houghton Hall30/12/201721321:4861.70% +   +
Bushy Park25/12/201771327322:3159.73% +   +
Rutland Water23/12/20171073022:4459.16% +   +
St Albans16/12/20173136223:0458.31% +   +
Evesham09/12/20171391121:3962.12% +   +
Rugby02/12/2017511822:2659.96% +   +
Southwick Country Park25/11/20173282921:4761.74% +   +
Market Harborough18/11/20171363121:1763.19% +   +
Corby11/11/2017213823:0958.10% +   +
Brueton04/11/20173825021:3362.41% +   +
Crissy Field28/10/20171441220:4065.08% +   +
Clare Castle21/10/201742723:0458.31% +   +
Castle Park14/10/201734122:3459.60% +   +
Upton House07/10/2017182722:3459.60% +   +
Kettering30/09/2017522622:5058.91% +   +
Sherwood Pines23/09/2017991821:3362.41% +   +
East Grinstead16/09/201721423:1058.06% +   +
Thetford09/09/20172461721:4561.84% +   +
Burnham-on-Crouch02/09/20177822:0161.09% +   +
Kesgrave26/08/20171574021:1863.15% +   +
Westmill19/08/201751022:5558.69% +   +
South Norwood12/08/201761221:1163.49% +   +
Heartwood Forest05/08/201722721:4162.03% +   +
Hoblingwell29/07/201732423:5256.35% +   +
Stonehouse22/07/2017521320:0966.75% +   +
Blandford15/07/2017156920:1166.64% +   +
Henley-on-Thames08/07/201721122:2559.55% +   +
Billericay01/07/201721321:2062.58% +   +
Margate24/06/2017222321:1562.82% +   +
March17/06/201772521:1163.02% +   +
Huntingdon10/06/20172152121:1063.07% +   +
Peacehaven03/06/20173721:0763.22% +   +
Daventry27/05/20171381521:1063.07% +   +
Banbury20/05/20171352321:1662.77% +   +
Great Cornard13/05/20171702020:3364.96% +   +
Harwich06/05/2017971021:2262.48% +   +
Clacton Seafront29/04/201729920:3564.86% +   +
Mersea Island22/04/2017191220:5963.62% +   +
Southsea15/04/20171863420:3165.07% +   +
Whiteley08/04/201721520:5663.77% +   +
Braunstone01/04/20173372720:4164.54% +   +
Hastings25/03/20171021920:5763.72% +   +
Bexley18/03/20172683222:3858.98% +   +
Rickmansworth11/03/201722721:3961.66% +   +
Homewood04/03/2017212425:1053.05% +   +
Linford Wood25/02/2017352221:4561.38% +   +
Canons Park18/02/2017201021:1962.63% +   +
Kingston11/02/20173633723:0557.83% +   +
Basingstoke04/02/20174665021:4661.33% +   +
Brockwell28/01/20173104821:1163.02% +   +
Roding Valley21/01/201721321:2662.29% +   +
Homewood14/01/2017143927:3448.43% +   +
Whitstable07/01/20173304423:4156.37% +   +
Kingston01/01/201735711024:0955.28% +   +
Bushy Park01/01/201766112321:3861.71% +   +
Ellenbrook Fields31/12/2016331522:0560.45% +   +
Bushy Park25/12/201665953726:1150.99% +   +
Netley Abbey24/12/20162574022:1060.23% +   +
Beckenham Place17/12/201651220:2865.23% +   +
Hadleigh10/12/201682624:2754.60% +   +
Hilly Fields03/12/20162263021:5960.73% +   +
Harcourt Hill26/11/20161111721:1362.92% +   +
Nonsuch19/11/20162725621:3461.90% +   +
Guildford12/11/20162313421:4361.47% +   +
Southampton05/11/20162288520:3564.86% +   +
Homewood29/10/201631722:2159.73% +   +
Canons Park22/10/20163720:5064.08% +   +
Lister Park, Bradford15/10/20163323621:5560.91% +   +
Hatfield Forest08/10/2016811820:3664.81% +   +
Weymouth01/10/20161621420:4564.34% +   +
South Oxhey24/09/201688621:3361.95% +   +
Rushmere17/09/2016461422:3958.94% +   +
Bedgebury Pinetum10/09/2016251022:3059.33% +   +
Marecchia03/09/201614119:5067.31% +   +
Eastleigh27/08/20163221320:4164.54% +   +
Roundshaw Downs20/08/20163822223:4956.05% +   +
Penrose13/08/2016721619:4067.88% +   +
Bicester06/08/201617420:1366.03% +   +
Bevendean Down30/07/201626923:2557.01% +   +
Chippenham23/07/20161162120:0866.31% +   +
Lymington Woodside16/07/20162721:5960.73% +   +
Stevenage09/07/20167719:3267.92% +   +
Havant02/07/20162132822:2659.14% +   +
Moors Valley25/06/201633919:4067.46% +   +
Worthing18/06/20162918:4470.82% +   +
Jersey11/06/201637619:4167.40% +   +
Les Dougnes04/06/201653219:4267.34% +   +
Wycombe Rye28/05/20161963521:1462.48% +   +
Ellenbrook Fields21/05/201612919:5866.44% +   +
Alice Holt14/05/20161742822:0160.26% +   +
Portsmouth Lakeside07/05/20162919:1269.10% +   +
Salisbury30/04/2016491119:3467.80% +   +
Harrow23/04/2016511921:4261.14% +   +
Fareham16/04/20162619:2168.56% +   +
Bedgebury Pinetum09/04/20164921:2461.99% +   +
Tooting Common02/04/2016101819:1468.98% + Geriausias asmeninis pasiekimas + +   +
Crystal Palace26/03/20162803121:5660.49% +   +
Great Lines19/03/2016127819:5166.83% +   +
Woodley12/03/20161831019:3967.51% +   +
Sittingbourne05/03/20162820:5663.38% +   +
Crane Park27/02/20161991819:3367.86% +   +
Bevendean Down20/02/201631023:2156.82% +   +
Kingston13/02/20163102624:1154.86% +   +
Tooting Common06/02/201622319:2168.56% +   +
Ashford30/01/2016117819:0569.52% +   +
Hockley Woods23/01/201650621:0962.73% +   +
Bushy Park16/01/20166094519:4867.00% +   +
Kingston09/01/20163051721:2761.85% +   +
Tilgate02/01/20161892721:4161.18% +   +
Kingston01/01/20163033821:0862.78% +   +
Bushy Park01/01/20166068221:0363.02% +   +
Luton Wardown26/12/2015351019:3667.69% +   +
Bushy Park25/12/201560410220:1365.62% +   +
Lee-on-the-Solent19/12/201525719:4067.46% +   +
Dulwich12/12/20151931318:5470.19% +   +
Hackney Marshes05/12/20152821020:4463.99% +   +
Thurrock28/11/20158620:4164.14% +   +
Canterbury21/11/201587621:5660.49% +   +
Gladstone14/11/2015180920:1965.30% +   +
Hove Promenade07/11/201516719:2368.44% + Geriausias asmeninis pasiekimas + +   +
Kingston31/10/20152944522:5957.72% +   +
Shorne Woods24/10/20151371622:1859.49% +   +
Malling10/10/2015214547:2527.98% +   +
Bedfont Lakes03/10/2015327419:4167.40% +   +
Gunnersbury26/09/20152011719:1668.86% +   +
Crane Park19/09/2015174719:5666.56% +   +
Nonsuch12/09/20152104520:4663.88% +   +
Hastings05/09/2015211120:4164.14% +   +
Bushy Park29/08/20155876920:0965.84% +   +
Hove Promenade22/08/201561319:4067.46% +   +
Brockwell15/08/201523915225:5551.19% +   +
Orpington08/08/20151521221:2561.95% +   +
Harlow01/08/2015401523:0057.68% +   +
Kingston25/07/2015280619:2768.21% +   +
Great Notley18/07/201556620:1665.46% +   +
Bexley11/07/20151781521:2461.99% +   +
Aldenham04/07/201531421:3760.99% +   +
Bushy Park27/06/201557813221:1661.99% +   +
Barclay20/06/20153623:1356.78% +   +
Didcot13/06/2015121121:2861.41% +   +
Uditore06/06/20153320:2864.41% +   +
Gadebridge30/05/201551422:2258.94% +   +
Folkestone23/05/2015402521:4860.47% +   +
Harrow16/05/20152520:2364.68% +   +
Raphael09/05/20152319:3567.32% +   +
Banstead Woods02/05/20154158324:0854.63% +   +
Beckton25/04/2015152319:3067.61% +   +
Lullingstone18/04/20152721:2161.75% +   +
Bracknell11/04/20152820:0465.70% +   +
Kingston04/04/2015264318:5569.69% +   +
Frimley Lodge28/03/20152712619:1068.78% +   +
Maidenhead21/03/20151718:4970.06% +   +
Chichester14/03/201534319:0569.08% +   +
Cassiobury07/03/201521120:1465.16% +   +
Wimpole Estate28/02/20151092122:1459.30% +   +
Hilly Fields21/02/20151331921:5860.02% +   +
Bushy Park14/02/20155592018:4070.63% +   +
South Oxhey07/02/20152119:1368.60% +   +
Guildford24/01/2015144418:5669.63% +   +
Cranleigh17/01/201517620:4963.33% + Geriausias asmeninis pasiekimas + +   +
Bedfont Lakes10/01/20152895025:4351.26% +   +
Panshanger03/01/201515720:1465.16% +   +
Bushy Park01/01/20155521719:0768.96% +   +
Kingston01/01/20152504321:2961.37% +   +
Buckingham27/12/201434218:3770.81% +   +
Bushy Park25/12/20145503218:2171.84% +   +
Kingston20/12/2014248618:5969.45% +   +
Brentwood13/12/20142722:2858.68% +   +
Crane Park06/12/2014131919:4067.03% +   +
Tilgate29/11/20141292021:0162.73% +   +
Richmond Park22/11/20143714621:3760.99% +   +
Colwick15/11/2014178819:4666.69% +   +
Tring08/11/201421823:3855.78% +   +
Cranleigh01/11/201452026:1650.19% +   +
Kingston18/10/2014239318:3770.81% +   +
Northala Fields11/10/201417318:1971.97% +   +
Bushy Park04/10/20145384418:1572.24% +   +
Heaton Park27/09/2014246318:0872.70% +   +
Bedfont Lakes20/09/2014273118:2171.84% +   +
Horsham13/09/20142518:1672.17% +   +
Arrow Valley06/09/2014112318:0572.90% +   +
Nonsuch30/08/2014155517:5673.51% +   +
Riddlesdown23/08/2014172218:0073.24% +   +
Woking16/08/20141818:1971.97% +   +
Bognor Regis09/08/201411218:1272.44% +   +
Dartford02/08/20142117:5973.31% +   +
Springburn26/07/201412318:0572.90% +   +
Fountains Abbey19/07/201420118:0373.04% +   +
Peckham Rye12/07/20144117:4973.99% +   +
Northala Fields05/07/20143218:0672.47% +   +
Newbury28/06/2014130418:4270.14% +   +
Fulham Palace21/06/201436618:0372.67% +   +
Bushy Park07/06/20145211418:2371.35% +   +
Cannon Hill31/05/20141951318:2671.16% +   +
Southwark24/05/201439418:2271.42% +   +
Upton Court17/05/201475318:2671.16% +   +
Rushmoor03/05/20141918:2970.96% +   +
Royal Tunbridge Wells26/04/20141919:2367.67% +   +
Abingdon19/04/2014141518:0372.67% +   +
Burgess12/04/201481317:3074.95% +   +
Basildon05/04/20141518:1372.00% +   +
Osterley29/03/201431118:0072.87% +   +
Reigate Priory22/03/20141619:0668.67% +   +
Kingston15/03/2014208117:2475.38% +   +
Pegwell Bay08/03/201441217:4074.25% +   +
Leamington01/03/2014151218:5269.52% +   +
Barking22/02/201484317:5773.07% +   +
Bushy Park15/02/2014505818:0272.74% +   +
Brandon Country Park08/02/201448118:3070.90% +   +
Pontypridd01/02/201417217:5473.28% +   +
Grovelands25/01/2014177218:0172.80% +   +
Finsbury Park18/01/2014214218:2271.42% +   +
Fulham Palace11/01/201413318:0172.80% +   +
Dulwich04/01/201492318:0372.67% +   +
Kingston01/01/2014197719:0568.73% +   +
Bushy Park01/01/2014498918:4569.96% +   +
Lydiard28/12/2013186818:2571.22% +   +
Bushy Park25/12/20134961518:1571.87% +   +
Basingstoke21/12/2013295518:2071.55% +   +
Crane Park14/12/201378117:5273.41% +   +
Harrogate07/12/2013100318:1172.14% +   +
Maldon Prom30/11/201314118:0472.60% +   +
Ashford23/11/20135217:5773.07% +   +
Wimbledon Common16/11/2013358618:1671.81% +   +
Tonbridge09/11/20131418:4070.27% +   +
Aylesbury02/11/20131117:5173.48% +   +
Wormwood Scrubs26/10/2013124118:2471.29% +   +
Fulham Palace19/10/20131417:4773.76% +   +
Southsea12/10/20132317:5573.21% +   +
Bushy Park05/10/20134841417:5173.48% +   +
Great Lines28/09/20131518:2571.22% +   +
Bedfont Lakes21/09/2013224317:5873.01% +   +
Margate14/09/201321118:1671.81% +   +
Southwark07/09/20131517:2775.17% +   +
Osterley31/08/20131617:5773.07% +   +
Bournemouth24/08/20131417:4374.04% +   +
Chelmsford Central17/08/201330417:2875.10% +   +
Newport10/08/2013124117:2975.02% +   +
Ferry Meadows03/08/20131517:2775.17% +   +
Mile End27/07/201378417:3374.74% +   +
Clair20/07/20131318:3670.52% +   +
Wimbledon Common13/07/2013340617:5673.14% +   +
Whitstable06/07/2013140318:1271.70% +   +
Bury St Edmunds29/06/20131318:1771.38% +   +
Colchester Castle22/06/201312418:0472.23% +   +
Shorne Woods15/06/201312118:1471.57% +   +
Maidstone River Park08/06/20139318:0072.50% +   +
Conkers01/06/2013113217:4673.45% +   +
Brockenhurst25/05/20131318:2370.99% +   +
Queen Elizabeth18/05/20131219:0868.21% +   +
Cannon Hill11/05/20131401118:0472.23% +   +
Preston Park04/05/20133217:4073.87% +   +
Winchester27/04/20131518:2870.67% +   +
Medina I.O.W.30/03/201397117:2075.29% +   +
Pymmes23/03/2013101117:0676.32% + Geriausias asmeninis pasiekimas + +   +
Mulbarton16/03/20131219:5565.52% +   +
Oak Hill09/03/201379117:1375.80% + Geriausias asmeninis pasiekimas + +   +
Lloyd02/03/2013126118:0172.43% + Geriausias asmeninis pasiekimas + +   +
Gunnersbury23/02/201369116:5177.45% + Geriausias asmeninis pasiekimas + +   +
Cheltenham16/02/20131217:2475.00% +   +
Bushy Park09/02/2013450417:0076.76% +   +
Chelmsford Central02/02/20133217:2475.00% +   +
Walthamstow26/01/20131117:4873.31% +   +
Malahide19/01/201311116:5477.22% +   +
Harrow Lodge12/01/20131118:4869.41% +   +
Kingston05/01/2013145116:5177.45% + Geriausias asmeninis pasiekimas + +   +
Kingston01/01/2013144317:2175.22% +   +
Bushy Park01/01/2013444617:1975.36% +   +
Eastbourne29/12/201250217:2475.00% +   +
Bushy Park25/12/2012442717:3074.57% +   +
Milton Country22/12/2012149317:4373.66% +   +
Newbury15/12/201246117:2075.29% +   +
Southend08/12/20129116:2879.25% +   +
Graves01/12/201233118:1871.31% +   +
Upton Court24/11/20121217:2475.00% +   +
Alice Holt17/11/20121117:5972.57% +   +
Ipswich10/11/20129117:3474.29% +   +
Little Stoke03/11/20121117:0376.54% +   +
Pollok27/10/2012195117:0076.76% +   +
Bryn Bach20/10/201214116:5077.52% +   +
Woodley13/10/20121117:0276.61% +   +
Bushy Park06/10/2012430616:5577.14% +   +
Mansfield29/09/20121117:0976.09% +   +
Burgess22/09/20121216:4577.91% +   +
Orpington15/09/20121217:2774.79% +   +
Hilly Fields08/09/20121117:5073.18% +   +
Oxford01/09/201244117:1875.43% +   +
Poole25/08/201274416:5776.99% +   +
Fritton Lake18/08/201215118:2670.80% +   +
Netley Abbey11/08/201222117:2175.22% +   +
Wycombe Rye04/08/20121217:1775.51% +   +
Barking28/07/20121216:4577.91% +   +
Bushy Park21/07/2012420516:4677.83% +   +
Bedford14/07/201260116:5577.14% +   +
Southampton07/07/20121316:4477.69% +   +
Gladstone30/06/20121117:0975.80% +   +
Tilgate23/06/20123117:1075.73% +   +
Havant16/06/20121117:4673.17% +   +
Crane Park09/06/20121116:4877.38% +   +
Nonsuch05/06/201240216:5277.08% + Geriausias asmeninis pasiekimas + +   +
Riddlesdown04/06/201252217:0176.40% + Geriausias asmeninis pasiekimas + +   +
Beckton02/06/20121317:2474.71% +   +
Marple26/05/20121117:1575.36% +   +
Andover19/05/201245117:3374.07% +   +
Gunpowder12/05/201229217:3474.00% +   +
Frimley Lodge07/05/2012118417:3374.07% +   +
Northampton05/05/20121116:5676.77% +   +
Greenwich28/04/2012111218:0771.76% +   +
Bexley21/04/201212117:4873.03% +   +
Dulwich14/04/20121417:1175.65% +   +
Grovelands07/04/201284317:2174.93% +   +
Hackney Marshes31/03/201294216:4677.53% +   +
Crystal Palace24/03/201286117:2474.71% +   +
Guildford17/03/20122117:1775.22% +   +
Wanstead Flats03/03/201242317:1375.51% +   +
Hampstead Heath25/02/201241117:4573.24% +   +
Mile End18/02/20123116:5377.00% +   +
Bushy Park11/02/2012397216:4977.30% +   +
Bushy Park04/02/2012396216:4477.69% +   +
Valentines28/01/201250116:4977.30% +   +
York21/01/20122217:1275.58% +   +
St Albans14/01/20121116:3778.23% +   +
Brockwell07/01/201254116:5676.77% +   +
Riddlesdown01/01/201229418:1871.04% +   +
Nonsuch01/01/201217117:3573.93% +   +
Bushy Park01/01/2012391317:2674.57% +   +
Roundshaw Downs31/12/2011131318:1471.30% +   +
Black Park26/12/2011130317:2574.64% + Geriausias asmeninis pasiekimas + +   +
Bushy Park25/12/20113891017:1075.73% +   +
Nonsuch24/12/201115117:1075.73% + Geriausias asmeninis pasiekimas + +   +
Bromley17/12/2011119317:1875.14% +   +
Bushy Park10/12/20113862017:2075.00% +   +
Ally Pally03/12/20111118:0971.63% +   +
Wormwood Scrubs26/11/201124218:0072.22% +   +
Highbury Fields19/11/20112117:2574.64% +   +
Milton Keynes12/11/201196317:2674.57% +   +
Gunnersbury05/11/20112217:1275.58% +   +
Banstead Woods22/10/2011228117:3174.22% +   +
Frimley Lodge15/10/201187117:1175.65% +   +
Pymmes08/10/201127117:0775.95% +   +
Bushy Park01/10/2011376517:1675.29% +   +
Lloyd24/09/201147218:1970.97% +   +
Nonsuch17/09/20111317:1475.44% +   +
Bushy Park10/09/2011373517:4473.31% +   +
Old Deer Park03/09/201147117:4173.52% + Geriausias asmeninis pasiekimas + +   +
Oak Hill27/08/20111417:4773.10% +   +
Bushy Park20/08/2011370917:2174.93% +   +
Richmond Park06/08/2011197418:0072.22% +   +
Bushy Park30/07/2011367417:2474.71% +   +
Bushy Park23/07/20113661017:3374.07% +   +
Bushy Park16/07/2011365617:4273.45% +   +
Bushy Park09/07/20113641017:4772.91% +   +
Bushy Park02/07/2011363717:4173.33% +   +
Bushy Park25/06/2011362917:5972.10% +   +
Bushy Park18/06/2011361717:4273.26% +   +
Bushy Park11/06/2011360717:2974.17% +   +
Bushy Park04/06/2011359617:3373.88% +   +
Bushy Park28/05/2011358617:3074.10% +   +
Bushy Park21/05/2011357517:4073.40% +   +
Bushy Park14/05/20113561017:4273.26% +   +
Bushy Park07/05/2011355517:2174.74% +   +
Bushy Park30/04/2011354417:1874.95% +   +
Black Park29/04/201194117:4173.33% + Geriausias asmeninis pasiekimas + +   +
Bushy Park23/04/2011353717:3973.47% +   +
Bushy Park09/04/2011351716:4377.57% +   +
Bushy Park02/04/20113501616:4777.26% +   +
Bushy Park26/03/2011349817:3373.88% +   +
Bushy Park19/03/2011348617:1974.88% +   +
Bushy Park12/03/2011347716:5776.50% +   +
Bushy Park05/03/2011346617:1075.53% +   +
Bushy Park26/02/2011345617:4373.19% +   +
Bushy Park19/02/2011344517:5272.57% +   +
Bushy Park12/02/2011343316:5876.42% +   +
Bushy Park05/02/2011342717:1775.02% +   +
Bushy Park29/01/2011341516:5976.35% +   +
Bushy Park22/01/2011340517:3473.81% +   +
Bushy Park15/01/2011339517:5172.64% +   +
Bushy Park08/01/2011338418:0371.84% +   +
Richmond Park01/01/2011166518:0571.71% +   +
Bushy Park01/01/2011337617:4473.12% +   +
Black Park26/12/201076318:3469.84% +   +
Bushy Park25/12/20103361318:2370.53% +   +
Bushy Park18/12/20103351417:5472.44% +   +
Bushy Park11/12/2010334917:3673.67% +   +
Bushy Park04/12/2010333418:5068.85% +   +
Bushy Park27/11/2010332717:4972.78% +   +
Bushy Park13/11/20103301618:2870.22% +   +
Bushy Park06/11/20103292118:2670.34% +   +
Bushy Park30/10/20103281618:1670.99% +   +
Bushy Park23/10/20103271118:3269.96% +   +
Bushy Park16/10/20103261118:0771.57% +   +
Bushy Park09/10/20103251118:3269.96% +   +
Bushy Park02/10/20103242118:4469.22% +   +
Eastleigh25/09/201021719:1467.42% +   +
Old Deer Park18/09/20105619:2766.67% +   +
Kingston17/04/20105117:0975.41% + Geriausias asmeninis pasiekimas + +   +
Kingston10/04/20104217:1075.34% +   +
Bushy Park27/03/2010297717:0475.78% +   +
Bushy Park13/03/2010295416:3777.83% +   +
Bushy Park27/02/2010293517:0076.08% +   +
Bushy Park20/02/2010292316:4976.91% +   +
Bushy Park13/02/2010291216:3877.76% +   +
Bushy Park30/01/2010289216:3378.15% +   +
Bushy Park16/01/2010287217:2074.62% +   +
Bushy Park09/01/2010286217:5372.32% +   +
Bushy Park02/01/20102851317:0875.49% +   +
Bushy Park01/01/2010284517:4472.93% +   +
Bushy Park26/12/2009283417:4472.93% +   +
Bushy Park25/12/2009282317:2774.12% +   +
Bushy Park12/12/2009280617:3273.76% +   +
Bushy Park05/12/2009279517:5472.25% +   +
Bushy Park28/11/2009278417:3373.69% +   +
Bushy Park21/11/2009277517:2674.19% +   +
Brighton & Hove14/11/2009109117:1175.27% +   +
Bushy Park07/11/2009275417:1574.98% +   +
Finsbury Park31/10/20091217:1574.98% +   +
Edinburgh24/10/20092217:0076.08% +   +
Bedfont Lakes17/10/200924117:0475.78% + Geriausias asmeninis pasiekimas + +   +
Richmond Park10/10/2009104117:1974.69% +   +
Bushy Park03/10/2009270817:0875.49% +   +
Bushy Park26/09/2009269416:5176.76% +   +
Bushy Park19/09/2009268517:0076.08% +   +
Reading12/09/20091217:1874.76% +   +
Bushy Park05/09/2009266417:1974.69% +   +
Bushy Park29/08/2009265217:1375.12% +   +
Wimbledon Common22/08/2009138517:2774.12% +   +
Bushy Park15/08/20092631017:3973.28% +   +
Bedfont Lakes01/08/200913318:0171.79% +   +
Bushy Park25/07/2009260617:5072.52% +   +
Bushy Park18/07/2009259817:2074.62% +   +
Bushy Park11/07/2009258917:3373.69% +   +
Bushy Park04/07/20092571417:5072.43% +   +
Basingstoke27/06/200951517:4872.57% +   +
Gorleston Cliffs06/06/20097217:4372.91% +   +
Bushy Park23/05/20092511418:2270.33% +   +
Bushy Park16/05/2009250618:0271.63% +   +
Bedfont Lakes09/05/20091218:0171.69% +   +
Bushy Park18/04/2009246717:0575.61% +   +
Bushy Park11/04/2009245617:1375.02% +   +
Bushy Park04/04/2009244417:0675.54% +   +
Richmond Park28/03/200976517:1375.02% + Geriausias asmeninis pasiekimas + +   +
Bushy Park21/03/2009242616:2578.68% + Geriausias asmeninis pasiekimas + +   +
Bushy Park14/03/2009241416:5276.58% +   +
Bushy Park07/03/2009240516:5476.43% +   +
Bushy Park28/02/20092391117:3773.32% +   +
Bushy Park21/02/2009238617:2074.52% +   +
Bushy Park14/02/2009237317:2374.30% +   +
Bushy Park07/02/2009236517:3173.74% +   +
Bushy Park31/01/2009235517:1175.17% +   +
Bushy Park24/01/2009234517:2774.02% +   +
Bushy Park17/01/2009233517:3673.39% +   +
Bushy Park10/01/2009232217:2774.02% +   +
Bushy Park03/01/20092311417:0875.39% +   +
Bushy Park01/01/2009230117:0275.83% +   +
Bushy Park27/12/2008229517:3273.67% +   +
Bushy Park25/12/2008228317:1674.81% +   +
Bushy Park20/12/2008227617:4572.77% +   +
Bushy Park22/11/2008223717:3073.81% +   +
Brighton & Hove15/11/200856117:2374.30% +   +
Richmond Park11/10/200852217:2474.23% + Geriausias asmeninis pasiekimas + +   +
Bushy Park04/10/2008216717:3473.53% +   +
Bushy Park27/09/2008215116:5776.20% +   +
Bushy Park06/09/2008212617:2873.95% +   +
Bushy Park30/08/2008211517:0375.76% +   +
Bushy Park23/08/2008210716:4876.88% +   +
Bushy Park16/08/2008209617:2374.30% +   +
Bushy Park09/08/2008208517:1774.73% +   +
Bushy Park02/08/20082071418:1071.10% +   +
Bushy Park26/07/20082061217:5871.89% +   +
Bushy Park19/07/2008205617:1275.10% +   +
Bushy Park12/07/2008204817:1774.73% +   +
Bushy Park05/07/2008203617:0675.44% +   +
Bushy Park21/06/2008201617:2773.93% +   +
Bushy Park07/06/2008199517:0875.29% +   +
Bushy Park31/05/2008198617:2873.85% +   +
Bushy Park24/05/20081971117:2374.21% +   +
Bushy Park17/05/2008196917:2574.07% +   +
Bushy Park19/04/2008192917:4872.47% +   +
Bushy Park22/03/2008188517:2274.28% +   +
Bushy Park15/03/2008187216:4477.09% +   +
Brighton & Hove08/03/200819216:2778.42% +   +
Bushy Park01/03/2008185317:0875.29% +   +
Bushy Park23/02/2008184416:5576.26% +   +
Bushy Park16/02/2008183516:2978.26% + Geriausias asmeninis pasiekimas + +   +
Bushy Park09/02/2008182116:3278.02% + Geriausias asmeninis pasiekimas + +   +
Bushy Park02/02/2008181216:4477.09% +   +
Bushy Park26/01/2008180316:5576.26% +   +
Bushy Park19/01/2008179617:2274.28% +   +
Bushy Park12/01/2008178117:0475.59% +   +
Bushy Park05/01/2008177718:0071.67% +   +
Bushy Park01/01/2008176317:0875.29% +   +
Bushy Park29/12/2007175617:3873.16% +   +
Bushy Park25/12/2007174317:1874.57% +   +
Bushy Park22/12/2007173317:2174.35% +   +
Bushy Park15/12/2007172917:2274.28% +   +
Bushy Park08/12/2007171417:2174.35% +   +
Woodhouse Moor01/12/20079117:2274.21% +   +
Bushy Park24/11/2007169717:4372.81% +   +
Bushy Park17/11/20071681017:5272.20% +   +
Bushy Park10/11/2007167517:2873.85% +   +
Bushy Park03/11/20071661017:3773.23% +   +
Richmond Park27/10/20072317:5771.87% +   +
Bushy Park20/10/20071641017:5771.87% +   +
Bushy Park13/10/2007163517:5272.13% +   +
Bushy Park29/09/2007161517:4872.47% +   +
Bushy Park22/09/2007160617:0575.51% +   +
Bushy Park15/09/2007159416:5776.11% +   +
Bushy Park08/09/2007158517:0775.37% +   +
Bushy Park01/09/2007157416:3777.56% + Geriausias asmeninis pasiekimas + +   +
Bushy Park25/08/2007156216:4077.40% +   +
Bushy Park11/08/20071541417:5971.73% +   +
Bushy Park04/08/2007153416:3877.48% +   +
Bushy Park28/07/2007152316:5975.96% +   +
Bushy Park21/07/2007151416:5576.26% +   +
Bushy Park14/07/2007150618:0771.21% +   +
Bushy Park07/07/2007149717:0475.59% +   +
Bushy Park30/06/2007148117:1075.15% +   +
Bushy Park23/06/2007147717:4073.02% +   +
Bushy Park16/06/2007146417:3573.36% +   +
Bushy Park02/06/2007144717:3773.23% +   +
Bushy Park26/05/20071431117:2474.14% +   +
Bushy Park19/05/20071421117:5572.00% +   +
Bushy Park12/05/20071411317:4972.40% +   +
Bushy Park05/05/20071401117:4972.40% +   +
Bushy Park28/04/2007139416:5376.41% +   +
Bushy Park21/04/2007138716:4377.17% +   +
Bushy Park14/04/2007137716:4776.86% +   +
Bushy Park07/04/2007136616:3877.56% + Geriausias asmeninis pasiekimas + +   +
Bushy Park31/03/2007135317:0575.51% + Geriausias asmeninis pasiekimas + +   +
Bushy Park24/03/2007134617:3473.43% +   +
Bushy Park17/03/2007133817:3773.23% +   +
Bushy Park10/03/2007132517:4172.95% +   +
Bushy Park03/03/20071311018:1670.62% +   +
Bushy Park24/02/20071301218:2270.24% +   +
Bushy Park10/02/2007128918:1071.01% +   +
Bushy Park03/02/20071271417:5272.20% +   +
Bushy Park27/01/2007126817:5472.07% +   +
Bushy Park13/01/20071241118:4968.56% +   +
Bushy Park06/01/20071231818:5768.07% +   +
Bushy Park25/12/2006120717:4972.40% +   +
Bushy Park23/12/20061192017:5472.07% +   +
Bushy Park16/12/2006118917:5272.20% +   +
Bushy Park09/12/20061171017:5771.87% +   +
Bushy Park02/12/2006116818:0471.40% +   +
Bushy Park25/11/2006115418:2070.36% +   +
Bushy Park28/10/2006111617:2474.14% + Geriausias asmeninis pasiekimas + +   +
Bushy Park07/10/2006108817:2574.07% + Geriausias asmeninis pasiekimas + +   +
Bushy Park05/08/2006991017:2873.85% + Geriausias asmeninis pasiekimas + +   +
Bushy Park22/07/200697617:3373.50% + Geriausias asmeninis pasiekimas + +   +
Bushy Park08/07/2006951418:1270.88% +   +
Bushy Park01/07/200694418:0571.34% +   +
Bushy Park24/06/200693817:5871.80% +   +
Bushy Park17/06/2006921417:5771.87% +   +
Bushy Park03/06/2006901518:2070.36% +   +
Bushy Park27/05/2006891718:3469.48% +   +
Bushy Park18/02/200675918:0771.21% +   +
Bushy Park28/01/2006721217:5572.00% +   +
Bushy Park21/01/200671917:3973.09% + Geriausias asmeninis pasiekimas + +   +
Bushy Park07/01/200669817:5072.34% + Geriausias asmeninis pasiekimas + +   +
Bushy Park24/12/2005651318:1170.94% +   +
Bushy Park17/12/2005641418:4768.68% +   +
Bushy Park26/11/2005611119:1467.07% +   +
Bushy Park01/10/2005532318:2370.17% +   +
Bushy Park10/09/200550919:2466.49% +   +
Bushy Park03/09/200549418:0871.14% + Geriausias asmeninis pasiekimas + +   +
Bushy Park27/08/200548718:1170.94% +   +
Bushy Park20/08/200547418:0971.07% +   +

+ +
+ + + + +
+ + +
+
+ + +
+ +
+
+ +
+
+
+ + +
+
+ Vietos: 1 +
+
+ Finišavę dalyviai: 274 +
+
+ Finišai: 318 +
+
+ Visų laikų renginiai: 2 +
+
+ Savanoriai: 27 +
+
+ Asmeniniai rekordai: 9 +
+
+ Vidutinis finišo laikas: 00:30:44 +
+
+ Grupės: 44 +
+
+
+ Statistika paskutinį kartą atnaujinta: 2024 m. rugsėjo 30 d. 00:40:03 +
+
+
+
+
+ + Brooks + +
+
+
+ +

© parkrun Global Limited (Company number: 09411750)

+

Be autorių teisių savininko leidimo jokia šios svetainės dalis jokiu būdu negali būti atkurta visa ar iš dalies.

+

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
+
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/482/index.html new file mode 100644 index 00000000..3eb3332e --- /dev/null +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/482/index.html @@ -0,0 +1,1239 @@ + + + + + + + + + + + + + + + + + +rezultatai | parkrun Lithuania + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ +
+
+ + + + + + Nemokamai, visiems, visuomet + + +

Danny NORMAN (A482)

+ parkrun 500 Klubo narys + + Member of the Volunteer 250 club +

Iš viso 867 parkrun

+ Peržiūrėkite šio parkrun dalyvio/-ės visų parkrun renginių statistiką +
+ Dabartinė amžiaus kategorija +

Naujausi parkrun bėgimai

RenginysRenginio dataPozicija pagal lytįBendra pozicijaLaikasPasiekimai pagal amžių
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Renginių santraukos

Renginysparkrun renginiaiGeriausia pozicija pagal lytįGeriausia pozicija apskritaiGeriausias laikas  
Bushy parkrun2341116:25 + Visi +
Kingston parkrun471116:51 + Visi +
Bedfont Lakes parkrun81117:04 + Visi +
Nonsuch parkrun71116:52 + Visi +
Richmond parkrun71117:13 + Visi +
Crane Park parkrun61116:48 + Visi +
Riddlesdown parkrun42217:01 + Visi +
Bexley parkrun31117:48 + Visi +
Tilgate parkrun31117:10 + Visi +
Frimley Lodge parkrun31117:11 + Visi +
Hilly Fields parkrun31117:50 + Visi +
Old Deer Park parkrun31117:41 + Visi +
Guildford parkrun31117:17 + Visi +
Homewood parkrun3151722:21 + Visi +
Brockwell parkrun, Herne Hill31116:56 + Visi +
Southwark parkrun34417:27 + Visi +
Fulham Palace parkrun33317:47 + Visi +
Cannon Hill parkrun, Birmingham3111118:04 + Visi +
Gunnersbury parkrun31116:51 + Visi +
Wimbledon Common parkrun35517:27 + Visi +
Brighton & Hove parkrun31116:27 + Visi +
Basingstoke parkrun35517:48 + Visi +
Black Park parkrun31117:25 + Visi +
Dulwich parkrun33317:11 + Visi +
Bedgebury Pinetum parkrun28921:24 + Visi +
Harrow parkrun25520:23 + Visi +
Netley Abbey parkrun21117:21 + Visi +
Ellenbrook Fields parkrun2141519:58 + Visi +
Worthing parkrun28918:44 + Visi +
Grovelands parkrun, Enfield22217:21 + Visi +
Beckton parkrun23317:24 + Visi +
Gladstone parkrun21117:09 + Visi +
Hackney Marshes parkrun22216:46 + Visi +
Burgess parkrun22216:45 + Visi +
Orpington parkrun22217:27 + Visi +
Barking parkrun22216:45 + Visi +
Southampton parkrun23316:44 + Visi +
Alice Holt parkrun21117:59 + Visi +
Woodley parkrun21117:02 + Visi +
Upton Court parkrun22217:24 + Visi +
Chelmsford Central parkrun22217:24 + Visi +
Mole Valley parkrun2262622:56 + Visi +
Durlston Country Park parkrun2355032:45 + Visi +
Hazelwood parkrun2182222:21 + Visi +
Southsea parkrun23317:55 + Visi +
St Albans parkrun21116:37 + Visi +
Havant parkrun21117:46 + Visi +
Ashford parkrun22217:57 + Visi +
Bedford parkrun21116:55 + Visi +
Margate parkrun21118:16 + Visi +
Milton Keynes parkrun23317:26 + Visi +
Preston Park parkrun, Brighton22217:40 + Visi +
Shorne Woods parkrun21118:14 + Visi +
Canons Park parkrun27720:50 + Visi +
Osterley parkrun21117:57 + Visi +
Eastleigh parkrun27719:14 + Visi +
Brooklands parkrun2394223:22 + Visi +
Great Lines parkrun, Medway25518:25 + Visi +
Malling Rec parkrun2738526:59 + Visi +
Crystal Palace parkrun21117:24 + Visi +
Northala Fields parkrun22218:06 + Visi +
Northampton parkrun21116:56 + Visi +
Oak Hill parkrun21117:13 + Visi +
Lloyd parkrun, Croydon21118:01 + Visi +
Newbury parkrun21117:20 + Visi +
Cranleigh parkrun26620:49 + Visi +
Littlehampton Prom parkrun2384324:22 + Visi +
Whitstable parkrun23318:12 + Visi +
Bethlem Royal Hospital parkrun2263223:22 + Visi +
Cyclopark parkrun2353824:01 + Visi +
Hockley Woods parkrun26621:09 + Visi +
South Oxhey parkrun21119:13 + Visi +
Pymmes parkrun21117:06 + Visi +
Hastings parkrun291120:41 + Visi +
Wycombe Rye parkrun22217:17 + Visi +
Hove Promenade parkrun27719:23 + Visi +
Banstead Woods parkrun21117:31 + Visi +
Wormwood Scrubs parkrun21118:00 + Visi +
Roundshaw Downs parkrun23318:14 + Visi +
Mile End parkrun21116:53 + Visi +
Bevendean Down parkrun28923:21 + Visi +
Finsbury parkrun22217:15 + Visi +
Tooting Common parkrun2181819:14 + Visi +
Bromley parkrun13317:18 + Visi +
Houghton Hall parkrun1131321:48 + Visi +
Sittingbourne parkrun18820:56 + Visi +
Sharpham Road Playing Fields parkrun1253124:41 + Visi +
Gadebridge parkrun1141422:22 + Visi +
Chilton Fields parkrun1405428:26 + Visi +
Storeys Field parkrun115121128:49 + Visi +
Hadleigh parkrun, Essex1252624:27 + Visi +
Marple parkrun11117:15 + Visi +
Portsmouth Lakeside parkrun19919:12 + Visi +
Grove Fields parkrun1578528:03 + Visi +
Banbury parkrun1222321:16 + Visi +
Graves parkrun11118:18 + Visi +
Watermead Country Park parkrun110818235:52 + Visi +
Eastbourne parkrun12217:24 + Visi +
Malahide parkrun11116:54 + Visi +
Fareham parkrun16619:21 + Visi +
Sutcliffe parkrun113117230:34 + Visi +
Fritton Lake parkrun11118:26 + Visi +
Bicester parkrun14420:13 + Visi +
Sandringham parkrun1466330:18 + Visi +
Luton Wardown parkrun191019:36 + Visi +
Cwmbran parkrun1171723:29 + Visi +
Broadwater parkrun110321335:19 + Visi +
Basildon parkrun15518:13 + Visi +
Marecchia parkrun11119:50 + Visi +
Harleston Magpies parkrun1293525:12 + Visi +
Kingsway parkrun, Gloucester1192021:20 + Visi +
Bryn Bach parkrun11116:50 + Visi +
Mersea Island parkrun1121220:59 + Visi +
Charlton parkrun18213032:05 + Visi +
parkrun de Rouen15521:41 + Visi +
Dallas Burston Polo Club parkrun19614732:26 + Visi +
Ashton Court parkrun1859522:59 + Visi +
Tøyen parkrun1668526:32 + Visi +
The Great Field parkrun19313529:12 + Visi +
Castle Park parkrun1394122:34 + Visi +
Swanley parkrun19712531:18 + Visi +
Greenwich parkrun12218:07 + Visi +
Neckarau parkrun1243027:11 + Visi +
Bury Field parkrun1669033:07 + Visi +
Clifton parkrun1101025:14 + Visi +
Alton Water parkrun1538335:09 + Visi +
Colwick parkrun18819:46 + Visi +
Melksham parkrun1171724:31 + Visi +
Markshall Estate parkrun110315632:26 + Visi +
Rogiet parkrun1151624:27 + Visi +
Bartley Park parkrun18415132:38 + Visi +
Lydiard parkrun18818:25 + Visi +
Little Stoke parkrun11117:03 + Visi +
Letchworth parkrun1141423:13 + Visi +
Belvoir Castle parkrun1131925:42 + Visi +
Andover parkrun11117:33 + Visi +
Rushcliffe parkrun1617323:54 + Visi +
Cirencester parkrun1222422:40 + Visi +
Southall parkrun1557531:38 + Visi +
Forest of Dean parkrun1182224:51 + Visi +
parkrun des Dougnes, Cubnezais12219:42 + Visi +
South Woodham Ferrers parkrun18821:14 + Visi +
Marine Parade parkrun17711129:24 + Visi +
Coventry parkrun1292920:51 + Visi +
Wotton parkrun1182124:45 + Visi +
Gloucester City parkrun1171922:35 + Visi +
Great Salterns parkrun19212430:27 + Visi +
Bedworth parkrun1171722:14 + Visi +
University Parks parkrun119032631:42 + Visi +
Hampstead Heath parkrun11117:45 + Visi +
Great Denham parkrun16619:27 + Visi +
Downham Market Academy parkrun1121324:35 + Visi +
Ipswich parkrun11117:34 + Visi +
Sixfields Upton parkrun18819:58 + Visi +
Rendlesham Forest parkrun1264637:01 + Visi +
Frogmary Green Farm parkrun1597225:58 + Visi +
Harrow Lodge parkrun11118:48 + Visi +
Witney parkrun1202022:34 + Visi +
Leamington parkrun12218:52 + Visi +
Brockenhurst parkrun13318:23 + Visi +
Hogmoor Inclosure parkrun1262625:26 + Visi +
Hastings High School parkrun1637827:33 + Visi +
Cannock Chase parkrun1384425:49 + Visi +
Wimpole Estate parkrun1202122:14 + Visi +
Haverhill parkrun1121323:32 + Visi +
Edenbrook Country parkrun110514828:01 + Visi +
Maidstone River Park parkrun13318:00 + Visi +
Cheltenham parkrun12217:24 + Visi +
Victoria Dock parkrun1273020:04 + Visi +
Ekebergsletta parkrun1304325:57 + Visi +
Oxford parkrun11117:18 + Visi +
Aylesbury parkrun11117:51 + Visi +
Mote Park parkrun19712231:28 + Visi +
Riverfront parkrun1404622:57 + Visi +
Newent parkrun1182225:27 + Visi +
Clapham Common parkrun1404220:22 + Visi +
Llanishen Park parkrun1303323:48 + Visi +
Heartwood Forest parkrun1252721:41 + Visi +
Walthamstow parkrun11117:48 + Visi +
Malmö Ribersborg parkrun111215128:46 + Visi +
Chippenham Playing Fields parkrun, Monmouth1161923:05 + Visi +
Huntingdon parkrun1202121:10 + Visi +
Felixstowe parkrun1121221:07 + Visi +
Tidworth parkrun110815535:14 + Visi +
Brandon Country Park parkrun11118:30 + Visi +
Prospect parkrun1232322:42 + Visi +
Mildenhall Hub parkrun1273124:33 + Visi +
York parkrun12217:12 + Visi +
Thetford parkrun1161721:45 + Visi +
Great Dunmow parkrun14420:25 + Visi +
Leavesden Country parkrun1506928:32 + Visi +
Catford parkrun1303322:32 + Visi +
Lordship Recreation Ground parkrun19112425:22 + Visi +
Rugby parkrun1181822:26 + Visi +
Mulbarton parkrun12219:55 + Visi +
Swaffham parkrun191022:19 + Visi +
Ganger Farm parkrun19811426:34 + Visi +
Beckenham Place parkrun1121220:28 + Visi +
Forest Rec parkrun1677626:35 + Visi +
Street parkrun1283525:52 + Visi +
Market Bosworth Country Park parkrun110614435:35 + Visi +
Whiteley parkrun1141520:56 + Visi +
Kingsbury Water parkrun1394725:05 + Visi +
Springhill parkrun14422:18 + Visi +
Wolford Wood parkrun1212730:24 + Visi +
Pontypridd parkrun12217:54 + Visi +
Pocket parkrun1222321:38 + Visi +
Stockley Country parkrun111917935:32 + Visi +
Braunstone parkrun1262720:41 + Visi +
Didcot parkrun1101121:28 + Visi +
Littleport parkrun1445125:16 + Visi +
Yarborough Leisure Centre parkrun1466125:59 + Visi +
Roding Valley parkrun1111321:26 + Visi +
Clair parkrun13318:36 + Visi +
Dinton Pastures parkrun1131321:23 + Visi +
Beacon Hill Country Park parkrun1273725:54 + Visi +
Severn Bridge parkrun1353921:32 + Visi +
Abbey Park parkrun1779425:21 + Visi +
Dudley parkrun1445626:35 + Visi +
Pegwell Bay parkrun12217:40 + Visi +
Manor Field parkrun, Whittlesey1121324:25 + Visi +
Blaise Castle parkrun112816326:20 + Visi +
Chipping Sodbury parkrun1303221:20 + Visi +
Foots Cray Meadows parkrun1212323:17 + Visi +
Thames Path parkrun, Woolwich1789023:42 + Visi +
Bath Skyline parkrun1192021:08 + Visi +
Dishley parkrun, Loughborough110311424:30 + Visi +
Thornham Walks parkrun1363826:52 + Visi +
Moors Valley parkrun19919:40 + Visi +
East Grinstead parkrun1131423:10 + Visi +
Sutton Park parkrun1475524:54 + Visi +
University of Northampton parkrun1192223:24 + Visi +
Shipley Country parkrun1232424:45 + Visi +
Lancing Beach Green parkrun1141421:08 + Visi +
Dover Waterfront parkrun1374525:22 + Visi +
Rickmansworth parkrun1242721:39 + Visi +
Queen Elizabeth parkrun12219:08 + Visi +
Sizewell parkrun1172023:30 + Visi +
Holbrooks parkrun1202223:43 + Visi +
Highbury Fields parkrun11117:25 + Visi +
Clacton Seafront parkrun19920:35 + Visi +
Delaware and Raritan Canal parkrun12221:06 + Visi +
Wisbech parkrun1111523:03 + Visi +
Milton Country parkrun13317:43 + Visi +
Seaton parkrun1394824:09 + Visi +
Higginson parkrun, Marlow1272922:17 + Visi +
Quakers Walk parkrun1566825:05 + Visi +
Lister Park parkrun, Bradford1313621:55 + Visi +
Wendover Woods parkrun1262623:51 + Visi +
Sence Valley Forest Park parkrun1232526:28 + Visi +
Canterbury parkrun16621:56 + Visi +
Henstridge Airfield parkrun18821:41 + Visi +
Five Arches parkrun1455422:58 + Visi +
Yeovil Montacute parkrun1707525:51 + Visi +
Watermeadows parkrun1283124:57 + Visi +
Tamworth Castle Grounds parkrun1333523:26 + Visi +
St Helens parkrun1606824:27 + Visi +
Weymouth parkrun1141420:45 + Visi +
Walmer and Deal Seafront parkrun18821:38 + Visi +
Aston Hall parkrun1202225:01 + Visi +
Royal Tunbridge Wells parkrun18919:23 + Visi +
Corby parkrun18823:09 + Visi +
Marlborough Common parkrun1202122:48 + Visi +
Battlestead Croft parkrun1111122:53 + Visi +
Shepton Mallet parkrun1121421:50 + Visi +
Clare Castle parkrun1252723:04 + Visi +
Coldham’s Common parkrun1535923:04 + Visi +
Brunswick Park parkrun1212223:58 + Visi +
Brentwood parkrun17722:28 + Visi +
Somerdale Pavilion parkrun1384631:17 + Visi +
Wakehurst parkrun18810525:00 + Visi +
Boston parkrun17721:18 + Visi +
Morden parkrun111715526:58 + Visi +
Pontefract parkrun1718724:10 + Visi +
Jersey Farm parkrun1252723:11 + Visi +
Bug Hunter Waters parkrun1455022:41 + Visi +
Rosliston parkrun1333624:41 + Visi +
Longrun Meadow parkrun111416532:01 + Visi +
Fire Service College parkrun1181922:12 + Visi +
Woolacombe Dunes parkrun19410931:20 + Visi +
The Plens parkrun1303124:04 + Visi +
Arrow Valley parkrun13318:05 + Visi +
Tonbridge parkrun14418:40 + Visi +
East Brighton parkrun1182123:56 + Visi +
Three Brooks parkrun1697223:46 + Visi +
Peacehaven parkrun17721:07 + Visi +
Pontypool parkrun1232323:51 + Visi +
Cromhall parkrun1151624:20 + Visi +
Dereham parkrun1323323:47 + Visi +
Bournemouth parkrun14417:43 + Visi +
Pomphrey Hill parkrun1364123:02 + Visi +
Seaford Beach parkrun1535622:25 + Visi +
Mansfield parkrun11117:09 + Visi +
Fountains Abbey parkrun11118:03 + Visi +
Loch Neaton parkrun, Watton1171725:49 + Visi +
Brueton parkrun1475021:33 + Visi +
Great Cornard parkrun1192020:33 + Visi +
Dunstable Downs parkrun1374324:58 + Visi +
Beeston parkrun1374023:53 + Visi +
Feltham parkrun13424:56 + Visi +
Markeaton parkrun1576422:56 + Visi +
Reigate Priory parkrun16619:06 + Visi +
Highwoods parkrun1252624:49 + Visi +
Valentines parkrun11116:49 + Visi +
Springburn parkrun, Glasgow13318:05 + Visi +
California Country parkrun1649028:49 + Visi +
Rushmoor parkrun19918:29 + Visi +
Mountbatten School parkrun1323424:11 + Visi +
Colchester Castle parkrun14418:04 + Visi +
Buckingham parkrun12218:37 + Visi +
Sunny Hill parkrun1202424:39 + Visi +
Bognor Regis parkrun12218:12 + Visi +
Aachener Weiher parkrun1101124:55 + Visi +
Peckham Rye parkrun11117:49 + Visi +
Millennium Country parkrun, Forest of Marston Vale1373923:01 + Visi +
Great Notley parkrun16620:16 + Visi +
Snowden Field parkrun1242624:15 + Visi +
Burnham-on-Crouch parkrun18822:01 + Visi +
Woking parkrun18818:19 + Visi +
Neckarufer parkrun, Esslingen1364425:12 + Visi +
Worcester parkrun114418529:30 + Visi +
Blandford parkrun18920:11 + Visi +
Pont y Bala parkrun15723:18 + Visi +
Chichester parkrun13319:05 + Visi +
Kingdom parkrun1222524:39 + Visi +
Westmill parkrun1101022:55 + Visi +
Dartford parkrun11117:59 + Visi +
Hanworth parkrun1364024:26 + Visi +
Bracknell parkrun18820:04 + Visi +
Folkestone parkrun1212521:48 + Visi +
Uckfield parkrun1404324:12 + Visi +
Harrogate parkrun13318:11 + Visi +
Kesgrave parkrun1374021:18 + Visi +
Thomas Mills parkrun1486530:19 + Visi +
Lymington Woodside parkrun15721:59 + Visi +
Hereford parkrun1535323:07 + Visi +
Chasewater parkrun18210026:19 + Visi +
South Norwood parkrun1121221:11 + Visi +
Panshanger parkrun17720:14 + Visi +
Wolverhampton parkrun1556624:54 + Visi +
Harcourt Hill parkrun1171721:13 + Visi +
Tetbury Goods Shed parkrun1253024:25 + Visi +
Gloucester North parkrun1101022:14 + Visi +
Harlow parkrun1151523:00 + Visi +
Alvaston parkrun1515922:24 + Visi +
Worcester Pitchcroft parkrun111814327:04 + Visi +
Perry Hall parkrun1464924:58 + Visi +
Newport parkrun11117:29 + Visi +
Tring parkrun1171823:38 + Visi +
Severn Valley Country parkrun1141626:13 + Visi +
Wanstead Flats parkrun13317:13 + Visi +
Daventry parkrun1151521:10 + Visi +
St Mary’s parkrun1587429:14 + Visi +
Poole parkrun14416:57 + Visi +
Melton Mowbray parkrun1192222:38 + Visi +
The Old Showfield parkrun1636923:30 + Visi +
Henley-on-Thames parkrun1111122:25 + Visi +
Crissy Field parkrun1101220:40 + Visi +
Babbs Mill parkrun1405128:00 + Visi +
Maidenhead parkrun17718:49 + Visi +
Ross-on-Wye parkrun1172124:22 + Visi +
Kettering parkrun1232622:50 + Visi +
Stratford Park parkrun, Stroud1566527:51 + Visi +
Bury St Edmunds parkrun13318:17 + Visi +
Mallards Pike parkrun1324630:57 + Visi +
Market Harborough parkrun1303121:17 + Visi +
Cassiobury parkrun1111120:14 + Visi +
Squerryes Winery parkrun1323627:45 + Visi +
Walsall Arboretum parkrun19010625:31 + Visi +
Penrose parkrun1151619:40 + Visi +
King George V Playing Field parkrun, Cheltenham1232826:08 + Visi +
Evesham parkrun1111121:39 + Visi +
Warwick Racecourse parkrun1486024:55 + Visi +
Huddersfield parkrun1626722:02 + Visi +
Clevedon Salthouse Fields parkrun1384925:13 + Visi +
Long Eaton parkrun19912124:06 + Visi +
Barry Island parkrun1394223:51 + Visi +
Ifield Mill Pond parkrun1373824:33 + Visi +
Upton House parkrun1252722:34 + Visi +
Lullingstone parkrun17721:21 + Visi +
The Leas parkrun, Minster1252524:37 + Visi +
Medina I.O.W. parkrun11117:20 + Visi +
Uditore parkrun13320:28 + Visi +
Hunstanton Promenade parkrun1283523:45 + Visi +
Raphael parkrun13319:35 + Visi +
Burnham and Highbridge parkrun17510027:51 + Visi +
Salcey Forest parkrun1384324:53 + Visi +
Ferry Meadows parkrun15517:27 + Visi +
Barclay parkrun15623:13 + Visi +
Irchester Country parkrun1586225:13 + Visi +
Maldon Prom parkrun11118:04 + Visi +
Salisbury parkrun1111119:34 + Visi +
Tremorfa parkrun1272923:30 + Visi +
Billericay parkrun1121321:20 + Visi +
Gedling parkrun1273224:59 + Visi +
Oaklands parkrun111820336:10 + Visi +
Winchester parkrun14518:28 + Visi +
Aldenham parkrun1141421:37 + Visi +
East Park parkrun1121424:18 + Visi +
Soham Village College parkrun1253228:03 + Visi +
Stevenage parkrun17719:32 + Visi +
Tewkesbury parkrun1111422:50 + Visi +
Seven Fields parkrun1475526:28 + Visi +
Conkers parkrun12217:46 + Visi +
Lee-on-the-Solent parkrun17719:40 + Visi +
Brixworth Country parkrun1496126:53 + Visi +
Abingdon parkrun15518:03 + Visi +
Lowestoft parkrun1232621:10 + Visi +
Chipping Norton School parkrun1455126:40 + Visi +
Linford Wood parkrun1222221:45 + Visi +
Harwich parkrun191021:22 + Visi +
Fulbourn Hospital parkrun1344724:59 + Visi +
Gunpowder parkrun12217:34 + Visi +
Dartford Heath parkrun1171722:06 + Visi +
Sandhurst Memorial parkrun1537328:54 + Visi +
Woodhouse Moor parkrun11117:22 + Visi +
Sandwell Valley parkrun1455930:43 + Visi +
Wyre Forest parkrun1434825:56 + Visi +
parkrun Zalew Żyrardowski16724:38 + Visi +
Bramhall parkrun115924735:16 + Visi +
Hatfield Forest parkrun1181820:36 + Visi +
Swansea Bay parkrun1748323:44 + Visi +
Wollaton Hall parkrun1889723:51 + Visi +
Horsham parkrun14518:16 + Visi +
Jersey parkrun16619:41 + Visi +
Berkeley Green parkrun1233128:31 + Visi +
Cardiff parkrun111011722:02 + Visi +
Ally Pally parkrun11118:09 + Visi +
Thurrock parkrun, Orsett Heath16620:41 + Visi +
Beacon parkrun1587326:41 + Visi +
Albert parkrun, Middlesbrough1515423:17 + Visi +
Sherwood Pines parkrun1161821:33 + Visi +
Wickford Memorial parkrun1436651:15 + Visi +
Thornbury parkrun1323428:19 + Visi +
Malling parkrun18314547:25 + Visi +
Itchen Valley Country parkrun1476127:37 + Visi +
Pollok parkrun, Glasgow11117:00 + Visi +
Eastville parkrun120525325:12 + Visi +
Rutland Water parkrun1293022:44 + Visi +
Chalkwell Beach parkrun1819624:40 + Visi +
Amager Fælled parkrun1333724:23 + Visi +
Hoblingwell parkrun1202423:52 + Visi +
Belton House parkrun1141523:48 + Visi +
Kagerzoom parkrun1435824:39 + Visi +
Gorleston Cliffs parkrun12217:43 + Visi +
King’s Lynn parkrun1151520:07 + Visi +
Holkham parkrun1506925:37 + Visi +
Horspath parkrun17410628:12 + Visi +
Southwick Country parkrun1272921:47 + Visi +
Rushmere parkrun1131422:39 + Visi +
Zuiderpark parkrun, Den Haag1738124:07 + Visi +
Heaton parkrun13318:08 + Visi +
Colney Lane parkrun1495524:01 + Visi +
Leicester Victoria parkrun19711626:45 + Visi +
Church Mead parkrun16610232:53 + Visi +
Southend parkrun11116:28 + Visi +
Lydney parkrun1202123:19 + Visi +
Edgbaston Reservoir parkrun1658626:24 + Visi +
Reading parkrun12217:18 + Visi +
March parkrun15521:11 + Visi +
Woodgate Valley Country Park parkrun16513245:50 + Visi +
Maaraue parkrun1232522:34 + Visi +
Stonehouse parkrun1131320:09 + Visi +
Rheinpark parkrun1151825:30 + Visi +
Edinburgh parkrun12217:00 + Visi +
Chippenham parkrun1212120:08 + Visi +
Stratford-upon-Avon parkrun1202521:14 + Visi +
Henlow Bridge Lakes parkrun17511532:34 + Visi +
8671116:25 + Visi + +   +


Savanoriavimo santrauka

VaidmuoProgos
+ Renginio Vadovas + 99
+ Laiko Matuotojas + 94
+ Žetonų Rūšiavimas + 12
+ Rezultatų Įvedėjas + 87
+ Fotografas + 6
+ Komunikacijų Savanoris + 10
+ Savanoris (Maršalas) + 54
+ Pasiruošimas Prieš Renginį + 148
+ Įrangos Sandėliavimas ir Pristatymas + 130
+ Kita + 26
+ Brūkšninio Kodo Skenavimas + 78
+ Renginio Užbaigimo Procedūros + 51
+ Finišo Žetonai + 21
+ Numerių Tikrintojas + 2
+ Pirmąkart Dalyvaujančiųjų Pasveikinimas + 82
+ Srauto Valdytojas + 15
+ Finišo Žetonų Pagalba + 12
+ Tail Walker + 29
+ Savanorių Koordinatorius + 148
+ Bėgimo Ataskaitos Rengėjas + 100
+ Atsarginis Laiko Matuotojas + 3
+ Apšilimo Vedlys + 16
+ Automobilių Parkingo Maršalas + 1
+ Renginio Dienos Trasos Patikra + 14
+ parkwalker + 10
Iš viso kreditų499

+ Šioje lentelėje apibendrinamas, kiek kartų buvo atliktas kiekvienas savanorio vaidmuo.
Atkreipkite dėmesį, kad bendra suma gali skirtis nuo visų savanorių kreditų; jei tą pačią dieną atlikote kelias užduotis.
Sužinokite daugiau čia. +



Freedom parkrun renginiai

DataLaikasVieta
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(ne)parktun'ai

SavaitėPradžios DataPabaigos data(ne)parktun'aiGeriausias laikas
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
+ +
+ + + + +
+ + +
+
+ + +
+ +
+
+ +
+
+
+ + +
+
+ Vietos: 1 +
+
+ Finišavę dalyviai: 274 +
+
+ Finišai: 318 +
+
+ Visų laikų renginiai: 2 +
+
+ Savanoriai: 27 +
+
+ Asmeniniai rekordai: 9 +
+
+ Vidutinis finišo laikas: 00:30:44 +
+
+ Grupės: 44 +
+
+
+ Statistika paskutinį kartą atnaujinta: 2024 m. rugsėjo 30 d. 00:40:03 +
+
+
+
+
+ + Brooks + +
+
+
+ +

© parkrun Global Limited (Company number: 09411750)

+

Be autorių teisių savininko leidimo jokia šios svetainės dalis jokiu būdu negali būti atkurta visa ar iš dalies.

+

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
+
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/88720/all/index.html new file mode 100644 index 00000000..1c5ccc65 --- /dev/null +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/88720/all/index.html @@ -0,0 +1,965 @@ + + + + + + + + + + + + + + + + + +rezultatai | parkrun Lithuania + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ +
+
+ + + + + + Nemokamai, visiems, visuomet + + +

Phillip WHETTLOCK (A88720)

+ parkrun 250 Klubo narys + + Member of the Volunteer 250 club +

+ Iš viso 345 parkrun +

+ Peržiūrėkite šio parkrun dalyvio/-ės statistikos santrauką +
+ Dabartinė amžiaus kategorija +

+ Visų renginio vietų statistikos santrauka +
GreičiausiasVidutinis
(vidurkis)
Lėčiausias
Laikas21:3625:2654:59
pasiekimų pagal amžių įvertinimas72.99%60.80%28.92%
Bendra pozicija648.44374

+ Geriausi bendri metų pasiekimai +
MetaiGeriausias laikasGeriausias vertinimas pagal amžių
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

+ Visi rezultatai +
RenginysRenginio dataRenginio numerisPozicijaLaikasPasiekimai pagal amžiųGeriausias asmeninis pasiekimas?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + Geriausias asmeninis pasiekimas + +   +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34% +   +
Wakefield Thornes23/09/20233745824:2964.94% +   +
Halifax16/09/20233532123:4367.04% +   +
Hafan Pwllheli02/09/20231302726:4859.33% +   +
Clitheroe Castle26/08/20231982525:4161.39% +   +
Glossop12/08/20233152824:2564.57% +   +
Halifax05/08/20233473024:4363.79% +   +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% + Geriausias asmeninis pasiekimas + +   +
Stratford Park, Stroud01/07/20231253126:2959.53% +   +
Wetherby24/06/20233094124:4663.66% +   +
Halifax10/06/20233402524:0265.60% +   +
Halifax03/06/20233392124:1365.11% +   +
Long Eaton20/05/20233306921:3672.99% +   +
Halifax06/05/20233352423:4566.39% +   +
Keswick29/04/20233904121:3672.99% + Geriausias asmeninis pasiekimas + +   +
Halifax22/04/20233334725:0262.98% +   +
Halifax08/04/20233313225:0063.07% +   +
Fulham Palace01/04/202339110924:0965.29% +   +
Halifax25/03/20233291624:4363.79% +   +
Halifax18/03/20233282326:4758.87% +   +
Halifax04/03/20233273825:1962.28% +   +
Myrtle25/02/20231593824:5263.40% + Geriausias asmeninis pasiekimas + +   +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71% +   +
Bowling Park28/01/202379924:1165.20% +   +
Bramley21/01/20233004925:3461.67% +   +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + Geriausias asmeninis pasiekimas + +   +
Conkers19/11/20225485624:1465.06% +   +
Brighouse12/11/20222213725:1762.36% +   +
Halifax05/11/20223122424:5163.45% +   +
Oakwell Hall22/10/20222974026:1060.25% +   +
Halifax15/10/202230910749:5431.60% +   +
Crosby08/10/20222833525:3861.51% +   +
Alness01/10/20221801024:0965.29% +   +
Victoria24/09/20223736722:5468.85% +   +
Halifax17/09/20223052625:0063.07% +   +
Centre Vale10/09/20221034428:4454.87% +   +
Halifax03/09/20223033125:3361.71% +   +
Skipton27/08/20224035325:3561.11% +   +
Halifax20/08/20223012824:5262.87% +   +
Halifax06/08/20222996426:0360.01% +   +
Armley30/07/20221432724:2863.90% +   +
Halifax16/07/20222962524:2663.98% +   +
Halifax02/07/20222942524:4863.04% +   +
Halifax18/06/20222922424:5462.78% +   +
The Pastures11/06/2022991826:2159.33% +   +
Halifax04/06/20222913826:4858.33% +   +
Horton Park28/05/20222942225:1262.04% +   +
Bushy Park21/05/202287737424:0664.87% +   +
Halifax07/05/20222877529:3552.85% +   +
Harrogate30/04/202246716226:4458.48% +   +
Halifax23/04/20222854927:0057.90% +   +
Halifax09/04/20222834526:3758.74% +   +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% + Geriausias asmeninis pasiekimas + +   +
Halifax19/02/20222764426:3458.85% +   +
Halifax12/02/20222754526:0260.05% +   +
Warwick Racecourse05/02/2022478224:0664.87% +   +
Roberts Park29/01/2022167524:5462.78% +   +
Halifax22/01/20222722925:3461.15% +   +
Halifax15/01/20222713924:5562.74% +   +
Halifax01/01/20222705526:1459.59% +   +
Halifax25/12/20212694325:3661.07% +   +
Halifax18/12/20212682324:3463.64% +   +
Halifax04/12/20212665230:4450.87% +   +
Halifax13/11/20212646428:0855.57% +   +
Halifax06/11/20212633225:5960.17% +   +
Halifax16/10/20212603525:2061.71% +   +
Halifax09/10/20212592124:3263.72% +   +
Halifax02/10/20212584626:3358.88% +   +
Halifax25/09/20212574526:4658.41% +   +
Flatts Lane18/09/20211351826:5358.15% +   +
Halifax11/09/20212552724:5862.62% +   +
Halifax28/08/20212533724:5162.37% +   +
Halifax07/08/20212503324:5562.21% +   +
Halifax31/07/20212494225:2261.10% +   +
Halifax24/07/20212484324:3762.97% +   +
Halifax14/03/20202475426:2858.06% +   +
Lister Park, Bradford07/03/202050010125:0061.47% +   +
Halifax29/02/20202459327:1856.29% +   +
Halifax22/02/202024416142:3136.14% +   +
Halifax08/02/202024213741:4636.79% +   +
Halifax01/02/202024111441:1037.33% +   +
Halifax25/01/202024013841:4036.88% +   +
Halifax18/01/202023915647:5232.10% +   +
Halifax11/01/202023817152:0029.55% +   +
Halifax04/01/20202372924:5561.67% +   +
Middleton Woods01/01/2020877225:2960.30% +   +
Temple Newsam01/01/202035015926:5856.98% +   +
Halifax28/12/20192362825:2260.58% +   +
Carlisle21/12/20193577126:0558.91% +   +
Halifax14/12/20192332726:3057.99% +   +
Halifax07/12/20192323925:3959.91% +   +
Horton Park23/11/20192332423:1566.09% +   +
Halifax09/11/20192294525:1360.94% +   +
Halifax02/11/20192282025:1560.86% +   +
Halifax12/10/20192263425:1061.06% +   +
Halifax05/10/20192253325:3560.07% +   +
Springburn28/09/20192711623:1466.14% +   +
Halifax14/09/20192224425:1860.74% +   +
Halifax07/09/20192215926:1558.54% +   +
Halifax24/08/20192193024:4461.59% +   +
Halifax17/08/20192184825:5858.66% +   +
Southport03/08/20191695723:5763.60% +   +
Halifax27/07/20192154726:0858.29% +   +
Halifax20/07/20192143425:0460.77% +   +
Halifax13/07/20192133224:5361.22% +   +
Halifax06/07/20192123324:3462.01% +   +
Storthes Hall29/06/2019213026:2057.85% +   +
Halifax22/06/20192103523:5663.65% +   +
Halifax15/06/20192093424:5361.22% +   +
Horton Park25/05/20192071523:0865.85% +   +
Halifax04/05/20192032525:0060.93% +   +
Halifax20/04/20192013123:5863.56% +   +
Halifax06/04/20191992422:5066.72% +   +
Cliffe Castle30/03/2019301725:1860.21% +   +
Pollok23/03/20195257223:5863.56% +   +
Halifax16/03/20191966030:3749.76% +   +
Halifax02/03/20191945124:4461.59% +   +
Halifax16/02/20191924525:5358.85% +   +
Myrtle02/02/2019164325:0560.73% +   +
Halifax26/01/20191914223:2365.15% +   +
Halifax12/01/20191895125:2260.05% +   +
Halifax05/01/20191884524:2962.22% +   +
Horton Park01/01/20191873324:0063.47% +   +
Halifax29/12/20181876928:2953.48% +   +
Halifax08/12/20181839532:2447.02% +   +
Keswick01/12/20182344323:3964.41% +   +
Horton Park27/10/20181761424:2162.56% +   +
Dishley, Loughborough13/10/2018125724:2562.39% +   +
Watergrove06/10/20182141227:5754.50% +   +
Halifax29/09/20181737129:1152.20% +   +
Halifax08/09/20181703525:4159.31% +   +
Dalby Forest01/09/20181253223:0665.95% +   +
Whinlatter Forest11/08/2018303227:2355.20% +   +
Bramley04/08/20181572524:0662.72% +   +
Halifax28/07/20181643224:2761.83% +   +
Lister Park, Bradford21/07/20184184222:2667.38% +   +
Halifax07/07/20181613824:4261.20% +   +
Fountains Abbey23/06/20182184822:2667.38% +   +
Pontefract26/05/20183646723:3064.33% +   +
Halifax19/05/20181554826:1757.51% +   +
Halifax12/05/20181543724:3061.70% +   +
Halifax05/05/20181536727:3354.87% +   +
Halifax21/04/20181513324:2861.78% +   +
Halifax14/04/20181503724:2461.95% +   +
Druridge Bay07/04/20181924223:3564.10% +   +
Halifax31/03/201814813850:3329.90% +   +
Halifax24/03/20181476027:0355.88% +   +
Halifax10/03/20181466427:2755.07% +   +
Halifax24/02/20181452925:1259.99% +   +
Halifax17/02/20181442223:4763.56% +   +
Horton Park03/02/20181401624:3761.41% +   +
Halifax13/01/20181414025:5158.48% +   +
Halifax06/01/20181405025:5858.22% +   +
Halifax23/12/20171383724:1662.29% +   +
Keswick02/12/20171834023:5463.25% +   +
Lister Park, Bradford04/11/20173876623:3264.24% +   +
Halifax28/10/20171334225:1060.07% +   +
Halifax07/10/201713014034:4343.54% +   +
Portobello09/09/20171228024:1662.29% +   +
Halifax02/09/20171253525:0160.43% +   +
Sewerby26/08/20173009726:0457.48% +   +
Halifax19/08/20171235927:0455.36% +   +
Horton Park05/08/20171161625:3658.53% +   +
Halifax01/07/20171165226:2956.58% +   +
Roundhay24/06/201732215726:5555.67% +   +
Halifax17/06/20171156528:0753.29% +   +
Halifax10/06/20171148546:5831.90% +   +
Horton Park31/12/2016854033:0945.20% +   +
Halifax07/05/20165914750:0529.68% +   +
Halifax30/04/2016583824:4959.91% +   +
Halifax09/04/2016553225:3758.04% +   +
Halifax02/04/2016548846:0532.26% +   +
Halifax19/03/2016524726:4055.75% +   +
Halifax05/09/2015262322:4365.44% +   +
Halifax18/07/2015192223:2463.03% +   +
Halifax11/07/2015181322:2166.00% +   +
Halifax27/06/201516822:1366.39% + Geriausias asmeninis pasiekimas + +   +
Horton Park20/06/201541322:1866.14% +   +
Sewerby30/05/20151853323:1863.30% +   +
Fell Foot09/05/2015281722:5764.27% +   +
Lister Park, Bradford18/04/20152543521:4867.66% +   +
Halifax28/03/201542224:0461.29% +   +
Milton Country07/03/20152597522:4065.07% +   +
Lister Park, Bradford14/02/20152459424:5059.40% +   +
Lister Park, Bradford03/01/20152418324:0561.25% +   +
Lister Park, Bradford25/12/20142402722:2765.70% +   +
Lister Park, Bradford29/11/20142365423:4062.32% +   +
Lister Park, Bradford22/11/20142357224:2860.29% +   +
Edinburgh25/10/20142606721:5467.35% +   +
Woodhouse Moor18/10/20143698222:1866.14% +   +
Lister Park, Bradford27/09/20142277023:1563.44% +   +
Lister Park, Bradford13/09/20142253822:3865.17% +   +
Lister Park, Bradford23/08/20142223522:4964.13% +   +
Pontefract16/08/20141683222:0866.11% +   +
Lister Park, Bradford09/08/20142205923:4461.66% +   +
Keswick02/08/2014183323:3362.14% +   +
Lister Park, Bradford26/07/20142184323:1762.85% +   +
Lister Park, Bradford12/07/20142164323:1862.80% +   +
Lister Park, Bradford05/07/20142153723:2262.62% +   +
Lister Park, Bradford28/06/20142144823:1562.94% +   +
Lister Park, Bradford21/06/20142133422:4064.56% +   +
Lister Park, Bradford14/06/20142124822:4864.18% +   +
Lister Park, Bradford07/06/20142114622:3664.75% +   +
Lister Park, Bradford31/05/20142104923:1562.94% +   +
Lister Park, Bradford24/05/20142094422:2565.28% +   +
Lister Park, Bradford17/05/20142083822:4264.46% +   +
Burnley10/05/2014995725:2157.73% +   +
Lister Park, Bradford03/05/20142066823:0063.62% +   +
Lister Park, Bradford26/04/20142058325:0858.22% +   +
Lister Park, Bradford19/04/201420415626:4254.81% +   +
Lister Park, Bradford12/04/20142034922:3464.84% +   +
Lister Park, Bradford05/04/20142023822:3864.65% +   +
Lister Park, Bradford29/03/20142014322:2765.18% +   +
Lister Park, Bradford22/03/20142007923:0363.49% +   +
Lister Park, Bradford15/03/20141993222:1965.57% +   +
Lister Park, Bradford08/03/20141985922:4964.13% +   +
Lister Park, Bradford01/03/20141976024:0460.80% +   +
Lister Park, Bradford22/02/20141964322:4764.23% +   +
Lister Park, Bradford08/02/20141945323:2562.49% +   +
Lister Park, Bradford01/02/20141934422:5463.90% +   +
Lister Park, Bradford25/01/20141924522:2465.33% +   +
Lister Park, Bradford18/01/20141914422:4364.42% +   +
Lister Park, Bradford11/01/20141905822:5064.09% +   +
Lister Park, Bradford04/01/20141894222:5263.99% +   +
Lister Park, Bradford28/12/20131883722:4864.18% +   +
Lister Park, Bradford21/12/20131877624:4859.01% +   +
Lister Park, Bradford14/12/20131863122:0366.36% +   +
Lister Park, Bradford30/11/20131844921:4967.07% +   +
Lister Park, Bradford23/11/20131833322:1565.77% +   +
Lister Park, Bradford16/11/20131822221:5866.62% +   +
Lister Park, Bradford09/11/20131814922:1665.72% +   +
Lister Park, Bradford02/11/20131804622:3264.94% +   +
Lister Park, Bradford19/10/20131783822:1265.92% +   +
Lister Park, Bradford12/10/20131774622:4164.51% +   +
Lister Park, Bradford28/09/20131753122:1965.57% +   +
Lister Park, Bradford21/09/20131744122:0266.41% +   +
Lister Park, Bradford14/09/20131732222:1765.67% +   +
Lister Park, Bradford07/09/20131723922:2165.47% +   +
Sewerby31/08/2013941222:0865.59% +   +
Lister Park, Bradford24/08/20131703122:2264.90% +   +
Lister Park, Bradford17/08/20131693221:4866.59% +   +
Lister Park, Bradford10/08/20131683721:4866.59% +   +
Clumber Park03/08/201361121:4666.69% +   +
Lister Park, Bradford27/07/20131663622:1565.24% +   +
Lister Park, Bradford20/07/20131653522:2564.76% +   +
Lister Park, Bradford13/07/20131644022:3464.33% +   +
Lister Park, Bradford06/07/20131633922:2164.95% +   +
Lister Park, Bradford29/06/20131625822:4263.95% +   +
Lister Park, Bradford15/06/20131609725:0957.72% +   +
Lister Park, Bradford08/06/20131594022:3464.33% +   +
Lister Park, Bradford01/06/20131585023:0862.75% +   +
Lister Park, Bradford18/05/20131563123:1662.39% +   +
Lister Park, Bradford11/05/20131555323:5460.74% +   +
Lister Park, Bradford27/04/20131534323:0362.98% +   +
Lister Park, Bradford13/04/20131516424:0360.36% +   +
Lister Park, Bradford06/04/20131504723:0163.07% +   +
Lister Park, Bradford30/03/20131494425:2956.97% +   +
Lister Park, Bradford09/03/20131476124:4558.65% +   +
Lister Park, Bradford02/03/20131465223:3061.77% +   +
Lister Park, Bradford23/02/20131455924:3559.05% +   +
Lister Park, Bradford16/02/20131447423:5360.78% +   +
Lister Park, Bradford09/02/20131437224:4158.81% +   +
Lister Park, Bradford02/02/201314211027:2452.98% +   +
Lister Park, Bradford05/01/20131397724:5358.34% +   +
Lister Park, Bradford29/12/20121386425:4456.41% +   +
Lister Park, Bradford24/11/20121335825:1857.38% +   +
Lister Park, Bradford17/11/20121322723:0962.71% +   +
Lister Park, Bradford20/10/20121286223:3961.38% +   +
Lister Park, Bradford13/10/20121274823:1462.48% +   +
Lister Park, Bradford06/10/20121264022:4663.76% +   +
Lister Park, Bradford29/09/20121256224:3059.25% +   +
Lister Park, Bradford08/09/201212216032:5144.19% +   +
Lister Park, Bradford01/09/20121212921:4166.95% +   +
Wycombe Rye18/08/201232622:3563.76% +   +
Lister Park, Bradford11/08/20121183121:5865.55% +   +
Hanley28/07/201242622:0365.31% +   +
Lister Park, Bradford21/07/20121151521:4266.36% +   +
Lister Park, Bradford07/07/20121132922:3663.72% +   +
Lister Park, Bradford30/06/20121122322:3463.81% +   +
Lister Park, Bradford26/05/20121072722:4863.16% +   +
Lister Park, Bradford12/05/20121054123:0562.38% +   +
Lister Park, Bradford21/04/20121022422:0465.26% +   +
Lister Park, Bradford07/04/20121002622:0165.40% +   +
Lister Park, Bradford31/03/2012992723:2061.71% +   +
Lister Park, Bradford18/02/2012933123:2661.45% +   +
Lister Park, Bradford04/02/2012923023:2361.58% +   +
Lister Park, Bradford19/11/2011836929:5048.27% +   +
Lister Park, Bradford05/11/2011816327:0553.17% +   +
Lister Park, Bradford29/10/2011801421:5965.50% +   +
Lister Park, Bradford10/09/2011731321:5265.85% +   +
Lister Park, Bradford27/08/2011717734:4941.02% +   +
Lister Park, Bradford06/08/2011681321:4065.92% + Geriausias asmeninis pasiekimas + +   +
Lister Park, Bradford16/07/2011656432:0744.47% +   +
Lister Park, Bradford25/06/2011621621:4965.47% +   +
Lister Park, Bradford11/06/2011608733:4042.43% +   +
Lister Park, Bradford23/04/2011532821:4265.82% +   +
Lister Park, Bradford26/03/2011491521:5365.27% +   +
Lister Park, Bradford05/03/2011461821:5565.17% +   +
Lister Park, Bradford12/02/2011431522:2463.76% +   +
Lister Park, Bradford25/12/2010364635:3540.14% +   +
Lister Park, Bradford30/10/201029621:4165.87% + Geriausias asmeninis pasiekimas + +   +
Lister Park, Bradford16/10/2010271521:4865.52% + Geriausias asmeninis pasiekimas + +   +
Lister Park, Bradford02/10/2010251221:5665.12% +   +

+ +
+ + + + +
+ + +
+
+ + +
+ +
+
+ +
+
+
+ + +
+
+ Vietos: 1 +
+
+ Finišavę dalyviai: 274 +
+
+ Finišai: 318 +
+
+ Visų laikų renginiai: 2 +
+
+ Savanoriai: 27 +
+
+ Asmeniniai rekordai: 9 +
+
+ Vidutinis finišo laikas: 00:30:44 +
+
+ Grupės: 44 +
+
+
+ Statistika paskutinį kartą atnaujinta: 2024 m. rugsėjo 30 d. 00:40:03 +
+
+
+
+
+ + Brooks + +
+
+
+ +

© parkrun Global Limited (Company number: 09411750)

+

Be autorių teisių savininko leidimo jokia šios svetainės dalis jokiu būdu negali būti atkurta visa ar iš dalies.

+

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
+
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/88720/index.html new file mode 100644 index 00000000..a67af19a --- /dev/null +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/88720/index.html @@ -0,0 +1,473 @@ + + + + + + + + + + + + + + + + + +rezultatai | parkrun Lithuania + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ +
+
+ + + + + + Nemokamai, visiems, visuomet + + +

Phillip WHETTLOCK (A88720)

+ parkrun 250 Klubo narys + + Member of the Volunteer 250 club +

Iš viso 345 parkrun

+ Peržiūrėkite šio parkrun dalyvio/-ės visų parkrun renginių statistiką +
+ Dabartinė amžiaus kategorija +

Naujausi parkrun bėgimai

RenginysRenginio dataPozicija pagal lytįBendra pozicijaLaikasPasiekimai pagal amžių
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Renginių santraukos

Renginysparkrun renginiaiGeriausia pozicija pagal lytįGeriausia pozicija apskritaiGeriausias laikas  
Halifax parkrun1268822:13 + Visi +
Lister Park parkrun, Bradford1166621:40 + Visi +
Horton Park parkrun9131322:18 + Visi +
Keswick parkrun4253321:36 + Visi +
Sewerby parkrun3121222:08 + Visi +
Pontefract parkrun2273222:08 + Visi +
Brighouse parkrun2333723:53 + Visi +
Temple Newsam parkrun2272925:14 + Visi +
Fountains Abbey parkrun2394822:26 + Visi +
Oakwell Hall parkrun2293626:10 + Visi +
Whinlatter Forest parkrun2283227:23 + Visi +
Bramley parkrun2252524:06 + Visi +
Middleton Woods parkrun2121424:55 + Visi +
Myrtle parkrun2333824:52 + Visi +
Centre Vale parkrun2303626:37 + Visi +
Bushy parkrun130137424:06 + Visi +
Woodhouse Moor parkrun1778222:18 + Visi +
Pollok parkrun, Glasgow1667223:58 + Visi +
Edinburgh parkrun1646721:54 + Visi +
Wakefield Thornes parkrun1545824:29 + Visi +
Hyndburn parkrun1253125:51 + Visi +
York parkrun111413522:55 + Visi +
Milton Country parkrun1707522:40 + Visi +
Carlisle parkrun1567126:05 + Visi +
Harrogate parkrun112316226:44 + Visi +
Southport parkrun1545723:57 + Visi +
Barnsley parkrun1414325:05 + Visi +
Rothwell parkrun1535724:20 + Visi +
Huddersfield parkrun1596722:47 + Visi +
Long Eaton parkrun1556921:36 + Visi +
Wycombe Rye parkrun1232622:35 + Visi +
Conkers parkrun1525624:14 + Visi +
Roundhay parkrun112815726:55 + Visi +
Hanley parkrun16622:03 + Visi +
Worsley Woods parkrun1728824:46 + Visi +
Burnley parkrun1545725:21 + Visi +
Dewsbury parkrun18610128:15 + Visi +
Cross Flatts parkrun1303724:16 + Visi +
Clumber Park parkrun1101121:46 + Visi +
Skipton parkrun1505325:35 + Visi +
Flatts Lane parkrun1171826:53 + Visi +
Victoria parkrun, Glasgow1546722:54 + Visi +
Alness parkrun171024:09 + Visi +
Fulham Palace parkrun18610924:09 + Visi +
Springburn parkrun, Glasgow1161623:14 + Visi +
Druridge Bay parkrun1354223:35 + Visi +
Pendle parkrun1263126:16 + Visi +
Watergrove parkrun, Rochdale1111227:57 + Visi +
Wetherby parkrun1374124:46 + Visi +
Portobello parkrun, Edinburgh1668024:16 + Visi +
Nostell parkrun1374325:00 + Visi +
Fell Foot parkrun, Newby Bridge1161722:57 + Visi +
Conwy parkrun1394424:53 + Visi +
Glossop parkrun1242824:25 + Visi +
Crosby parkrun1293525:38 + Visi +
Dolgellau parkrun1459954:59 + Visi +
Dalby Forest parkrun1283223:06 + Visi +
Clitheroe Castle parkrun1192525:41 + Visi +
Armley parkrun1262724:28 + Visi +
Dishley parkrun, Loughborough1535724:25 + Visi +
Ford parkrun1202525:00 + Visi +
Cliffe Castle parkrun1151725:18 + Visi +
Potternewton parkrun1293625:04 + Visi +
Isabel Trail parkrun1293422:02 + Visi +
The Pastures parkrun1161826:21 + Visi +
Storthes Hall parkrun1263026:20 + Visi +
Hafan Pwllheli parkrun1212726:48 + Visi +
Penistone parkrun1343724:20 + Visi +
Conyngham Hall parkrun1363824:55 + Visi +
Stratford Park parkrun, Stroud1303126:29 + Visi +
Warwick Racecourse parkrun1638224:06 + Visi +
University of Stirling parkrun1343723:52 + Visi +
Jubilee parkrun1121926:42 + Visi +
Queen’s parkrun, Glasgow1677925:29 + Visi +
Bowling Park parkrun18924:11 + Visi +
Rothay Park parkrun1202724:48 + Visi +
Zuiderpark parkrun, Den Haag1151722:03 + Visi +
Carlisle Park parkrun, Morpeth1293325:44 + Visi +
Chevin Forest parkrun1213026:47 + Visi +
Roberts Park parkrun1657524:54 + Visi +
Beacon Hill Country Park parkrun1192325:36 + Visi +
Thames Path parkrun, Woolwich1586323:49 + Visi +
3456621:36 + Visi + +   +


Savanoriavimo santrauka

VaidmuoProgos
+ Renginio Vadovas + 33
+ Laiko Matuotojas + 28
+ Žetonų Rūšiavimas + 5
+ Rezultatų Įvedėjas + 4
+ Fotografas + 1
+ Komunikacijų Savanoris + 6
+ Savanoris (Maršalas) + 35
+ Pasiruošimas Prieš Renginį + 29
+ Įrangos Sandėliavimas ir Pristatymas + 6
+ Kita + 2
+ Brūkšninio Kodo Skenavimas + 46
+ Renginio Užbaigimo Procedūros + 25
+ Finišo Žetonai + 16
+ Numerių Tikrintojas + 1
+ Pirmąkart Dalyvaujančiųjų Pasveikinimas + 82
+ Srauto Valdytojas + 16
+ Finišo Žetonų Pagalba + 16
+ Tail Walker + 15
+ Savanorių Koordinatorius + 11
+ Bėgimo Ataskaitos Rengėjas + 1
+ Laiko Vedlys + 10
+ Atsarginis Laiko Matuotojas + 14
+ Regėjimo Negalios Gidas + 1
+ Apšilimo Vedlys + 15
+ Gestų Kalbos Pagalba + 1
+ Automobilių Parkingo Maršalas + 1
+ Renginio Dienos Trasos Patikra + 57
+ parkwalker + 1
Iš viso kreditų316

+ Šioje lentelėje apibendrinamas, kiek kartų buvo atliktas kiekvienas savanorio vaidmuo.
Atkreipkite dėmesį, kad bendra suma gali skirtis nuo visų savanorių kreditų; jei tą pačią dieną atlikote kelias užduotis.
Sužinokite daugiau čia. +



Freedom parkrun renginiai

DataLaikasVieta
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(ne)parktun'ai

SavaitėPradžios DataPabaigos data(ne)parktun'aiGeriausias laikas
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+ +
+ + + + +
+ + +
+
+ + +
+ +
+
+ +
+
+
+ + +
+
+ Vietos: 1 +
+
+ Finišavę dalyviai: 274 +
+
+ Finišai: 318 +
+
+ Visų laikų renginiai: 2 +
+
+ Savanoriai: 27 +
+
+ Asmeniniai rekordai: 9 +
+
+ Vidutinis finišo laikas: 00:30:44 +
+
+ Grupės: 44 +
+
+
+ Statistika paskutinį kartą atnaujinta: 2024 m. rugsėjo 30 d. 00:40:03 +
+
+
+
+
+ + Brooks + +
+
+
+ +

© parkrun Global Limited (Company number: 09411750)

+

Be autorių teisių savininko leidimo jokia šios svetainės dalis jokiu būdu negali būti atkurta visa ar iš dalies.

+

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
+
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/999999/all/index.html new file mode 100644 index 00000000..1a1aae8e --- /dev/null +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/999999/all/index.html @@ -0,0 +1,243 @@ + + + + + + + + + + + + + + + + + +rezultatai | parkrun Lithuania + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ +
+
+ + + + + + Nemokamai, visiems, visuomet + + +

Jakub WOLSKI (A999999)

+ ​ +

+ Peržiūrėkite šio parkrun dalyvio statistikos suvestinę +

+ +
+ + + + +
+ + +
+
+ + +
+ +
+
+ +
+
+
+ + +
+
+ Vietos: 1 +
+
+ Finišavę dalyviai: 274 +
+
+ Finišai: 318 +
+
+ Visų laikų renginiai: 2 +
+
+ Savanoriai: 27 +
+
+ Asmeniniai rekordai: 9 +
+
+ Vidutinis finišo laikas: 00:30:44 +
+
+ Grupės: 44 +
+
+
+ Statistika paskutinį kartą atnaujinta: 2024 m. rugsėjo 30 d. 00:40:03 +
+
+
+
+
+ + Brooks + +
+
+
+ +

© parkrun Global Limited (Company number: 09411750)

+

Be autorių teisių savininko leidimo jokia šios svetainės dalis jokiu būdu negali būti atkurta visa ar iš dalies.

+

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
+
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/999999/index.html new file mode 100644 index 00000000..5ace2575 --- /dev/null +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.lt/contents/parkrunner/999999/index.html @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + +rezultatai | parkrun Lithuania + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+ +
+ +
+ +
+
+ + + + + + Nemokamai, visiems, visuomet + + +

Jakub WOLSKI (A999999)

+ +
+ + + + +
+ + +
+
+ + +
+ +
+
+ +
+
+
+ + +
+
+ Vietos: 1 +
+
+ Finišavę dalyviai: 274 +
+
+ Finišai: 318 +
+
+ Visų laikų renginiai: 2 +
+
+ Savanoriai: 27 +
+
+ Asmeniniai rekordai: 9 +
+
+ Vidutinis finišo laikas: 00:30:44 +
+
+ Grupės: 44 +
+
+
+ Statistika paskutinį kartą atnaujinta: 2024 m. rugsėjo 30 d. 00:40:03 +
+
+
+
+
+ + Brooks + +
+
+
+ +

© parkrun Global Limited (Company number: 09411750)

+

Be autorių teisių savininko leidimo jokia šios svetainės dalis jokiu būdu negali būti atkurta visa ar iš dalies.

+

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
+
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/1309364/all/index.html index c4413468..e7fcc65b 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Malaysia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -114,543 +100,649 @@ -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM35-39 + Most recent age category was VM40-44

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time20:0628:4757:34
Age Grading64.51%47.44%23.54%
Overall Position5165.361021

+
FastestAverage
(mean)
Slowest
Time20:0629:2057:34
Age Grading64.51%46.67%23.54%
Overall Position5182.341021

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97%   -
Whiteley25/03/202321418332:2441.82% +
Winchester25/11/202346134636:0237.60%   -
Winchester11/03/202342821230:3744.26% +
Whiteley18/11/202324721037:0536.54%   -
Winchester04/03/202342730935:4537.90% +
Whiteley11/11/202324617430:3744.26%   -
Winchester25/02/202342632536:0937.48% +
Winchester21/10/202345731533:5140.03%   -
Winchester18/02/202342530336:3137.11% +
Winchester14/10/202345634233:5439.97%   -
Delamere31/12/202242331536:2537.21% +
Ganger Farm07/10/20234713233:4940.07%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester23/09/202345321928:2247.77%   -
Winchester26/11/202241229335:3137.87% +
Winchester16/09/202345235430:3244.38%   -
Whiteley12/11/202221016534:2839.02% +
Winchester09/09/202345129229:1146.43%   -
Winchester29/10/202240924429:5544.96% +
Delamere02/09/202345822633:2840.49%   -
Winchester22/10/202240833736:0837.22% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester17/09/202240326230:2944.12% +
Winchester29/07/202344622227:3649.09%   -
Winchester10/09/202240231134:3338.93% +
Winchester22/07/202344540537:0036.62%   -
Alice Holt03/09/202241817936:3236.82% +
Whiteley15/07/202322915731:1643.34%   -
Winchester27/08/202240042335:2138.05% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester13/08/202239823431:3042.70% +
Winchester17/06/202344128530:4144.16%   -
Tidworth30/07/2022615151:4226.02% +
Winchester10/06/202344032435:2138.33%   -
Uckfield23/07/20221006028:4346.84% +
Winchester20/05/202343822427:0949.91%   -
Winchester09/07/202239428633:1640.43% +
Winchester13/05/202343733232:4341.42%   -
Eastleigh28/05/202254015531:2042.93% +
Whiteley29/04/202321919635:3138.15%   -
Winchester21/05/202238930733:2840.19% +
Winchester22/04/202343431731:1143.45%   -
Alice Holt14/05/202240216932:0142.01% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Winchester07/05/202238734034:1339.31% +
Whiteley25/03/202321418332:2441.82%   -
Guildford30/04/202242825130:0144.81% +
Winchester11/03/202342821230:3744.26%   -
Winchester23/04/202238522932:0241.99% +
Winchester04/03/202342730935:4537.90%   -
Winchester16/04/202238431033:2340.29% +
Winchester25/02/202342632536:0937.48%   -
Winchester19/03/202238025033:5439.68% +
Winchester18/02/202342530336:3137.11%   -
Alice Holt01/01/202238524237:4635.61% +
Delamere31/12/202242331536:2537.21%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester20/11/202136338445:0729.59% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester09/10/202135739843:0730.96% +
Winchester26/11/202241229335:3137.87%   -
Winchester25/09/202135538955:0324.25% +
Whiteley12/11/202221016534:2839.02%   -
Winchester18/09/202135433938:1234.95% +
Winchester29/10/202240924429:5544.96%   -
Winchester04/09/202135233838:2434.77% +
Winchester22/10/202240833736:0837.22%   -
Winchester28/08/202135139841:0132.55% +
Winchester17/09/202240326230:2944.12%   -
Winchester14/08/202134936055:4623.94% +
Winchester10/09/202240231134:3338.93%   -
Winchester31/07/202134832845:2029.45% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester14/03/202034625851:3825.69% +
Winchester27/08/202240042335:2138.05%   -
Winchester07/03/202034510325:5251.29% +
Winchester13/08/202239823431:3042.70%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Tidworth30/07/2022615151:4226.02%   -
Newbury22/02/202043434631:1142.54% +
Uckfield23/07/20221006028:4346.84%   -
Alice Holt08/02/202036010727:1948.57% +
Winchester09/07/202239428633:1640.43% +   +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -684,60 +776,58 @@

Andrew TAYLOR (A13093 Locations: 1
- Finishers: 4,298 -
-
- Finishes: 19,115 + Finishers: 6329
- All-time events: 208 + Finishes: 25733
- Volunteers: 479 + All-time events: 283
- PBs: 3,706 + Volunteers: 596
- Average finish time: 00:38:38 + PBs: 4481
- Average finishes per participant: 4.4 + Average finish time: 00:38:56
- Groups: 334 + Groups: 477
- +
- Stats last updated: Fri 14 Apr 2023 00:39:54 UTC + Stats last updated: Mon 30 Sep 2024 00:40:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -766,8 +866,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/1309364/index.html index d54c0152..16a25fea 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + results | parkrun Malaysia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -114,178 +100,188 @@ -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club -

245 parkruns total

+

297 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM35-39 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun146121300:20:18 + Most recent age category was VM40-44 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun173121320:18 + All +
Whiteley parkrun1410714629:06 + All +
Delamere parkrun11232321:42 All - Graph It!
Delamere parkrun8232300:21:42 +
Eastleigh parkrun6242524:08 All - Graph It!
Whiteley parkrun610714600:29:06 +
Alice Holt parkrun59010727:19 All - Graph It!
Alice Holt parkrun59010700:27:19 +
Southampton parkrun5687021:17 All - Graph It!
Southampton parkrun5687000:21:17 +
Fell Foot parkrun, Newby Bridge4212223:48 All - Graph It!
Eastleigh parkrun5242500:24:08 +
Witton parkrun4303525:40 All - Graph It!
Congleton parkrun49900:20:06 +
Northwich parkrun4485224:55 All - Graph It!
Witton parkrun4303500:25:40 +
Newbury parkrun4829123:49 All - Graph It!
Northwich parkrun4485200:24:55 +
Congleton parkrun49920:06 All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Medina I.O.W. parkrun4667525:13 All - Graph It!
Andover parkrun2242600:22:24 +
Ganger Farm parkrun38013229:25 All - Graph It!
Ganger Farm parkrun29713500:29:25 +
Hanley parkrun2333922:31 All - Graph It!
Hanley parkrun2333900:22:31 +
Burnley parkrun212718929:06 All - Graph It!
Newbury parkrun2829100:23:49 +
Queen Elizabeth parkrun2364026:36 All - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Andover parkrun2242622:24 All - Graph It!
Hagley parkrun1182000:22:38 +
Abingdon parkrun114220229:14 All -  
Ormskirk parkrun120930300:31:04 +
Netley Abbey parkrun1586424:21 All -  
Basingstoke parkrun111212900:24:31 +
Hilly Fields parkrun1859925:03 All -  
Cuerden Valley parkrun1192000:24:47 +
Brockenhurst parkrun112718632:41 All -  
Seven Fields parkrun1546700:28:28 +
Wimpole Estate parkrun112916928:07 All -  
Netley Abbey parkrun1586400:24:21 +
Clumber Park parkrun112117629:51 All -  
Mountbatten School parkrun17110100:31:29 +
Cuerden Valley parkrun1192024:47 All -  
Clitheroe Castle parkrun1639700:35:46 +
Hamilton Lake parkrun1151621:47 All -  
Medina I.O.W. parkrun19513900:30:57 +
Fountains Abbey parkrun1283020:33 All -  
Hogmoor Inclosure parkrun111314000:29:34 +
Ormskirk parkrun120930331:04 All -  
Milano Nord parkrun1475300:27:49 +
Pendle parkrun1465926:37 All -  
Jersey parkrun111018500:30:53 +
Woking parkrun1485824:01 All -  
Canterbury parkrun1323600:27:29 +
Hagley parkrun1182022:38 All -  
Penrhyn parkrun1232600:24:33 +
Penrhyn parkrun1232624:33 All -  
Hyndburn parkrun1425300:29:55 +
Salisbury parkrun119326729:45 All -  
Woking parkrun1485800:24:01 +
Jersey parkrun111018530:53 All -  
Fountains Abbey parkrun1283000:20:33 +
Haigh Woodland parkrun18916837:04 All -  
Bushy parkrun1681102100:33:01 +
Stretford parkrun127540530:23 All -  
Clumber Park parkrun112117600:29:51 +
Portsmouth Lakeside parkrun1818726:32 All -  
Wimpole Estate parkrun112916900:28:07 +
Fareham parkrun19011428:52 All -  
Tidworth parkrun18615100:51:42 +
Milano Nord parkrun1475327:49 All -  
Hilly Fields parkrun1859900:25:03 +
Richmond Olympic parkrun15521:59 All -  
Tawd Valley parkrun18111000:29:25 +
Crewe parkrun112315430:05 All -  
Watermeadows parkrun1151500:23:51 +
Hogmoor Inclosure parkrun111314029:34 All -  
Eden Project parkrun111116200:30:21 +
Catford parkrun19512527:24 All -  
Catford parkrun19512500:27:24 +
Clitheroe Castle parkrun1639735:46 All -  
Crewe parkrun112315400:30:05 +
Pocket parkrun112419533:47 All -  
Long Eaton parkrun118122900:28:06 +
Ford parkrun1477432:29 All -  
Fareham parkrun19511400:28:52 +
Watermeadows parkrun1151523:51 All -  
Phoenix parkrun1232600:27:31 +
Mountbatten School parkrun17110131:29 All -  
Guildford parkrun117125100:30:01 +
Uckfield parkrun1416028:43 All -  
Pendle parkrun1465900:26:37 +
Tawd Valley parkrun18111029:25 All -  
Heaton parkrun133846700:31:01 +
Seven Fields parkrun1546728:28 All -  
Hamilton Lake parkrun1151600:21:47 +
Itchen Valley Country parkrun110613529:53 All -  
Brockenhurst parkrun112718600:32:41 +
Bartley Park parkrun1628430:26 All -  
Itchen Valley Country parkrun110713500:29:53 +
Tidworth parkrun18615151:42 All -  
Burnley parkrun114120400:29:06 +
Bushy parkrun1681102133:01 All -  
Uckfield parkrun1416000:28:43 +
Basingstoke parkrun111212924:31 All -  
Abingdon parkrun114220200:29:14 +
Heaton parkrun133846731:01 All -  
Pocket parkrun112419500:33:47 +
Guildford parkrun117125130:01 All -  
Bolton parkrun116221800:31:49 +
Hyndburn parkrun1425329:55 All -  
Richmond Olympic parkrun15500:21:59 +
Phoenix parkrun1232627:31 All -  
Poole parkrun121328400:28:59 +
Canterbury parkrun1323627:29 All -  
Portsmouth Lakeside parkrun1818700:26:32 +
Valentines parkrun1698025:14 All -  
Salisbury parkrun119326700:29:45 +
Poole parkrun121328428:59 All -  
2455500:20:06 +
Long Eaton parkrun118122928:06 + All +
Bolton parkrun116221831:49 + All +
Eden Project parkrun111116230:21 + All +
2975520:06 All  


Volunteer Summary

RoleOccasions
- Run Director - 21
- Timekeeper - 2
- Token Sorting - 8
- Results Processor - 6
- Photographer - 4
- Marshal - 4
- Pre-event Setup - 6
- Equipment Storage and Delivery - 2
- Barcode Scanning - 2
- Post-event Close Down - 10
- Finish Tokens - 1
- Number Checker - 2
- First Timers Welcome - 1
- Funnel Manager - 1
- Tail Walker - 4
- Volunteer Co-ordinator - 1
- Report Writer - 10
- Pacer (5k only) - 1
Total Credits58

+ Run Director +

21
+ Timekeeper + 2
+ Token Sorting + 8
+ Results Processor + 6
+ Photographer + 4
+ Marshal + 5
+ Pre-event Setup + 6
+ Equipment Storage and Delivery + 2
+ Barcode Scanning + 3
+ Post-event Close Down + 10
+ Finish Tokens + 1
+ Number Checker + 2
+ First Timers Welcome + 1
+ Funnel Manager + 1
+ Tail Walker + 4
+ Volunteer Co-ordinator + 1
+ Report Writer + 10
+ Pacer (5k only) + 1
Total Credits60

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -318,60 +314,58 @@

Andrew TAYLOR (A13093 Locations: 1

- Finishers: 4,298 -
-
- Finishes: 19,115 + Finishers: 6329
- All-time events: 208 + Finishes: 25733
- Volunteers: 479 + All-time events: 283
- PBs: 3,706 + Volunteers: 596
- Average finish time: 00:38:38 + PBs: 4481
- Average finishes per participant: 4.4 + Average finish time: 00:38:56
- Groups: 334 + Groups: 477
- +
- Stats last updated: Fri 14 Apr 2023 00:39:54 UTC + Stats last updated: Mon 30 Sep 2024 00:40:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -400,8 +404,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/2705084/all/index.html index 078ec13d..c700e69d 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Malaysia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -114,10 +100,10 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -152,60 +138,58 @@

Duncan BOOTH (A270508 Locations: 1
- Finishers: 4,309 -
-
- Finishes: 19,160 + Finishers: 6329
- All-time events: 209 + Finishes: 25733
- Volunteers: 479 + All-time events: 283
- PBs: 3,712 + Volunteers: 596
- Average finish time: 00:38:37 + PBs: 4481
- Average finishes per participant: 4.4 + Average finish time: 00:38:56
- Groups: 340 + Groups: 477
- +
- Stats last updated: Mon 17 Apr 2023 00:40:06 UTC + Stats last updated: Mon 30 Sep 2024 00:40:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -234,8 +228,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/2705084/index.html index c9e1f815..cb57c987 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + results | parkrun Malaysia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -114,18 +100,18 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volunteer Summary

RoleOccasions
- Marshal - 260
- Lead Bike - 130
- Event Day Course Check - 9
Total Credits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Volunteer Summary

RoleOccasions
+ Marshal + 350
+ Lead Bike + 130
+ Event Day Course Check + 82
Total Credits540

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



@@ -158,60 +144,58 @@

Duncan BOOTH (A270508 Locations: 1

- Finishers: 4,309 -
-
- Finishes: 19,160 + Finishers: 6329
- All-time events: 209 + Finishes: 25733
- Volunteers: 479 + All-time events: 283
- PBs: 3,712 + Volunteers: 596
- Average finish time: 00:38:37 + PBs: 4481
- Average finishes per participant: 4.4 + Average finish time: 00:38:56
- Groups: 340 + Groups: 477
-
+
- Stats last updated: Mon 17 Apr 2023 00:40:06 UTC + Stats last updated: Mon 30 Sep 2024 00:40:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -240,8 +234,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/482/all/index.html index e5087770..ea91672f 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Malaysia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -119,1650 +105,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM40-44 + Most recent age category was VM45-49

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time16:2521:0459:17
Age Grading79.25%65.45%23.56%
Overall Position134.831692

+
FastestAverage
(mean)
Slowest
Time16:2521:2659:17
Age Grading79.25%64.63%23.56%
Overall Position138.841692

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Harleston Magpies08/04/2023793525:1255.42% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34%   -
Cannock Chase01/04/20232434425:4954.10% +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Kingston25/03/202360216430:0946.32% +
Quakers Walk25/11/2023126825:0556.08%   -
Wolford Wood18/03/202352730:2445.94% +
Aston Hall18/11/202352225:0156.23%   -
Kingston11/03/202360015027:1851.16% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Stockley Country04/03/2023817935:3239.31% +
Belvoir Castle04/11/2023911925:4254.73%   -
Chasewater25/02/202310010026:1953.07% +
Five Arches28/10/202365422:5861.25%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Dover Waterfront21/10/202374525:2255.45%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Rushcliffe14/10/20235087323:5458.86%   -
Worcester04/02/202354318529:3047.34% +
Kingston07/10/202363033150:2927.86%   -
Crane Park28/01/202349014550:3727.59% +
Maaraue03/10/20231012522:3462.33%   -
Kingston21/01/202359431139:3935.22% +
University of Northampton30/09/2023112223:2460.11%   -
Brooklands14/01/202313018830:4445.44% +
Clifton23/09/20231911025:1455.75%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Wisbech16/09/202351523:0361.03%   -
Kingston01/01/202359113340:3134.47% +
Holbrooks09/09/202362223:4359.31%   -
Kingston31/12/202259026442:4432.68% +
Wyre Forest02/09/20233404825:5654.24%   -
Bushy Park25/12/2022909169244:3931.28% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Riverfront19/08/20232594622:5761.29%   -
Kingston17/12/202258818059:1723.56% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston10/12/202258723255:4025.09% +
Kingston05/08/20236216723:2160.24%   -
Beacon03/12/2022737326:4152.34% +
Kingston29/07/20236208725:0955.93%   -
Ganger Farm26/11/2022211426:3452.57% +
Kingston22/07/20236199224:2457.65%   -
Bushy Park19/11/2022903110553:2326.16% +
Severn Valley Country15/07/20231411626:1353.66%   -
Leavesden Country12/11/202246928:3248.95% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Thornham Walks01/07/202353826:5251.99%   -
Durlston Country Park29/10/2022335032:4542.65% +
Kingston24/06/20236156524:0957.83% +   +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1796,60 +1948,58 @@

Danny NORMAN (A482)1
- Finishers: 4,298 -
-
- Finishes: 19,115 + Finishers: 6329
- All-time events: 208 + Finishes: 25733
- Volunteers: 479 + All-time events: 283
- PBs: 3,706 + Volunteers: 596
- Average finish time: 00:38:38 + PBs: 4481
- Average finishes per participant: 4.4 + Average finish time: 00:38:56
- Groups: 334 + Groups: 477
- +
- Stats last updated: Fri 14 Apr 2023 00:39:54 UTC + Stats last updated: Mon 30 Sep 2024 00:40:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1878,8 +2038,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/482/index.html index 8782359c..2a746a05 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + results | parkrun Malaysia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -118,878 +104,1004 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns total

+

867 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM40-44 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2321100:16:25 + Most recent age category was VM45-49 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2341116:25 + All +
Kingston parkrun471116:51 + All +
Bedfont Lakes parkrun81117:04 + All +
Nonsuch parkrun71116:52 + All +
Richmond parkrun71117:13 + All +
Crane Park parkrun61116:48 + All +
Riddlesdown parkrun42217:01 + All +
Bexley parkrun31117:48 + All +
Tilgate parkrun31117:10 + All +
Frimley Lodge parkrun31117:11 + All +
Hilly Fields parkrun31117:50 + All +
Old Deer Park parkrun31117:41 + All +
Guildford parkrun31117:17 + All +
Homewood parkrun3151722:21 + All +
Brockwell parkrun, Herne Hill31116:56 + All +
Southwark parkrun34417:27 + All +
Fulham Palace parkrun33317:47 + All +
Cannon Hill parkrun, Birmingham3111118:04 + All +
Gunnersbury parkrun31116:51 + All +
Wimbledon Common parkrun35517:27 + All +
Brighton & Hove parkrun31116:27 + All +
Basingstoke parkrun35517:48 + All +
Black Park parkrun31117:25 + All +
Dulwich parkrun33317:11 + All +
Bedgebury Pinetum parkrun28921:24 + All +
Harrow parkrun25520:23 + All +
Netley Abbey parkrun21117:21 + All +
Ellenbrook Fields parkrun2141519:58 + All +
Worthing parkrun28918:44 + All +
Grovelands parkrun, Enfield22217:21 + All +
Beckton parkrun23317:24 + All +
Gladstone parkrun21117:09 + All +
Hackney Marshes parkrun22216:46 + All +
Burgess parkrun22216:45 + All +
Orpington parkrun22217:27 + All +
Barking parkrun22216:45 All - Graph It!
Kingston parkrun351100:16:51 +
Southampton parkrun23316:44 All - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Alice Holt parkrun21117:59 All - Graph It!
Richmond parkrun71100:17:13 +
Woodley parkrun21117:02 All - Graph It!
Nonsuch parkrun71100:16:52 +
Upton Court parkrun22217:24 All - Graph It!
Crane Park parkrun61100:16:48 +
Chelmsford Central parkrun22217:24 All - Graph It!
Brighton & Hove parkrun31100:16:27 +
Mole Valley parkrun2262622:56 All - Graph It!
Fulham Palace parkrun33300:17:47 +
Durlston Country Park parkrun2355032:45 All - Graph It!
Frimley Lodge parkrun31100:17:11 +
Hazelwood parkrun2182222:21 All - Graph It!
Gunnersbury parkrun31100:16:51 +
Southsea parkrun23317:55 All - Graph It!
Bexley parkrun31100:17:48 +
St Albans parkrun21116:37 All - Graph It!
Tilgate parkrun31100:17:10 +
Havant parkrun21117:46 All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Ashford parkrun22217:57 All - Graph It!
Southwark parkrun34400:17:27 +
Bedford parkrun21116:55 All - Graph It!
Basingstoke parkrun35500:17:48 +
Margate parkrun21118:16 All - Graph It!
Hilly Fields parkrun31100:17:50 +
Milton Keynes parkrun23317:26 All - Graph It!
Black Park parkrun31100:17:25 +
Preston Park parkrun, Brighton22217:40 All - Graph It!
Riddlesdown parkrun32200:17:01 +
Shorne Woods parkrun21118:14 All - Graph It!
Dulwich parkrun33300:17:11 +
Canons Park parkrun27720:50 All - Graph It!
Guildford parkrun31100:17:17 +
Osterley parkrun21117:57 All - Graph It!
Old Deer Park parkrun31100:17:41 +
Eastleigh parkrun27719:14 All - Graph It!
Wimbledon Common parkrun35500:17:27 +
Brooklands parkrun2394223:22 All - Graph It!
Homewood parkrun3151700:22:21 +
Great Lines parkrun, Medway25518:25 All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Malling Rec parkrun2738526:59 All - Graph It!
Pymmes parkrun21100:17:06 +
Crystal Palace parkrun21117:24 All - Graph It!
Hove Promenade parkrun27700:19:23 +
Northala Fields parkrun22218:06 All - Graph It!
Netley Abbey parkrun21100:17:21 +
Northampton parkrun21116:56 All - Graph It!
Mile End parkrun21100:16:53 +
Oak Hill parkrun21117:13 All - Graph It!
Southampton parkrun23300:16:44 +
Lloyd parkrun, Croydon21118:01 All - Graph It!
Northala Fields parkrun22200:18:06 +
Newbury parkrun21117:20 All - Graph It!
Hockley Woods parkrun26600:21:09 +
Cranleigh parkrun26620:49 All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Littlehampton Prom parkrun2384324:22 All - Graph It!
Upton Court parkrun22200:17:24 +
Whitstable parkrun23318:12 All - Graph It!
Alice Holt parkrun21100:17:59 +
Bethlem Royal Hospital parkrun2263223:22 All - Graph It!
Osterley parkrun21100:17:57 +
Cyclopark parkrun2353824:01 All - Graph It!
Burgess parkrun22200:16:45 +
Hockley Woods parkrun26621:09 All - Graph It!
Gladstone parkrun21100:17:09 +
South Oxhey parkrun21119:13 All - Graph It!
Havant parkrun21100:17:46 +
Pymmes parkrun21117:06 All - Graph It!
Cranleigh parkrun26600:20:49 +
Hastings parkrun291120:41 All - Graph It!
Finsbury parkrun22200:17:15 +
Wycombe Rye parkrun22217:17 All - Graph It!
Southsea parkrun23300:17:55 +
Hove Promenade parkrun27719:23 All - Graph It!
Margate parkrun21100:18:16 +
Banstead Woods parkrun21117:31 All - Graph It!
Northampton parkrun21100:16:56 +
Wormwood Scrubs parkrun21118:00 All - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Roundshaw Downs parkrun23318:14 All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Mile End parkrun21116:53 All - Graph It!
Crystal Palace parkrun21100:17:24 +
Bevendean Down parkrun28923:21 All - Graph It!
Eastleigh parkrun27700:19:14 +
Finsbury parkrun22217:15 All - Graph It!
Hastings parkrun291100:20:41 +
Tooting Common parkrun2181819:14 All - Graph It!
Banstead Woods parkrun21100:17:31 +
Bromley parkrun13317:18 All - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Houghton Hall parkrun1131321:48 All - Graph It!
Hackney Marshes parkrun22200:16:46 +
Sittingbourne parkrun18820:56 All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Sharpham Road Playing Fields parkrun1253124:41 All - Graph It!
Woodley parkrun21100:17:02 +
Gadebridge parkrun1141422:22 All - Graph It!
Tooting Common parkrun2181800:19:14 +
Chilton Fields parkrun1405428:26 All - Graph It!
Milton Keynes parkrun23300:17:26 +
Storeys Field parkrun115121128:49 All - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Hadleigh parkrun, Essex1252624:27 All - Graph It!
Barking parkrun22200:16:45 +
Marple parkrun11117:15 All - Graph It!
Canons Park parkrun27700:20:50 +
Portsmouth Lakeside parkrun19919:12 All - Graph It!
Newbury parkrun21100:17:20 +
Grove Fields parkrun1578528:03 All - Graph It!
Shorne Woods parkrun21100:18:14 +
Banbury parkrun1222321:16 All - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Graves parkrun11118:18 All - Graph It!
Mole Valley parkrun2262600:22:56 +
Watermead Country Park parkrun110818235:52 All - Graph It!
Oak Hill parkrun21100:17:13 +
Eastbourne parkrun12217:24 All - Graph It!
Cyclopark parkrun2353800:24:01 +
Malahide parkrun11116:54 All - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Fareham parkrun16619:21 All - Graph It!
South Oxhey parkrun21100:19:13 +
Sutcliffe parkrun113117230:34 All - Graph It!
Chelmsford Central parkrun22200:17:24 +
Fritton Lake parkrun11118:26 All - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Bicester parkrun14420:13 All - Graph It!
Bevendean Down parkrun28900:23:21 +
Sandringham parkrun1466330:18 All - Graph It!
Bedford parkrun21100:16:55 +
Luton Wardown parkrun191019:36 All - Graph It!
Whitstable parkrun23300:18:12 +
Cwmbran parkrun1171723:29 All - Graph It!
Orpington parkrun22200:17:27 +
Broadwater parkrun110321335:19 All - Graph It!
Ashford parkrun22200:17:57 +
Basildon parkrun15518:13 All - Graph It!
Hazelwood parkrun2182200:22:21 +
Marecchia parkrun11119:50 All - Graph It!
Brooklands parkrun2394200:23:22 +
Harleston Magpies parkrun1293525:12 All - Graph It!
Wycombe Rye parkrun22200:17:17 +
Kingsway parkrun, Gloucester1192021:20 All - Graph It!
Harrow parkrun25500:20:23 +
Bryn Bach parkrun11116:50 All - Graph It!
Beckton parkrun23300:17:24 +
Mersea Island parkrun1121220:59 All - Graph It!
St Albans parkrun21100:16:37 +
Charlton parkrun18213032:05 All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
parkrun de Rouen15521:41 All -  
Buckingham parkrun12200:18:37 +
Dallas Burston Polo Club parkrun19614732:26 All -  
Thomas Mills parkrun1486500:30:19 +
Ashton Court parkrun1859522:59 All -  
Leamington parkrun12200:18:52 +
Tøyen parkrun1668526:32 All -  
Church Mead parkrun16610200:32:53 +
The Great Field parkrun19313529:12 All -  
Letchworth parkrun1141400:23:13 +
Castle Park parkrun1394122:34 All -  
Mulbarton parkrun12200:19:55 +
Swanley parkrun19712531:18 All -  
Arrow Valley parkrun13300:18:05 +
Greenwich parkrun12218:07 All -  
Frogmary Green Farm parkrun1597200:25:58 +
Neckarau parkrun1243027:11 All -  
Sutton Park parkrun1475500:24:54 +
Bury Field parkrun1669033:07 All -  
Reigate Priory parkrun16600:19:06 +
Clifton parkrun1101025:14 All -  
Bury St Edmunds parkrun13300:18:17 +
Alton Water parkrun1538335:09 All -  
Pollok parkrun, Glasgow11100:17:00 +
Colwick parkrun18819:46 All -  
Kingdom parkrun1222500:24:39 +
Melksham parkrun1171724:31 All -  
Barclay parkrun15600:23:13 +
Markshall Estate parkrun110315632:26 All -  
Chippenham parkrun1212100:20:08 +
Rogiet parkrun1151624:27 All -  
Ipswich parkrun11100:17:34 +
Bartley Park parkrun18415132:38 All -  
Itchen Valley Country parkrun1476100:27:37 +
Lydiard parkrun18818:25 All -  
Neckarau parkrun1243000:27:11 +
Little Stoke parkrun11117:03 All -  
Brandon Country Park parkrun11100:18:30 +
Letchworth parkrun1141423:13 All -  
Boston parkrun17700:21:18 +
Belvoir Castle parkrun1131925:42 All -  
University Parks parkrun119032600:31:42 +
Andover parkrun11117:33 All -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Rushcliffe parkrun1617323:54 All -  
Lullingstone parkrun17700:21:21 +
Cirencester parkrun1222422:40 All -  
Coventry parkrun1292900:20:51 +
Southall parkrun1557531:38 All -  
Berkeley Green parkrun1233100:28:31 +
Forest of Dean parkrun1182224:51 All -  
Mersea Island parkrun1121200:20:59 +
parkrun des Dougnes, Cubnezais12219:42 All -  
Aylesbury parkrun11100:17:51 +
South Woodham Ferrers parkrun18821:14 All -  
Royal Tunbridge Wells parkrun18900:19:23 +
Marine Parade parkrun17711129:24 All -  
Southall parkrun1557500:31:38 +
Coventry parkrun1292920:51 All -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Wotton parkrun1182124:45 All -  
Pomphrey Hill parkrun1364100:23:02 +
Gloucester City parkrun1171922:35 All -  
Henley-on-Thames parkrun1111100:22:25 +
Great Salterns parkrun19212430:27 All -  
Aachener Weiher parkrun1101100:24:55 +
Bedworth parkrun1171722:14 All -  
Penrose parkrun1151600:19:40 +
University Parks parkrun119032631:42 All -  
King’s Lynn parkrun1151500:20:07 +
Hampstead Heath parkrun11117:45 All -  
Fulbourn Hospital parkrun1344700:24:59 +
Great Denham parkrun16619:27 All -  
Fareham parkrun16600:19:21 +
Downham Market Academy parkrun1121324:35 All -  
Brockenhurst parkrun13300:18:23 +
Ipswich parkrun11117:34 All -  
Canterbury parkrun16600:21:56 +
Sixfields Upton parkrun18819:58 All -  
Alton Water parkrun1538300:35:09 +
Rendlesham Forest parkrun1264637:01 All -  
Littleport parkrun1445100:25:16 +
Frogmary Green Farm parkrun1597225:58 All -  
Newport parkrun11100:17:29 +
Harrow Lodge parkrun11118:48 All -  
California Country parkrun1649000:28:49 +
Witney parkrun1202022:34 All -  
Thornbury parkrun1323400:28:19 +
Leamington parkrun12218:52 All -  
Greenwich parkrun12200:18:07 +
Brockenhurst parkrun13318:23 All -  
Seven Fields parkrun1475500:26:28 +
Hogmoor Inclosure parkrun1262625:26 All -  
Highbury Fields parkrun11100:17:25 +
Hastings High School parkrun1637827:33 All -  
The Great Field parkrun19313500:29:12 +
Cannock Chase parkrun1384425:49 All -  
Street parkrun1283500:25:52 +
Wimpole Estate parkrun1202122:14 All -  
South Norwood parkrun1121200:21:11 +
Haverhill parkrun1121323:32 All -  
Dunstable Downs parkrun1374300:24:58 +
Edenbrook Country parkrun110514828:01 All -  
Melton Mowbray parkrun1192200:22:38 +
Maidstone River Park parkrun13318:00 All -  
Horsham parkrun14500:18:16 +
Cheltenham parkrun12217:24 All -  
Irchester Country parkrun1586200:25:13 +
Victoria Dock parkrun1273020:04 All -  
Stratford-upon-Avon parkrun1202500:21:14 +
Ekebergsletta parkrun1304325:57 All -  
Wotton parkrun1182100:24:45 +
Oxford parkrun11117:18 All -  
Bath Skyline parkrun1192000:21:08 +
Aylesbury parkrun11117:51 All -  
Great Dunmow parkrun14400:20:25 +
Mote Park parkrun19712231:28 All -  
Corby parkrun18800:23:09 +
Riverfront parkrun1404622:57 All -  
Bracknell parkrun18800:20:04 +
Newent parkrun1182225:27 All -  
Cromhall parkrun1151600:24:20 +
Clapham Common parkrun1404220:22 All -  
Perry Hall parkrun1464900:24:58 +
Llanishen Park parkrun1303323:48 All -  
Gunpowder parkrun12200:17:34 +
Heartwood Forest parkrun1252721:41 All -  
Luton Wardown parkrun191000:19:36 +
Walthamstow parkrun11117:48 All -  
Ifield Mill Pond parkrun1373800:24:33 +
Malmö Ribersborg parkrun111215128:46 All -  
March parkrun15500:21:11 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 All -  
Roding Valley parkrun1111300:21:26 +
Huntingdon parkrun1202121:10 All -  
Charlton parkrun18213000:32:05 +
Felixstowe parkrun1121221:07 All -  
Malmö Ribersborg parkrun111215100:28:46 +
Tidworth parkrun110815535:14 All -  
Worcester parkrun114418500:29:30 +
Brandon Country Park parkrun11118:30 All -  
Wolford Wood parkrun1212700:30:24 +
Prospect parkrun1232322:42 All -  
Fire Service College parkrun1181900:22:12 +
Mildenhall Hub parkrun1273124:33 All -  
Panshanger parkrun17700:20:14 +
York parkrun12217:12 All -  
Conkers parkrun12200:17:46 +
Thetford parkrun1161721:45 All -  
Banbury parkrun1222300:21:16 +
Great Dunmow parkrun14420:25 All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Leavesden Country parkrun1506928:32 All -  
Rushmere parkrun1131400:22:39 +
Catford parkrun1303322:32 All -  
Whiteley parkrun1141500:20:56 +
Lordship Recreation Ground parkrun19112425:22 All -  
Sandringham parkrun1466300:30:18 +
Rugby parkrun1181822:26 All -  
Victoria Dock parkrun1283000:20:04 +
Mulbarton parkrun12219:55 All -  
Queen Elizabeth parkrun12200:19:08 +
Swaffham parkrun191022:19 All -  
Lordship Recreation Ground parkrun19112400:25:22 +
Ganger Farm parkrun19811426:34 All -  
Somerdale Pavilion parkrun1384600:31:17 +
Beckenham Place parkrun1121220:28 All -  
Dartford parkrun11100:17:59 +
Forest Rec parkrun1677626:35 All -  
Winchester parkrun14500:18:28 +
Street parkrun1283525:52 All -  
Stratford Park parkrun, Stroud1566500:27:51 +
Market Bosworth Country Park parkrun110614435:35 All -  
Sherwood Pines parkrun1161800:21:33 +
Whiteley parkrun1141520:56 All -  
Grove Fields parkrun1578500:28:03 +
Kingsbury Water parkrun1394725:05 All -  
Witney parkrun1202000:22:34 +
Springhill parkrun14422:18 All -  
Preston Park parkrun, Brighton12200:17:40 +
Wolford Wood parkrun1212730:24 All -  
Colchester Castle parkrun14400:18:04 +
Pontypridd parkrun12217:54 All -  
Tidworth parkrun110815500:35:14 +
Pocket parkrun1222321:38 All -  
Walmer and Deal Seafront parkrun18800:21:38 +
Stockley Country parkrun111917935:32 All -  
Ferry Meadows parkrun15500:17:27 +
Braunstone parkrun1262720:41 All -  
St Mary’s parkrun1587400:29:14 +
Didcot parkrun1101121:28 All -  
Dartford Heath parkrun1171700:22:06 +
Littleport parkrun1445125:16 All -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Yarborough Leisure Centre parkrun1466125:59 All -  
Great Denham parkrun16600:19:27 +
Roding Valley parkrun1111321:26 All -  
Hastings High School parkrun1637800:27:33 +
Clair parkrun13318:36 All -  
Wendover Woods parkrun1262600:23:51 +
Dinton Pastures parkrun1131321:23 All -  
Peckham Rye parkrun11100:17:49 +
Beacon Hill Country Park parkrun1273725:54 All -  
Upton House parkrun1252700:22:34 +
Severn Bridge parkrun1353921:32 All -  
Lee-on-the-Solent parkrun17700:19:40 +
Abbey Park parkrun1779425:21 All -  
Graves parkrun11100:18:18 +
Dudley parkrun1445626:35 All -  
Maidstone parkrun13300:18:00 +
Pegwell Bay parkrun12217:40 All -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Manor Field parkrun, Whittlesey1121324:25 All -  
South Woodham Ferrers parkrun18800:21:14 +
Blaise Castle parkrun112816326:20 All -  
Pontypridd parkrun12200:17:54 +
Chipping Sodbury parkrun1303221:20 All -  
Bournemouth parkrun14400:17:43 +
Foots Cray Meadows parkrun1212323:17 All -  
Sizewell parkrun1172000:23:30 +
Thames Path parkrun, Woolwich1789023:42 All -  
Rushmoor parkrun19900:18:29 +
Bath Skyline parkrun1192021:08 All -  
Walsall Arboretum parkrun19810600:25:31 +
Dishley parkrun, Loughborough110311424:30 All -  
Gorleston Cliffs parkrun12200:17:43 +
Thornham Walks parkrun1363826:52 All -  
Uckfield parkrun1404300:24:12 +
Moors Valley parkrun19919:40 All -  
Aldenham parkrun1141400:21:37 +
East Grinstead parkrun1131423:10 All -  
Gadebridge parkrun1141400:22:22 +
Sutton Park parkrun1475524:54 All -  
Horspath parkrun17410600:28:12 +
University of Northampton parkrun1192223:24 All -  
Rogiet parkrun1151600:24:27 +
Shipley Country parkrun1232424:45 All -  
Rendlesham Forest parkrun1264600:37:01 +
Lancing Beach Green parkrun1141421:08 All -  
Dishley parkrun, Loughborough110311400:24:30 +
Dover Waterfront parkrun1374525:22 All -  
Great Cornard parkrun1192000:20:33 +
Rickmansworth parkrun1242721:39 All -  
Kettering parkrun1232600:22:50 +
Queen Elizabeth parkrun12219:08 All -  
Pont y Bala parkrun15700:23:18 +
Sizewell parkrun1172023:30 All -  
Burnham and Highbridge parkrun17510000:27:51 +
Holbrooks parkrun1202223:43 All -  
Stonehouse parkrun1131300:20:09 +
Highbury Fields parkrun11117:25 All -  
Hampstead Heath parkrun11100:17:45 +
Clacton Seafront parkrun19920:35 All -  
Wickford Memorial parkrun1436600:51:15 +
Delaware and Raritan Canal parkrun12221:06 All -  
Castle Park parkrun1394100:22:34 +
Wisbech parkrun1111523:03 All -  
Huntingdon parkrun1202100:21:10 +
Milton Country parkrun13317:43 All -  
Great Salterns parkrun19212400:30:27 +
Seaton parkrun1394824:09 All -  
Snowden Field parkrun1242600:24:15 +
Higginson parkrun, Marlow1272922:17 All -  
Southend parkrun11100:16:28 +
Quakers Walk parkrun1566825:05 All -  
Andover parkrun11100:17:33 +
Lister Park parkrun, Bradford1313621:55 All -  
parkrun Zalew Żyrardowski16700:24:38 +
Wendover Woods parkrun1262623:51 All -  
Marecchia parkrun11100:19:50 +
Sence Valley Forest Park parkrun1232526:28 All -  
Cheltenham parkrun12200:17:24 +
Canterbury parkrun16621:56 All -  
St Helens parkrun1606800:24:27 +
Henstridge Airfield parkrun18821:41 All -  
Bartley Park parkrun18415100:32:38 +
Five Arches parkrun1455422:58 All -  
Severn Bridge parkrun1353900:21:32 +
Yeovil Montacute parkrun1707525:51 All -  
Pontypool parkrun1232300:23:51 +
Watermeadows parkrun1283124:57 All -  
Poole parkrun14400:16:57 +
Tamworth Castle Grounds parkrun1333523:26 All -  
Bramhall parkrun115924700:35:16 +
St Helens parkrun1606824:27 All -  
Sunny Hill parkrun1202400:24:39 +
Weymouth parkrun1141420:45 All -  
Cassiobury parkrun1111100:20:14 +
Walmer and Deal Seafront parkrun18821:38 All -  
Hoblingwell parkrun1202400:23:52 +
Aston Hall parkrun1202225:01 All -  
Colwick parkrun18800:19:46 +
Royal Tunbridge Wells parkrun18919:23 All -  
Chipping Norton School parkrun1455100:26:40 +
Corby parkrun18823:09 All -  
Worthing parkrun18900:18:44 +
Marlborough Common parkrun1202122:48 All -  
Harrow Lodge parkrun11100:18:48 +
Battlestead Croft parkrun1111122:53 All -  
Bradford parkrun1313600:21:55 +
Shepton Mallet parkrun1121421:50 All -  
Bury Field parkrun1669000:33:07 +
Clare Castle parkrun1252723:04 All -  
Pocket parkrun1222300:21:38 +
Coldham’s Common parkrun1535923:04 All -  
Longrun Meadow parkrun111416500:32:01 +
Brunswick Park parkrun1212223:58 All -  
Worcester Pitchcroft parkrun111814300:27:04 +
Brentwood parkrun17722:28 All -  
Highwoods parkrun1252600:24:49 +
Somerdale Pavilion parkrun1384631:17 All -  
Maidenhead parkrun17700:18:49 +
Wakehurst parkrun18810525:00 All -  
Soham Village College parkrun1253200:28:03 +
Boston parkrun17721:18 All -  
Rickmansworth parkrun1242700:21:39 +
Morden parkrun111715526:58 All -  
Swaffham parkrun191000:22:19 +
Pontefract parkrun1718724:10 All -  
Brentwood parkrun17700:22:28 +
Jersey Farm parkrun1252723:11 All -  
Lymington Woodside parkrun15700:21:59 +
Bug Hunter Waters parkrun1455022:41 All -  
Loch Neaton parkrun, Watton1171700:25:49 +
Rosliston parkrun1333624:41 All -  
Daventry parkrun1151500:21:10 +
Longrun Meadow parkrun111416532:01 All -  
Hatfield Forest parkrun1181800:20:36 +
Fire Service College parkrun1181922:12 All -  
Kingsway parkrun, Gloucester1192000:21:20 +
Woolacombe Dunes parkrun19410931:20 All -  
Salcey Forest parkrun1384300:24:53 +
The Plens parkrun1303124:04 All -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Arrow Valley parkrun13318:05 All -  
Prospect parkrun1232300:22:42 +
Tonbridge parkrun14418:40 All -  
Weymouth parkrun1141400:20:45 +
East Brighton parkrun1182123:56 All -  
Westmill parkrun1101000:22:55 +
Three Brooks parkrun1697223:46 All -  
East Brighton parkrun1182100:23:56 +
Peacehaven parkrun17721:07 All -  
Harlow parkrun1151500:23:00 +
Pontypool parkrun1232323:51 All -  
Linford Wood parkrun1222200:21:45 +
Cromhall parkrun1151624:20 All -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Dereham parkrun1323323:47 All -  
Lydney parkrun1202100:23:19 +
Bournemouth parkrun14417:43 All -  
Braunstone parkrun1262700:20:41 +
Pomphrey Hill parkrun1364123:02 All -  
Harleston Magpies parkrun1293500:25:12 +
Seaford Beach parkrun1535622:25 All -  
Clapham Common parkrun1404200:20:22 +
Mansfield parkrun11117:09 All -  
Market Bosworth Country Park parkrun110614400:35:35 +
Fountains Abbey parkrun11118:03 All -  
Jersey Farm parkrun1252700:23:11 +
Loch Neaton parkrun, Watton1171725:49 All -  
Kesgrave parkrun1374000:21:18 +
Brueton parkrun1475021:33 All -  
Stevenage parkrun17700:19:32 +
Great Cornard parkrun1192020:33 All -  
Hadleigh parkrun, Essex1252600:24:27 +
Dunstable Downs parkrun1374324:58 All -  
Squerryes Winery parkrun1323600:27:45 +
Beeston parkrun1374023:53 All -  
Rutland Water parkrun1293000:22:44 +
Feltham parkrun13424:56 All -  
Beckenham Place parkrun1121200:20:28 +
Markeaton parkrun1576422:56 All -  
Sutcliffe parkrun113117200:30:34 +
Reigate Priory parkrun16619:06 All -  
Haverhill parkrun1121300:23:32 +
Highwoods parkrun1252624:49 All -  
Leavesden Country parkrun1506900:28:32 +
Valentines parkrun11116:49 All -  
Coldham’s Common parkrun1535900:23:04 +
Springburn parkrun, Glasgow13318:05 All -  
Chichester parkrun13300:19:05 +
California Country parkrun1649028:49 All -  
Billericay parkrun1121300:21:20 +
Rushmoor parkrun19918:29 All -  
Bromley parkrun13300:17:18 +
Mountbatten School parkrun1323424:11 All -  
Babbs Mill parkrun1405100:28:00 +
Colchester Castle parkrun14418:04 All -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Buckingham parkrun12218:37 All -  
Bryn Bach parkrun11100:16:50 +
Sunny Hill parkrun1202424:39 All -  
York parkrun12200:17:12 +
Bognor Regis parkrun12218:12 All -  
Storeys Field parkrun115121100:28:49 +
Aachener Weiher parkrun1101124:55 All -  
Chipping Sodbury parkrun1303200:21:20 +
Peckham Rye parkrun11117:49 All -  
Mote Park parkrun19712200:31:28 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 All -  
Watermeadows parkrun1283100:24:57 +
Great Notley parkrun16620:16 All -  
Woking parkrun18800:18:19 +
Snowden Field parkrun1242624:15 All -  
Raphael parkrun13300:19:35 +
Burnham-on-Crouch parkrun18822:01 All -  
Harwich parkrun191000:21:22 +
Woking parkrun18818:19 All -  
Fritton Lake parkrun11100:18:26 +
Neckarufer parkrun, Esslingen1364425:12 All -  
Heartwood Forest parkrun1252700:21:41 +
Worcester parkrun114418529:30 All -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Blandford parkrun18920:11 All -  
Bedworth parkrun1171700:22:14 +
Pont y Bala parkrun15723:18 All -  
Clair parkrun13300:18:36 +
Chichester parkrun13319:05 All -  
Brueton parkrun1475000:21:33 +
Kingdom parkrun1222524:39 All -  
Higginson parkrun, Marlow1272900:22:17 +
Westmill parkrun1101022:55 All -  
Bognor Regis parkrun12200:18:12 +
Dartford parkrun11117:59 All -  
Huddersfield parkrun1626700:22:02 +
Hanworth parkrun1364024:26 All -  
Heaton parkrun13300:18:08 +
Bracknell parkrun18820:04 All -  
Chasewater parkrun18210000:26:19 +
Folkestone parkrun1212521:48 All -  
Tewkesbury parkrun1111400:22:50 +
Uckfield parkrun1404324:12 All -  
Marple parkrun11100:17:15 +
Harrogate parkrun13318:11 All -  
Cannock Chase parkrun1384400:25:49 +
Kesgrave parkrun1374021:18 All -  
Edgbaston Reservoir parkrun1658600:26:24 +
Thomas Mills parkrun1486530:19 All -  
Cirencester parkrun1222400:22:40 +
Lymington Woodside parkrun15721:59 All -  
Kingsbury Water parkrun1394700:25:05 +
Hereford parkrun1535323:07 All -  
Peacehaven parkrun17700:21:07 +
Chasewater parkrun18210026:19 All -  
Lancing Beach Green parkrun1141400:21:08 +
South Norwood parkrun1121221:11 All -  
Springburn parkrun, Glasgow13300:18:05 +
Panshanger parkrun17720:14 All -  
Market Harborough parkrun1303100:21:17 +
Wolverhampton parkrun1556624:54 All -  
Amager Fælled parkrun1333700:24:23 +
Harcourt Hill parkrun1171721:13 All -  
Hanworth parkrun1364000:24:26 +
Tetbury Goods Shed parkrun1253024:25 All -  
Salisbury parkrun1111100:19:34 +
Gloucester North parkrun1101022:14 All -  
Houghton Hall parkrun1131300:21:48 +
Harlow parkrun1151523:00 All -  
Chalkwell Beach parkrun1819600:24:40 +
Alvaston parkrun1515922:24 All -  
Melksham parkrun1171700:24:31 +
Worcester Pitchcroft parkrun111814327:04 All -  
Thetford parkrun1161700:21:45 +
Perry Hall parkrun1464924:58 All -  
Pontefract parkrun1718700:24:10 +
Newport parkrun11117:29 All -  
Downham Market Academy parkrun1121300:24:35 +
Tring parkrun1171823:38 All -  
Fountains Abbey parkrun11100:18:03 +
Severn Valley Country parkrun1141626:13 All -  
Cardiff parkrun111011700:22:02 +
Wanstead Flats parkrun13317:13 All -  
Littlehampton Prom parkrun1384300:24:22 +
Daventry parkrun1151521:10 All -  
Uditore parkrun13300:20:28 +
St Mary’s parkrun1587429:14 All -  
Beacon parkrun1587300:26:41 +
Poole parkrun14416:57 All -  
parkrun de Rouen15500:21:41 +
Melton Mowbray parkrun1192222:38 All -  
Walthamstow parkrun11100:17:48 +
The Old Showfield parkrun1636923:30 All -  
Shepton Mallet parkrun1121400:21:50 +
Henley-on-Thames parkrun1111122:25 All -  
Marine Parade parkrun17711100:29:24 +
Crissy Field parkrun1101220:40 All -  
Foots Cray Meadows parkrun1212300:23:17 +
Babbs Mill parkrun1405128:00 All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Maidenhead parkrun17718:49 All -  
Evesham parkrun1111100:21:39 +
Ross-on-Wye parkrun1172124:22 All -  
Southwick Country parkrun1272900:21:47 +
Kettering parkrun1232622:50 All -  
Lydiard parkrun18800:18:25 +
Stratford Park parkrun, Stroud1566527:51 All -  
Sandhurst Memorial parkrun1537300:28:54 +
Bury St Edmunds parkrun13318:17 All -  
Bicester parkrun14400:20:13 +
Mallards Pike parkrun1324630:57 All -  
Wimpole Estate parkrun1202100:22:14 +
Market Harborough parkrun1303121:17 All -  
Markshall Estate parkrun110315600:32:26 +
Cassiobury parkrun1111120:14 All -  
Dinton Pastures parkrun1131300:21:23 +
Squerryes Winery parkrun1323627:45 All -  
Tonbridge parkrun14400:18:40 +
Walsall Arboretum parkrun19010625:31 All -  
Wanstead Flats parkrun13300:17:13 +
Penrose parkrun1151619:40 All -  
Woodhouse Moor parkrun11100:17:22 +
King George V Playing Field parkrun, Cheltenham1232826:08 All -  
Mountbatten School parkrun1323400:24:11 +
Evesham parkrun1111121:39 All -  
Eastville parkrun120525300:25:12 +
Warwick Racecourse parkrun1486024:55 All -  
Brixworth Country parkrun1496100:26:53 +
Huddersfield parkrun1626722:02 All -  
Portsmouth Lakeside parkrun19900:19:12 +
Clevedon Salthouse Fields parkrun1384925:13 All -  
Milton Country parkrun13300:17:43 +
Long Eaton parkrun19912124:06 All -  
Swanley parkrun19712500:31:18 +
Barry Island parkrun1394223:51 All -  
Springhill parkrun14400:22:18 +
Ifield Mill Pond parkrun1373824:33 All -  
Gloucester North parkrun1101000:22:14 +
Upton House parkrun1252722:34 All -  
Feltham parkrun13400:24:56 +
Lullingstone parkrun17721:21 All -  
Crissy Field parkrun1101200:20:40 +
The Leas parkrun, Minster1252524:37 All -  
Ally Pally parkrun11100:18:09 +
Medina I.O.W. parkrun11117:20 All -  
Ashton Court parkrun1859500:22:59 +
Uditore parkrun13320:28 All -  
Oaklands parkrun111820300:36:10 +
Hunstanton Promenade parkrun1283523:45 All -  
Sittingbourne parkrun18800:20:56 +
Raphael parkrun13319:35 All -  
Moors Valley parkrun19900:19:40 +
Burnham and Highbridge parkrun17510027:51 All -  
Catford parkrun1303300:22:32 +
Salcey Forest parkrun1384324:53 All -  
Clare Castle parkrun1252700:23:04 +
Ferry Meadows parkrun15517:27 All -  
Harrogate parkrun13300:18:11 +
Barclay parkrun15623:13 All -  
Seaford Beach parkrun1535600:22:25 +
Irchester Country parkrun1586225:13 All -  
Tring parkrun1171800:23:38 +
Maldon Prom parkrun11118:04 All -  
Sandwell Valley parkrun1455900:30:43 +
Salisbury parkrun1111119:34 All -  
Basildon parkrun15500:18:13 +
Tremorfa parkrun1272923:30 All -  
The Leas parkrun, Minster1252500:24:37 +
Billericay parkrun1121321:20 All -  
Little Stoke parkrun11100:17:03 +
Gedling parkrun1273224:59 All -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Oaklands parkrun111820336:10 All -  
Felixstowe parkrun1121200:21:07 +
Winchester parkrun14518:28 All -  
Yeovil Montacute parkrun1707500:25:51 +
Aldenham parkrun1141421:37 All -  
Stockley Country parkrun111917900:35:32 +
East Park parkrun1121424:18 All -  
Woolacombe Dunes parkrun19410900:31:20 +
Soham Village College parkrun1253228:03 All -  
Harcourt Hill parkrun1171700:21:13 +
Stevenage parkrun17719:32 All -  
Abingdon parkrun15500:18:03 +
Tewkesbury parkrun1111422:50 All -  
Eastbourne parkrun12200:17:24 +
Seven Fields parkrun1475526:28 All -  
Warwick Racecourse parkrun1486000:24:55 +
Conkers parkrun12217:46 All -  
Leicester Victoria parkrun19711600:26:45 +
Lee-on-the-Solent parkrun17719:40 All -  
Broadwater parkrun110321300:35:19 +
Brixworth Country parkrun1496126:53 All -  
Clacton Seafront parkrun19900:20:35 +
Abingdon parkrun15518:03 All -  
Burnham-on-Crouch parkrun18800:22:01 +
Lowestoft parkrun1232621:10 All -  
Ganger Farm parkrun19811400:26:34 +
Chipping Norton School parkrun1455126:40 All -  
Folkestone parkrun1212500:21:48 +
Linford Wood parkrun1222221:45 All -  
Mallards Pike parkrun1324600:30:57 +
Harwich parkrun191021:22 All -  
Malling parkrun18314500:47:25 +
Fulbourn Hospital parkrun1344724:59 All -  
Rugby parkrun1181800:22:26 +
Gunpowder parkrun12217:34 All -  
Watermead Country Park parkrun110818200:35:52 +
Dartford Heath parkrun1171722:06 All -  
Hogmoor Inclosure parkrun1262600:25:26 +
Sandhurst Memorial parkrun1537328:54 All -  
East Grinstead parkrun1131400:23:10 +
Woodhouse Moor parkrun11117:22 All -  
Mildenhall Hub parkrun1273100:24:33 +
Sandwell Valley parkrun1455930:43 All -  
Marlborough Common parkrun1202100:22:48 +
Wyre Forest parkrun1434825:56 All -  
Blandford parkrun18900:20:11 +
parkrun Zalew Żyrardowski16724:38 All -  
Maldon Prom parkrun11100:18:04 +
Bramhall parkrun115924735:16 All -  
Edinburgh parkrun12200:17:00 +
Hatfield Forest parkrun1181820:36 All -  
The Old Showfield parkrun1636900:23:30 +
Swansea Bay parkrun1748323:44 All -  
Jersey parkrun16600:19:41 +
Wollaton Hall parkrun1889723:51 All -  
Chilton Fields parkrun1405400:28:26 +
Horsham parkrun14518:16 All -  
Sixfields Upton parkrun18800:19:58 +
Jersey parkrun16619:41 All -  
Pegwell Bay parkrun12200:17:40 +
Berkeley Green parkrun1233128:31 All -  
Valentines parkrun11100:16:49 +
Cardiff parkrun111011722:02 All -  
Edenbrook Country parkrun110514800:28:01 +
Ally Pally parkrun11118:09 All -  
Henstridge Airfield parkrun18800:21:41 +
Thurrock parkrun, Orsett Heath16620:41 All -  
Great Notley parkrun16600:20:16 +
Beacon parkrun1587326:41 All -  
Medina I.O.W. parkrun11100:17:20 +
Albert parkrun, Middlesbrough1515423:17 All -  
Reading parkrun12200:17:18 +
Sherwood Pines parkrun1161821:33 All -  
Tetbury Goods Shed parkrun1253000:24:25 +
Wickford Memorial parkrun1436651:15 All -  
Lowestoft parkrun1232600:21:10 +
Thornbury parkrun1323428:19 All -  
Malahide parkrun11100:16:54 +
Malling parkrun18314547:25 All -  
Oxford parkrun11100:17:18 +
Itchen Valley Country parkrun1476127:37 All -  
Rheinpark parkrun1151800:25:30 +
Pollok parkrun, Glasgow11117:00 All -  
Gloucester City parkrun1171900:22:35 +
Eastville parkrun120525325:12 All -  
Didcot parkrun1101100:21:28 +
Rutland Water parkrun1293022:44 All -  
Mansfield parkrun11100:17:09 +
Chalkwell Beach parkrun1819624:40 All -  
7851100:16:25 +
Amager Fælled parkrun1333724:23 + All +
Hoblingwell parkrun1202423:52 + All +
Belton House parkrun1141523:48 + All +
Kagerzoom parkrun1435824:39 + All +
Gorleston Cliffs parkrun12217:43 + All +
King’s Lynn parkrun1151520:07 + All +
Holkham parkrun1506925:37 + All +
Horspath parkrun17410628:12 + All +
Southwick Country parkrun1272921:47 + All +
Rushmere parkrun1131422:39 + All +
Zuiderpark parkrun, Den Haag1738124:07 + All +
Heaton parkrun13318:08 + All +
Colney Lane parkrun1495524:01 + All +
Leicester Victoria parkrun19711626:45 + All +
Church Mead parkrun16610232:53 + All +
Southend parkrun11116:28 + All +
Lydney parkrun1202123:19 + All +
Edgbaston Reservoir parkrun1658626:24 + All +
Reading parkrun12217:18 + All +
March parkrun15521:11 + All +
Woodgate Valley Country Park parkrun16513245:50 + All +
Maaraue parkrun1232522:34 + All +
Stonehouse parkrun1131320:09 + All +
Rheinpark parkrun1151825:30 + All +
Edinburgh parkrun12217:00 + All +
Chippenham parkrun1212120:08 + All +
Stratford-upon-Avon parkrun1202521:14 + All +
Henlow Bridge Lakes parkrun17511532:34 + All +
8671116:25 All  


Volunteer Summary

RoleOccasions
- Run Director - 94
- Timekeeper - 59
- Token Sorting - 3
- Results Processor - 87
- Photographer - 6
- Communications Person - 10
- Marshal - 39
- Pre-event Setup - 130
- Equipment Storage and Delivery - 128
- Other - 23
- Barcode Scanning - 55
- Post-event Close Down - 45
- Finish Tokens - 15
- Number Checker - 2
- First Timers Welcome - 68
- Funnel Manager - 15
- Finish Token Support - 9
- Tail Walker - 29
- Volunteer Co-ordinator - 146
- Report Writer - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Car Park Marshal - 1
- Event Day Course Check - 8
- parkwalker - 9
Total Credits396

+ Run Director +

99
+ Timekeeper + 94
+ Token Sorting + 12
+ Results Processor + 87
+ Photographer + 6
+ Communications Person + 10
+ Marshal + 54
+ Pre-event Setup + 148
+ Equipment Storage and Delivery + 130
+ Other + 26
+ Barcode Scanning + 78
+ Post-event Close Down + 51
+ Finish Tokens + 21
+ Number Checker + 2
+ First Timers Welcome + 82
+ Funnel Manager + 15
+ Finish Token Support + 12
+ Tail Walker + 29
+ Volunteer Co-ordinator + 148
+ Report Writer + 100
+ Backup Timer + 3
+ Warm Up Leader + 16
+ Car Park Marshal + 1
+ Event Day Course Check + 14
+ parkwalker + 10
Total Credits499

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1022,60 +1134,58 @@

Danny NORMAN (A482)1

- Finishers: 4,298 + Finishers: 6329
- Finishes: 19,115 + Finishes: 25733
- All-time events: 208 + All-time events: 283
- Volunteers: 479 + Volunteers: 596
- PBs: 3,706 + PBs: 4481
- Average finish time: 00:38:38 + Average finish time: 00:38:56
- Average finishes per participant: 4.4 + Groups: 477
-
- Groups: 334 -
- +
- Stats last updated: Fri 14 Apr 2023 00:39:54 UTC + Stats last updated: Mon 30 Sep 2024 00:40:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1104,8 +1224,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/88720/all/index.html index 041bc1cb..0732c72c 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Malaysia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -116,631 +102,729 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM55-59 + Most recent age category was VM60-64

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time21:4025:2552:00
Age Grading69.71%60.41%29.55%
Overall Position648.88374

+
FastestAverage
(mean)
Slowest
Time21:3625:2654:59
Age Grading72.99%60.80%28.92%
Overall Position648.44374

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Halifax08/04/20233313225:0063.07% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73%   -
Fulham Palace01/04/202339110924:0965.29% +
Halifax04/05/20243842924:2665.08%   -
Halifax25/03/20233291624:4363.79% +
Hyndburn27/04/20242593125:5161.51%   -
Halifax18/03/20233282326:4758.87% +
Zuiderpark20/04/20241261722:0372.11%   -
Halifax04/03/20233273825:1962.28% +
Halifax13/04/20243813524:3764.59%   -
Myrtle25/02/20231593824:5263.40% +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% PB   -
Halifax18/02/20233252926:0360.52% +
Conwy18/11/20233764424:5363.90%   -
Halifax11/02/20233243124:0365.56% +
Penistone28/10/20231393724:2065.34%   -
Bradford04/02/20235795022:3769.71% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Bowling Park28/01/202379924:1165.20% +
Halifax16/09/20233532123:4367.04%   -
Bramley21/01/20233004925:3461.67% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax14/01/20233213325:5260.95% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Halifax07/01/20233203026:2659.65% +
Glossop12/08/20233152824:2564.57%   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax05/08/20233473024:4363.79%   -
Nostell31/12/20223614325:0063.07% +
Huddersfield29/07/20235456722:4769.20%   -
Halifax24/12/20223173125:4661.19% +
Brighouse15/07/20232544223:5366.02% + PB + +   +
Stratford Park, Stroud01/07/20231253126:2959.53% +   +
Wetherby24/06/20233094124:4663.66%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax10/06/20233402524:0265.60%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax03/06/20233392124:1365.11% +   +
Long Eaton20/05/20233306921:3672.99% +   +
Halifax06/05/20233352423:4566.39% +   +
Keswick29/04/20233904121:3672.99% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax22/04/20233334725:0262.98%   -
Brighouse12/11/20222213725:1762.36% +
Halifax08/04/20233313225:0063.07%   -
Halifax05/11/20223122424:5163.45% +
Fulham Palace01/04/202339110924:0965.29%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax25/03/20233291624:4363.79%   -
Halifax15/10/202230910749:5431.60% +
Halifax18/03/20233282326:4758.87%   -
Crosby08/10/20222833525:3861.51% +
Halifax04/03/20233273825:1962.28%   -
Alness01/10/20221801024:0965.29% +
Myrtle25/02/20231593824:5263.40% + PB + +   +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71% +   +
Bowling Park28/01/202379924:1165.20% +   +
Bramley21/01/20233004925:3461.67% +   +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB + +   +
Conkers19/11/20225485624:1465.06%   -
Victoria24/09/20223736722:5468.85% +
Brighouse12/11/20222213725:1762.36%   -
Halifax17/09/20223052625:0063.07% +
Halifax05/11/20223122424:5163.45%   -
Centre Vale10/09/20221034428:4454.87% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax03/09/20223033125:3361.71% +
Halifax15/10/202230910749:5431.60%   -
Skipton27/08/20224035325:3561.11% +
Crosby08/10/20222833525:3861.51%   -
Halifax20/08/20223012824:5262.87% +
Alness01/10/20221801024:0965.29%   -
Halifax06/08/20222996426:0360.01% +
Victoria24/09/20223736722:5468.85%   -
Armley30/07/20221432724:2863.90% +
Halifax17/09/20223052625:0063.07%   -
Halifax16/07/20222962524:2663.98% +
Centre Vale10/09/20221034428:4454.87%   -
Halifax02/07/20222942524:4863.04% +
Halifax03/09/20223033125:3361.71%   -
Halifax18/06/20222922424:5462.78% +
Skipton27/08/20224035325:3561.11%   -
The Pastures11/06/2022991826:2159.33% +
Halifax20/08/20223012824:5262.87%   -
Halifax04/06/20222913826:4858.33% +
Halifax06/08/20222996426:0360.01%   -
Horton Park28/05/20222942225:1262.04% +
Armley30/07/20221432724:2863.90%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax16/07/20222962524:2663.98%   -
Halifax07/05/20222877529:3552.85% +
Halifax02/07/20222942524:4863.04%   -
Harrogate30/04/202246716226:4458.48% +
Halifax18/06/20222922424:5462.78%   -
Halifax23/04/20222854927:0057.90% +
The Pastures11/06/2022991826:2159.33%   -
Halifax09/04/20222834526:3758.74% +
Halifax04/06/20222913826:4858.33%   -
Halifax02/04/20222822924:4463.21% +
Horton Park28/05/20222942225:1262.04%   -
Pendle26/03/20223443126:1659.52% +
Bushy Park21/05/202287737424:0664.87%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax07/05/20222877529:3552.85%   -
Halifax05/03/20222784925:3761.03% +
Harrogate30/04/202246716226:4458.48%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax23/04/20222854927:0057.90% +   +
Halifax09/04/20222834526:3758.74% +   +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -774,60 +858,58 @@

Phillip WHETTLOCK (A8 Locations: 1
- Finishers: 4,309 -
-
- Finishes: 19,160 + Finishers: 6329
- All-time events: 209 + Finishes: 25733
- Volunteers: 479 + All-time events: 283
- PBs: 3,712 + Volunteers: 596
- Average finish time: 00:38:37 + PBs: 4481
- Average finishes per participant: 4.4 + Average finish time: 00:38:56
- Groups: 340 + Groups: 477
- +
- Stats last updated: Mon 17 Apr 2023 00:40:06 UTC + Stats last updated: Mon 30 Sep 2024 00:40:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -856,8 +948,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/88720/index.html index de644466..ea63418f 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + results | parkrun Malaysia - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -116,185 +102,241 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns total

+ + Member of the Volunteer 250 club +

345 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM55-59 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bradford parkrun1166600:21:40 + Most recent age category was VM60-64 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Halifax parkrun1268822:13 + All +
Lister Park parkrun, Bradford1166621:40 + All +
Horton Park parkrun9131322:18 + All +
Keswick parkrun4253321:36 + All +
Sewerby parkrun3121222:08 + All +
Pontefract parkrun2273222:08 + All +
Brighouse parkrun2333723:53 + All +
Temple Newsam parkrun2272925:14 + All +
Fountains Abbey parkrun2394822:26 + All +
Oakwell Hall parkrun2293626:10 + All +
Whinlatter Forest parkrun2283227:23 + All +
Bramley parkrun2252524:06 + All +
Middleton Woods parkrun2121424:55 + All +
Myrtle parkrun2333824:52 + All +
Centre Vale parkrun2303626:37 + All +
Bushy parkrun130137424:06 + All +
Woodhouse Moor parkrun1778222:18 + All +
Pollok parkrun, Glasgow1667223:58 + All +
Edinburgh parkrun1646721:54 All - Graph It!
Halifax parkrun1148800:22:13 +
Wakefield Thornes parkrun1545824:29 All - Graph It!
Horton Park parkrun9131300:22:18 +
Hyndburn parkrun1253125:51 All - Graph It!
Sewerby parkrun3121200:22:08 +
York parkrun111413522:55 All - Graph It!
Keswick parkrun3253300:23:33 +
Milton Country parkrun1707522:40 All - Graph It!
Pontefract parkrun2273200:22:08 +
Carlisle parkrun1567126:05 All - Graph It!
Temple Newsam parkrun2272900:25:14 +
Harrogate parkrun112316226:44 All - Graph It!
Myrtle parkrun2333800:24:52 +
Southport parkrun1545723:57 All - Graph It!
Middleton Woods parkrun2121400:24:55 +
Barnsley parkrun1414325:05 All - Graph It!
Bramley parkrun2252500:24:06 +
Rothwell parkrun1535724:20 All - Graph It!
Druridge Bay parkrun1354200:23:35 +
Huddersfield parkrun1596722:47 All -  
Fountains Abbey parkrun1394800:22:26 +
Long Eaton parkrun1556921:36 All -  
Victoria parkrun, Glasgow1546700:22:54 +
Wycombe Rye parkrun1232622:35 All -  
Clumber Park parkrun1101100:21:46 +
Conkers parkrun1525624:14 All -  
Rothay Park parkrun1202700:24:48 +
Roundhay parkrun112815726:55 All -  
Warwick Racecourse parkrun1638200:24:06 +
Hanley parkrun16622:03 All -  
Conkers parkrun1525600:24:14 +
Worsley Woods parkrun1728824:46 All -  
The Pastures parkrun1161800:26:21 +
Burnley parkrun1545725:21 All -  
Harrogate parkrun112316200:26:44 +
Dewsbury parkrun18610128:15 All -  
Dishley parkrun, Loughborough1535700:24:25 +
Cross Flatts parkrun1303724:16 All -  
Dalby Forest parkrun1283200:23:06 +
Clumber Park parkrun1101121:46 All -  
Woodhouse Moor parkrun1778200:22:18 +
Skipton parkrun1505325:35 All -  
Whinlatter Forest parkrun1283200:27:23 +
Flatts Lane parkrun1171826:53 All -  
Watergrove parkrun, Rochdale1111200:27:57 +
Victoria parkrun, Glasgow1546722:54 All -  
Springburn parkrun, Glasgow1161600:23:14 +
Alness parkrun171024:09 All -  
Fulham Palace parkrun18610900:24:09 +
Fulham Palace parkrun18610924:09 All -  
Flatts Lane parkrun1171800:26:53 +
Springburn parkrun, Glasgow1161623:14 All -  
Roberts Park parkrun1657500:24:54 +
Druridge Bay parkrun1354223:35 All -  
Bowling Park parkrun18900:24:11 +
Pendle parkrun1263126:16 All -  
Hanley parkrun16600:22:03 +
Watergrove parkrun, Rochdale1111227:57 All -  
Centre Vale parkrun1304400:28:44 +
Wetherby parkrun1374124:46 All -  
Wycombe Rye parkrun1232600:22:35 +
Portobello parkrun, Edinburgh1668024:16 All -  
Carlisle parkrun1567100:26:05 +
Nostell parkrun1374325:00 All -  
Armley parkrun1262700:24:28 +
Fell Foot parkrun, Newby Bridge1161722:57 All -  
Crosby parkrun1293500:25:38 +
Conwy parkrun1394424:53 All -  
Edinburgh parkrun1646700:21:54 +
Glossop parkrun1242824:25 All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Crosby parkrun1293525:38 All -  
Bushy parkrun130137400:24:06 +
Dolgellau parkrun1459954:59 All -  
Oakwell Hall parkrun1344000:26:10 +
Dalby Forest parkrun1283223:06 All -  
Pendle parkrun1263100:26:16 +
Clitheroe Castle parkrun1192525:41 All -  
Alness parkrun171000:24:09 +
Armley parkrun1262724:28 All -  
Skipton parkrun1505300:25:35 +
Dishley parkrun, Loughborough1535724:25 All -  
Chevin Forest parkrun1213000:26:47 +
Ford parkrun1202525:00 All -  
Burnley parkrun1545700:25:21 +
Cliffe Castle parkrun1151725:18 All -  
Queen’s parkrun, Glasgow1677900:25:29 +
Potternewton parkrun1293625:04 All -  
Roundhay parkrun112815700:26:55 +
Isabel Trail parkrun1293422:02 All -  
Storthes Hall parkrun1263000:26:20 +
The Pastures parkrun1161826:21 All -  
Southport parkrun1545700:23:57 +
Storthes Hall parkrun1263026:20 All -  
Cliffe Castle parkrun1151700:25:18 +
Hafan Pwllheli parkrun1212726:48 All -  
Brighouse parkrun1333700:25:17 +
Penistone parkrun1343724:20 All -  
Milton Country parkrun1707500:22:40 +
Conyngham Hall parkrun1363824:55 All -  
Pollok parkrun, Glasgow1667200:23:58 +
Stratford Park parkrun, Stroud1303126:29 All -  
Nostell parkrun1384300:25:00 +
Warwick Racecourse parkrun1638224:06 All -  
Portobello parkrun, Edinburgh1668000:24:16 +
University of Stirling parkrun1343723:52 All -  
2996600:21:40 +
Jubilee parkrun1121926:42 + All +
Queen’s parkrun, Glasgow1677925:29 + All +
Bowling Park parkrun18924:11 + All +
Rothay Park parkrun1202724:48 + All +
Zuiderpark parkrun, Den Haag1151722:03 + All +
Carlisle Park parkrun, Morpeth1293325:44 + All +
Chevin Forest parkrun1213026:47 + All +
Roberts Park parkrun1657524:54 + All +
Beacon Hill Country Park parkrun1192325:36 + All +
Thames Path parkrun, Woolwich1586323:49 + All +
3456621:36 All  


Volunteer Summary

RoleOccasions
- Run Director - 32
- Timekeeper - 17
- Token Sorting - 5
- Results Processor - 1
- Photographer - 1
- Communications Person - 5
- Marshal - 35
- Pre-event Setup - 28
- Equipment Storage and Delivery - 5
- Other - 1
- Barcode Scanning - 27
- Post-event Close Down - 24
- Finish Tokens - 11
- Number Checker - 1
- First Timers Welcome - 77
- Funnel Manager - 12
- Finish Token Support - 10
- Tail Walker - 5
- Volunteer Co-ordinator - 10
- Report Writer - 1
- Pacer (5k only) - 5
- Backup Timer - 14
- VI Guide - 1
- Warm Up Leader - 5
- Sign Language Support - 1
- Car Park Marshal - 1
- Event Day Course Check - 25
- parkwalker - 1
Total Credits249

+ Run Director +

33
+ Timekeeper + 28
+ Token Sorting + 5
+ Results Processor + 4
+ Photographer + 1
+ Communications Person + 6
+ Marshal + 35
+ Pre-event Setup + 29
+ Equipment Storage and Delivery + 6
+ Other + 2
+ Barcode Scanning + 46
+ Post-event Close Down + 25
+ Finish Tokens + 16
+ Number Checker + 1
+ First Timers Welcome + 82
+ Funnel Manager + 16
+ Finish Token Support + 16
+ Tail Walker + 15
+ Volunteer Co-ordinator + 11
+ Report Writer + 1
+ Pacer (5k only) + 10
+ Backup Timer + 14
+ VI Guide + 1
+ Warm Up Leader + 15
+ Sign Language Support + 1
+ Car Park Marshal + 1
+ Event Day Course Check + 57
+ parkwalker + 1
Total Credits316

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. -



Freedom parkruns

DateTimeLocation
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here. +



Freedom parkruns

DateTimeLocation
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -326,60 +368,58 @@

Phillip WHETTLOCK (A8 Locations: 1

- Finishers: 4,309 + Finishers: 6329
- Finishes: 19,160 + Finishes: 25733
- All-time events: 209 + All-time events: 283
- Volunteers: 479 + Volunteers: 596
- PBs: 3,712 + PBs: 4481
- Average finish time: 00:38:37 + Average finish time: 00:38:56
- Average finishes per participant: 4.4 + Groups: 477
-
- Groups: 340 -
- +
- Stats last updated: Mon 17 Apr 2023 00:40:06 UTC + Stats last updated: Mon 30 Sep 2024 00:40:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -408,8 +458,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/999999/all/index.html index 35757947..970a02f6 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Malaysia @@ -54,7 +54,7 @@
@@ -66,34 +66,25 @@
@@ -110,7 +101,7 @@

Jakub WOLSKI (A999999)

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -145,60 +136,58 @@

Jakub WOLSKI (A999999 Locations: 1
- Finishers: 4,505 -
-
- Finishes: 19,993 + Finishers: 6329
- All-time events: 219 + Finishes: 25733
- Volunteers: 500 + All-time events: 283
- PBs: 3,782 + Volunteers: 596
- Average finish time: 00:38:42 + PBs: 4481
- Average finishes per participant: 4.4 + Average finish time: 00:38:56
- Groups: 350 + Groups: 477
- +
- Stats last updated: Thu 29 Jun 2023 00:40:16 UTC + Stats last updated: Mon 30 Sep 2024 00:40:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -227,8 +226,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/999999/index.html index ff12411f..d844b9a5 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.my/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + results | parkrun Malaysia @@ -54,7 +54,7 @@
@@ -66,34 +66,25 @@
@@ -109,7 +100,7 @@ -

Jakub WOLSKI (A999999)

No results have been recorded yet for this parkrunner.

+

Jakub WOLSKI (A999999)

@@ -141,60 +132,58 @@

Jakub WOLSKI (A999999 Locations: 1

- Finishers: 4,505 -
-
- Finishes: 19,993 + Finishers: 6329
- All-time events: 219 + Finishes: 25733
- Volunteers: 500 + All-time events: 283
- PBs: 3,782 + Volunteers: 596
- Average finish time: 00:38:42 + PBs: 4481
- Average finishes per participant: 4.4 + Average finish time: 00:38:56
- Groups: 350 + Groups: 477
- +
- Stats last updated: Thu 29 Jun 2023 00:40:16 UTC + Stats last updated: Mon 30 Sep 2024 00:40:04 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -223,8 +222,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/1309364/all/index.html index e2e52d5e..dd6b18e5 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/1309364/all/index.html @@ -14,7 +14,8 @@ -results | parkrun.no + +resultater | parkrun.no - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,543 +99,649 @@ -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Medlem av klubben for 250 parkrun Member of the Volunteer 50 club

- 245 parkruns total + 297 parkrun totalt

- View summary stats for this parkrunner + Se oppsummeringsstatistikken for denne deltakeren
- Most recent age category was VM35-39 + Deltok sist i aldersklassen M40-44

- Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time20:0628:4757:34
Age Grading64.51%47.44%23.54%
Overall Position5165.361021

- Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

- All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Clitheroe Castle08/04/20231789735:4637.88% + Oppsummeringsstatistikken for alle lokasjoner +
RaskestGjennomsnitt
(middelverdi)
Saktest
Tid20:0629:2057:34
Aldersgradering64.51%46.67%23.54%
Samlet plassering5182.341021

+ Beste samlede resultater for året +
ÅrBeste tidBeste aldersgradering
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

+ Alle resultater +
EventLøpsdatoLøpsnummerPl.TidAldersgraderingPB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97%   -
Whiteley25/03/202321418332:2441.82% +
Winchester25/11/202346134636:0237.60%   -
Winchester11/03/202342821230:3744.26% +
Whiteley18/11/202324721037:0536.54%   -
Winchester04/03/202342730935:4537.90% +
Whiteley11/11/202324617430:3744.26%   -
Winchester25/02/202342632536:0937.48% +
Winchester21/10/202345731533:5140.03%   -
Winchester18/02/202342530336:3137.11% +
Winchester14/10/202345634233:5439.97%   -
Delamere31/12/202242331536:2537.21% +
Ganger Farm07/10/20234713233:4940.07%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester23/09/202345321928:2247.77%   -
Winchester26/11/202241229335:3137.87% +
Winchester16/09/202345235430:3244.38%   -
Whiteley12/11/202221016534:2839.02% +
Winchester09/09/202345129229:1146.43%   -
Winchester29/10/202240924429:5544.96% +
Delamere02/09/202345822633:2840.49%   -
Winchester22/10/202240833736:0837.22% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester17/09/202240326230:2944.12% +
Winchester29/07/202344622227:3649.09%   -
Winchester10/09/202240231134:3338.93% +
Winchester22/07/202344540537:0036.62%   -
Alice Holt03/09/202241817936:3236.82% +
Whiteley15/07/202322915731:1643.34%   -
Winchester27/08/202240042335:2138.05% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester13/08/202239823431:3042.70% +
Winchester17/06/202344128530:4144.16%   -
Tidworth30/07/2022615151:4226.02% +
Winchester10/06/202344032435:2138.33%   -
Uckfield23/07/20221006028:4346.84% +
Winchester20/05/202343822427:0949.91%   -
Winchester09/07/202239428633:1640.43% +
Winchester13/05/202343733232:4341.42%   -
Eastleigh28/05/202254015531:2042.93% +
Whiteley29/04/202321919635:3138.15%   -
Winchester21/05/202238930733:2840.19% +
Winchester22/04/202343431731:1143.45%   -
Alice Holt14/05/202240216932:0142.01% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Winchester07/05/202238734034:1339.31% +
Whiteley25/03/202321418332:2441.82%   -
Guildford30/04/202242825130:0144.81% +
Winchester11/03/202342821230:3744.26%   -
Winchester23/04/202238522932:0241.99% +
Winchester04/03/202342730935:4537.90%   -
Winchester16/04/202238431033:2340.29% +
Winchester25/02/202342632536:0937.48%   -
Winchester19/03/202238025033:5439.68% +
Winchester18/02/202342530336:3137.11%   -
Alice Holt01/01/202238524237:4635.61% +
Delamere31/12/202242331536:2537.21%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester20/11/202136338445:0729.59% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester09/10/202135739843:0730.96% +
Winchester26/11/202241229335:3137.87%   -
Winchester25/09/202135538955:0324.25% +
Whiteley12/11/202221016534:2839.02%   -
Winchester18/09/202135433938:1234.95% +
Winchester29/10/202240924429:5544.96%   -
Winchester04/09/202135233838:2434.77% +
Winchester22/10/202240833736:0837.22%   -
Winchester28/08/202135139841:0132.55% +
Winchester17/09/202240326230:2944.12%   -
Winchester14/08/202134936055:4623.94% +
Winchester10/09/202240231134:3338.93%   -
Winchester31/07/202134832845:2029.45% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester14/03/202034625851:3825.69% +
Winchester27/08/202240042335:2138.05%   -
Winchester07/03/202034510325:5251.29% +
Winchester13/08/202239823431:3042.70%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Tidworth30/07/2022615151:4226.02%   -
Newbury22/02/202043434631:1142.54% +
Uckfield23/07/20221006028:4346.84%   -
Alice Holt08/02/202036010727:1948.57% +
Winchester09/07/202239428633:1640.43% +   +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -681,63 +772,61 @@

Andrew TAYLOR (A13093
- Locations: 7 -
-
- Finishers: 7,456 + Lokasjoner: 10
- Finishes: 30,705 + Deltakere: 15394
- All-time events: 810 + Fullførte løp: 59647
- Volunteers: 826 + Eventer arrangert totalt: 1347
- PBs: 5,302 + Frivillige: 1377
- Average finish time: 00:28:53 + PB-er: 9618
- Average finishes per participant: 4.1 + Gjennomsnittlig sluttid: 00:29:02
- Groups: 694 + Klubber: 1223
-
+
- Stats last updated: Fri 14 Apr 2023 00:40:28 UTC + Statistikk oppdatert: ma. 30. sep. 2024 kl. 00.40 +0000
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Dette nettstedet kan ikke reproduseres i sin helhet eller delvis i noen form uten tillatelse fra rettighetshaveren.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -766,8 +865,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/1309364/index.html index cef2a35f..e047498a 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/1309364/index.html @@ -14,7 +14,8 @@ -results | parkrun.no + +resultater | parkrun.no - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,179 +99,187 @@ -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Medlem av klubben for 250 parkrun Member of the Volunteer 50 club -

245 parkruns total

- View stats for all parkruns by this parkrunner +

297 parkrun totalt

+ Se statistikken for alle parkrun for denne deltakeren
- Most recent age category was VM35-39 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun146121300:20:18 - All - Graph It!
Delamere parkrun8232300:21:42 - All - Graph It!
Whiteley parkrun610714600:29:06 - All - Graph It!
Alice Holt parkrun59010700:27:19 - All - Graph It!
Southampton parkrun5687000:21:17 - All - Graph It!
Eastleigh parkrun5242500:24:08 - All - Graph It!
Congleton parkrun49900:20:06 - All - Graph It!
Witton parkrun4303500:25:40 - All - Graph It!
Northwich parkrun4485200:24:55 - All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 - All - Graph It!
Andover parkrun2242600:22:24 - All - Graph It!
Ganger Farm parkrun29713500:29:25 - All - Graph It!
Hanley parkrun2333900:22:31 - All - Graph It!
Newbury parkrun2829100:23:49 - All - Graph It!
Queen Elizabeth parkrun2364000:26:36 - All - Graph It!
Hagley parkrun1182000:22:38 - All -  
Ormskirk parkrun120930300:31:04 - All -  
Basingstoke parkrun111212900:24:31 - All -  
Cuerden Valley parkrun1192000:24:47 - All -  
Seven Fields parkrun1546700:28:28 - All -  
Netley Abbey parkrun1586400:24:21 - All -  
Mountbatten School parkrun17110100:31:29 - All -  
Clitheroe Castle parkrun1639700:35:46 - All -  
Medina I.O.W. parkrun19513900:30:57 - All -  
Hogmoor Inclosure parkrun111314000:29:34 - All -  
Milano Nord parkrun1475300:27:49 - All -  
Jersey parkrun111018500:30:53 - All -  
Canterbury parkrun1323600:27:29 - All -  
Penrhyn parkrun1232600:24:33 - All -  
Hyndburn parkrun1425300:29:55 - All -  
Woking parkrun1485800:24:01 - All -  
Fountains Abbey parkrun1283000:20:33 - All -  
Bushy parkrun1681102100:33:01 - All -  
Clumber Park parkrun112117600:29:51 - All -  
Wimpole Estate parkrun112916900:28:07 - All -  
Tidworth parkrun18615100:51:42 - All -  
Hilly Fields parkrun1859900:25:03 - All -  
Tawd Valley parkrun18111000:29:25 - All -  
Watermeadows parkrun1151500:23:51 - All -  
Eden Project parkrun111116200:30:21 - All -  
Catford parkrun19512500:27:24 - All -  
Crewe parkrun112315400:30:05 - All -  
Long Eaton parkrun118122900:28:06 - All -  
Fareham parkrun19511400:28:52 - All -  
Phoenix parkrun1232600:27:31 - All -  
Guildford parkrun117125100:30:01 - All -  
Pendle parkrun1465900:26:37 - All -  
Heaton parkrun133846700:31:01 - All -  
Hamilton Lake parkrun1151600:21:47 - All -  
Brockenhurst parkrun112718600:32:41 - All -  
Itchen Valley Country parkrun110713500:29:53 - All -  
Burnley parkrun114120400:29:06 - All -  
Uckfield parkrun1416000:28:43 - All -  
Abingdon parkrun114220200:29:14 - All -  
Pocket parkrun112419500:33:47 - All -  
Bolton parkrun116221800:31:49 - All -  
Richmond Olympic parkrun15500:21:59 - All -  
Poole parkrun121328400:28:59 - All -  
Portsmouth Lakeside parkrun1818700:26:32 - All -  
Salisbury parkrun119326700:29:45 - All -  
2455500:20:06 - All + Deltok sist i aldersklassen M40-44 +

Siste deltakelser

EventLøpsdatoKjønnspl.Samlet plasseringTidAldersgradering
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Event-sammendrag

EventparkrunBeste kjønnsplasseringBeste plassering totaltBeste tid  
Winchester parkrun173121320:18 + Alle +
Whiteley parkrun1410714629:06 + Alle +
Delamere parkrun11232321:42 + Alle +
Eastleigh parkrun6242524:08 + Alle +
Alice Holt parkrun59010727:19 + Alle +
Southampton parkrun5687021:17 + Alle +
Fell Foot parkrun, Newby Bridge4212223:48 + Alle +
Witton parkrun4303525:40 + Alle +
Northwich parkrun4485224:55 + Alle +
Newbury parkrun4829123:49 + Alle +
Congleton parkrun49920:06 + Alle +
Medina I.O.W. parkrun4667525:13 + Alle +
Ganger Farm parkrun38013229:25 + Alle +
Hanley parkrun2333922:31 + Alle +
Burnley parkrun212718929:06 + Alle +
Queen Elizabeth parkrun2364026:36 + Alle +
Andover parkrun2242622:24 + Alle +
Abingdon parkrun114220229:14 + Alle +
Netley Abbey parkrun1586424:21 + Alle +
Hilly Fields parkrun1859925:03 + Alle +
Brockenhurst parkrun112718632:41 + Alle +
Wimpole Estate parkrun112916928:07 + Alle +
Clumber Park parkrun112117629:51 + Alle +
Cuerden Valley parkrun1192024:47 + Alle +
Hamilton Lake parkrun1151621:47 + Alle +
Fountains Abbey parkrun1283020:33 + Alle +
Ormskirk parkrun120930331:04 + Alle +
Pendle parkrun1465926:37 + Alle +
Woking parkrun1485824:01 + Alle +
Hagley parkrun1182022:38 + Alle +
Penrhyn parkrun1232624:33 + Alle +
Salisbury parkrun119326729:45 + Alle +
Jersey parkrun111018530:53 + Alle +
Haigh Woodland parkrun18916837:04 + Alle +
Stretford parkrun127540530:23 + Alle +
Portsmouth Lakeside parkrun1818726:32 + Alle +
Fareham parkrun19011428:52 + Alle +
Milano Nord parkrun1475327:49 + Alle +
Richmond Olympic parkrun15521:59 + Alle +
Crewe parkrun112315430:05 + Alle +
Hogmoor Inclosure parkrun111314029:34 + Alle +
Catford parkrun19512527:24 + Alle +
Clitheroe Castle parkrun1639735:46 + Alle +
Pocket parkrun112419533:47 + Alle +
Ford parkrun1477432:29 + Alle +
Watermeadows parkrun1151523:51 + Alle +
Mountbatten School parkrun17110131:29 + Alle +
Uckfield parkrun1416028:43 + Alle +
Tawd Valley parkrun18111029:25 + Alle +
Seven Fields parkrun1546728:28 + Alle +
Itchen Valley Country parkrun110613529:53 + Alle +
Bartley Park parkrun1628430:26 + Alle +
Tidworth parkrun18615151:42 + Alle +
Bushy parkrun1681102133:01 + Alle +
Basingstoke parkrun111212924:31 + Alle +
Heaton parkrun133846731:01 + Alle +
Guildford parkrun117125130:01 + Alle +
Hyndburn parkrun1425329:55 + Alle +
Phoenix parkrun1232627:31 + Alle +
Canterbury parkrun1323627:29 + Alle +
Valentines parkrun1698025:14 + Alle +
Poole parkrun121328428:59 + Alle +
Long Eaton parkrun118122928:06 + Alle +
Bolton parkrun116221831:49 + Alle +
Eden Project parkrun111116230:21 + Alle +
2975520:06 + Alle   -




Freedom parkruns

DateTimeLocation
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
+


Oversikt over frivillige

FunksjonAntall ganger
+ Løpsansvarlig + 21
+ Tidtaker + 2
+ Brikkesortering + 8
+ Resultatbehandler + 6
+ Fotograf + 4
+ Løypevakt + 5
+ Opprigg + 6
+ Utstyrslagring- og levering + 2
+ Strekkodeskanner + 3
+ Nedrigg + 10
+ Brikkeutdeler + 1
+ Nummersjekk + 2
+ Velkomsttale for førstegangsdeltakere + 1
+ Målområdeansvarlig + 1
+ Baktropp + 4
+ Frivilligkoordinator + 1
+ Rapportforfatter + 10
+ Fartsholder + 1
Poeng totalt60

+ Tabellen oppsummerer antall ganger hver frivilligrolle er utført.
Vær obs på at totalen kan avvike fra totalen av oppgaver utført som frivillig hvis du har utført flere oppgaver samme dag.
Les mer her. +



Frie løp

DatoTidSted
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkrun

UkeStartdatoSluttdato(not)parkrunBeste tid
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -315,63 +308,61 @@

Andrew TAYLOR (A13093
- Locations: 7 -
-
- Finishers: 7,456 + Lokasjoner: 10
- Finishes: 30,705 + Deltakere: 15394
- All-time events: 810 + Fullførte løp: 59647
- Volunteers: 826 + Eventer arrangert totalt: 1347
- PBs: 5,302 + Frivillige: 1377
- Average finish time: 00:28:53 + PB-er: 9618
- Average finishes per participant: 4.1 + Gjennomsnittlig sluttid: 00:29:02
- Groups: 694 + Klubber: 1223
-
+

- Stats last updated: Fri 14 Apr 2023 00:40:28 UTC + Statistikk oppdatert: ma. 30. sep. 2024 kl. 00.40 +0000
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Dette nettstedet kan ikke reproduseres i sin helhet eller delvis i noen form uten tillatelse fra rettighetshaveren.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -400,8 +401,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/2705084/all/index.html index c581dfe1..4cf76fd0 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/2705084/all/index.html @@ -14,7 +14,8 @@ -results | parkrun.no + +resultater | parkrun.no - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,12 +99,12 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

- View summary stats for this parkrunner + Se oppsummeringsstatistikken for denne deltakeren

@@ -149,63 +134,61 @@

Duncan BOOTH (A270508
- Locations: 7 -
-
- Finishers: 7,518 + Lokasjoner: 10
- Finishes: 30,969 + Deltakere: 15394
- All-time events: 817 + Fullførte løp: 59647
- Volunteers: 830 + Eventer arrangert totalt: 1347
- PBs: 5,338 + Frivillige: 1377
- Average finish time: 00:28:53 + PB-er: 9618
- Average finishes per participant: 4.1 + Gjennomsnittlig sluttid: 00:29:02
- Groups: 696 + Klubber: 1223
-
+

- Stats last updated: Mon 17 Apr 2023 00:40:42 UTC + Statistikk oppdatert: ma. 30. sep. 2024 kl. 00.40 +0000
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Dette nettstedet kan ikke reproduseres i sin helhet eller delvis i noen form uten tillatelse fra rettighetshaveren.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -234,8 +227,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/2705084/index.html index 68a8362c..c56b8951 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/2705084/index.html @@ -14,7 +14,8 @@ -results | parkrun.no + +resultater | parkrun.no - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,18 +99,16 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volunteer Summary

RoleOccasions
- Marshal - 260
- Lead Bike - 130
- Event Day Course Check - 9
Total Credits393

- This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Oversikt over frivillige

FunksjonAntall ganger
+ Løypevakt + 350
+ Ledesyklist + 130
+ Løypekontroll før start + 82
Poeng totalt540

+ Tabellen oppsummerer antall ganger hver frivilligrolle er utført.
Vær obs på at totalen kan avvike fra totalen av oppgaver utført som frivillig hvis du har utført flere oppgaver samme dag.
Les mer her.



@@ -155,63 +138,61 @@

Duncan BOOTH (A270508
- Locations: 7 -
-
- Finishers: 7,518 + Lokasjoner: 10
- Finishes: 30,969 + Deltakere: 15394
- All-time events: 817 + Fullførte løp: 59647
- Volunteers: 830 + Eventer arrangert totalt: 1347
- PBs: 5,338 + Frivillige: 1377
- Average finish time: 00:28:53 + PB-er: 9618
- Average finishes per participant: 4.1 + Gjennomsnittlig sluttid: 00:29:02
- Groups: 696 + Klubber: 1223
-
+

- Stats last updated: Mon 17 Apr 2023 00:40:42 UTC + Statistikk oppdatert: ma. 30. sep. 2024 kl. 00.40 +0000
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Dette nettstedet kan ikke reproduseres i sin helhet eller delvis i noen form uten tillatelse fra rettighetshaveren.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -240,8 +231,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/482/all/index.html index b47b60a4..745c4206 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/482/all/index.html @@ -14,7 +14,8 @@ -results | parkrun.no + +resultater | parkrun.no - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,1655 +99,1821 @@ -

Danny NORMAN (A482)

- Member of the parkrun 500 Club +

Danny NORMAN (A482)

+ Medlem av klubben for 500 parkrun Member of the Volunteer 250 club

- 785 parkruns total + 867 parkrun totalt

- View summary stats for this parkrunner + Se oppsummeringsstatistikken for denne deltakeren
- Most recent age category was VM40-44 + Deltok sist i aldersklassen M45-49

- Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time16:2521:0459:17
Age Grading79.25%65.45%23.56%
Overall Position134.831692

- Best Overall Annual Achievements -
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

- All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Harleston Magpies08/04/2023793525:1255.42% + Oppsummeringsstatistikken for alle lokasjoner +
RaskestGjennomsnitt
(middelverdi)
Saktest
Tid16:2521:2659:17
Aldersgradering79.25%64.63%23.56%
Samlet plassering138.841692

+ Beste samlede resultater for året +
ÅrBeste tidBeste aldersgradering
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

+ Alle resultater +
EventLøpsdatoLøpsnummerPl.TidAldersgraderingPB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34%   -
Cannock Chase01/04/20232434425:4954.10% +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Kingston25/03/202360216430:0946.32% +
Quakers Walk25/11/2023126825:0556.08%   -
Wolford Wood18/03/202352730:2445.94% +
Aston Hall18/11/202352225:0156.23%   -
Kingston11/03/202360015027:1851.16% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Stockley Country04/03/2023817935:3239.31% +
Belvoir Castle04/11/2023911925:4254.73%   -
Chasewater25/02/202310010026:1953.07% +
Five Arches28/10/202365422:5861.25%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Dover Waterfront21/10/202374525:2255.45%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Rushcliffe14/10/20235087323:5458.86%   -
Worcester04/02/202354318529:3047.34% +
Kingston07/10/202363033150:2927.86%   -
Crane Park28/01/202349014550:3727.59% +
Maaraue03/10/20231012522:3462.33%   -
Kingston21/01/202359431139:3935.22% +
University of Northampton30/09/2023112223:2460.11%   -
Brooklands14/01/202313018830:4445.44% +
Clifton23/09/20231911025:1455.75%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Wisbech16/09/202351523:0361.03%   -
Kingston01/01/202359113340:3134.47% +
Holbrooks09/09/202362223:4359.31%   -
Kingston31/12/202259026442:4432.68% +
Wyre Forest02/09/20233404825:5654.24%   -
Bushy Park25/12/2022909169244:3931.28% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Riverfront19/08/20232594622:5761.29%   -
Kingston17/12/202258818059:1723.56% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston10/12/202258723255:4025.09% +
Kingston05/08/20236216723:2160.24%   -
Beacon03/12/2022737326:4152.34% +
Kingston29/07/20236208725:0955.93%   -
Ganger Farm26/11/2022211426:3452.57% +
Kingston22/07/20236199224:2457.65%   -
Bushy Park19/11/2022903110553:2326.16% +
Severn Valley Country15/07/20231411626:1353.66%   -
Leavesden Country12/11/202246928:3248.95% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Thornham Walks01/07/202353826:5251.99%   -
Durlston Country Park29/10/2022335032:4542.65% +
Kingston24/06/20236156524:0957.83% +   +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1793,63 +1944,61 @@

Danny NORMAN (A482)
- Locations: 7 -
-
- Finishers: 7,456 + Lokasjoner: 10
- Finishes: 30,705 + Deltakere: 15394
- All-time events: 810 + Fullførte løp: 59647
- Volunteers: 826 + Eventer arrangert totalt: 1347
- PBs: 5,302 + Frivillige: 1377
- Average finish time: 00:28:53 + PB-er: 9618
- Average finishes per participant: 4.1 + Gjennomsnittlig sluttid: 00:29:02
- Groups: 694 + Klubber: 1223
- +
- Stats last updated: Fri 14 Apr 2023 00:40:28 UTC + Statistikk oppdatert: ma. 30. sep. 2024 kl. 00.40 +0000
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Dette nettstedet kan ikke reproduseres i sin helhet eller delvis i noen form uten tillatelse fra rettighetshaveren.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1878,8 +2037,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/482/index.html index bf16b4f7..addb677b 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/482/index.html @@ -14,7 +14,8 @@ -results | parkrun.no + +resultater | parkrun.no - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,883 +99,1007 @@ -

Danny NORMAN (A482)

- Member of the parkrun 500 Club +

Danny NORMAN (A482)

+ Medlem av klubben for 500 parkrun Member of the Volunteer 250 club -

785 parkruns total

- View stats for all parkruns by this parkrunner +

867 parkrun totalt

+ Se statistikken for alle parkrun for denne deltakeren
- Most recent age category was VM40-44 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2321100:16:25 - All - Graph It!
Kingston parkrun351100:16:51 - All - Graph It!
Bedfont Lakes parkrun81100:17:04 - All - Graph It!
Richmond parkrun71100:17:13 - All - Graph It!
Nonsuch parkrun71100:16:52 - All - Graph It!
Crane Park parkrun61100:16:48 - All - Graph It!
Brighton & Hove parkrun31100:16:27 - All - Graph It!
Fulham Palace parkrun33300:17:47 - All - Graph It!
Frimley Lodge parkrun31100:17:11 - All - Graph It!
Gunnersbury parkrun31100:16:51 - All - Graph It!
Bexley parkrun31100:17:48 - All - Graph It!
Tilgate parkrun31100:17:10 - All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 - All - Graph It!
Southwark parkrun34400:17:27 - All - Graph It!
Basingstoke parkrun35500:17:48 - All - Graph It!
Hilly Fields parkrun31100:17:50 - All - Graph It!
Black Park parkrun31100:17:25 - All - Graph It!
Riddlesdown parkrun32200:17:01 - All - Graph It!
Dulwich parkrun33300:17:11 - All - Graph It!
Guildford parkrun31100:17:17 - All - Graph It!
Old Deer Park parkrun31100:17:41 - All - Graph It!
Wimbledon Common parkrun35500:17:27 - All - Graph It!
Homewood parkrun3151700:22:21 - All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 - All - Graph It!
Pymmes parkrun21100:17:06 - All - Graph It!
Hove Promenade parkrun27700:19:23 - All - Graph It!
Netley Abbey parkrun21100:17:21 - All - Graph It!
Mile End parkrun21100:16:53 - All - Graph It!
Southampton parkrun23300:16:44 - All - Graph It!
Northala Fields parkrun22200:18:06 - All - Graph It!
Hockley Woods parkrun26600:21:09 - All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 - All - Graph It!
Upton Court parkrun22200:17:24 - All - Graph It!
Alice Holt parkrun21100:17:59 - All - Graph It!
Osterley parkrun21100:17:57 - All - Graph It!
Burgess parkrun22200:16:45 - All - Graph It!
Gladstone parkrun21100:17:09 - All - Graph It!
Havant parkrun21100:17:46 - All - Graph It!
Cranleigh parkrun26600:20:49 - All - Graph It!
Finsbury parkrun22200:17:15 - All - Graph It!
Southsea parkrun23300:17:55 - All - Graph It!
Margate parkrun21100:18:16 - All - Graph It!
Northampton parkrun21100:16:56 - All - Graph It!
Roundshaw Downs parkrun23300:18:14 - All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 - All - Graph It!
Crystal Palace parkrun21100:17:24 - All - Graph It!
Eastleigh parkrun27700:19:14 - All - Graph It!
Hastings parkrun291100:20:41 - All - Graph It!
Banstead Woods parkrun21100:17:31 - All - Graph It!
Wormwood Scrubs parkrun21100:18:00 - All - Graph It!
Hackney Marshes parkrun22200:16:46 - All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 - All - Graph It!
Woodley parkrun21100:17:02 - All - Graph It!
Tooting Common parkrun2181800:19:14 - All - Graph It!
Milton Keynes parkrun23300:17:26 - All - Graph It!
Grovelands parkrun, Enfield22200:17:21 - All - Graph It!
Barking parkrun22200:16:45 - All - Graph It!
Canons Park parkrun27700:20:50 - All - Graph It!
Newbury parkrun21100:17:20 - All - Graph It!
Shorne Woods parkrun21100:18:14 - All - Graph It!
Lloyd parkrun, Croydon21100:18:01 - All - Graph It!
Mole Valley parkrun2262600:22:56 - All - Graph It!
Oak Hill parkrun21100:17:13 - All - Graph It!
Cyclopark parkrun2353800:24:01 - All - Graph It!
Durlston Country Park parkrun2355000:32:45 - All - Graph It!
South Oxhey parkrun21100:19:13 - All - Graph It!
Chelmsford Central parkrun22200:17:24 - All - Graph It!
Great Lines parkrun, Medway25500:18:25 - All - Graph It!
Bevendean Down parkrun28900:23:21 - All - Graph It!
Bedford parkrun21100:16:55 - All - Graph It!
Whitstable parkrun23300:18:12 - All - Graph It!
Orpington parkrun22200:17:27 - All - Graph It!
Ashford parkrun22200:17:57 - All - Graph It!
Hazelwood parkrun2182200:22:21 - All - Graph It!
Brooklands parkrun2394200:23:22 - All - Graph It!
Wycombe Rye parkrun22200:17:17 - All - Graph It!
Harrow parkrun25500:20:23 - All - Graph It!
Beckton parkrun23300:17:24 - All - Graph It!
St Albans parkrun21100:16:37 - All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 - All -  
Buckingham parkrun12200:18:37 - All -  
Thomas Mills parkrun1486500:30:19 - All -  
Leamington parkrun12200:18:52 - All -  
Church Mead parkrun16610200:32:53 - All -  
Letchworth parkrun1141400:23:13 - All -  
Mulbarton parkrun12200:19:55 - All -  
Arrow Valley parkrun13300:18:05 - All -  
Frogmary Green Farm parkrun1597200:25:58 - All -  
Sutton Park parkrun1475500:24:54 - All -  
Reigate Priory parkrun16600:19:06 - All -  
Bury St Edmunds parkrun13300:18:17 - All -  
Pollok parkrun, Glasgow11100:17:00 - All -  
Kingdom parkrun1222500:24:39 - All -  
Barclay parkrun15600:23:13 - All -  
Chippenham parkrun1212100:20:08 - All -  
Ipswich parkrun11100:17:34 - All -  
Itchen Valley Country parkrun1476100:27:37 - All -  
Neckarau parkrun1243000:27:11 - All -  
Brandon Country Park parkrun11100:18:30 - All -  
Boston parkrun17700:21:18 - All -  
University Parks parkrun119032600:31:42 - All -  
Neckarufer parkrun, Esslingen1364400:25:12 - All -  
Lullingstone parkrun17700:21:21 - All -  
Coventry parkrun1292900:20:51 - All -  
Berkeley Green parkrun1233100:28:31 - All -  
Mersea Island parkrun1121200:20:59 - All -  
Aylesbury parkrun11100:17:51 - All -  
Royal Tunbridge Wells parkrun18900:19:23 - All -  
Southall parkrun1557500:31:38 - All -  
Manor Field parkrun, Whittlesey1121300:24:25 - All -  
Pomphrey Hill parkrun1364100:23:02 - All -  
Henley-on-Thames parkrun1111100:22:25 - All -  
Aachener Weiher parkrun1101100:24:55 - All -  
Penrose parkrun1151600:19:40 - All -  
King’s Lynn parkrun1151500:20:07 - All -  
Fulbourn Hospital parkrun1344700:24:59 - All -  
Fareham parkrun16600:19:21 - All -  
Brockenhurst parkrun13300:18:23 - All -  
Canterbury parkrun16600:21:56 - All -  
Alton Water parkrun1538300:35:09 - All -  
Littleport parkrun1445100:25:16 - All -  
Newport parkrun11100:17:29 - All -  
California Country parkrun1649000:28:49 - All -  
Thornbury parkrun1323400:28:19 - All -  
Greenwich parkrun12200:18:07 - All -  
Seven Fields parkrun1475500:26:28 - All -  
Highbury Fields parkrun11100:17:25 - All -  
The Great Field parkrun19313500:29:12 - All -  
Street parkrun1283500:25:52 - All -  
South Norwood parkrun1121200:21:11 - All -  
Dunstable Downs parkrun1374300:24:58 - All -  
Melton Mowbray parkrun1192200:22:38 - All -  
Horsham parkrun14500:18:16 - All -  
Irchester Country parkrun1586200:25:13 - All -  
Stratford-upon-Avon parkrun1202500:21:14 - All -  
Wotton parkrun1182100:24:45 - All -  
Bath Skyline parkrun1192000:21:08 - All -  
Great Dunmow parkrun14400:20:25 - All -  
Corby parkrun18800:23:09 - All -  
Bracknell parkrun18800:20:04 - All -  
Cromhall parkrun1151600:24:20 - All -  
Perry Hall parkrun1464900:24:58 - All -  
Gunpowder parkrun12200:17:34 - All -  
Luton Wardown parkrun191000:19:36 - All -  
Ifield Mill Pond parkrun1373800:24:33 - All -  
March parkrun15500:21:11 - All -  
Roding Valley parkrun1111300:21:26 - All -  
Charlton parkrun18213000:32:05 - All -  
Malmö Ribersborg parkrun111215100:28:46 - All -  
Worcester parkrun114418500:29:30 - All -  
Wolford Wood parkrun1212700:30:24 - All -  
Fire Service College parkrun1181900:22:12 - All -  
Panshanger parkrun17700:20:14 - All -  
Conkers parkrun12200:17:46 - All -  
Banbury parkrun1222300:21:16 - All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 - All -  
Rushmere parkrun1131400:22:39 - All -  
Whiteley parkrun1141500:20:56 - All -  
Sandringham parkrun1466300:30:18 - All -  
Victoria Dock parkrun1283000:20:04 - All -  
Queen Elizabeth parkrun12200:19:08 - All -  
Lordship Recreation Ground parkrun19112400:25:22 - All -  
Somerdale Pavilion parkrun1384600:31:17 - All -  
Dartford parkrun11100:17:59 - All -  
Winchester parkrun14500:18:28 - All -  
Stratford Park parkrun, Stroud1566500:27:51 - All -  
Sherwood Pines parkrun1161800:21:33 - All -  
Grove Fields parkrun1578500:28:03 - All -  
Witney parkrun1202000:22:34 - All -  
Preston Park parkrun, Brighton12200:17:40 - All -  
Colchester Castle parkrun14400:18:04 - All -  
Tidworth parkrun110815500:35:14 - All -  
Walmer and Deal Seafront parkrun18800:21:38 - All -  
Ferry Meadows parkrun15500:17:27 - All -  
St Mary’s parkrun1587400:29:14 - All -  
Dartford Heath parkrun1171700:22:06 - All -  
Sharpham Road Playing Fields parkrun1253100:24:41 - All -  
Great Denham parkrun16600:19:27 - All -  
Hastings High School parkrun1637800:27:33 - All -  
Wendover Woods parkrun1262600:23:51 - All -  
Peckham Rye parkrun11100:17:49 - All -  
Upton House parkrun1252700:22:34 - All -  
Lee-on-the-Solent parkrun17700:19:40 - All -  
Graves parkrun11100:18:18 - All -  
Maidstone parkrun13300:18:00 - All -  
Woodgate Valley Country Park parkrun16513200:45:50 - All -  
South Woodham Ferrers parkrun18800:21:14 - All -  
Pontypridd parkrun12200:17:54 - All -  
Bournemouth parkrun14400:17:43 - All -  
Sizewell parkrun1172000:23:30 - All -  
Rushmoor parkrun19900:18:29 - All -  
Walsall Arboretum parkrun19810600:25:31 - All -  
Gorleston Cliffs parkrun12200:17:43 - All -  
Uckfield parkrun1404300:24:12 - All -  
Aldenham parkrun1141400:21:37 - All -  
Gadebridge parkrun1141400:22:22 - All -  
Horspath parkrun17410600:28:12 - All -  
Rogiet parkrun1151600:24:27 - All -  
Rendlesham Forest parkrun1264600:37:01 - All -  
Dishley parkrun, Loughborough110311400:24:30 - All -  
Great Cornard parkrun1192000:20:33 - All -  
Kettering parkrun1232600:22:50 - All -  
Pont y Bala parkrun15700:23:18 - All -  
Burnham and Highbridge parkrun17510000:27:51 - All -  
Stonehouse parkrun1131300:20:09 - All -  
Hampstead Heath parkrun11100:17:45 - All -  
Wickford Memorial parkrun1436600:51:15 - All -  
Castle Park parkrun1394100:22:34 - All -  
Huntingdon parkrun1202100:21:10 - All -  
Great Salterns parkrun19212400:30:27 - All -  
Snowden Field parkrun1242600:24:15 - All -  
Southend parkrun11100:16:28 - All -  
Andover parkrun11100:17:33 - All -  
parkrun Zalew Żyrardowski16700:24:38 - All -  
Marecchia parkrun11100:19:50 - All -  
Cheltenham parkrun12200:17:24 - All -  
St Helens parkrun1606800:24:27 - All -  
Bartley Park parkrun18415100:32:38 - All -  
Severn Bridge parkrun1353900:21:32 - All -  
Pontypool parkrun1232300:23:51 - All -  
Poole parkrun14400:16:57 - All -  
Bramhall parkrun115924700:35:16 - All -  
Sunny Hill parkrun1202400:24:39 - All -  
Cassiobury parkrun1111100:20:14 - All -  
Hoblingwell parkrun1202400:23:52 - All -  
Colwick parkrun18800:19:46 - All -  
Chipping Norton School parkrun1455100:26:40 - All -  
Worthing parkrun18900:18:44 - All -  
Harrow Lodge parkrun11100:18:48 - All -  
Bradford parkrun1313600:21:55 - All -  
Bury Field parkrun1669000:33:07 - All -  
Pocket parkrun1222300:21:38 - All -  
Longrun Meadow parkrun111416500:32:01 - All -  
Worcester Pitchcroft parkrun111814300:27:04 - All -  
Highwoods parkrun1252600:24:49 - All -  
Maidenhead parkrun17700:18:49 - All -  
Soham Village College parkrun1253200:28:03 - All -  
Rickmansworth parkrun1242700:21:39 - All -  
Swaffham parkrun191000:22:19 - All -  
Brentwood parkrun17700:22:28 - All -  
Lymington Woodside parkrun15700:21:59 - All -  
Loch Neaton parkrun, Watton1171700:25:49 - All -  
Daventry parkrun1151500:21:10 - All -  
Hatfield Forest parkrun1181800:20:36 - All -  
Kingsway parkrun, Gloucester1192000:21:20 - All -  
Salcey Forest parkrun1384300:24:53 - All -  
parkrun des Dougnes, Cubnezais12200:19:42 - All -  
Prospect parkrun1232300:22:42 - All -  
Weymouth parkrun1141400:20:45 - All -  
Westmill parkrun1101000:22:55 - All -  
East Brighton parkrun1182100:23:56 - All -  
Harlow parkrun1151500:23:00 - All -  
Linford Wood parkrun1222200:21:45 - All -  
Clevedon Salthouse Fields parkrun1384900:25:13 - All -  
Lydney parkrun1202100:23:19 - All -  
Braunstone parkrun1262700:20:41 - All -  
Harleston Magpies parkrun1293500:25:12 - All -  
Clapham Common parkrun1404200:20:22 - All -  
Market Bosworth Country Park parkrun110614400:35:35 - All -  
Jersey Farm parkrun1252700:23:11 - All -  
Kesgrave parkrun1374000:21:18 - All -  
Stevenage parkrun17700:19:32 - All -  
Hadleigh parkrun, Essex1252600:24:27 - All -  
Squerryes Winery parkrun1323600:27:45 - All -  
Rutland Water parkrun1293000:22:44 - All -  
Beckenham Place parkrun1121200:20:28 - All -  
Sutcliffe parkrun113117200:30:34 - All -  
Haverhill parkrun1121300:23:32 - All -  
Leavesden Country parkrun1506900:28:32 - All -  
Coldham’s Common parkrun1535900:23:04 - All -  
Chichester parkrun13300:19:05 - All -  
Billericay parkrun1121300:21:20 - All -  
Bromley parkrun13300:17:18 - All -  
Babbs Mill parkrun1405100:28:00 - All -  
Thurrock parkrun, Orsett Heath16600:20:41 - All -  
Bryn Bach parkrun11100:16:50 - All -  
York parkrun12200:17:12 - All -  
Storeys Field parkrun115121100:28:49 - All -  
Chipping Sodbury parkrun1303200:21:20 - All -  
Mote Park parkrun19712200:31:28 - All -  
Watermeadows parkrun1283100:24:57 - All -  
Woking parkrun18800:18:19 - All -  
Raphael parkrun13300:19:35 - All -  
Harwich parkrun191000:21:22 - All -  
Fritton Lake parkrun11100:18:26 - All -  
Heartwood Forest parkrun1252700:21:41 - All -  
Henlow Bridge Lakes parkrun17511500:32:34 - All -  
Bedworth parkrun1171700:22:14 - All -  
Clair parkrun13300:18:36 - All -  
Brueton parkrun1475000:21:33 - All -  
Higginson parkrun, Marlow1272900:22:17 - All -  
Bognor Regis parkrun12200:18:12 - All -  
Huddersfield parkrun1626700:22:02 - All -  
Heaton parkrun13300:18:08 - All -  
Chasewater parkrun18210000:26:19 - All -  
Tewkesbury parkrun1111400:22:50 - All -  
Marple parkrun11100:17:15 - All -  
Cannock Chase parkrun1384400:25:49 - All -  
Edgbaston Reservoir parkrun1658600:26:24 - All -  
Cirencester parkrun1222400:22:40 - All -  
Kingsbury Water parkrun1394700:25:05 - All -  
Peacehaven parkrun17700:21:07 - All -  
Lancing Beach Green parkrun1141400:21:08 - All -  
Springburn parkrun, Glasgow13300:18:05 - All -  
Market Harborough parkrun1303100:21:17 - All -  
Amager Fælled parkrun1333700:24:23 - All -  
Hanworth parkrun1364000:24:26 - All -  
Salisbury parkrun1111100:19:34 - All -  
Houghton Hall parkrun1131300:21:48 - All -  
Chalkwell Beach parkrun1819600:24:40 - All -  
Melksham parkrun1171700:24:31 - All -  
Thetford parkrun1161700:21:45 - All -  
Pontefract parkrun1718700:24:10 - All -  
Downham Market Academy parkrun1121300:24:35 - All -  
Fountains Abbey parkrun11100:18:03 - All -  
Cardiff parkrun111011700:22:02 - All -  
Littlehampton Prom parkrun1384300:24:22 - All -  
Uditore parkrun13300:20:28 - All -  
Beacon parkrun1587300:26:41 - All -  
parkrun de Rouen15500:21:41 - All -  
Walthamstow parkrun11100:17:48 - All -  
Shepton Mallet parkrun1121400:21:50 - All -  
Marine Parade parkrun17711100:29:24 - All -  
Foots Cray Meadows parkrun1212300:23:17 - All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 - All -  
Evesham parkrun1111100:21:39 - All -  
Southwick Country parkrun1272900:21:47 - All -  
Lydiard parkrun18800:18:25 - All -  
Sandhurst Memorial parkrun1537300:28:54 - All -  
Bicester parkrun14400:20:13 - All -  
Wimpole Estate parkrun1202100:22:14 - All -  
Markshall Estate parkrun110315600:32:26 - All -  
Dinton Pastures parkrun1131300:21:23 - All -  
Tonbridge parkrun14400:18:40 - All -  
Wanstead Flats parkrun13300:17:13 - All -  
Woodhouse Moor parkrun11100:17:22 - All -  
Mountbatten School parkrun1323400:24:11 - All -  
Eastville parkrun120525300:25:12 - All -  
Brixworth Country parkrun1496100:26:53 - All -  
Portsmouth Lakeside parkrun19900:19:12 - All -  
Milton Country parkrun13300:17:43 - All -  
Swanley parkrun19712500:31:18 - All -  
Springhill parkrun14400:22:18 - All -  
Gloucester North parkrun1101000:22:14 - All -  
Feltham parkrun13400:24:56 - All -  
Crissy Field parkrun1101200:20:40 - All -  
Ally Pally parkrun11100:18:09 - All -  
Ashton Court parkrun1859500:22:59 - All -  
Oaklands parkrun111820300:36:10 - All -  
Sittingbourne parkrun18800:20:56 - All -  
Moors Valley parkrun19900:19:40 - All -  
Catford parkrun1303300:22:32 - All -  
Clare Castle parkrun1252700:23:04 - All -  
Harrogate parkrun13300:18:11 - All -  
Seaford Beach parkrun1535600:22:25 - All -  
Tring parkrun1171800:23:38 - All -  
Sandwell Valley parkrun1455900:30:43 - All -  
Basildon parkrun15500:18:13 - All -  
The Leas parkrun, Minster1252500:24:37 - All -  
Little Stoke parkrun11100:17:03 - All -  
Dallas Burston Polo Club parkrun19614700:32:26 - All -  
Felixstowe parkrun1121200:21:07 - All -  
Yeovil Montacute parkrun1707500:25:51 - All -  
Stockley Country parkrun111917900:35:32 - All -  
Woolacombe Dunes parkrun19410900:31:20 - All -  
Harcourt Hill parkrun1171700:21:13 - All -  
Abingdon parkrun15500:18:03 - All -  
Eastbourne parkrun12200:17:24 - All -  
Warwick Racecourse parkrun1486000:24:55 - All -  
Leicester Victoria parkrun19711600:26:45 - All -  
Broadwater parkrun110321300:35:19 - All -  
Clacton Seafront parkrun19900:20:35 - All -  
Burnham-on-Crouch parkrun18800:22:01 - All -  
Ganger Farm parkrun19811400:26:34 - All -  
Folkestone parkrun1212500:21:48 - All -  
Mallards Pike parkrun1324600:30:57 - All -  
Malling parkrun18314500:47:25 - All -  
Rugby parkrun1181800:22:26 - All -  
Watermead Country Park parkrun110818200:35:52 - All -  
Hogmoor Inclosure parkrun1262600:25:26 - All -  
East Grinstead parkrun1131400:23:10 - All -  
Mildenhall Hub parkrun1273100:24:33 - All -  
Marlborough Common parkrun1202100:22:48 - All -  
Blandford parkrun18900:20:11 - All -  
Maldon Prom parkrun11100:18:04 - All -  
Edinburgh parkrun12200:17:00 - All -  
The Old Showfield parkrun1636900:23:30 - All -  
Jersey parkrun16600:19:41 - All -  
Chilton Fields parkrun1405400:28:26 - All -  
Sixfields Upton parkrun18800:19:58 - All -  
Pegwell Bay parkrun12200:17:40 - All -  
Valentines parkrun11100:16:49 - All -  
Edenbrook Country parkrun110514800:28:01 - All -  
Henstridge Airfield parkrun18800:21:41 - All -  
Great Notley parkrun16600:20:16 - All -  
Medina I.O.W. parkrun11100:17:20 - All -  
Reading parkrun12200:17:18 - All -  
Tetbury Goods Shed parkrun1253000:24:25 - All -  
Lowestoft parkrun1232600:21:10 - All -  
Malahide parkrun11100:16:54 - All -  
Oxford parkrun11100:17:18 - All -  
Rheinpark parkrun1151800:25:30 - All -  
Gloucester City parkrun1171900:22:35 - All -  
Didcot parkrun1101100:21:28 - All -  
Mansfield parkrun11100:17:09 - All -  
7851100:16:25 - All + Deltok sist i aldersklassen M45-49 +

Siste deltakelser

EventLøpsdatoKjønnspl.Samlet plasseringTidAldersgradering
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Event-sammendrag

EventparkrunBeste kjønnsplasseringBeste plassering totaltBeste tid  
Bushy parkrun2341116:25 + Alle +
Kingston parkrun471116:51 + Alle +
Bedfont Lakes parkrun81117:04 + Alle +
Nonsuch parkrun71116:52 + Alle +
Richmond parkrun71117:13 + Alle +
Crane Park parkrun61116:48 + Alle +
Riddlesdown parkrun42217:01 + Alle +
Bexley parkrun31117:48 + Alle +
Tilgate parkrun31117:10 + Alle +
Frimley Lodge parkrun31117:11 + Alle +
Hilly Fields parkrun31117:50 + Alle +
Old Deer Park parkrun31117:41 + Alle +
Guildford parkrun31117:17 + Alle +
Homewood parkrun3151722:21 + Alle +
Brockwell parkrun, Herne Hill31116:56 + Alle +
Southwark parkrun34417:27 + Alle +
Fulham Palace parkrun33317:47 + Alle +
Cannon Hill parkrun, Birmingham3111118:04 + Alle +
Gunnersbury parkrun31116:51 + Alle +
Wimbledon Common parkrun35517:27 + Alle +
Brighton & Hove parkrun31116:27 + Alle +
Basingstoke parkrun35517:48 + Alle +
Black Park parkrun31117:25 + Alle +
Dulwich parkrun33317:11 + Alle +
Bedgebury Pinetum parkrun28921:24 + Alle +
Harrow parkrun25520:23 + Alle +
Netley Abbey parkrun21117:21 + Alle +
Ellenbrook Fields parkrun2141519:58 + Alle +
Worthing parkrun28918:44 + Alle +
Grovelands parkrun, Enfield22217:21 + Alle +
Beckton parkrun23317:24 + Alle +
Gladstone parkrun21117:09 + Alle +
Hackney Marshes parkrun22216:46 + Alle +
Burgess parkrun22216:45 + Alle +
Orpington parkrun22217:27 + Alle +
Barking parkrun22216:45 + Alle +
Southampton parkrun23316:44 + Alle +
Alice Holt parkrun21117:59 + Alle +
Woodley parkrun21117:02 + Alle +
Upton Court parkrun22217:24 + Alle +
Chelmsford Central parkrun22217:24 + Alle +
Mole Valley parkrun2262622:56 + Alle +
Durlston Country Park parkrun2355032:45 + Alle +
Hazelwood parkrun2182222:21 + Alle +
Southsea parkrun23317:55 + Alle +
St Albans parkrun21116:37 + Alle +
Havant parkrun21117:46 + Alle +
Ashford parkrun22217:57 + Alle +
Bedford parkrun21116:55 + Alle +
Margate parkrun21118:16 + Alle +
Milton Keynes parkrun23317:26 + Alle +
Preston Park parkrun, Brighton22217:40 + Alle +
Shorne Woods parkrun21118:14 + Alle +
Canons Park parkrun27720:50 + Alle +
Osterley parkrun21117:57 + Alle +
Eastleigh parkrun27719:14 + Alle +
Brooklands parkrun2394223:22 + Alle +
Great Lines parkrun, Medway25518:25 + Alle +
Malling Rec parkrun2738526:59 + Alle +
Crystal Palace parkrun21117:24 + Alle +
Northala Fields parkrun22218:06 + Alle +
Northampton parkrun21116:56 + Alle +
Oak Hill parkrun21117:13 + Alle +
Lloyd parkrun, Croydon21118:01 + Alle +
Newbury parkrun21117:20 + Alle +
Cranleigh parkrun26620:49 + Alle +
Littlehampton Prom parkrun2384324:22 + Alle +
Whitstable parkrun23318:12 + Alle +
Bethlem Royal Hospital parkrun2263223:22 + Alle +
Cyclopark parkrun2353824:01 + Alle +
Hockley Woods parkrun26621:09 + Alle +
South Oxhey parkrun21119:13 + Alle +
Pymmes parkrun21117:06 + Alle +
Hastings parkrun291120:41 + Alle +
Wycombe Rye parkrun22217:17 + Alle +
Hove Promenade parkrun27719:23 + Alle +
Banstead Woods parkrun21117:31 + Alle +
Wormwood Scrubs parkrun21118:00 + Alle +
Roundshaw Downs parkrun23318:14 + Alle +
Mile End parkrun21116:53 + Alle +
Bevendean Down parkrun28923:21 + Alle +
Finsbury parkrun22217:15 + Alle +
Tooting Common parkrun2181819:14 + Alle +
Bromley parkrun13317:18 + Alle +
Houghton Hall parkrun1131321:48 + Alle +
Sittingbourne parkrun18820:56 + Alle +
Sharpham Road Playing Fields parkrun1253124:41 + Alle +
Gadebridge parkrun1141422:22 + Alle +
Chilton Fields parkrun1405428:26 + Alle +
Storeys Field parkrun115121128:49 + Alle +
Hadleigh parkrun, Essex1252624:27 + Alle +
Marple parkrun11117:15 + Alle +
Portsmouth Lakeside parkrun19919:12 + Alle +
Grove Fields parkrun1578528:03 + Alle +
Banbury parkrun1222321:16 + Alle +
Graves parkrun11118:18 + Alle +
Watermead Country Park parkrun110818235:52 + Alle +
Eastbourne parkrun12217:24 + Alle +
Malahide parkrun11116:54 + Alle +
Fareham parkrun16619:21 + Alle +
Sutcliffe parkrun113117230:34 + Alle +
Fritton Lake parkrun11118:26 + Alle +
Bicester parkrun14420:13 + Alle +
Sandringham parkrun1466330:18 + Alle +
Luton Wardown parkrun191019:36 + Alle +
Cwmbran parkrun1171723:29 + Alle +
Broadwater parkrun110321335:19 + Alle +
Basildon parkrun15518:13 + Alle +
Marecchia parkrun11119:50 + Alle +
Harleston Magpies parkrun1293525:12 + Alle +
Kingsway parkrun, Gloucester1192021:20 + Alle +
Bryn Bach parkrun11116:50 + Alle +
Mersea Island parkrun1121220:59 + Alle +
Charlton parkrun18213032:05 + Alle +
parkrun de Rouen15521:41 + Alle +
Dallas Burston Polo Club parkrun19614732:26 + Alle +
Ashton Court parkrun1859522:59 + Alle +
Tøyen parkrun1668526:32 + Alle +
The Great Field parkrun19313529:12 + Alle +
Castle Park parkrun1394122:34 + Alle +
Swanley parkrun19712531:18 + Alle +
Greenwich parkrun12218:07 + Alle +
Neckarau parkrun1243027:11 + Alle +
Bury Field parkrun1669033:07 + Alle +
Clifton parkrun1101025:14 + Alle +
Alton Water parkrun1538335:09 + Alle +
Colwick parkrun18819:46 + Alle +
Melksham parkrun1171724:31 + Alle +
Markshall Estate parkrun110315632:26 + Alle +
Rogiet parkrun1151624:27 + Alle +
Bartley Park parkrun18415132:38 + Alle +
Lydiard parkrun18818:25 + Alle +
Little Stoke parkrun11117:03 + Alle +
Letchworth parkrun1141423:13 + Alle +
Belvoir Castle parkrun1131925:42 + Alle +
Andover parkrun11117:33 + Alle +
Rushcliffe parkrun1617323:54 + Alle +
Cirencester parkrun1222422:40 + Alle +
Southall parkrun1557531:38 + Alle +
Forest of Dean parkrun1182224:51 + Alle +
parkrun des Dougnes, Cubnezais12219:42 + Alle +
South Woodham Ferrers parkrun18821:14 + Alle +
Marine Parade parkrun17711129:24 + Alle +
Coventry parkrun1292920:51 + Alle +
Wotton parkrun1182124:45 + Alle +
Gloucester City parkrun1171922:35 + Alle +
Great Salterns parkrun19212430:27 + Alle +
Bedworth parkrun1171722:14 + Alle +
University Parks parkrun119032631:42 + Alle +
Hampstead Heath parkrun11117:45 + Alle +
Great Denham parkrun16619:27 + Alle +
Downham Market Academy parkrun1121324:35 + Alle +
Ipswich parkrun11117:34 + Alle +
Sixfields Upton parkrun18819:58 + Alle +
Rendlesham Forest parkrun1264637:01 + Alle +
Frogmary Green Farm parkrun1597225:58 + Alle +
Harrow Lodge parkrun11118:48 + Alle +
Witney parkrun1202022:34 + Alle +
Leamington parkrun12218:52 + Alle +
Brockenhurst parkrun13318:23 + Alle +
Hogmoor Inclosure parkrun1262625:26 + Alle +
Hastings High School parkrun1637827:33 + Alle +
Cannock Chase parkrun1384425:49 + Alle +
Wimpole Estate parkrun1202122:14 + Alle +
Haverhill parkrun1121323:32 + Alle +
Edenbrook Country parkrun110514828:01 + Alle +
Maidstone River Park parkrun13318:00 + Alle +
Cheltenham parkrun12217:24 + Alle +
Victoria Dock parkrun1273020:04 + Alle +
Ekebergsletta parkrun1304325:57 + Alle +
Oxford parkrun11117:18 + Alle +
Aylesbury parkrun11117:51 + Alle +
Mote Park parkrun19712231:28 + Alle +
Riverfront parkrun1404622:57 + Alle +
Newent parkrun1182225:27 + Alle +
Clapham Common parkrun1404220:22 + Alle +
Llanishen Park parkrun1303323:48 + Alle +
Heartwood Forest parkrun1252721:41 + Alle +
Walthamstow parkrun11117:48 + Alle +
Malmö Ribersborg parkrun111215128:46 + Alle +
Chippenham Playing Fields parkrun, Monmouth1161923:05 + Alle +
Huntingdon parkrun1202121:10 + Alle +
Felixstowe parkrun1121221:07 + Alle +
Tidworth parkrun110815535:14 + Alle +
Brandon Country Park parkrun11118:30 + Alle +
Prospect parkrun1232322:42 + Alle +
Mildenhall Hub parkrun1273124:33 + Alle +
York parkrun12217:12 + Alle +
Thetford parkrun1161721:45 + Alle +
Great Dunmow parkrun14420:25 + Alle +
Leavesden Country parkrun1506928:32 + Alle +
Catford parkrun1303322:32 + Alle +
Lordship Recreation Ground parkrun19112425:22 + Alle +
Rugby parkrun1181822:26 + Alle +
Mulbarton parkrun12219:55 + Alle +
Swaffham parkrun191022:19 + Alle +
Ganger Farm parkrun19811426:34 + Alle +
Beckenham Place parkrun1121220:28 + Alle +
Forest Rec parkrun1677626:35 + Alle +
Street parkrun1283525:52 + Alle +
Market Bosworth Country Park parkrun110614435:35 + Alle +
Whiteley parkrun1141520:56 + Alle +
Kingsbury Water parkrun1394725:05 + Alle +
Springhill parkrun14422:18 + Alle +
Wolford Wood parkrun1212730:24 + Alle +
Pontypridd parkrun12217:54 + Alle +
Pocket parkrun1222321:38 + Alle +
Stockley Country parkrun111917935:32 + Alle +
Braunstone parkrun1262720:41 + Alle +
Didcot parkrun1101121:28 + Alle +
Littleport parkrun1445125:16 + Alle +
Yarborough Leisure Centre parkrun1466125:59 + Alle +
Roding Valley parkrun1111321:26 + Alle +
Clair parkrun13318:36 + Alle +
Dinton Pastures parkrun1131321:23 + Alle +
Beacon Hill Country Park parkrun1273725:54 + Alle +
Severn Bridge parkrun1353921:32 + Alle +
Abbey Park parkrun1779425:21 + Alle +
Dudley parkrun1445626:35 + Alle +
Pegwell Bay parkrun12217:40 + Alle +
Manor Field parkrun, Whittlesey1121324:25 + Alle +
Blaise Castle parkrun112816326:20 + Alle +
Chipping Sodbury parkrun1303221:20 + Alle +
Foots Cray Meadows parkrun1212323:17 + Alle +
Thames Path parkrun, Woolwich1789023:42 + Alle +
Bath Skyline parkrun1192021:08 + Alle +
Dishley parkrun, Loughborough110311424:30 + Alle +
Thornham Walks parkrun1363826:52 + Alle +
Moors Valley parkrun19919:40 + Alle +
East Grinstead parkrun1131423:10 + Alle +
Sutton Park parkrun1475524:54 + Alle +
University of Northampton parkrun1192223:24 + Alle +
Shipley Country parkrun1232424:45 + Alle +
Lancing Beach Green parkrun1141421:08 + Alle +
Dover Waterfront parkrun1374525:22 + Alle +
Rickmansworth parkrun1242721:39 + Alle +
Queen Elizabeth parkrun12219:08 + Alle +
Sizewell parkrun1172023:30 + Alle +
Holbrooks parkrun1202223:43 + Alle +
Highbury Fields parkrun11117:25 + Alle +
Clacton Seafront parkrun19920:35 + Alle +
Delaware and Raritan Canal parkrun12221:06 + Alle +
Wisbech parkrun1111523:03 + Alle +
Milton Country parkrun13317:43 + Alle +
Seaton parkrun1394824:09 + Alle +
Higginson parkrun, Marlow1272922:17 + Alle +
Quakers Walk parkrun1566825:05 + Alle +
Lister Park parkrun, Bradford1313621:55 + Alle +
Wendover Woods parkrun1262623:51 + Alle +
Sence Valley Forest Park parkrun1232526:28 + Alle +
Canterbury parkrun16621:56 + Alle +
Henstridge Airfield parkrun18821:41 + Alle +
Five Arches parkrun1455422:58 + Alle +
Yeovil Montacute parkrun1707525:51 + Alle +
Watermeadows parkrun1283124:57 + Alle +
Tamworth Castle Grounds parkrun1333523:26 + Alle +
St Helens parkrun1606824:27 + Alle +
Weymouth parkrun1141420:45 + Alle +
Walmer and Deal Seafront parkrun18821:38 + Alle +
Aston Hall parkrun1202225:01 + Alle +
Royal Tunbridge Wells parkrun18919:23 + Alle +
Corby parkrun18823:09 + Alle +
Marlborough Common parkrun1202122:48 + Alle +
Battlestead Croft parkrun1111122:53 + Alle +
Shepton Mallet parkrun1121421:50 + Alle +
Clare Castle parkrun1252723:04 + Alle +
Coldham’s Common parkrun1535923:04 + Alle +
Brunswick Park parkrun1212223:58 + Alle +
Brentwood parkrun17722:28 + Alle +
Somerdale Pavilion parkrun1384631:17 + Alle +
Wakehurst parkrun18810525:00 + Alle +
Boston parkrun17721:18 + Alle +
Morden parkrun111715526:58 + Alle +
Pontefract parkrun1718724:10 + Alle +
Jersey Farm parkrun1252723:11 + Alle +
Bug Hunter Waters parkrun1455022:41 + Alle +
Rosliston parkrun1333624:41 + Alle +
Longrun Meadow parkrun111416532:01 + Alle +
Fire Service College parkrun1181922:12 + Alle +
Woolacombe Dunes parkrun19410931:20 + Alle +
The Plens parkrun1303124:04 + Alle +
Arrow Valley parkrun13318:05 + Alle +
Tonbridge parkrun14418:40 + Alle +
East Brighton parkrun1182123:56 + Alle +
Three Brooks parkrun1697223:46 + Alle +
Peacehaven parkrun17721:07 + Alle +
Pontypool parkrun1232323:51 + Alle +
Cromhall parkrun1151624:20 + Alle +
Dereham parkrun1323323:47 + Alle +
Bournemouth parkrun14417:43 + Alle +
Pomphrey Hill parkrun1364123:02 + Alle +
Seaford Beach parkrun1535622:25 + Alle +
Mansfield parkrun11117:09 + Alle +
Fountains Abbey parkrun11118:03 + Alle +
Loch Neaton parkrun, Watton1171725:49 + Alle +
Brueton parkrun1475021:33 + Alle +
Great Cornard parkrun1192020:33 + Alle +
Dunstable Downs parkrun1374324:58 + Alle +
Beeston parkrun1374023:53 + Alle +
Feltham parkrun13424:56 + Alle +
Markeaton parkrun1576422:56 + Alle +
Reigate Priory parkrun16619:06 + Alle +
Highwoods parkrun1252624:49 + Alle +
Valentines parkrun11116:49 + Alle +
Springburn parkrun, Glasgow13318:05 + Alle +
California Country parkrun1649028:49 + Alle +
Rushmoor parkrun19918:29 + Alle +
Mountbatten School parkrun1323424:11 + Alle +
Colchester Castle parkrun14418:04 + Alle +
Buckingham parkrun12218:37 + Alle +
Sunny Hill parkrun1202424:39 + Alle +
Bognor Regis parkrun12218:12 + Alle +
Aachener Weiher parkrun1101124:55 + Alle +
Peckham Rye parkrun11117:49 + Alle +
Millennium Country parkrun, Forest of Marston Vale1373923:01 + Alle +
Great Notley parkrun16620:16 + Alle +
Snowden Field parkrun1242624:15 + Alle +
Burnham-on-Crouch parkrun18822:01 + Alle +
Woking parkrun18818:19 + Alle +
Neckarufer parkrun, Esslingen1364425:12 + Alle +
Worcester parkrun114418529:30 + Alle +
Blandford parkrun18920:11 + Alle +
Pont y Bala parkrun15723:18 + Alle +
Chichester parkrun13319:05 + Alle +
Kingdom parkrun1222524:39 + Alle +
Westmill parkrun1101022:55 + Alle +
Dartford parkrun11117:59 + Alle +
Hanworth parkrun1364024:26 + Alle +
Bracknell parkrun18820:04 + Alle +
Folkestone parkrun1212521:48 + Alle +
Uckfield parkrun1404324:12 + Alle +
Harrogate parkrun13318:11 + Alle +
Kesgrave parkrun1374021:18 + Alle +
Thomas Mills parkrun1486530:19 + Alle +
Lymington Woodside parkrun15721:59 + Alle +
Hereford parkrun1535323:07 + Alle +
Chasewater parkrun18210026:19 + Alle +
South Norwood parkrun1121221:11 + Alle +
Panshanger parkrun17720:14 + Alle +
Wolverhampton parkrun1556624:54 + Alle +
Harcourt Hill parkrun1171721:13 + Alle +
Tetbury Goods Shed parkrun1253024:25 + Alle +
Gloucester North parkrun1101022:14 + Alle +
Harlow parkrun1151523:00 + Alle +
Alvaston parkrun1515922:24 + Alle +
Worcester Pitchcroft parkrun111814327:04 + Alle +
Perry Hall parkrun1464924:58 + Alle +
Newport parkrun11117:29 + Alle +
Tring parkrun1171823:38 + Alle +
Severn Valley Country parkrun1141626:13 + Alle +
Wanstead Flats parkrun13317:13 + Alle +
Daventry parkrun1151521:10 + Alle +
St Mary’s parkrun1587429:14 + Alle +
Poole parkrun14416:57 + Alle +
Melton Mowbray parkrun1192222:38 + Alle +
The Old Showfield parkrun1636923:30 + Alle +
Henley-on-Thames parkrun1111122:25 + Alle +
Crissy Field parkrun1101220:40 + Alle +
Babbs Mill parkrun1405128:00 + Alle +
Maidenhead parkrun17718:49 + Alle +
Ross-on-Wye parkrun1172124:22 + Alle +
Kettering parkrun1232622:50 + Alle +
Stratford Park parkrun, Stroud1566527:51 + Alle +
Bury St Edmunds parkrun13318:17 + Alle +
Mallards Pike parkrun1324630:57 + Alle +
Market Harborough parkrun1303121:17 + Alle +
Cassiobury parkrun1111120:14 + Alle +
Squerryes Winery parkrun1323627:45 + Alle +
Walsall Arboretum parkrun19010625:31 + Alle +
Penrose parkrun1151619:40 + Alle +
King George V Playing Field parkrun, Cheltenham1232826:08 + Alle +
Evesham parkrun1111121:39 + Alle +
Warwick Racecourse parkrun1486024:55 + Alle +
Huddersfield parkrun1626722:02 + Alle +
Clevedon Salthouse Fields parkrun1384925:13 + Alle +
Long Eaton parkrun19912124:06 + Alle +
Barry Island parkrun1394223:51 + Alle +
Ifield Mill Pond parkrun1373824:33 + Alle +
Upton House parkrun1252722:34 + Alle +
Lullingstone parkrun17721:21 + Alle +
The Leas parkrun, Minster1252524:37 + Alle +
Medina I.O.W. parkrun11117:20 + Alle +
Uditore parkrun13320:28 + Alle +
Hunstanton Promenade parkrun1283523:45 + Alle +
Raphael parkrun13319:35 + Alle +
Burnham and Highbridge parkrun17510027:51 + Alle +
Salcey Forest parkrun1384324:53 + Alle +
Ferry Meadows parkrun15517:27 + Alle +
Barclay parkrun15623:13 + Alle +
Irchester Country parkrun1586225:13 + Alle +
Maldon Prom parkrun11118:04 + Alle +
Salisbury parkrun1111119:34 + Alle +
Tremorfa parkrun1272923:30 + Alle +
Billericay parkrun1121321:20 + Alle +
Gedling parkrun1273224:59 + Alle +
Oaklands parkrun111820336:10 + Alle +
Winchester parkrun14518:28 + Alle +
Aldenham parkrun1141421:37 + Alle +
East Park parkrun1121424:18 + Alle +
Soham Village College parkrun1253228:03 + Alle +
Stevenage parkrun17719:32 + Alle +
Tewkesbury parkrun1111422:50 + Alle +
Seven Fields parkrun1475526:28 + Alle +
Conkers parkrun12217:46 + Alle +
Lee-on-the-Solent parkrun17719:40 + Alle +
Brixworth Country parkrun1496126:53 + Alle +
Abingdon parkrun15518:03 + Alle +
Lowestoft parkrun1232621:10 + Alle +
Chipping Norton School parkrun1455126:40 + Alle +
Linford Wood parkrun1222221:45 + Alle +
Harwich parkrun191021:22 + Alle +
Fulbourn Hospital parkrun1344724:59 + Alle +
Gunpowder parkrun12217:34 + Alle +
Dartford Heath parkrun1171722:06 + Alle +
Sandhurst Memorial parkrun1537328:54 + Alle +
Woodhouse Moor parkrun11117:22 + Alle +
Sandwell Valley parkrun1455930:43 + Alle +
Wyre Forest parkrun1434825:56 + Alle +
parkrun Zalew Żyrardowski16724:38 + Alle +
Bramhall parkrun115924735:16 + Alle +
Hatfield Forest parkrun1181820:36 + Alle +
Swansea Bay parkrun1748323:44 + Alle +
Wollaton Hall parkrun1889723:51 + Alle +
Horsham parkrun14518:16 + Alle +
Jersey parkrun16619:41 + Alle +
Berkeley Green parkrun1233128:31 + Alle +
Cardiff parkrun111011722:02 + Alle +
Ally Pally parkrun11118:09 + Alle +
Thurrock parkrun, Orsett Heath16620:41 + Alle +
Beacon parkrun1587326:41 + Alle +
Albert parkrun, Middlesbrough1515423:17 + Alle +
Sherwood Pines parkrun1161821:33 + Alle +
Wickford Memorial parkrun1436651:15 + Alle +
Thornbury parkrun1323428:19 + Alle +
Malling parkrun18314547:25 + Alle +
Itchen Valley Country parkrun1476127:37 + Alle +
Pollok parkrun, Glasgow11117:00 + Alle +
Eastville parkrun120525325:12 + Alle +
Rutland Water parkrun1293022:44 + Alle +
Chalkwell Beach parkrun1819624:40 + Alle +
Amager Fælled parkrun1333724:23 + Alle +
Hoblingwell parkrun1202423:52 + Alle +
Belton House parkrun1141523:48 + Alle +
Kagerzoom parkrun1435824:39 + Alle +
Gorleston Cliffs parkrun12217:43 + Alle +
King’s Lynn parkrun1151520:07 + Alle +
Holkham parkrun1506925:37 + Alle +
Horspath parkrun17410628:12 + Alle +
Southwick Country parkrun1272921:47 + Alle +
Rushmere parkrun1131422:39 + Alle +
Zuiderpark parkrun, Den Haag1738124:07 + Alle +
Heaton parkrun13318:08 + Alle +
Colney Lane parkrun1495524:01 + Alle +
Leicester Victoria parkrun19711626:45 + Alle +
Church Mead parkrun16610232:53 + Alle +
Southend parkrun11116:28 + Alle +
Lydney parkrun1202123:19 + Alle +
Edgbaston Reservoir parkrun1658626:24 + Alle +
Reading parkrun12217:18 + Alle +
March parkrun15521:11 + Alle +
Woodgate Valley Country Park parkrun16513245:50 + Alle +
Maaraue parkrun1232522:34 + Alle +
Stonehouse parkrun1131320:09 + Alle +
Rheinpark parkrun1151825:30 + Alle +
Edinburgh parkrun12217:00 + Alle +
Chippenham parkrun1212120:08 + Alle +
Stratford-upon-Avon parkrun1202521:14 + Alle +
Henlow Bridge Lakes parkrun17511532:34 + Alle +
8671116:25 + Alle   -


Volunteer Summary

RoleOccasions
- Run Director - 94
- Timekeeper - 59
- Token Sorting - 3
- Results Processor - 87
- Photographer - 6
- Communications Person - 10
- Marshal - 39
- Pre-event Setup - 130
- Equipment Storage and Delivery - 128
- Other - 23
- Barcode Scanning - 55
- Post-event Close Down - 45
- Finish Tokens - 15
- Number Checker - 2
- First Timers Welcome - 68
- Funnel Manager - 15
- Finish Token Support - 9
- Tail Walker - 29
- Volunteer Co-ordinator - 146
- Report Writer - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Car Park Marshal - 1
- Event Day Course Check - 8
- parkwalker - 9
Total Credits396

- This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more
here. -



Freedom parkruns

DateTimeLocation
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
+


Oversikt over frivillige

FunksjonAntall ganger
+ Løpsansvarlig + 99
+ Tidtaker + 94
+ Brikkesortering + 12
+ Resultatbehandler + 87
+ Fotograf + 6
+ Kommunikasjonsansvarlig + 10
+ Løypevakt + 54
+ Opprigg + 148
+ Utstyrslagring- og levering + 130
+ Annet + 26
+ Strekkodeskanner + 78
+ Nedrigg + 51
+ Brikkeutdeler + 21
+ Nummersjekk + 2
+ Velkomsttale for førstegangsdeltakere + 82
+ Målområdeansvarlig + 15
+ Brikkeutdelingsstøtte + 12
+ Baktropp + 29
+ Frivilligkoordinator + 148
+ Rapportforfatter + 100
+ Ekstra tidtaker + 3
+ (brukes ikke i dette parkrun-territoriet) + 16
+ Parkeringsplassvakt + 1
+ Løypekontroll før start + 14
+ parkwalker + 10
Poeng totalt499

+ Tabellen oppsummerer antall ganger hver frivilligrolle er utført.
Vær obs på at totalen kan avvike fra totalen av oppgaver utført som frivillig hvis du har utført flere oppgaver samme dag.
Les mer her. +



Frie løp

DatoTidSted
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkrun

UkeStartdatoSluttdato(not)parkrunBeste tid
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1019,63 +1128,61 @@

Danny NORMAN (A482)
- Locations: 7 -
-
- Finishers: 7,456 + Lokasjoner: 10
- Finishes: 30,705 + Deltakere: 15394
- All-time events: 810 + Fullførte løp: 59647
- Volunteers: 826 + Eventer arrangert totalt: 1347
- PBs: 5,302 + Frivillige: 1377
- Average finish time: 00:28:53 + PB-er: 9618
- Average finishes per participant: 4.1 + Gjennomsnittlig sluttid: 00:29:02
- Groups: 694 + Klubber: 1223
-

+
- Stats last updated: Fri 14 Apr 2023 00:40:28 UTC + Statistikk oppdatert: ma. 30. sep. 2024 kl. 00.40 +0000
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Dette nettstedet kan ikke reproduseres i sin helhet eller delvis i noen form uten tillatelse fra rettighetshaveren.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1104,8 +1221,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/88720/all/index.html index 9453e6a3..3c6bb519 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/88720/all/index.html @@ -14,7 +14,8 @@ -results | parkrun.no + +resultater | parkrun.no - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,633 +99,731 @@ -

Phillip WHETTLOCK (A88720)

- Member of the parkrun 250 Club - - Member of the Volunteer 100 club +

Phillip WHETTLOCK (A88720)

+ Medlem av klubben for 250 parkrun + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkrun totalt

- View summary stats for this parkrunner + Se oppsummeringsstatistikken for denne deltakeren
- Most recent age category was VM55-59 + Deltok sist i aldersklassen M60-64

- Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time21:4025:2552:00
Age Grading69.71%60.41%29.55%
Overall Position648.88374

- Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

- All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Halifax08/04/20233313225:0063.07% + Oppsummeringsstatistikken for alle lokasjoner +
RaskestGjennomsnitt
(middelverdi)
Saktest
Tid21:3625:2654:59
Aldersgradering72.99%60.80%28.92%
Samlet plassering648.44374

+ Beste samlede resultater for året +
ÅrBeste tidBeste aldersgradering
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

+ Alle resultater +
EventLøpsdatoLøpsnummerPl.TidAldersgraderingPB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73%   -
Fulham Palace01/04/202339110924:0965.29% +
Halifax04/05/20243842924:2665.08%   -
Halifax25/03/20233291624:4363.79% +
Hyndburn27/04/20242593125:5161.51%   -
Halifax18/03/20233282326:4758.87% +
Zuiderpark20/04/20241261722:0372.11%   -
Halifax04/03/20233273825:1962.28% +
Halifax13/04/20243813524:3764.59%   -
Myrtle25/02/20231593824:5263.40% +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% PB   -
Halifax18/02/20233252926:0360.52% +
Conwy18/11/20233764424:5363.90%   -
Halifax11/02/20233243124:0365.56% +
Penistone28/10/20231393724:2065.34%   -
Bradford04/02/20235795022:3769.71% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Bowling Park28/01/202379924:1165.20% +
Halifax16/09/20233532123:4367.04%   -
Bramley21/01/20233004925:3461.67% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax14/01/20233213325:5260.95% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Halifax07/01/20233203026:2659.65% +
Glossop12/08/20233152824:2564.57%   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax05/08/20233473024:4363.79%   -
Nostell31/12/20223614325:0063.07% +
Huddersfield29/07/20235456722:4769.20%   -
Halifax24/12/20223173125:4661.19% +
Brighouse15/07/20232544223:5366.02% + PB + +   +
Stratford Park, Stroud01/07/20231253126:2959.53% +   +
Wetherby24/06/20233094124:4663.66%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax10/06/20233402524:0265.60%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax03/06/20233392124:1365.11% +   +
Long Eaton20/05/20233306921:3672.99% +   +
Halifax06/05/20233352423:4566.39% +   +
Keswick29/04/20233904121:3672.99% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax22/04/20233334725:0262.98%   -
Brighouse12/11/20222213725:1762.36% +
Halifax08/04/20233313225:0063.07%   -
Halifax05/11/20223122424:5163.45% +
Fulham Palace01/04/202339110924:0965.29%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax25/03/20233291624:4363.79%   -
Halifax15/10/202230910749:5431.60% +
Halifax18/03/20233282326:4758.87%   -
Crosby08/10/20222833525:3861.51% +
Halifax04/03/20233273825:1962.28%   -
Alness01/10/20221801024:0965.29% +
Myrtle25/02/20231593824:5263.40% + PB + +   +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71% +   +
Bowling Park28/01/202379924:1165.20% +   +
Bramley21/01/20233004925:3461.67% +   +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB + +   +
Conkers19/11/20225485624:1465.06%   -
Victoria24/09/20223736722:5468.85% +
Brighouse12/11/20222213725:1762.36%   -
Halifax17/09/20223052625:0063.07% +
Halifax05/11/20223122424:5163.45%   -
Centre Vale10/09/20221034428:4454.87% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax03/09/20223033125:3361.71% +
Halifax15/10/202230910749:5431.60%   -
Skipton27/08/20224035325:3561.11% +
Crosby08/10/20222833525:3861.51%   -
Halifax20/08/20223012824:5262.87% +
Alness01/10/20221801024:0965.29%   -
Halifax06/08/20222996426:0360.01% +
Victoria24/09/20223736722:5468.85%   -
Armley30/07/20221432724:2863.90% +
Halifax17/09/20223052625:0063.07%   -
Halifax16/07/20222962524:2663.98% +
Centre Vale10/09/20221034428:4454.87%   -
Halifax02/07/20222942524:4863.04% +
Halifax03/09/20223033125:3361.71%   -
Halifax18/06/20222922424:5462.78% +
Skipton27/08/20224035325:3561.11%   -
The Pastures11/06/2022991826:2159.33% +
Halifax20/08/20223012824:5262.87%   -
Halifax04/06/20222913826:4858.33% +
Halifax06/08/20222996426:0360.01%   -
Horton Park28/05/20222942225:1262.04% +
Armley30/07/20221432724:2863.90%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax16/07/20222962524:2663.98%   -
Halifax07/05/20222877529:3552.85% +
Halifax02/07/20222942524:4863.04%   -
Harrogate30/04/202246716226:4458.48% +
Halifax18/06/20222922424:5462.78%   -
Halifax23/04/20222854927:0057.90% +
The Pastures11/06/2022991826:2159.33%   -
Halifax09/04/20222834526:3758.74% +
Halifax04/06/20222913826:4858.33%   -
Halifax02/04/20222822924:4463.21% +
Horton Park28/05/20222942225:1262.04%   -
Pendle26/03/20223443126:1659.52% +
Bushy Park21/05/202287737424:0664.87%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax07/05/20222877529:3552.85%   -
Halifax05/03/20222784925:3761.03% +
Harrogate30/04/202246716226:4458.48%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax23/04/20222854927:0057.90% +   +
Halifax09/04/20222834526:3758.74% +   +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -771,63 +854,61 @@

Phillip WHETTLOCK (A8
- Locations: 7 -
-
- Finishers: 7,518 + Lokasjoner: 10
- Finishes: 30,969 + Deltakere: 15394
- All-time events: 817 + Fullførte løp: 59647
- Volunteers: 830 + Eventer arrangert totalt: 1347
- PBs: 5,338 + Frivillige: 1377
- Average finish time: 00:28:53 + PB-er: 9618
- Average finishes per participant: 4.1 + Gjennomsnittlig sluttid: 00:29:02
- Groups: 696 + Klubber: 1223
-
+
- Stats last updated: Mon 17 Apr 2023 00:40:42 UTC + Statistikk oppdatert: ma. 30. sep. 2024 kl. 00.40 +0000
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Dette nettstedet kan ikke reproduseres i sin helhet eller delvis i noen form uten tillatelse fra rettighetshaveren.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -856,8 +947,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/88720/index.html index 87ba8f34..01bff6dd 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/88720/index.html @@ -14,7 +14,8 @@ -results | parkrun.no + +resultater | parkrun.no - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - + + - @@ -58,8 +52,8 @@
@@ -71,34 +65,25 @@
@@ -114,187 +99,241 @@ -

Phillip WHETTLOCK (A88720)

- Member of the parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns total

- View stats for all parkruns by this parkrunner +

Phillip WHETTLOCK (A88720)

+ Medlem av klubben for 250 parkrun + + Member of the Volunteer 250 club +

345 parkrun totalt

+ Se statistikken for alle parkrun for denne deltakeren
- Most recent age category was VM55-59 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bradford parkrun1166600:21:40 - All - Graph It!
Halifax parkrun1148800:22:13 - All - Graph It!
Horton Park parkrun9131300:22:18 - All - Graph It!
Sewerby parkrun3121200:22:08 - All - Graph It!
Keswick parkrun3253300:23:33 - All - Graph It!
Pontefract parkrun2273200:22:08 - All - Graph It!
Temple Newsam parkrun2272900:25:14 - All - Graph It!
Myrtle parkrun2333800:24:52 - All - Graph It!
Middleton Woods parkrun2121400:24:55 - All - Graph It!
Bramley parkrun2252500:24:06 - All - Graph It!
Druridge Bay parkrun1354200:23:35 - All -  
Fountains Abbey parkrun1394800:22:26 - All -  
Victoria parkrun, Glasgow1546700:22:54 - All -  
Clumber Park parkrun1101100:21:46 - All -  
Rothay Park parkrun1202700:24:48 - All -  
Warwick Racecourse parkrun1638200:24:06 - All -  
Conkers parkrun1525600:24:14 - All -  
The Pastures parkrun1161800:26:21 - All -  
Harrogate parkrun112316200:26:44 - All -  
Dishley parkrun, Loughborough1535700:24:25 - All -  
Dalby Forest parkrun1283200:23:06 - All -  
Woodhouse Moor parkrun1778200:22:18 - All -  
Whinlatter Forest parkrun1283200:27:23 - All -  
Watergrove parkrun, Rochdale1111200:27:57 - All -  
Springburn parkrun, Glasgow1161600:23:14 - All -  
Fulham Palace parkrun18610900:24:09 - All -  
Flatts Lane parkrun1171800:26:53 - All -  
Roberts Park parkrun1657500:24:54 - All -  
Bowling Park parkrun18900:24:11 - All -  
Hanley parkrun16600:22:03 - All -  
Centre Vale parkrun1304400:28:44 - All -  
Wycombe Rye parkrun1232600:22:35 - All -  
Carlisle parkrun1567100:26:05 - All -  
Armley parkrun1262700:24:28 - All -  
Crosby parkrun1293500:25:38 - All -  
Edinburgh parkrun1646700:21:54 - All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 - All -  
Bushy parkrun130137400:24:06 - All -  
Oakwell Hall parkrun1344000:26:10 - All -  
Pendle parkrun1263100:26:16 - All -  
Alness parkrun171000:24:09 - All -  
Skipton parkrun1505300:25:35 - All -  
Chevin Forest parkrun1213000:26:47 - All -  
Burnley parkrun1545700:25:21 - All -  
Queen’s parkrun, Glasgow1677900:25:29 - All -  
Roundhay parkrun112815700:26:55 - All -  
Storthes Hall parkrun1263000:26:20 - All -  
Southport parkrun1545700:23:57 - All -  
Cliffe Castle parkrun1151700:25:18 - All -  
Brighouse parkrun1333700:25:17 - All -  
Milton Country parkrun1707500:22:40 - All -  
Pollok parkrun, Glasgow1667200:23:58 - All -  
Nostell parkrun1384300:25:00 - All -  
Portobello parkrun, Edinburgh1668000:24:16 - All -  
2996600:21:40 - All + Deltok sist i aldersklassen M60-64 +

Siste deltakelser

EventLøpsdatoKjønnspl.Samlet plasseringTidAldersgradering
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Event-sammendrag

EventparkrunBeste kjønnsplasseringBeste plassering totaltBeste tid  
Halifax parkrun1268822:13 + Alle +
Lister Park parkrun, Bradford1166621:40 + Alle +
Horton Park parkrun9131322:18 + Alle +
Keswick parkrun4253321:36 + Alle +
Sewerby parkrun3121222:08 + Alle +
Pontefract parkrun2273222:08 + Alle +
Brighouse parkrun2333723:53 + Alle +
Temple Newsam parkrun2272925:14 + Alle +
Fountains Abbey parkrun2394822:26 + Alle +
Oakwell Hall parkrun2293626:10 + Alle +
Whinlatter Forest parkrun2283227:23 + Alle +
Bramley parkrun2252524:06 + Alle +
Middleton Woods parkrun2121424:55 + Alle +
Myrtle parkrun2333824:52 + Alle +
Centre Vale parkrun2303626:37 + Alle +
Bushy parkrun130137424:06 + Alle +
Woodhouse Moor parkrun1778222:18 + Alle +
Pollok parkrun, Glasgow1667223:58 + Alle +
Edinburgh parkrun1646721:54 + Alle +
Wakefield Thornes parkrun1545824:29 + Alle +
Hyndburn parkrun1253125:51 + Alle +
York parkrun111413522:55 + Alle +
Milton Country parkrun1707522:40 + Alle +
Carlisle parkrun1567126:05 + Alle +
Harrogate parkrun112316226:44 + Alle +
Southport parkrun1545723:57 + Alle +
Barnsley parkrun1414325:05 + Alle +
Rothwell parkrun1535724:20 + Alle +
Huddersfield parkrun1596722:47 + Alle +
Long Eaton parkrun1556921:36 + Alle +
Wycombe Rye parkrun1232622:35 + Alle +
Conkers parkrun1525624:14 + Alle +
Roundhay parkrun112815726:55 + Alle +
Hanley parkrun16622:03 + Alle +
Worsley Woods parkrun1728824:46 + Alle +
Burnley parkrun1545725:21 + Alle +
Dewsbury parkrun18610128:15 + Alle +
Cross Flatts parkrun1303724:16 + Alle +
Clumber Park parkrun1101121:46 + Alle +
Skipton parkrun1505325:35 + Alle +
Flatts Lane parkrun1171826:53 + Alle +
Victoria parkrun, Glasgow1546722:54 + Alle +
Alness parkrun171024:09 + Alle +
Fulham Palace parkrun18610924:09 + Alle +
Springburn parkrun, Glasgow1161623:14 + Alle +
Druridge Bay parkrun1354223:35 + Alle +
Pendle parkrun1263126:16 + Alle +
Watergrove parkrun, Rochdale1111227:57 + Alle +
Wetherby parkrun1374124:46 + Alle +
Portobello parkrun, Edinburgh1668024:16 + Alle +
Nostell parkrun1374325:00 + Alle +
Fell Foot parkrun, Newby Bridge1161722:57 + Alle +
Conwy parkrun1394424:53 + Alle +
Glossop parkrun1242824:25 + Alle +
Crosby parkrun1293525:38 + Alle +
Dolgellau parkrun1459954:59 + Alle +
Dalby Forest parkrun1283223:06 + Alle +
Clitheroe Castle parkrun1192525:41 + Alle +
Armley parkrun1262724:28 + Alle +
Dishley parkrun, Loughborough1535724:25 + Alle +
Ford parkrun1202525:00 + Alle +
Cliffe Castle parkrun1151725:18 + Alle +
Potternewton parkrun1293625:04 + Alle +
Isabel Trail parkrun1293422:02 + Alle +
The Pastures parkrun1161826:21 + Alle +
Storthes Hall parkrun1263026:20 + Alle +
Hafan Pwllheli parkrun1212726:48 + Alle +
Penistone parkrun1343724:20 + Alle +
Conyngham Hall parkrun1363824:55 + Alle +
Stratford Park parkrun, Stroud1303126:29 + Alle +
Warwick Racecourse parkrun1638224:06 + Alle +
University of Stirling parkrun1343723:52 + Alle +
Jubilee parkrun1121926:42 + Alle +
Queen’s parkrun, Glasgow1677925:29 + Alle +
Bowling Park parkrun18924:11 + Alle +
Rothay Park parkrun1202724:48 + Alle +
Zuiderpark parkrun, Den Haag1151722:03 + Alle +
Carlisle Park parkrun, Morpeth1293325:44 + Alle +
Chevin Forest parkrun1213026:47 + Alle +
Roberts Park parkrun1657524:54 + Alle +
Beacon Hill Country Park parkrun1192325:36 + Alle +
Thames Path parkrun, Woolwich1586323:49 + Alle +
3456621:36 + Alle   -


Volunteer Summary

RoleOccasions
- Run Director - 32
- Timekeeper - 17
- Token Sorting - 5
- Results Processor - 1
- Photographer - 1
- Communications Person - 5
- Marshal - 35
- Pre-event Setup - 28
- Equipment Storage and Delivery - 5
- Other - 1
- Barcode Scanning - 27
- Post-event Close Down - 24
- Finish Tokens - 11
- Number Checker - 1
- First Timers Welcome - 77
- Funnel Manager - 12
- Finish Token Support - 10
- Tail Walker - 5
- Volunteer Co-ordinator - 10
- Report Writer - 1
- Pacer (5k only) - 5
- Backup Timer - 14
- VI Guide - 1
- Warm Up Leader - 5
- Sign Language Support - 1
- Car Park Marshal - 1
- Event Day Course Check - 25
- parkwalker - 1
Total Credits249

- This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more
here. -



Freedom parkruns

DateTimeLocation
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+


Oversikt over frivillige

FunksjonAntall ganger
+ Løpsansvarlig + 33
+ Tidtaker + 28
+ Brikkesortering + 5
+ Resultatbehandler + 4
+ Fotograf + 1
+ Kommunikasjonsansvarlig + 6
+ Løypevakt + 35
+ Opprigg + 29
+ Utstyrslagring- og levering + 6
+ Annet + 2
+ Strekkodeskanner + 46
+ Nedrigg + 25
+ Brikkeutdeler + 16
+ Nummersjekk + 1
+ Velkomsttale for førstegangsdeltakere + 82
+ Målområdeansvarlig + 16
+ Brikkeutdelingsstøtte + 16
+ Baktropp + 15
+ Frivilligkoordinator + 11
+ Rapportforfatter + 1
+ Fartsholder + 10
+ Ekstra tidtaker + 14
+ Guide for svaksynte + 1
+ (brukes ikke i dette parkrun-territoriet) + 15
+ Tegnspråkstøtte + 1
+ Parkeringsplassvakt + 1
+ Løypekontroll før start + 57
+ parkwalker + 1
Poeng totalt316

+ Tabellen oppsummerer antall ganger hver frivilligrolle er utført.
Vær obs på at totalen kan avvike fra totalen av oppgaver utført som frivillig hvis du har utført flere oppgaver samme dag.
Les mer her. +



Frie løp

DatoTidSted
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkrun

UkeStartdatoSluttdato(not)parkrunBeste tid
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -323,63 +362,61 @@

Phillip WHETTLOCK (A8
- Locations: 7 -
-
- Finishers: 7,518 + Lokasjoner: 10
- Finishes: 30,969 + Deltakere: 15394
- All-time events: 817 + Fullførte løp: 59647
- Volunteers: 830 + Eventer arrangert totalt: 1347
- PBs: 5,338 + Frivillige: 1377
- Average finish time: 00:28:53 + PB-er: 9618
- Average finishes per participant: 4.1 + Gjennomsnittlig sluttid: 00:29:02
- Groups: 696 + Klubber: 1223
-
+

- Stats last updated: Mon 17 Apr 2023 00:40:42 UTC + Statistikk oppdatert: ma. 30. sep. 2024 kl. 00.40 +0000
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Dette nettstedet kan ikke reproduseres i sin helhet eller delvis i noen form uten tillatelse fra rettighetshaveren.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -408,8 +455,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/999999/all/index.html index 287106b0..6cd7c3a1 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/999999/all/index.html @@ -14,7 +14,8 @@ -results | parkrun.no + +resultater | parkrun.no @@ -53,8 +52,8 @@
@@ -66,34 +65,25 @@
@@ -109,10 +99,10 @@ -

Jakub WOLSKI (A999999)

- No results have been recorded yet for this parkrunner. +

Jakub WOLSKI (A999999)

+ ​

- View summary stats for this parkrunner + Se oppsummeringsstatistikken for denne deltakeren

@@ -142,63 +132,61 @@

Jakub WOLSKI (A999999
- Locations: 7 -
-
- Finishers: 8,787 + Lokasjoner: 10
- Finishes: 34,945 + Deltakere: 15394
- All-time events: 890 + Fullførte løp: 59647
- Volunteers: 966 + Eventer arrangert totalt: 1347
- PBs: 5,879 + Frivillige: 1377
- Average finish time: 00:28:55 + PB-er: 9618
- Average finishes per participant: 4 + Gjennomsnittlig sluttid: 00:29:02
- Groups: 827 + Klubber: 1223
-
+

- Stats last updated: Thu 29 Jun 2023 00:40:53 UTC + Statistikk oppdatert: ma. 30. sep. 2024 kl. 00.40 +0000
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Dette nettstedet kan ikke reproduseres i sin helhet eller delvis i noen form uten tillatelse fra rettighetshaveren.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -227,8 +225,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/999999/index.html index 67c03734..1f315db9 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.no/contents/parkrunner/999999/index.html @@ -14,7 +14,8 @@ -results | parkrun.no + +resultater | parkrun.no @@ -53,8 +52,8 @@
@@ -66,34 +65,25 @@
@@ -109,7 +99,7 @@ -

Jakub WOLSKI (A999999)

No results have been recorded yet for this parkrunner.

+

Jakub WOLSKI (A999999)

@@ -138,63 +128,61 @@

Jakub WOLSKI (A999999
- Locations: 7 -
-
- Finishers: 8,787 + Lokasjoner: 10
- Finishes: 34,945 + Deltakere: 15394
- All-time events: 890 + Fullførte løp: 59647
- Volunteers: 966 + Eventer arrangert totalt: 1347
- PBs: 5,879 + Frivillige: 1377
- Average finish time: 00:28:55 + PB-er: 9618
- Average finishes per participant: 4 + Gjennomsnittlig sluttid: 00:29:02
- Groups: 827 + Klubber: 1223
-
+

- Stats last updated: Thu 29 Jun 2023 00:40:53 UTC + Statistikk oppdatert: ma. 30. sep. 2024 kl. 00.40 +0000
-

© parkrun Global Limited (Company number: 09411750)

-

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

+

Dette nettstedet kan ikke reproduseres i sin helhet eller delvis i noen form uten tillatelse fra rettighetshaveren.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -223,8 +221,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/1309364/all/index.html index d6371dc2..7eb33225 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + results | parkrun UK @@ -23,49 +25,42 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - +
- - donate - @@ -129,7 +127,7 @@
- + -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM35-39 + Most recent age category was VM40-44

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time20:0628:4757:34
Age Grading64.51%47.44%23.54%
Overall Position5165.361021

+
FastestAverage
(mean)
Slowest
Time20:0629:2057:34
Age Grading64.51%46.67%23.54%
Overall Position5182.341021

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97%   -
Whiteley25/03/202321418332:2441.82% +
Winchester25/11/202346134636:0237.60%   -
Winchester11/03/202342821230:3744.26% +
Whiteley18/11/202324721037:0536.54%   -
Winchester04/03/202342730935:4537.90% +
Whiteley11/11/202324617430:3744.26%   -
Winchester25/02/202342632536:0937.48% +
Winchester21/10/202345731533:5140.03%   -
Winchester18/02/202342530336:3137.11% +
Winchester14/10/202345634233:5439.97%   -
Delamere31/12/202242331536:2537.21% +
Ganger Farm07/10/20234713233:4940.07%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester23/09/202345321928:2247.77%   -
Winchester26/11/202241229335:3137.87% +
Winchester16/09/202345235430:3244.38%   -
Whiteley12/11/202221016534:2839.02% +
Winchester09/09/202345129229:1146.43%   -
Winchester29/10/202240924429:5544.96% +
Delamere02/09/202345822633:2840.49%   -
Winchester22/10/202240833736:0837.22% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester17/09/202240326230:2944.12% +
Winchester29/07/202344622227:3649.09%   -
Winchester10/09/202240231134:3338.93% +
Winchester22/07/202344540537:0036.62%   -
Alice Holt03/09/202241817936:3236.82% +
Whiteley15/07/202322915731:1643.34%   -
Winchester27/08/202240042335:2138.05% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester13/08/202239823431:3042.70% +
Winchester17/06/202344128530:4144.16%   -
Tidworth30/07/2022615151:4226.02% +
Winchester10/06/202344032435:2138.33%   -
Uckfield23/07/20221006028:4346.84% +
Winchester20/05/202343822427:0949.91%   -
Winchester09/07/202239428633:1640.43% +
Winchester13/05/202343733232:4341.42%   -
Eastleigh28/05/202254015531:2042.93% +
Whiteley29/04/202321919635:3138.15%   -
Winchester21/05/202238930733:2840.19% +
Winchester22/04/202343431731:1143.45%   -
Alice Holt14/05/202240216932:0142.01% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Winchester07/05/202238734034:1339.31% +
Whiteley25/03/202321418332:2441.82%   -
Guildford30/04/202242825130:0144.81% +
Winchester11/03/202342821230:3744.26%   -
Winchester23/04/202238522932:0241.99% +
Winchester04/03/202342730935:4537.90%   -
Winchester16/04/202238431033:2340.29% +
Winchester25/02/202342632536:0937.48%   -
Winchester19/03/202238025033:5439.68% +
Winchester18/02/202342530336:3137.11%   -
Alice Holt01/01/202238524237:4635.61% +
Delamere31/12/202242331536:2537.21%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester20/11/202136338445:0729.59% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester09/10/202135739843:0730.96% +
Winchester26/11/202241229335:3137.87%   -
Winchester25/09/202135538955:0324.25% +
Whiteley12/11/202221016534:2839.02%   -
Winchester18/09/202135433938:1234.95% +
Winchester29/10/202240924429:5544.96%   -
Winchester04/09/202135233838:2434.77% +
Winchester22/10/202240833736:0837.22%   -
Winchester28/08/202135139841:0132.55% +
Winchester17/09/202240326230:2944.12%   -
Winchester14/08/202134936055:4623.94% +
Winchester10/09/202240231134:3338.93%   -
Winchester31/07/202134832845:2029.45% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester14/03/202034625851:3825.69% +
Winchester27/08/202240042335:2138.05%   -
Winchester07/03/202034510325:5251.29% +
Winchester13/08/202239823431:3042.70%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Tidworth30/07/2022615151:4226.02%   -
Newbury22/02/202043434631:1142.54% +
Uckfield23/07/20221006028:4346.84%   -
Alice Holt08/02/202036010727:1948.57% +
Winchester09/07/202239428633:1640.43% +   +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -704,50 +808,32 @@

Andrew TAYLOR (A13093
- Locations: 781 + Locations: 834
- Finishers: 2,824,045 + Finishers: 3395601
- Finishes: 45,973,908 + Finishes: 58464863
- All-time events: 229,546 + All-time events: 288837
- Volunteers: 393,838 + Volunteers: 459167
- PBs: 7,240,375 + PBs: 8755448
- Average finish time: 00:29:06 + Average finish time: 00:29:21
- Average finishes per participant: 16.3 + Groups: 8625
-
- Groups: 7,847 -
-
-
- Female record: - Melissa COURTNEY – 15:31 - (24 Dec 2022) -
-
- Male record: - Andrew BADDELEY – 13:48 - (11 Aug 2012) -
-
- Age graded record: - Fauja SINGH - 179.04% 38:34 - (31 Mar 2012) -
+

- Stats last updated: Fri 14 Apr 2023 00:49:50 UTC + Stats last updated: Mon 30 Sep 2024 00:52:37 UTC
@@ -756,41 +842,37 @@

Andrew TAYLOR (A13093 Vitality - - Alzheimer’s Research UK - Co-Op WithU - - London Marathon Events - - - Brooks + + Brooks
-

© parkrun Limited (Company Number: 07289574)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -824,8 +916,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/1309364/index.html index 75a54490..03b56c15 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + results | parkrun UK @@ -23,49 +25,42 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - +
- - donate - @@ -129,186 +127,196 @@
- + - - CONTRA + -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club -

245 parkruns total

+

297 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM35-39 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun146121300:20:18 + Most recent age category was VM40-44 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun173121320:18 All - Graph It!
Delamere parkrun8232300:21:42 +
Whiteley parkrun1410714629:06 All - Graph It!
Whiteley parkrun610714600:29:06 +
Delamere parkrun11232321:42 All - Graph It!
Alice Holt parkrun59010700:27:19 +
Eastleigh parkrun6242524:08 All - Graph It!
Southampton parkrun5687000:21:17 +
Alice Holt parkrun59010727:19 All - Graph It!
Eastleigh parkrun5242500:24:08 +
Southampton parkrun5687021:17 All - Graph It!
Congleton parkrun49900:20:06 +
Fell Foot parkrun, Newby Bridge4212223:48 All - Graph It!
Witton parkrun4303500:25:40 +
Witton parkrun4303525:40 All - Graph It!
Northwich parkrun4485200:24:55 +
Northwich parkrun4485224:55 All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Newbury parkrun4829123:49 All - Graph It!
Andover parkrun2242600:22:24 +
Congleton parkrun49920:06 All - Graph It!
Ganger Farm parkrun29713500:29:25 +
Medina I.O.W. parkrun4667525:13 All - Graph It!
Hanley parkrun2333900:22:31 +
Ganger Farm parkrun38013229:25 All - Graph It!
Newbury parkrun2829100:23:49 +
Burnley parkrun212718929:06 All - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Queen Elizabeth parkrun2364026:36 All - Graph It!
Hagley parkrun1182000:22:38 +
Andover parkrun2242622:24 All -  
Ormskirk parkrun120930300:31:04 +
Hanley parkrun2333922:31 All -  
Basingstoke parkrun111212900:24:31 +
Netley Abbey parkrun1586424:21 All -  
Cuerden Valley parkrun1192000:24:47 +
Hilly Fields parkrun1859925:03 All -  
Seven Fields parkrun1546700:28:28 +
Brockenhurst parkrun112718632:41 All -  
Netley Abbey parkrun1586400:24:21 +
Wimpole Estate parkrun112916928:07 All -  
Mountbatten School parkrun17110100:31:29 +
Clumber Park parkrun112117629:51 All -  
Clitheroe Castle parkrun1639700:35:46 +
Cuerden Valley parkrun1192024:47 All -  
Medina I.O.W. parkrun19513900:30:57 +
Hamilton Lake parkrun1151621:47 All -  
Hogmoor Inclosure parkrun111314000:29:34 +
Fountains Abbey parkrun1283020:33 All -  
Milano Nord parkrun1475300:27:49 +
Ormskirk parkrun120930331:04 All -  
Jersey parkrun111018500:30:53 +
Pendle parkrun1465926:37 All -  
Canterbury parkrun1323600:27:29 +
Woking parkrun1485824:01 All -  
Penrhyn parkrun1232600:24:33 +
Hagley parkrun1182022:38 All -  
Hyndburn parkrun1425300:29:55 +
Penrhyn parkrun1232624:33 All -  
Woking parkrun1485800:24:01 +
Salisbury parkrun119326729:45 All -  
Fountains Abbey parkrun1283000:20:33 +
Jersey parkrun111018530:53 All -  
Bushy parkrun1681102100:33:01 +
Haigh Woodland parkrun18916837:04 All -  
Clumber Park parkrun112117600:29:51 +
Stretford parkrun127540530:23 All -  
Wimpole Estate parkrun112916900:28:07 +
Portsmouth Lakeside parkrun1818726:32 All -  
Tidworth parkrun18615100:51:42 +
Fareham parkrun19011428:52 All -  
Hilly Fields parkrun1859900:25:03 +
Milano Nord parkrun1475327:49 All -  
Tawd Valley parkrun18111000:29:25 +
Richmond Olympic parkrun15521:59 All -  
Watermeadows parkrun1151500:23:51 +
Crewe parkrun112315430:05 All -  
Eden Project parkrun111116200:30:21 +
Hogmoor Inclosure parkrun111314029:34 All -  
Catford parkrun19512500:27:24 +
Catford parkrun19512527:24 All -  
Crewe parkrun112315400:30:05 +
Clitheroe Castle parkrun1639735:46 All -  
Long Eaton parkrun118122900:28:06 +
Pocket parkrun112419533:47 All -  
Fareham parkrun19511400:28:52 +
Ford parkrun1477432:29 All -  
Phoenix parkrun1232600:27:31 +
Watermeadows parkrun1151523:51 All -  
Guildford parkrun117125100:30:01 +
Mountbatten School parkrun17110131:29 All -  
Pendle parkrun1465900:26:37 +
Uckfield parkrun1416028:43 All -  
Heaton parkrun133846700:31:01 +
Tawd Valley parkrun18111029:25 All -  
Hamilton Lake parkrun1151600:21:47 +
Seven Fields parkrun1546728:28 All -  
Brockenhurst parkrun112718600:32:41 +
Itchen Valley Country parkrun110613529:53 All -  
Itchen Valley Country parkrun110713500:29:53 +
Bartley Park parkrun1628430:26 All -  
Burnley parkrun114120400:29:06 +
Tidworth parkrun18615151:42 All -  
Uckfield parkrun1416000:28:43 +
Bushy parkrun1681102133:01 All -  
Abingdon parkrun114220200:29:14 +
Basingstoke parkrun111212924:31 All -  
Pocket parkrun112419500:33:47 +
Heaton parkrun133846731:01 All -  
Bolton parkrun116221800:31:49 +
Guildford parkrun117125130:01 All -  
Richmond Olympic parkrun15500:21:59 +
Hyndburn parkrun1425329:55 All -  
Poole parkrun121328400:28:59 +
Phoenix parkrun1232627:31 All -  
Portsmouth Lakeside parkrun1818700:26:32 +
Canterbury parkrun1323627:29 All -  
Salisbury parkrun119326700:29:45 +
Valentines parkrun1698025:14 All -  
2455500:20:06 +
Poole parkrun121328428:59 + All +
Long Eaton parkrun118122928:06 + All +
Bolton parkrun116221831:49 + All +
Eden Project parkrun111116230:21 + All +
Abingdon parkrun114220229:14 + All +
2975520:06 All  


Volunteer Summary

RoleOccasions
- Run Director - 21
- Timekeeper - 2
- Token Sorting - 8
- Results Processor - 6
- Photographer - 4
- Marshal - 4
- Pre-event Setup - 6
- Equipment Storage and Delivery - 2
- Barcode Scanning - 2
- Post-event Close Down - 10
- Finish Tokens - 1
- Number Checker - 2
- First Timers Welcome - 1
- Funnel Manager - 1
- Tail Walker - 4
- Volunteer Co-ordinator - 1
- Report Writer - 10
- Pacer (5k only) - 1
Total Credits58

+ Run Director +

21
+ Timekeeper + 2
+ Token Sorting + 8
+ Results Processor + 6
+ Photographer + 4
+ Marshal + 5
+ Pre-event Setup + 6
+ Equipment Storage and Delivery + 2
+ Barcode Scanning + 3
+ Post-event Close Down + 10
+ Finish Tokens + 1
+ Number Checker + 2
+ First Timers Welcome + 1
+ Funnel Manager + 1
+ Tail Walker + 4
+ Volunteer Co-ordinator + 1
+ Report Writer + 10
+ Pacer (5k only) + 1
Total Credits60

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -338,50 +346,32 @@

Andrew TAYLOR (A13093
- Locations: 781 -
-
- Finishers: 2,824,045 + Locations: 834
- Finishes: 45,973,908 + Finishers: 3395601
- All-time events: 229,546 + Finishes: 58464863
- Volunteers: 393,838 + All-time events: 288837
- PBs: 7,240,375 + Volunteers: 459167
- Average finish time: 00:29:06 + PBs: 8755448
- Average finishes per participant: 16.3 + Average finish time: 00:29:21
- Groups: 7,847 + Groups: 8625
-
-
- Female record: - Melissa COURTNEY – 15:31 - (24 Dec 2022) -
-
- Male record: - Andrew BADDELEY – 13:48 - (11 Aug 2012) -
-
- Age graded record: - Fauja SINGH - 179.04% 38:34 - (31 Mar 2012) -
+

- Stats last updated: Fri 14 Apr 2023 00:49:50 UTC + Stats last updated: Mon 30 Sep 2024 00:52:37 UTC
@@ -390,41 +380,37 @@

Andrew TAYLOR (A13093 Vitality - - Alzheimer’s Research UK - Co-Op WithU - - London Marathon Events - - - Brooks + + Brooks
-

© parkrun Limited (Company Number: 07289574)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -458,8 +454,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/2705084/all/index.html index 018e5e02..055cb1cd 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + results | parkrun UK @@ -23,49 +25,42 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - +
- - donate - @@ -129,18 +127,18 @@
- + - - Retail + -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -172,50 +170,32 @@

Duncan BOOTH (A270508
- Locations: 783 -
-
- Finishers: 2,830,032 + Locations: 834
- Finishes: 46,119,688 + Finishers: 3395601
- All-time events: 230,302 + Finishes: 58464863
- Volunteers: 394,655 + All-time events: 288837
- PBs: 7,256,756 + Volunteers: 459167
- Average finish time: 00:29:06 + PBs: 8755448
- Average finishes per participant: 16.3 + Average finish time: 00:29:21
- Groups: 7,847 + Groups: 8625
-
-
- Female record: - Melissa COURTNEY – 15:31 - (24 Dec 2022) -
-
- Male record: - Andrew BADDELEY – 13:48 - (11 Aug 2012) -
-
- Age graded record: - Fauja SINGH - 179.04% 38:34 - (31 Mar 2012) -
+

- Stats last updated: Mon 17 Apr 2023 00:50:44 UTC + Stats last updated: Mon 30 Sep 2024 00:52:37 UTC
@@ -224,41 +204,37 @@

Duncan BOOTH (A270508 Vitality - - Alzheimer’s Research UK - Co-Op WithU - - London Marathon Events - - - Brooks + + Brooks
-

© parkrun Limited (Company Number: 07289574)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -292,8 +278,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/2705084/index.html index 1fcffd47..7162ab49 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + results | parkrun UK @@ -23,49 +25,42 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - +
- - donate - @@ -129,7 +127,7 @@
- + -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volunteer Summary

RoleOccasions
- Marshal - 260
- Lead Bike - 130
- Event Day Course Check - 9
Total Credits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Volunteer Summary

RoleOccasions
+ Marshal + 350
+ Lead Bike + 130
+ Event Day Course Check + 82
Total Credits540

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



@@ -178,50 +176,32 @@

Duncan BOOTH (A270508
- Locations: 783 -
-
- Finishers: 2,830,032 + Locations: 834
- Finishes: 46,119,688 + Finishers: 3395601
- All-time events: 230,302 + Finishes: 58464863
- Volunteers: 394,655 + All-time events: 288837
- PBs: 7,256,756 + Volunteers: 459167
- Average finish time: 00:29:06 + PBs: 8755448
- Average finishes per participant: 16.3 + Average finish time: 00:29:21
- Groups: 7,847 + Groups: 8625
-
-
- Female record: - Melissa COURTNEY – 15:31 - (24 Dec 2022) -
-
- Male record: - Andrew BADDELEY – 13:48 - (11 Aug 2012) -
-
- Age graded record: - Fauja SINGH - 179.04% 38:34 - (31 Mar 2012) -
+

- Stats last updated: Mon 17 Apr 2023 00:50:44 UTC + Stats last updated: Mon 30 Sep 2024 00:52:37 UTC
@@ -230,41 +210,37 @@

Duncan BOOTH (A270508 Vitality - - Alzheimer’s Research UK - Co-Op WithU - - London Marathon Events - - - Brooks + + Brooks

-

© parkrun Limited (Company Number: 07289574)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -298,8 +284,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/482/all/index.html index 5ef5b503..47487840 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + results | parkrun UK @@ -23,49 +25,42 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - +
- - donate - @@ -129,11 +127,11 @@
- + - - CONTRA + Donate to parkrun @@ -142,1650 +140,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM40-44 + Most recent age category was VM45-49

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time16:2521:0459:17
Age Grading79.25%65.45%23.56%
Overall Position134.831692

+
FastestAverage
(mean)
Slowest
Time16:2521:2659:17
Age Grading79.25%64.63%23.56%
Overall Position138.841692

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Harleston Magpies08/04/2023793525:1255.42% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34%   -
Cannock Chase01/04/20232434425:4954.10% +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Kingston25/03/202360216430:0946.32% +
Quakers Walk25/11/2023126825:0556.08%   -
Wolford Wood18/03/202352730:2445.94% +
Aston Hall18/11/202352225:0156.23%   -
Kingston11/03/202360015027:1851.16% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Stockley Country04/03/2023817935:3239.31% +
Belvoir Castle04/11/2023911925:4254.73%   -
Chasewater25/02/202310010026:1953.07% +
Five Arches28/10/202365422:5861.25%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Dover Waterfront21/10/202374525:2255.45%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Rushcliffe14/10/20235087323:5458.86%   -
Worcester04/02/202354318529:3047.34% +
Kingston07/10/202363033150:2927.86%   -
Crane Park28/01/202349014550:3727.59% +
Maaraue03/10/20231012522:3462.33%   -
Kingston21/01/202359431139:3935.22% +
University of Northampton30/09/2023112223:2460.11%   -
Brooklands14/01/202313018830:4445.44% +
Clifton23/09/20231911025:1455.75%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Wisbech16/09/202351523:0361.03%   -
Kingston01/01/202359113340:3134.47% +
Holbrooks09/09/202362223:4359.31%   -
Kingston31/12/202259026442:4432.68% +
Wyre Forest02/09/20233404825:5654.24%   -
Bushy Park25/12/2022909169244:3931.28% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Riverfront19/08/20232594622:5761.29%   -
Kingston17/12/202258818059:1723.56% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston10/12/202258723255:4025.09% +
Kingston05/08/20236216723:2160.24%   -
Beacon03/12/2022737326:4152.34% +
Kingston29/07/20236208725:0955.93%   -
Ganger Farm26/11/2022211426:3452.57% +
Kingston22/07/20236199224:2457.65%   -
Bushy Park19/11/2022903110553:2326.16% +
Severn Valley Country15/07/20231411626:1353.66%   -
Leavesden Country12/11/202246928:3248.95% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Thornham Walks01/07/202353826:5251.99%   -
Durlston Country Park29/10/2022335032:4542.65% +
Kingston24/06/20236156524:0957.83% +   +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1816,50 +1980,32 @@

Danny NORMAN (A482)
- Locations: 781 -
-
- Finishers: 2,824,045 + Locations: 834
- Finishes: 45,973,908 + Finishers: 3395601
- All-time events: 229,546 + Finishes: 58464863
- Volunteers: 393,838 + All-time events: 288837
- PBs: 7,240,375 + Volunteers: 459167
- Average finish time: 00:29:06 + PBs: 8755448
- Average finishes per participant: 16.3 + Average finish time: 00:29:21
- Groups: 7,847 + Groups: 8625
-

-
- Female record: - Melissa COURTNEY – 15:31 - (24 Dec 2022) -
-
- Male record: - Andrew BADDELEY – 13:48 - (11 Aug 2012) -
-
- Age graded record: - Fauja SINGH - 179.04% 38:34 - (31 Mar 2012) -
+
- Stats last updated: Fri 14 Apr 2023 00:49:50 UTC + Stats last updated: Mon 30 Sep 2024 00:52:37 UTC
@@ -1868,41 +2014,37 @@

Danny NORMAN (A482) Vitality - - Alzheimer’s Research UK - Co-Op WithU - - London Marathon Events - - - Brooks + + Brooks
-

© parkrun Limited (Company Number: 07289574)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1936,8 +2088,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/482/index.html index dccd82ed..93a2d67b 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + results | parkrun UK @@ -23,49 +25,42 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - +
- - donate - @@ -129,11 +127,11 @@
- + - - Retail + @@ -141,878 +139,1004 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns total

+

867 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM40-44 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2321100:16:25 + Most recent age category was VM45-49 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2341116:25 + All +
Kingston parkrun471116:51 + All +
Bedfont Lakes parkrun81117:04 + All +
Nonsuch parkrun71116:52 + All +
Richmond parkrun71117:13 + All +
Crane Park parkrun61116:48 + All +
Riddlesdown parkrun42217:01 + All +
Brockwell parkrun, Herne Hill31116:56 + All +
Southwark parkrun34417:27 + All +
Fulham Palace parkrun33317:47 + All +
Cannon Hill parkrun, Birmingham3111118:04 + All +
Gunnersbury parkrun31116:51 + All +
Wimbledon Common parkrun35517:27 + All +
Brighton & Hove parkrun31116:27 + All +
Basingstoke parkrun35517:48 + All +
Black Park parkrun31117:25 + All +
Dulwich parkrun33317:11 + All +
Bexley parkrun31117:48 + All +
Tilgate parkrun31117:10 + All +
Frimley Lodge parkrun31117:11 + All +
Hilly Fields parkrun31117:50 + All +
Old Deer Park parkrun31117:41 + All +
Guildford parkrun31117:17 + All +
Homewood parkrun3151722:21 + All +
Chelmsford Central parkrun22217:24 + All +
Mole Valley parkrun2262622:56 + All +
Durlston Country Park parkrun2355032:45 + All +
Hazelwood parkrun2182222:21 + All +
Southsea parkrun23317:55 + All +
St Albans parkrun21116:37 + All +
Havant parkrun21117:46 + All +
Ashford parkrun22217:57 + All +
Bedford parkrun21116:55 + All +
Margate parkrun21118:16 + All +
Milton Keynes parkrun23317:26 + All +
Preston Park parkrun, Brighton22217:40 All - Graph It!
Kingston parkrun351100:16:51 +
Shorne Woods parkrun21118:14 All - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Canons Park parkrun27720:50 All - Graph It!
Richmond parkrun71100:17:13 +
Osterley parkrun21117:57 All - Graph It!
Nonsuch parkrun71100:16:52 +
Eastleigh parkrun27719:14 All - Graph It!
Crane Park parkrun61100:16:48 +
Brooklands parkrun2394223:22 All - Graph It!
Brighton & Hove parkrun31100:16:27 +
Great Lines parkrun, Medway25518:25 All - Graph It!
Fulham Palace parkrun33300:17:47 +
Malling Rec parkrun2738526:59 All - Graph It!
Frimley Lodge parkrun31100:17:11 +
Crystal Palace parkrun21117:24 All - Graph It!
Gunnersbury parkrun31100:16:51 +
Northala Fields parkrun22218:06 All - Graph It!
Bexley parkrun31100:17:48 +
Northampton parkrun21116:56 All - Graph It!
Tilgate parkrun31100:17:10 +
Oak Hill parkrun21117:13 All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Lloyd parkrun, Croydon21118:01 All - Graph It!
Southwark parkrun34400:17:27 +
Newbury parkrun21117:20 All - Graph It!
Basingstoke parkrun35500:17:48 +
Cranleigh parkrun26620:49 All - Graph It!
Hilly Fields parkrun31100:17:50 +
Littlehampton Prom parkrun2384324:22 All - Graph It!
Black Park parkrun31100:17:25 +
Whitstable parkrun23318:12 All - Graph It!
Riddlesdown parkrun32200:17:01 +
Bethlem Royal Hospital parkrun2263223:22 All - Graph It!
Dulwich parkrun33300:17:11 +
Cyclopark parkrun2353824:01 All - Graph It!
Guildford parkrun31100:17:17 +
Hockley Woods parkrun26621:09 All - Graph It!
Old Deer Park parkrun31100:17:41 +
South Oxhey parkrun21119:13 All - Graph It!
Wimbledon Common parkrun35500:17:27 +
Pymmes parkrun21117:06 All - Graph It!
Homewood parkrun3151700:22:21 +
Hastings parkrun291120:41 All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Wycombe Rye parkrun22217:17 All - Graph It!
Pymmes parkrun21100:17:06 +
Hove Promenade parkrun27719:23 All - Graph It!
Hove Promenade parkrun27700:19:23 +
Banstead Woods parkrun21117:31 All - Graph It!
Netley Abbey parkrun21100:17:21 +
Wormwood Scrubs parkrun21118:00 All - Graph It!
Mile End parkrun21100:16:53 +
Roundshaw Downs parkrun23318:14 All - Graph It!
Southampton parkrun23300:16:44 +
Mile End parkrun21116:53 All - Graph It!
Northala Fields parkrun22200:18:06 +
Bevendean Down parkrun28923:21 All - Graph It!
Hockley Woods parkrun26600:21:09 +
Finsbury parkrun22217:15 All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Tooting Common parkrun2181819:14 All - Graph It!
Upton Court parkrun22200:17:24 +
Bedgebury Pinetum parkrun28921:24 All - Graph It!
Alice Holt parkrun21100:17:59 +
Harrow parkrun25520:23 All - Graph It!
Osterley parkrun21100:17:57 +
Netley Abbey parkrun21117:21 All - Graph It!
Burgess parkrun22200:16:45 +
Ellenbrook Fields parkrun2141519:58 All - Graph It!
Gladstone parkrun21100:17:09 +
Worthing parkrun28918:44 All - Graph It!
Havant parkrun21100:17:46 +
Grovelands parkrun, Enfield22217:21 All - Graph It!
Cranleigh parkrun26600:20:49 +
Beckton parkrun23317:24 All - Graph It!
Finsbury parkrun22200:17:15 +
Gladstone parkrun21117:09 All - Graph It!
Southsea parkrun23300:17:55 +
Hackney Marshes parkrun22216:46 All - Graph It!
Margate parkrun21100:18:16 +
Burgess parkrun22216:45 All - Graph It!
Northampton parkrun21100:16:56 +
Orpington parkrun22217:27 All - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Barking parkrun22216:45 All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Southampton parkrun23316:44 All - Graph It!
Crystal Palace parkrun21100:17:24 +
Alice Holt parkrun21117:59 All - Graph It!
Eastleigh parkrun27700:19:14 +
Woodley parkrun21117:02 All - Graph It!
Hastings parkrun291100:20:41 +
Upton Court parkrun22217:24 All - Graph It!
Banstead Woods parkrun21100:17:31 +
Frogmary Green Farm parkrun1597225:58 All - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Harrow Lodge parkrun11118:48 All - Graph It!
Hackney Marshes parkrun22200:16:46 +
Witney parkrun1202022:34 All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Leamington parkrun12218:52 All - Graph It!
Woodley parkrun21100:17:02 +
Brockenhurst parkrun13318:23 All - Graph It!
Tooting Common parkrun2181800:19:14 +
Hogmoor Inclosure parkrun1262625:26 All - Graph It!
Milton Keynes parkrun23300:17:26 +
Hastings High School parkrun1637827:33 All - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Cannock Chase parkrun1384425:49 All - Graph It!
Barking parkrun22200:16:45 +
Wimpole Estate parkrun1202122:14 All - Graph It!
Canons Park parkrun27700:20:50 +
Haverhill parkrun1121323:32 All - Graph It!
Newbury parkrun21100:17:20 +
Edenbrook Country parkrun110514828:01 All - Graph It!
Shorne Woods parkrun21100:18:14 +
Maidstone River Park parkrun13318:00 All - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Cheltenham parkrun12217:24 All - Graph It!
Mole Valley parkrun2262600:22:56 +
Victoria Dock parkrun1273020:04 All - Graph It!
Oak Hill parkrun21100:17:13 +
Ekebergsletta parkrun1304325:57 All - Graph It!
Cyclopark parkrun2353800:24:01 +
Oxford parkrun11117:18 All - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Aylesbury parkrun11117:51 All - Graph It!
South Oxhey parkrun21100:19:13 +
Mote Park parkrun19712231:28 All - Graph It!
Chelmsford Central parkrun22200:17:24 +
Riverfront parkrun1404622:57 All - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Newent parkrun1182225:27 All - Graph It!
Bevendean Down parkrun28900:23:21 +
Clapham Common parkrun1404220:22 All - Graph It!
Bedford parkrun21100:16:55 +
Llanishen Park parkrun1303323:48 All - Graph It!
Whitstable parkrun23300:18:12 +
Heartwood Forest parkrun1252721:41 All - Graph It!
Orpington parkrun22200:17:27 +
Walthamstow parkrun11117:48 All - Graph It!
Ashford parkrun22200:17:57 +
Malmö Ribersborg parkrun111215128:46 All - Graph It!
Hazelwood parkrun2182200:22:21 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 All - Graph It!
Brooklands parkrun2394200:23:22 +
Huntingdon parkrun1202121:10 All - Graph It!
Wycombe Rye parkrun22200:17:17 +
Felixstowe parkrun1121221:07 All - Graph It!
Harrow parkrun25500:20:23 +
Tidworth parkrun110815535:14 All - Graph It!
Beckton parkrun23300:17:24 +
Brandon Country Park parkrun11118:30 All - Graph It!
St Albans parkrun21100:16:37 +
Prospect parkrun1232322:42 All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Mildenhall Hub parkrun1273124:33 All -  
Buckingham parkrun12200:18:37 +
York parkrun12217:12 All -  
Thomas Mills parkrun1486500:30:19 +
Thetford parkrun1161721:45 All -  
Leamington parkrun12200:18:52 +
Great Dunmow parkrun14420:25 All -  
Church Mead parkrun16610200:32:53 +
Leavesden Country parkrun1506928:32 All -  
Letchworth parkrun1141400:23:13 +
Catford parkrun1303322:32 All -  
Mulbarton parkrun12200:19:55 +
Lordship Recreation Ground parkrun19112425:22 All -  
Arrow Valley parkrun13300:18:05 +
Rugby parkrun1181822:26 All -  
Frogmary Green Farm parkrun1597200:25:58 +
Mulbarton parkrun12219:55 All -  
Sutton Park parkrun1475500:24:54 +
Swaffham parkrun191022:19 All -  
Reigate Priory parkrun16600:19:06 +
Ganger Farm parkrun19811426:34 All -  
Bury St Edmunds parkrun13300:18:17 +
Beckenham Place parkrun1121220:28 All -  
Pollok parkrun, Glasgow11100:17:00 +
Forest Rec parkrun1677626:35 All -  
Kingdom parkrun1222500:24:39 +
Street parkrun1283525:52 All -  
Barclay parkrun15600:23:13 +
Market Bosworth Country Park parkrun110614435:35 All -  
Chippenham parkrun1212100:20:08 +
Whiteley parkrun1141520:56 All -  
Ipswich parkrun11100:17:34 +
Kingsbury Water parkrun1394725:05 All -  
Itchen Valley Country parkrun1476100:27:37 +
Springhill parkrun14422:18 All -  
Neckarau parkrun1243000:27:11 +
Wolford Wood parkrun1212730:24 All -  
Brandon Country Park parkrun11100:18:30 +
Pontypridd parkrun12217:54 All -  
Boston parkrun17700:21:18 +
Pocket parkrun1222321:38 All -  
University Parks parkrun119032600:31:42 +
Stockley Country parkrun111917935:32 All -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Braunstone parkrun1262720:41 All -  
Lullingstone parkrun17700:21:21 +
Didcot parkrun1101121:28 All -  
Coventry parkrun1292900:20:51 +
Littleport parkrun1445125:16 All -  
Berkeley Green parkrun1233100:28:31 +
Yarborough Leisure Centre parkrun1466125:59 All -  
Mersea Island parkrun1121200:20:59 +
Roding Valley parkrun1111321:26 All -  
Aylesbury parkrun11100:17:51 +
Clair parkrun13318:36 All -  
Royal Tunbridge Wells parkrun18900:19:23 +
Dinton Pastures parkrun1131321:23 All -  
Southall parkrun1557500:31:38 +
Beacon Hill Country Park parkrun1273725:54 All -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Severn Bridge parkrun1353921:32 All -  
Pomphrey Hill parkrun1364100:23:02 +
Abbey Park parkrun1779425:21 All -  
Henley-on-Thames parkrun1111100:22:25 +
Dudley parkrun1445626:35 All -  
Aachener Weiher parkrun1101100:24:55 +
Pegwell Bay parkrun12217:40 All -  
Penrose parkrun1151600:19:40 +
Manor Field parkrun, Whittlesey1121324:25 All -  
King’s Lynn parkrun1151500:20:07 +
Blaise Castle parkrun112816326:20 All -  
Fulbourn Hospital parkrun1344700:24:59 +
Chipping Sodbury parkrun1303221:20 All -  
Fareham parkrun16600:19:21 +
Foots Cray Meadows parkrun1212323:17 All -  
Brockenhurst parkrun13300:18:23 +
Thames Path parkrun, Woolwich1789023:42 All -  
Canterbury parkrun16600:21:56 +
Bath Skyline parkrun1192021:08 All -  
Alton Water parkrun1538300:35:09 +
Dishley parkrun, Loughborough110311424:30 All -  
Littleport parkrun1445100:25:16 +
Thornham Walks parkrun1363826:52 All -  
Newport parkrun11100:17:29 +
Moors Valley parkrun19919:40 All -  
California Country parkrun1649000:28:49 +
East Grinstead parkrun1131423:10 All -  
Thornbury parkrun1323400:28:19 +
Sutton Park parkrun1475524:54 All -  
Greenwich parkrun12200:18:07 +
University of Northampton parkrun1192223:24 All -  
Seven Fields parkrun1475500:26:28 +
Shipley Country parkrun1232424:45 All -  
Highbury Fields parkrun11100:17:25 +
Lancing Beach Green parkrun1141421:08 All -  
The Great Field parkrun19313500:29:12 +
Dover Waterfront parkrun1374525:22 All -  
Street parkrun1283500:25:52 +
Rickmansworth parkrun1242721:39 All -  
South Norwood parkrun1121200:21:11 +
Queen Elizabeth parkrun12219:08 All -  
Dunstable Downs parkrun1374300:24:58 +
Sizewell parkrun1172023:30 All -  
Melton Mowbray parkrun1192200:22:38 +
Holbrooks parkrun1202223:43 All -  
Horsham parkrun14500:18:16 +
Highbury Fields parkrun11117:25 All -  
Irchester Country parkrun1586200:25:13 +
Clacton Seafront parkrun19920:35 All -  
Stratford-upon-Avon parkrun1202500:21:14 +
Delaware and Raritan Canal parkrun12221:06 All -  
Wotton parkrun1182100:24:45 +
Wisbech parkrun1111523:03 All -  
Bath Skyline parkrun1192000:21:08 +
Milton Country parkrun13317:43 All -  
Great Dunmow parkrun14400:20:25 +
Seaton parkrun1394824:09 All -  
Corby parkrun18800:23:09 +
Higginson parkrun, Marlow1272922:17 All -  
Bracknell parkrun18800:20:04 +
Quakers Walk parkrun1566825:05 All -  
Cromhall parkrun1151600:24:20 +
Lister Park parkrun, Bradford1313621:55 All -  
Perry Hall parkrun1464900:24:58 +
Wendover Woods parkrun1262623:51 All -  
Gunpowder parkrun12200:17:34 +
Sence Valley Forest Park parkrun1232526:28 All -  
Luton Wardown parkrun191000:19:36 +
Canterbury parkrun16621:56 All -  
Ifield Mill Pond parkrun1373800:24:33 +
Henstridge Airfield parkrun18821:41 All -  
March parkrun15500:21:11 +
Five Arches parkrun1455422:58 All -  
Roding Valley parkrun1111300:21:26 +
Yeovil Montacute parkrun1707525:51 All -  
Charlton parkrun18213000:32:05 +
Watermeadows parkrun1283124:57 All -  
Malmö Ribersborg parkrun111215100:28:46 +
Tamworth Castle Grounds parkrun1333523:26 All -  
Worcester parkrun114418500:29:30 +
St Helens parkrun1606824:27 All -  
Wolford Wood parkrun1212700:30:24 +
Weymouth parkrun1141420:45 All -  
Fire Service College parkrun1181900:22:12 +
Walmer and Deal Seafront parkrun18821:38 All -  
Panshanger parkrun17700:20:14 +
Aston Hall parkrun1202225:01 All -  
Conkers parkrun12200:17:46 +
Royal Tunbridge Wells parkrun18919:23 All -  
Banbury parkrun1222300:21:16 +
Corby parkrun18823:09 All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Marlborough Common parkrun1202122:48 All -  
Rushmere parkrun1131400:22:39 +
Battlestead Croft parkrun1111122:53 All -  
Whiteley parkrun1141500:20:56 +
Shepton Mallet parkrun1121421:50 All -  
Sandringham parkrun1466300:30:18 +
Clare Castle parkrun1252723:04 All -  
Victoria Dock parkrun1283000:20:04 +
Coldham’s Common parkrun1535923:04 All -  
Queen Elizabeth parkrun12200:19:08 +
Brunswick Park parkrun1212223:58 All -  
Lordship Recreation Ground parkrun19112400:25:22 +
Brentwood parkrun17722:28 All -  
Somerdale Pavilion parkrun1384600:31:17 +
Somerdale Pavilion parkrun1384631:17 All -  
Dartford parkrun11100:17:59 +
Wakehurst parkrun18810525:00 All -  
Winchester parkrun14500:18:28 +
Boston parkrun17721:18 All -  
Stratford Park parkrun, Stroud1566500:27:51 +
Morden parkrun111715526:58 All -  
Sherwood Pines parkrun1161800:21:33 +
Pontefract parkrun1718724:10 All -  
Grove Fields parkrun1578500:28:03 +
Jersey Farm parkrun1252723:11 All -  
Witney parkrun1202000:22:34 +
Bug Hunter Waters parkrun1455022:41 All -  
Preston Park parkrun, Brighton12200:17:40 +
Rosliston parkrun1333624:41 All -  
Colchester Castle parkrun14400:18:04 +
Longrun Meadow parkrun111416532:01 All -  
Tidworth parkrun110815500:35:14 +
Fire Service College parkrun1181922:12 All -  
Walmer and Deal Seafront parkrun18800:21:38 +
Woolacombe Dunes parkrun19410931:20 All -  
Ferry Meadows parkrun15500:17:27 +
The Plens parkrun1303124:04 All -  
St Mary’s parkrun1587400:29:14 +
Arrow Valley parkrun13318:05 All -  
Dartford Heath parkrun1171700:22:06 +
Tonbridge parkrun14418:40 All -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
East Brighton parkrun1182123:56 All -  
Great Denham parkrun16600:19:27 +
Three Brooks parkrun1697223:46 All -  
Hastings High School parkrun1637800:27:33 +
Peacehaven parkrun17721:07 All -  
Wendover Woods parkrun1262600:23:51 +
Pontypool parkrun1232323:51 All -  
Peckham Rye parkrun11100:17:49 +
Cromhall parkrun1151624:20 All -  
Upton House parkrun1252700:22:34 +
Dereham parkrun1323323:47 All -  
Lee-on-the-Solent parkrun17700:19:40 +
Bournemouth parkrun14417:43 All -  
Graves parkrun11100:18:18 +
Pomphrey Hill parkrun1364123:02 All -  
Maidstone parkrun13300:18:00 +
Seaford Beach parkrun1535622:25 All -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Mansfield parkrun11117:09 All -  
South Woodham Ferrers parkrun18800:21:14 +
Fountains Abbey parkrun11118:03 All -  
Pontypridd parkrun12200:17:54 +
Loch Neaton parkrun, Watton1171725:49 All -  
Bournemouth parkrun14400:17:43 +
Brueton parkrun1475021:33 All -  
Sizewell parkrun1172000:23:30 +
Great Cornard parkrun1192020:33 All -  
Rushmoor parkrun19900:18:29 +
Dunstable Downs parkrun1374324:58 All -  
Walsall Arboretum parkrun19810600:25:31 +
Beeston parkrun1374023:53 All -  
Gorleston Cliffs parkrun12200:17:43 +
Feltham parkrun13424:56 All -  
Uckfield parkrun1404300:24:12 +
Markeaton parkrun1576422:56 All -  
Aldenham parkrun1141400:21:37 +
Reigate Priory parkrun16619:06 All -  
Gadebridge parkrun1141400:22:22 +
Highwoods parkrun1252624:49 All -  
Horspath parkrun17410600:28:12 +
Valentines parkrun11116:49 All -  
Rogiet parkrun1151600:24:27 +
Springburn parkrun, Glasgow13318:05 All -  
Rendlesham Forest parkrun1264600:37:01 +
California Country parkrun1649028:49 All -  
Dishley parkrun, Loughborough110311400:24:30 +
Rushmoor parkrun19918:29 All -  
Great Cornard parkrun1192000:20:33 +
Mountbatten School parkrun1323424:11 All -  
Kettering parkrun1232600:22:50 +
Colchester Castle parkrun14418:04 All -  
Pont y Bala parkrun15700:23:18 +
Buckingham parkrun12218:37 All -  
Burnham and Highbridge parkrun17510000:27:51 +
Sunny Hill parkrun1202424:39 All -  
Stonehouse parkrun1131300:20:09 +
Bognor Regis parkrun12218:12 All -  
Hampstead Heath parkrun11100:17:45 +
Aachener Weiher parkrun1101124:55 All -  
Wickford Memorial parkrun1436600:51:15 +
Peckham Rye parkrun11117:49 All -  
Castle Park parkrun1394100:22:34 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 All -  
Huntingdon parkrun1202100:21:10 +
Great Notley parkrun16620:16 All -  
Great Salterns parkrun19212400:30:27 +
Snowden Field parkrun1242624:15 All -  
Snowden Field parkrun1242600:24:15 +
Burnham-on-Crouch parkrun18822:01 All -  
Southend parkrun11100:16:28 +
Woking parkrun18818:19 All -  
Andover parkrun11100:17:33 +
Neckarufer parkrun, Esslingen1364425:12 All -  
parkrun Zalew Żyrardowski16700:24:38 +
Worcester parkrun114418529:30 All -  
Marecchia parkrun11100:19:50 +
Blandford parkrun18920:11 All -  
Cheltenham parkrun12200:17:24 +
Pont y Bala parkrun15723:18 All -  
St Helens parkrun1606800:24:27 +
Chichester parkrun13319:05 All -  
Bartley Park parkrun18415100:32:38 +
Kingdom parkrun1222524:39 All -  
Severn Bridge parkrun1353900:21:32 +
Westmill parkrun1101022:55 All -  
Pontypool parkrun1232300:23:51 +
Dartford parkrun11117:59 All -  
Poole parkrun14400:16:57 +
Hanworth parkrun1364024:26 All -  
Bramhall parkrun115924700:35:16 +
Bracknell parkrun18820:04 All -  
Sunny Hill parkrun1202400:24:39 +
Folkestone parkrun1212521:48 All -  
Cassiobury parkrun1111100:20:14 +
Uckfield parkrun1404324:12 All -  
Hoblingwell parkrun1202400:23:52 +
Harrogate parkrun13318:11 All -  
Colwick parkrun18800:19:46 +
Kesgrave parkrun1374021:18 All -  
Chipping Norton School parkrun1455100:26:40 +
Thomas Mills parkrun1486530:19 All -  
Worthing parkrun18900:18:44 +
Lymington Woodside parkrun15721:59 All -  
Harrow Lodge parkrun11100:18:48 +
Hereford parkrun1535323:07 All -  
Bradford parkrun1313600:21:55 +
Chasewater parkrun18210026:19 All -  
Bury Field parkrun1669000:33:07 +
South Norwood parkrun1121221:11 All -  
Pocket parkrun1222300:21:38 +
Panshanger parkrun17720:14 All -  
Longrun Meadow parkrun111416500:32:01 +
Wolverhampton parkrun1556624:54 All -  
Worcester Pitchcroft parkrun111814300:27:04 +
Harcourt Hill parkrun1171721:13 All -  
Highwoods parkrun1252600:24:49 +
Tetbury Goods Shed parkrun1253024:25 All -  
Maidenhead parkrun17700:18:49 +
Gloucester North parkrun1101022:14 All -  
Soham Village College parkrun1253200:28:03 +
Harlow parkrun1151523:00 All -  
Rickmansworth parkrun1242700:21:39 +
Alvaston parkrun1515922:24 All -  
Swaffham parkrun191000:22:19 +
Worcester Pitchcroft parkrun111814327:04 All -  
Brentwood parkrun17700:22:28 +
Perry Hall parkrun1464924:58 All -  
Lymington Woodside parkrun15700:21:59 +
Newport parkrun11117:29 All -  
Loch Neaton parkrun, Watton1171700:25:49 +
Tring parkrun1171823:38 All -  
Daventry parkrun1151500:21:10 +
Severn Valley Country parkrun1141626:13 All -  
Hatfield Forest parkrun1181800:20:36 +
Wanstead Flats parkrun13317:13 All -  
Kingsway parkrun, Gloucester1192000:21:20 +
Daventry parkrun1151521:10 All -  
Salcey Forest parkrun1384300:24:53 +
St Mary’s parkrun1587429:14 All -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Poole parkrun14416:57 All -  
Prospect parkrun1232300:22:42 +
Melton Mowbray parkrun1192222:38 All -  
Weymouth parkrun1141400:20:45 +
The Old Showfield parkrun1636923:30 All -  
Westmill parkrun1101000:22:55 +
Henley-on-Thames parkrun1111122:25 All -  
East Brighton parkrun1182100:23:56 +
Crissy Field parkrun1101220:40 All -  
Harlow parkrun1151500:23:00 +
Babbs Mill parkrun1405128:00 All -  
Linford Wood parkrun1222200:21:45 +
Maidenhead parkrun17718:49 All -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Ross-on-Wye parkrun1172124:22 All -  
Lydney parkrun1202100:23:19 +
Kettering parkrun1232622:50 All -  
Braunstone parkrun1262700:20:41 +
Stratford Park parkrun, Stroud1566527:51 All -  
Harleston Magpies parkrun1293500:25:12 +
Bury St Edmunds parkrun13318:17 All -  
Clapham Common parkrun1404200:20:22 +
Mallards Pike parkrun1324630:57 All -  
Market Bosworth Country Park parkrun110614400:35:35 +
Market Harborough parkrun1303121:17 All -  
Jersey Farm parkrun1252700:23:11 +
Cassiobury parkrun1111120:14 All -  
Kesgrave parkrun1374000:21:18 +
Squerryes Winery parkrun1323627:45 All -  
Stevenage parkrun17700:19:32 +
Walsall Arboretum parkrun19010625:31 All -  
Hadleigh parkrun, Essex1252600:24:27 +
Penrose parkrun1151619:40 All -  
Squerryes Winery parkrun1323600:27:45 +
King George V Playing Field parkrun, Cheltenham1232826:08 All -  
Rutland Water parkrun1293000:22:44 +
Evesham parkrun1111121:39 All -  
Beckenham Place parkrun1121200:20:28 +
Warwick Racecourse parkrun1486024:55 All -  
Sutcliffe parkrun113117200:30:34 +
Huddersfield parkrun1626722:02 All -  
Haverhill parkrun1121300:23:32 +
Clevedon Salthouse Fields parkrun1384925:13 All -  
Leavesden Country parkrun1506900:28:32 +
Long Eaton parkrun19912124:06 All -  
Coldham’s Common parkrun1535900:23:04 +
Barry Island parkrun1394223:51 All -  
Chichester parkrun13300:19:05 +
Ifield Mill Pond parkrun1373824:33 All -  
Billericay parkrun1121300:21:20 +
Upton House parkrun1252722:34 All -  
Bromley parkrun13300:17:18 +
Lullingstone parkrun17721:21 All -  
Babbs Mill parkrun1405100:28:00 +
The Leas parkrun, Minster1252524:37 All -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Medina I.O.W. parkrun11117:20 All -  
Bryn Bach parkrun11100:16:50 +
Uditore parkrun13320:28 All -  
York parkrun12200:17:12 +
Hunstanton Promenade parkrun1283523:45 All -  
Storeys Field parkrun115121100:28:49 +
Raphael parkrun13319:35 All -  
Chipping Sodbury parkrun1303200:21:20 +
Burnham and Highbridge parkrun17510027:51 All -  
Mote Park parkrun19712200:31:28 +
Salcey Forest parkrun1384324:53 All -  
Watermeadows parkrun1283100:24:57 +
Ferry Meadows parkrun15517:27 All -  
Woking parkrun18800:18:19 +
Barclay parkrun15623:13 All -  
Raphael parkrun13300:19:35 +
Irchester Country parkrun1586225:13 All -  
Harwich parkrun191000:21:22 +
Maldon Prom parkrun11118:04 All -  
Fritton Lake parkrun11100:18:26 +
Salisbury parkrun1111119:34 All -  
Heartwood Forest parkrun1252700:21:41 +
Tremorfa parkrun1272923:30 All -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Billericay parkrun1121321:20 All -  
Bedworth parkrun1171700:22:14 +
Gedling parkrun1273224:59 All -  
Clair parkrun13300:18:36 +
Oaklands parkrun111820336:10 All -  
Brueton parkrun1475000:21:33 +
Winchester parkrun14518:28 All -  
Higginson parkrun, Marlow1272900:22:17 +
Aldenham parkrun1141421:37 All -  
Bognor Regis parkrun12200:18:12 +
East Park parkrun1121424:18 All -  
Huddersfield parkrun1626700:22:02 +
Soham Village College parkrun1253228:03 All -  
Heaton parkrun13300:18:08 +
Stevenage parkrun17719:32 All -  
Chasewater parkrun18210000:26:19 +
Tewkesbury parkrun1111422:50 All -  
Tewkesbury parkrun1111400:22:50 +
Seven Fields parkrun1475526:28 All -  
Marple parkrun11100:17:15 +
Conkers parkrun12217:46 All -  
Cannock Chase parkrun1384400:25:49 +
Lee-on-the-Solent parkrun17719:40 All -  
Edgbaston Reservoir parkrun1658600:26:24 +
Brixworth Country parkrun1496126:53 All -  
Cirencester parkrun1222400:22:40 +
Abingdon parkrun15518:03 All -  
Kingsbury Water parkrun1394700:25:05 +
Lowestoft parkrun1232621:10 All -  
Peacehaven parkrun17700:21:07 +
Chipping Norton School parkrun1455126:40 All -  
Lancing Beach Green parkrun1141400:21:08 +
Linford Wood parkrun1222221:45 All -  
Springburn parkrun, Glasgow13300:18:05 +
Harwich parkrun191021:22 All -  
Market Harborough parkrun1303100:21:17 +
Fulbourn Hospital parkrun1344724:59 All -  
Amager Fælled parkrun1333700:24:23 +
Gunpowder parkrun12217:34 All -  
Hanworth parkrun1364000:24:26 +
Dartford Heath parkrun1171722:06 All -  
Salisbury parkrun1111100:19:34 +
Sandhurst Memorial parkrun1537328:54 All -  
Houghton Hall parkrun1131300:21:48 +
Woodhouse Moor parkrun11117:22 All -  
Chalkwell Beach parkrun1819600:24:40 +
Sandwell Valley parkrun1455930:43 All -  
Melksham parkrun1171700:24:31 +
Wyre Forest parkrun1434825:56 All -  
Thetford parkrun1161700:21:45 +
parkrun Zalew Żyrardowski16724:38 All -  
Pontefract parkrun1718700:24:10 +
Bramhall parkrun115924735:16 All -  
Downham Market Academy parkrun1121300:24:35 +
Hatfield Forest parkrun1181820:36 All -  
Fountains Abbey parkrun11100:18:03 +
Swansea Bay parkrun1748323:44 All -  
Cardiff parkrun111011700:22:02 +
Wollaton Hall parkrun1889723:51 All -  
Littlehampton Prom parkrun1384300:24:22 +
Horsham parkrun14518:16 All -  
Uditore parkrun13300:20:28 +
Jersey parkrun16619:41 All -  
Beacon parkrun1587300:26:41 +
Berkeley Green parkrun1233128:31 All -  
parkrun de Rouen15500:21:41 +
Cardiff parkrun111011722:02 All -  
Walthamstow parkrun11100:17:48 +
Ally Pally parkrun11118:09 All -  
Shepton Mallet parkrun1121400:21:50 +
Thurrock parkrun, Orsett Heath16620:41 All -  
Marine Parade parkrun17711100:29:24 +
Beacon parkrun1587326:41 All -  
Foots Cray Meadows parkrun1212300:23:17 +
Albert parkrun, Middlesbrough1515423:17 All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Sherwood Pines parkrun1161821:33 All -  
Evesham parkrun1111100:21:39 +
Wickford Memorial parkrun1436651:15 All -  
Southwick Country parkrun1272900:21:47 +
Thornbury parkrun1323428:19 All -  
Lydiard parkrun18800:18:25 +
Malling parkrun18314547:25 All -  
Sandhurst Memorial parkrun1537300:28:54 +
Itchen Valley Country parkrun1476127:37 All -  
Bicester parkrun14400:20:13 +
Pollok parkrun, Glasgow11117:00 All -  
Wimpole Estate parkrun1202100:22:14 +
Eastville parkrun120525325:12 All -  
Markshall Estate parkrun110315600:32:26 +
Rutland Water parkrun1293022:44 All -  
Dinton Pastures parkrun1131300:21:23 +
Chalkwell Beach parkrun1819624:40 All -  
Tonbridge parkrun14400:18:40 +
Amager Fælled parkrun1333724:23 All -  
Wanstead Flats parkrun13300:17:13 +
Hoblingwell parkrun1202423:52 All -  
Woodhouse Moor parkrun11100:17:22 +
Belton House parkrun1141523:48 All -  
Mountbatten School parkrun1323400:24:11 +
Kagerzoom parkrun1435824:39 All -  
Eastville parkrun120525300:25:12 +
Gorleston Cliffs parkrun12217:43 All -  
Brixworth Country parkrun1496100:26:53 +
King’s Lynn parkrun1151520:07 All -  
Portsmouth Lakeside parkrun19900:19:12 +
Holkham parkrun1506925:37 All -  
Milton Country parkrun13300:17:43 +
Horspath parkrun17410628:12 All -  
Swanley parkrun19712500:31:18 +
Southwick Country parkrun1272921:47 All -  
Springhill parkrun14400:22:18 +
Rushmere parkrun1131422:39 All -  
Gloucester North parkrun1101000:22:14 +
Zuiderpark parkrun, Den Haag1738124:07 All -  
Feltham parkrun13400:24:56 +
Heaton parkrun13318:08 All -  
Crissy Field parkrun1101200:20:40 +
Colney Lane parkrun1495524:01 All -  
Ally Pally parkrun11100:18:09 +
Leicester Victoria parkrun19711626:45 All -  
Ashton Court parkrun1859500:22:59 +
Church Mead parkrun16610232:53 All -  
Oaklands parkrun111820300:36:10 +
Southend parkrun11116:28 All -  
Sittingbourne parkrun18800:20:56 +
Lydney parkrun1202123:19 All -  
Moors Valley parkrun19900:19:40 +
Edgbaston Reservoir parkrun1658626:24 All -  
Catford parkrun1303300:22:32 +
Reading parkrun12217:18 All -  
Clare Castle parkrun1252700:23:04 +
March parkrun15521:11 All -  
Harrogate parkrun13300:18:11 +
Woodgate Valley Country Park parkrun16513245:50 All -  
Seaford Beach parkrun1535600:22:25 +
Maaraue parkrun1232522:34 All -  
Tring parkrun1171800:23:38 +
Stonehouse parkrun1131320:09 All -  
Sandwell Valley parkrun1455900:30:43 +
Rheinpark parkrun1151825:30 All -  
Basildon parkrun15500:18:13 +
Edinburgh parkrun12217:00 All -  
The Leas parkrun, Minster1252500:24:37 +
Chippenham parkrun1212120:08 All -  
Little Stoke parkrun11100:17:03 +
Stratford-upon-Avon parkrun1202521:14 All -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Henlow Bridge Lakes parkrun17511532:34 All -  
Felixstowe parkrun1121200:21:07 +
Bromley parkrun13317:18 All -  
Yeovil Montacute parkrun1707500:25:51 +
Houghton Hall parkrun1131321:48 All -  
Stockley Country parkrun111917900:35:32 +
Sittingbourne parkrun18820:56 All -  
Woolacombe Dunes parkrun19410900:31:20 +
Sharpham Road Playing Fields parkrun1253124:41 All -  
Harcourt Hill parkrun1171700:21:13 +
Gadebridge parkrun1141422:22 All -  
Abingdon parkrun15500:18:03 +
Chilton Fields parkrun1405428:26 All -  
Eastbourne parkrun12200:17:24 +
Storeys Field parkrun115121128:49 All -  
Warwick Racecourse parkrun1486000:24:55 +
Hadleigh parkrun, Essex1252624:27 All -  
Leicester Victoria parkrun19711600:26:45 +
Marple parkrun11117:15 All -  
Broadwater parkrun110321300:35:19 +
Portsmouth Lakeside parkrun19919:12 All -  
Clacton Seafront parkrun19900:20:35 +
Grove Fields parkrun1578528:03 All -  
Burnham-on-Crouch parkrun18800:22:01 +
Banbury parkrun1222321:16 All -  
Ganger Farm parkrun19811400:26:34 +
Graves parkrun11118:18 All -  
Folkestone parkrun1212500:21:48 +
Watermead Country Park parkrun110818235:52 All -  
Mallards Pike parkrun1324600:30:57 +
Eastbourne parkrun12217:24 All -  
Malling parkrun18314500:47:25 +
Malahide parkrun11116:54 All -  
Rugby parkrun1181800:22:26 +
Fareham parkrun16619:21 All -  
Watermead Country Park parkrun110818200:35:52 +
Sutcliffe parkrun113117230:34 All -  
Hogmoor Inclosure parkrun1262600:25:26 +
Fritton Lake parkrun11118:26 All -  
East Grinstead parkrun1131400:23:10 +
Bicester parkrun14420:13 All -  
Mildenhall Hub parkrun1273100:24:33 +
Sandringham parkrun1466330:18 All -  
Marlborough Common parkrun1202100:22:48 +
Luton Wardown parkrun191019:36 All -  
Blandford parkrun18900:20:11 +
Cwmbran parkrun1171723:29 All -  
Maldon Prom parkrun11100:18:04 +
Broadwater parkrun110321335:19 All -  
Edinburgh parkrun12200:17:00 +
Basildon parkrun15518:13 All -  
The Old Showfield parkrun1636900:23:30 +
Marecchia parkrun11119:50 All -  
Jersey parkrun16600:19:41 +
Harleston Magpies parkrun1293525:12 All -  
Chilton Fields parkrun1405400:28:26 +
Kingsway parkrun, Gloucester1192021:20 All -  
Sixfields Upton parkrun18800:19:58 +
Bryn Bach parkrun11116:50 All -  
Pegwell Bay parkrun12200:17:40 +
Mersea Island parkrun1121220:59 All -  
Valentines parkrun11100:16:49 +
Charlton parkrun18213032:05 All -  
Edenbrook Country parkrun110514800:28:01 +
parkrun de Rouen15521:41 All -  
Henstridge Airfield parkrun18800:21:41 +
Dallas Burston Polo Club parkrun19614732:26 All -  
Great Notley parkrun16600:20:16 +
Ashton Court parkrun1859522:59 All -  
Medina I.O.W. parkrun11100:17:20 +
Tøyen parkrun1668526:32 All -  
Reading parkrun12200:17:18 +
The Great Field parkrun19313529:12 All -  
Tetbury Goods Shed parkrun1253000:24:25 +
Castle Park parkrun1394122:34 All -  
Lowestoft parkrun1232600:21:10 +
Swanley parkrun19712531:18 All -  
Malahide parkrun11100:16:54 +
Greenwich parkrun12218:07 All -  
Oxford parkrun11100:17:18 +
Neckarau parkrun1243027:11 All -  
Rheinpark parkrun1151800:25:30 +
Bury Field parkrun1669033:07 All -  
Gloucester City parkrun1171900:22:35 +
Clifton parkrun1101025:14 All -  
Didcot parkrun1101100:21:28 +
Alton Water parkrun1538335:09 All -  
Mansfield parkrun11100:17:09 +
Colwick parkrun18819:46 All -  
7851100:16:25 +
Melksham parkrun1171724:31 + All +
Markshall Estate parkrun110315632:26 + All +
Rogiet parkrun1151624:27 + All +
Bartley Park parkrun18415132:38 + All +
Lydiard parkrun18818:25 + All +
Little Stoke parkrun11117:03 + All +
Letchworth parkrun1141423:13 + All +
Belvoir Castle parkrun1131925:42 + All +
Andover parkrun11117:33 + All +
Rushcliffe parkrun1617323:54 + All +
Cirencester parkrun1222422:40 + All +
Southall parkrun1557531:38 + All +
Forest of Dean parkrun1182224:51 + All +
parkrun des Dougnes, Cubnezais12219:42 + All +
South Woodham Ferrers parkrun18821:14 + All +
Marine Parade parkrun17711129:24 + All +
Coventry parkrun1292920:51 + All +
Wotton parkrun1182124:45 + All +
Gloucester City parkrun1171922:35 + All +
Great Salterns parkrun19212430:27 + All +
Bedworth parkrun1171722:14 + All +
University Parks parkrun119032631:42 + All +
Hampstead Heath parkrun11117:45 + All +
Great Denham parkrun16619:27 + All +
Downham Market Academy parkrun1121324:35 + All +
Ipswich parkrun11117:34 + All +
Sixfields Upton parkrun18819:58 + All +
Rendlesham Forest parkrun1264637:01 + All +
8671116:25 All  


Volunteer Summary

RoleOccasions
- Run Director - 94
- Timekeeper - 59
- Token Sorting - 3
- Results Processor - 87
- Photographer - 6
- Communications Person - 10
- Marshal - 39
- Pre-event Setup - 130
- Equipment Storage and Delivery - 128
- Other - 23
- Barcode Scanning - 55
- Post-event Close Down - 45
- Finish Tokens - 15
- Number Checker - 2
- First Timers Welcome - 68
- Funnel Manager - 15
- Finish Token Support - 9
- Tail Walker - 29
- Volunteer Co-ordinator - 146
- Report Writer - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Car Park Marshal - 1
- Event Day Course Check - 8
- parkwalker - 9
Total Credits396

+ Run Director +

99
+ Timekeeper + 94
+ Token Sorting + 12
+ Results Processor + 87
+ Photographer + 6
+ Communications Person + 10
+ Marshal + 54
+ Pre-event Setup + 148
+ Equipment Storage and Delivery + 130
+ Other + 26
+ Barcode Scanning + 78
+ Post-event Close Down + 51
+ Finish Tokens + 21
+ Number Checker + 2
+ First Timers Welcome + 82
+ Funnel Manager + 15
+ Finish Token Support + 12
+ Tail Walker + 29
+ Volunteer Co-ordinator + 148
+ Report Writer + 100
+ Backup Timer + 3
+ Warm Up Leader + 16
+ Car Park Marshal + 1
+ Event Day Course Check + 14
+ parkwalker + 10
Total Credits499

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1042,50 +1166,32 @@

Danny NORMAN (A482)
- Locations: 781 -
-
- Finishers: 2,824,045 + Locations: 834
- Finishes: 45,973,908 + Finishers: 3395601
- All-time events: 229,546 + Finishes: 58464863
- Volunteers: 393,838 + All-time events: 288837
- PBs: 7,240,375 + Volunteers: 459167
- Average finish time: 00:29:06 + PBs: 8755448
- Average finishes per participant: 16.3 + Average finish time: 00:29:21
- Groups: 7,847 + Groups: 8625
-

-
- Female record: - Melissa COURTNEY – 15:31 - (24 Dec 2022) -
-
- Male record: - Andrew BADDELEY – 13:48 - (11 Aug 2012) -
-
- Age graded record: - Fauja SINGH - 179.04% 38:34 - (31 Mar 2012) -
+

- Stats last updated: Fri 14 Apr 2023 00:49:50 UTC + Stats last updated: Mon 30 Sep 2024 00:52:37 UTC
@@ -1094,41 +1200,37 @@

Danny NORMAN (A482) Vitality - - Alzheimer’s Research UK - Co-Op WithU - - London Marathon Events - - - Brooks + + Brooks
-

© parkrun Limited (Company Number: 07289574)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1162,8 +1274,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/88720/all/index.html index 50f3c0a7..44895414 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + results | parkrun UK @@ -23,49 +25,42 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - +
- - donate - @@ -129,641 +127,739 @@
- + - - Retail + Donate to parkrun

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM55-59 + Most recent age category was VM60-64

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time21:4025:2552:00
Age Grading69.71%60.41%29.55%
Overall Position648.88374

+
FastestAverage
(mean)
Slowest
Time21:3625:2654:59
Age Grading72.99%60.80%28.92%
Overall Position648.44374

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Halifax08/04/20233313225:0063.07% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62%   -
Fulham Palace01/04/202339110924:0965.29% +
Isabel Trail18/05/20241873422:0272.16%   -
Halifax25/03/20233291624:4363.79% +
Halifax11/05/20243854524:5763.73%   -
Halifax18/03/20233282326:4758.87% +
Halifax04/05/20243842924:2665.08%   -
Halifax04/03/20233273825:1962.28% +
Hyndburn27/04/20242593125:5161.51%   -
Myrtle25/02/20231593824:5263.40% +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% PB   -
Halifax18/02/20233252926:0360.52% +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34% +   +
Wakefield Thornes23/09/20233745824:2964.94%   -
Halifax11/02/20233243124:0365.56% +
Halifax16/09/20233532123:4367.04%   -
Bradford04/02/20235795022:3769.71% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Bowling Park28/01/202379924:1165.20% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Bramley21/01/20233004925:3461.67% +
Glossop12/08/20233152824:2564.57%   -
Halifax14/01/20233213325:5260.95% +
Halifax05/08/20233473024:4363.79%   -
Halifax07/01/20233203026:2659.65% +
Huddersfield29/07/20235456722:4769.20%   -
Chevin Forest01/01/2023703026:4758.87% +
Brighouse15/07/20232544223:5366.02% + PB +   -
Nostell31/12/20223614325:0063.07% +
Stratford Park, Stroud01/07/20231253126:2959.53%   -
Halifax24/12/20223173125:4661.19% +
Wetherby24/06/20233094124:4663.66%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax10/06/20233402524:0265.60%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax03/06/20233392124:1365.11% +   +
Long Eaton20/05/20233306921:3672.99% +   +
Halifax06/05/20233352423:4566.39% +   +
Keswick29/04/20233904121:3672.99% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax22/04/20233334725:0262.98%   -
Brighouse12/11/20222213725:1762.36% +
Halifax08/04/20233313225:0063.07%   -
Halifax05/11/20223122424:5163.45% +
Fulham Palace01/04/202339110924:0965.29%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax25/03/20233291624:4363.79%   -
Halifax15/10/202230910749:5431.60% +
Halifax18/03/20233282326:4758.87%   -
Crosby08/10/20222833525:3861.51% +
Halifax04/03/20233273825:1962.28%   -
Alness01/10/20221801024:0965.29% +
Myrtle25/02/20231593824:5263.40% + PB + +   +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71% +   +
Bowling Park28/01/202379924:1165.20% +   +
Bramley21/01/20233004925:3461.67% +   +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB + +   +
Conkers19/11/20225485624:1465.06% +   +
Brighouse12/11/20222213725:1762.36% +   +
Halifax05/11/20223122424:5163.45%   -
Victoria24/09/20223736722:5468.85% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax17/09/20223052625:0063.07% +
Halifax15/10/202230910749:5431.60%   -
Centre Vale10/09/20221034428:4454.87% +
Crosby08/10/20222833525:3861.51%   -
Halifax03/09/20223033125:3361.71% +
Alness01/10/20221801024:0965.29%   -
Skipton27/08/20224035325:3561.11% +
Victoria24/09/20223736722:5468.85%   -
Halifax20/08/20223012824:5262.87% +
Halifax17/09/20223052625:0063.07%   -
Halifax06/08/20222996426:0360.01% +
Centre Vale10/09/20221034428:4454.87%   -
Armley30/07/20221432724:2863.90% +
Halifax03/09/20223033125:3361.71%   -
Halifax16/07/20222962524:2663.98% +
Skipton27/08/20224035325:3561.11%   -
Halifax02/07/20222942524:4863.04% +
Halifax20/08/20223012824:5262.87%   -
Halifax18/06/20222922424:5462.78% +
Halifax06/08/20222996426:0360.01%   -
The Pastures11/06/2022991826:2159.33% +
Armley30/07/20221432724:2863.90%   -
Halifax04/06/20222913826:4858.33% +
Halifax16/07/20222962524:2663.98%   -
Horton Park28/05/20222942225:1262.04% +
Halifax02/07/20222942524:4863.04%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax18/06/20222922424:5462.78%   -
Halifax07/05/20222877529:3552.85% +
The Pastures11/06/2022991826:2159.33%   -
Harrogate30/04/202246716226:4458.48% +
Halifax04/06/20222913826:4858.33%   -
Halifax23/04/20222854927:0057.90% +
Horton Park28/05/20222942225:1262.04%   -
Halifax09/04/20222834526:3758.74% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax02/04/20222822924:4463.21% +
Halifax07/05/20222877529:3552.85%   -
Pendle26/03/20223443126:1659.52% +
Harrogate30/04/202246716226:4458.48%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax23/04/20222854927:0057.90%   -
Halifax05/03/20222784925:3761.03% +
Halifax09/04/20222834526:3758.74%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -794,50 +890,32 @@

Phillip WHETTLOCK (A8
- Locations: 783 + Locations: 834
- Finishers: 2,830,032 + Finishers: 3395601
- Finishes: 46,119,688 + Finishes: 58464863
- All-time events: 230,302 + All-time events: 288837
- Volunteers: 394,655 + Volunteers: 459167
- PBs: 7,256,756 + PBs: 8755448
- Average finish time: 00:29:06 + Average finish time: 00:29:21
- Average finishes per participant: 16.3 + Groups: 8625
-
- Groups: 7,847 -
-
-
- Female record: - Melissa COURTNEY – 15:31 - (24 Dec 2022) -
-
- Male record: - Andrew BADDELEY – 13:48 - (11 Aug 2012) -
-
- Age graded record: - Fauja SINGH - 179.04% 38:34 - (31 Mar 2012) -
+

- Stats last updated: Mon 17 Apr 2023 00:50:44 UTC + Stats last updated: Mon 30 Sep 2024 00:52:37 UTC
@@ -846,41 +924,37 @@

Phillip WHETTLOCK (A8 Vitality - - Alzheimer’s Research UK - Co-Op WithU - - London Marathon Events - - - Brooks + + Brooks
-

© parkrun Limited (Company Number: 07289574)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -914,8 +998,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/88720/index.html index e40a5268..72f47f63 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + results | parkrun UK @@ -23,49 +25,42 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - - +
- - donate - @@ -129,195 +127,251 @@
- + - - Retail +

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns total

+ + Member of the Volunteer 250 club +

345 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM55-59 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bradford parkrun1166600:21:40 + Most recent age category was VM60-64 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Halifax parkrun1268822:13 + All +
Lister Park parkrun, Bradford1166621:40 + All +
Horton Park parkrun9131322:18 + All +
Keswick parkrun4253321:36 + All +
Sewerby parkrun3121222:08 + All +
Pontefract parkrun2273222:08 + All +
Brighouse parkrun2333723:53 + All +
Temple Newsam parkrun2272925:14 + All +
Fountains Abbey parkrun2394822:26 + All +
Oakwell Hall parkrun2293626:10 + All +
Whinlatter Forest parkrun2283227:23 + All +
Bramley parkrun2252524:06 + All +
Middleton Woods parkrun2121424:55 + All +
Myrtle parkrun2333824:52 + All +
Centre Vale parkrun2303626:37 + All +
Bushy parkrun130137424:06 + All +
Woodhouse Moor parkrun1778222:18 + All +
Pollok parkrun, Glasgow1667223:58 + All +
Edinburgh parkrun1646721:54 All - Graph It!
Halifax parkrun1148800:22:13 +
Wakefield Thornes parkrun1545824:29 All - Graph It!
Horton Park parkrun9131300:22:18 +
Hyndburn parkrun1253125:51 All - Graph It!
Sewerby parkrun3121200:22:08 +
York parkrun111413522:55 All - Graph It!
Keswick parkrun3253300:23:33 +
Milton Country parkrun1707522:40 All - Graph It!
Pontefract parkrun2273200:22:08 +
Carlisle parkrun1567126:05 All - Graph It!
Temple Newsam parkrun2272900:25:14 +
Harrogate parkrun112316226:44 All - Graph It!
Myrtle parkrun2333800:24:52 +
Southport parkrun1545723:57 All - Graph It!
Middleton Woods parkrun2121400:24:55 +
Barnsley parkrun1414325:05 All - Graph It!
Bramley parkrun2252500:24:06 +
Rothwell parkrun1535724:20 All - Graph It!
Druridge Bay parkrun1354200:23:35 +
Huddersfield parkrun1596722:47 All -  
Fountains Abbey parkrun1394800:22:26 +
Long Eaton parkrun1556921:36 All -  
Victoria parkrun, Glasgow1546700:22:54 +
Wycombe Rye parkrun1232622:35 All -  
Clumber Park parkrun1101100:21:46 +
Conkers parkrun1525624:14 All -  
Rothay Park parkrun1202700:24:48 +
Roundhay parkrun112815726:55 All -  
Warwick Racecourse parkrun1638200:24:06 +
Hanley parkrun16622:03 All -  
Conkers parkrun1525600:24:14 +
Worsley Woods parkrun1728824:46 All -  
The Pastures parkrun1161800:26:21 +
Burnley parkrun1545725:21 All -  
Harrogate parkrun112316200:26:44 +
Dewsbury parkrun18610128:15 All -  
Dishley parkrun, Loughborough1535700:24:25 +
Cross Flatts parkrun1303724:16 All -  
Dalby Forest parkrun1283200:23:06 +
Clumber Park parkrun1101121:46 All -  
Woodhouse Moor parkrun1778200:22:18 +
Skipton parkrun1505325:35 All -  
Whinlatter Forest parkrun1283200:27:23 +
Flatts Lane parkrun1171826:53 All -  
Watergrove parkrun, Rochdale1111200:27:57 +
Victoria parkrun, Glasgow1546722:54 All -  
Springburn parkrun, Glasgow1161600:23:14 +
Alness parkrun171024:09 All -  
Fulham Palace parkrun18610900:24:09 +
Fulham Palace parkrun18610924:09 All -  
Flatts Lane parkrun1171800:26:53 +
Springburn parkrun, Glasgow1161623:14 All -  
Roberts Park parkrun1657500:24:54 +
Druridge Bay parkrun1354223:35 All -  
Bowling Park parkrun18900:24:11 +
Pendle parkrun1263126:16 All -  
Hanley parkrun16600:22:03 +
Watergrove parkrun, Rochdale1111227:57 All -  
Centre Vale parkrun1304400:28:44 +
Wetherby parkrun1374124:46 All -  
Wycombe Rye parkrun1232600:22:35 +
Portobello parkrun, Edinburgh1668024:16 All -  
Carlisle parkrun1567100:26:05 +
Nostell parkrun1374325:00 All -  
Armley parkrun1262700:24:28 +
Fell Foot parkrun, Newby Bridge1161722:57 All -  
Crosby parkrun1293500:25:38 +
Conwy parkrun1394424:53 All -  
Edinburgh parkrun1646700:21:54 +
Glossop parkrun1242824:25 All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Crosby parkrun1293525:38 All -  
Bushy parkrun130137400:24:06 +
Dolgellau parkrun1459954:59 All -  
Oakwell Hall parkrun1344000:26:10 +
Dalby Forest parkrun1283223:06 All -  
Pendle parkrun1263100:26:16 +
Clitheroe Castle parkrun1192525:41 All -  
Alness parkrun171000:24:09 +
Armley parkrun1262724:28 All -  
Skipton parkrun1505300:25:35 +
Dishley parkrun, Loughborough1535724:25 All -  
Chevin Forest parkrun1213000:26:47 +
Ford parkrun1202525:00 All -  
Burnley parkrun1545700:25:21 +
Cliffe Castle parkrun1151725:18 All -  
Queen’s parkrun, Glasgow1677900:25:29 +
Potternewton parkrun1293625:04 All -  
Roundhay parkrun112815700:26:55 +
Isabel Trail parkrun1293422:02 All -  
Storthes Hall parkrun1263000:26:20 +
The Pastures parkrun1161826:21 All -  
Southport parkrun1545700:23:57 +
Storthes Hall parkrun1263026:20 All -  
Cliffe Castle parkrun1151700:25:18 +
Hafan Pwllheli parkrun1212726:48 All -  
Brighouse parkrun1333700:25:17 +
Penistone parkrun1343724:20 All -  
Milton Country parkrun1707500:22:40 +
Conyngham Hall parkrun1363824:55 All -  
Pollok parkrun, Glasgow1667200:23:58 +
Stratford Park parkrun, Stroud1303126:29 All -  
Nostell parkrun1384300:25:00 +
Warwick Racecourse parkrun1638224:06 All -  
Portobello parkrun, Edinburgh1668000:24:16 +
University of Stirling parkrun1343723:52 All -  
2996600:21:40 +
Jubilee parkrun1121926:42 + All +
Queen’s parkrun, Glasgow1677925:29 + All +
Bowling Park parkrun18924:11 + All +
Rothay Park parkrun1202724:48 + All +
Zuiderpark parkrun, Den Haag1151722:03 + All +
Carlisle Park parkrun, Morpeth1293325:44 + All +
Chevin Forest parkrun1213026:47 + All +
Roberts Park parkrun1657524:54 + All +
Beacon Hill Country Park parkrun1192325:36 + All +
Thames Path parkrun, Woolwich1586323:49 + All +
3456621:36 All  


Volunteer Summary

RoleOccasions
- Run Director - 32
- Timekeeper - 17
- Token Sorting - 5
- Results Processor - 1
- Photographer - 1
- Communications Person - 5
- Marshal - 35
- Pre-event Setup - 28
- Equipment Storage and Delivery - 5
- Other - 1
- Barcode Scanning - 27
- Post-event Close Down - 24
- Finish Tokens - 11
- Number Checker - 1
- First Timers Welcome - 77
- Funnel Manager - 12
- Finish Token Support - 10
- Tail Walker - 5
- Volunteer Co-ordinator - 10
- Report Writer - 1
- Pacer (5k only) - 5
- Backup Timer - 14
- VI Guide - 1
- Warm Up Leader - 5
- Sign Language Support - 1
- Car Park Marshal - 1
- Event Day Course Check - 25
- parkwalker - 1
Total Credits249

+ Run Director +

33
+ Timekeeper + 28
+ Token Sorting + 5
+ Results Processor + 4
+ Photographer + 1
+ Communications Person + 6
+ Marshal + 35
+ Pre-event Setup + 29
+ Equipment Storage and Delivery + 6
+ Other + 2
+ Barcode Scanning + 46
+ Post-event Close Down + 25
+ Finish Tokens + 16
+ Number Checker + 1
+ First Timers Welcome + 82
+ Funnel Manager + 16
+ Finish Token Support + 16
+ Tail Walker + 15
+ Volunteer Co-ordinator + 11
+ Report Writer + 1
+ Pacer (5k only) + 10
+ Backup Timer + 14
+ VI Guide + 1
+ Warm Up Leader + 15
+ Sign Language Support + 1
+ Car Park Marshal + 1
+ Event Day Course Check + 57
+ parkwalker + 1
Total Credits316

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. -



Freedom parkruns

DateTimeLocation
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here. +



Freedom parkruns

DateTimeLocation
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -346,50 +400,32 @@

Phillip WHETTLOCK (A8
- Locations: 783 -
-
- Finishers: 2,830,032 + Locations: 834
- Finishes: 46,119,688 + Finishers: 3395601
- All-time events: 230,302 + Finishes: 58464863
- Volunteers: 394,655 + All-time events: 288837
- PBs: 7,256,756 + Volunteers: 459167
- Average finish time: 00:29:06 + PBs: 8755448
- Average finishes per participant: 16.3 + Average finish time: 00:29:21
- Groups: 7,847 + Groups: 8625
-
-
- Female record: - Melissa COURTNEY – 15:31 - (24 Dec 2022) -
-
- Male record: - Andrew BADDELEY – 13:48 - (11 Aug 2012) -
-
- Age graded record: - Fauja SINGH - 179.04% 38:34 - (31 Mar 2012) -
+

- Stats last updated: Mon 17 Apr 2023 00:50:44 UTC + Stats last updated: Mon 30 Sep 2024 00:52:37 UTC
@@ -398,41 +434,37 @@

Phillip WHETTLOCK (A8 Vitality - - Alzheimer’s Research UK - Co-Op WithU - - London Marathon Events - - - Brooks + + Brooks
-

© parkrun Limited (Company Number: 07289574)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -466,8 +508,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/999999/all/index.html index 20fad828..274c7243 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + results | parkrun UK @@ -35,32 +37,30 @@ - + - + - - - +
- - donate - @@ -124,16 +127,16 @@
- + - - Retail + Brooks shoe finder

Jakub WOLSKI (A999999)

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -165,50 +168,32 @@

Jakub WOLSKI (A999999
- Locations: 790 -
-
- Finishers: 2,902,710 + Locations: 834
- Finishes: 47,666,093 + Finishers: 3395601
- All-time events: 237,859 + Finishes: 58464863
- Volunteers: 403,575 + All-time events: 288837
- PBs: 7,461,845 + Volunteers: 459167
- Average finish time: 00:29:08 + PBs: 8755448
- Average finishes per participant: 16.4 + Average finish time: 00:29:21
- Groups: 7,961 + Groups: 8625
-
-
- Female record: - Melissa COURTNEY – 15:31 - (24 Dec 2022) -
-
- Male record: - Andy BUTCHART – 13:45 - (24 Jun 2023) -
-
- Age graded record: - Fauja SINGH - 179.04% 38:34 - (31 Mar 2012) -
+

- Stats last updated: Thu 29 Jun 2023 00:50:40 UTC + Stats last updated: Mon 30 Sep 2024 00:52:37 UTC
@@ -217,41 +202,37 @@

Jakub WOLSKI (A999999 Vitality - - Alzheimer’s Research UK - Co-Op WithU - - London Marathon Events - - - Brooks + + Brooks
-

© parkrun Limited (Company Number: 07289574)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -285,8 +276,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/999999/index.html index c5a4f3e8..313c9831 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.org.uk/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + results | parkrun UK @@ -35,32 +37,30 @@ - + - + - - - +
- - donate - @@ -124,7 +127,7 @@
- + -

Jakub WOLSKI (A999999)

No results have been recorded yet for this parkrunner.

+

Jakub WOLSKI (A999999)

@@ -161,50 +164,32 @@

Jakub WOLSKI (A999999
- Locations: 790 -
-
- Finishers: 2,902,710 + Locations: 834
- Finishes: 47,666,093 + Finishers: 3395601
- All-time events: 237,859 + Finishes: 58464863
- Volunteers: 403,575 + All-time events: 288837
- PBs: 7,461,845 + Volunteers: 459167
- Average finish time: 00:29:08 + PBs: 8755448
- Average finishes per participant: 16.4 + Average finish time: 00:29:21
- Groups: 7,961 + Groups: 8625
-
-
- Female record: - Melissa COURTNEY – 15:31 - (24 Dec 2022) -
-
- Male record: - Andy BUTCHART – 13:45 - (24 Jun 2023) -
-
- Age graded record: - Fauja SINGH - 179.04% 38:34 - (31 Mar 2012) -
+

- Stats last updated: Thu 29 Jun 2023 00:50:40 UTC + Stats last updated: Mon 30 Sep 2024 00:52:37 UTC
@@ -213,41 +198,37 @@

Jakub WOLSKI (A999999 Vitality - - Alzheimer’s Research UK - Co-Op WithU - - London Marathon Events - - - Brooks + + Brooks
-

© parkrun Limited (Company Number: 07289574)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -281,8 +272,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/1309364/all/index.html index 9254e429..7581cd50 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + rezultaty | parkrun Polska @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -120,543 +107,649 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Członek klubu parkrun 100 +

Andrew TAYLOR (A1309364)

+ Członek klubu parkrun 250 Member of the Volunteer 50 club

- Łącznie 245 ukończonych edycji parkrun + Łącznie 297 ukończonych edycji parkrun

Zobacz podsumowanie statystyk dla te(j)go uczestnika(czki)
- Zarejestrowan(a)y w kategorii wiekowej VM35-39 + Zarejestrowan(a)y w kategorii wiekowej VM40-44

Podsumowanie udziału -
NajlepszyŚrednia
Najgorszy
Czas20:0628:4757:34
Współczynnik wieku64.51%47.44%23.54%
Pozycja ogółem5165.361021

+
NajlepszyŚrednia
Najgorszy
Czas20:0629:2057:34
Współczynnik wieku64.51%46.67%23.54%
Pozycja ogółem5182.341021

Najlepsze wyniki -
RokNajlepszy czasNajwyższy poziom Wsp. wieku
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
RokNajlepszy czasNajwyższy poziom Wsp. wieku
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

Ukończone edycje parkrun -
LokalizacjaData spotkaniaEdycja spotkaniaPozCzasWsp.
wieku
PB?
Clitheroe Castle08/04/20231789735:4637.88% +
LokalizacjaData spotkaniaEdycja spotkaniaPozCzasWsp.
wieku
PB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60%   -
Whiteley25/03/202321418332:2441.82% +
Whiteley18/11/202324721037:0536.54%   -
Winchester11/03/202342821230:3744.26% +
Whiteley11/11/202324617430:3744.26%   -
Winchester04/03/202342730935:4537.90% +
Winchester21/10/202345731533:5140.03%   -
Winchester25/02/202342632536:0937.48% +
Winchester14/10/202345634233:5439.97%   -
Winchester18/02/202342530336:3137.11% +
Ganger Farm07/10/20234713233:4940.07%   -
Delamere31/12/202242331536:2537.21% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester23/09/202345321928:2247.77%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester16/09/202345235430:3244.38%   -
Winchester26/11/202241229335:3137.87% +
Winchester09/09/202345129229:1146.43%   -
Whiteley12/11/202221016534:2839.02% +
Delamere02/09/202345822633:2840.49%   -
Winchester29/10/202240924429:5544.96% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester22/10/202240833736:0837.22% +
Winchester29/07/202344622227:3649.09%   -
Winchester17/09/202240326230:2944.12% +
Winchester22/07/202344540537:0036.62%   -
Winchester10/09/202240231134:3338.93% +
Whiteley15/07/202322915731:1643.34%   -
Alice Holt03/09/202241817936:3236.82% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester27/08/202240042335:2138.05% +
Winchester17/06/202344128530:4144.16%   -
Winchester13/08/202239823431:3042.70% +
Winchester10/06/202344032435:2138.33%   -
Tidworth30/07/2022615151:4226.02% +
Winchester20/05/202343822427:0949.91%   -
Uckfield23/07/20221006028:4346.84% +
Winchester13/05/202343733232:4341.42%   -
Winchester09/07/202239428633:1640.43% +
Whiteley29/04/202321919635:3138.15%   -
Eastleigh28/05/202254015531:2042.93% +
Winchester22/04/202343431731:1143.45%   -
Winchester21/05/202238930733:2840.19% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Alice Holt14/05/202240216932:0142.01% +
Whiteley25/03/202321418332:2441.82%   -
Winchester07/05/202238734034:1339.31% +
Winchester11/03/202342821230:3744.26%   -
Guildford30/04/202242825130:0144.81% +
Winchester04/03/202342730935:4537.90%   -
Winchester23/04/202238522932:0241.99% +
Winchester25/02/202342632536:0937.48%   -
Winchester16/04/202238431033:2340.29% +
Winchester18/02/202342530336:3137.11%   -
Winchester19/03/202238025033:5439.68% +
Delamere31/12/202242331536:2537.21%   -
Alice Holt01/01/202238524237:4635.61% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester20/11/202136338445:0729.59% +
Winchester26/11/202241229335:3137.87%   -
Winchester09/10/202135739843:0730.96% +
Whiteley12/11/202221016534:2839.02%   -
Winchester25/09/202135538955:0324.25% +
Winchester29/10/202240924429:5544.96%   -
Winchester18/09/202135433938:1234.95% +
Winchester22/10/202240833736:0837.22%   -
Winchester04/09/202135233838:2434.77% +
Winchester17/09/202240326230:2944.12%   -
Winchester28/08/202135139841:0132.55% +
Winchester10/09/202240231134:3338.93%   -
Winchester14/08/202134936055:4623.94% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester31/07/202134832845:2029.45% +
Winchester27/08/202240042335:2138.05%   -
Winchester14/03/202034625851:3825.69% +
Winchester13/08/202239823431:3042.70%   -
Winchester07/03/202034510325:5251.29% +
Tidworth30/07/2022615151:4226.02%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Uckfield23/07/20221006028:4346.84%   -
Newbury22/02/202043434631:1142.54% +
Winchester09/07/202239428633:1640.43%   -
Alice Holt08/02/202036010727:1948.57% +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -687,78 +780,61 @@

Andrew TAYLOR (
- Liczba lokalizacji: 86 + Liczba lokalizacji: 97
- Liczba uczestników: 90 606 + Liczba uczestników: 120993
- Liczba ukończeń: 1 112 019 + Liczba ukończeń: 1512244
- Liczba edycji: 21 445 + Liczba edycji: 28595
- Liczba wolontariuszy: 15 582 + Liczba wolontariuszy: 20510
- Rekordy życiowe: 143 343 + Rekordy życiowe: 186898
- Średni czas: 00:27:57 + Średni czas: 00:28:47
- Średnia ukończonych edycji: 12,3 + Kluby/Grupy: 3350
-
- Kluby/Grupy: 2 785 -
-
-
- Rekord (K): - Monika ANDRZEJCZAK – 16:22 - (13 paź 2018) -
-
- Rekord (M): - Artur KOZŁOWSKI – 14:41 - ( 8 paź 2016) -
-
- Rekord Wsp. wieku: - Jane DAVIES - 99,12% 22:50 - (12 paź 2019) -
+
- Aktualizacja: pią, 14 kwi 2023, 00:41:02 + Aktualizacja: pon, 30 wrz 2024, 00:40:47
-

© parkrun Global Limited (Company number: 09411750)

Żadna część tej strony nie może być kopiowana, powielana, rozpowszechniana, publikowana, pobierana, prezentowana, wysyłana ani przesyłana w jakiejkolwiek formie czy za pomocą jakichkolwiek środków, w tym między innymi elektronicznych, mechanicznych, kopiujących, nagrywających lub innych, bez uprzedniej pisemnej zgody właściciela praw autorskich.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -792,8 +878,8 @@

Andrew TAYLOR ( - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/1309364/index.html index bbf6bd15..7d90790c 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + rezultaty | parkrun Polska @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -120,176 +107,186 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Członek klubu parkrun 100 +

Andrew TAYLOR (A1309364)

+ Członek klubu parkrun 250 Member of the Volunteer 50 club -

Łącznie 245 ukończonych edycji parkrun

+

Łącznie 297 ukończonych edycji parkrun

Zobacz statystyki uczestnika ze wszystkich spotkań parkrun
- Zarejestrowan(a)y w kategorii wiekowej VM35-39 -

Ostatnio ukończone edycje parkrun

LokalizacjaData spotkaniaPozycja wg płciPozycja ogółemCzasWsp.
wieku
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Ukończone edycje parkrun

LokalizacjaLiczba spotkań (Polska)Najlepsza pozycja wg płciNajlepsza pozycja ogółemNajlepszy czas  
Winchester parkrun146121300:20:18 + Zarejestrowan(a)y w kategorii wiekowej VM40-44 +

Ostatnio ukończone edycje parkrun

LokalizacjaData spotkaniaPozycja wg płciPozycja ogółemCzasWsp.
wieku
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Ukończone edycje parkrun

LokalizacjaLiczba spotkań (Polska)Najlepsza pozycja wg płciNajlepsza pozycja ogółemNajlepszy czas  
Winchester parkrun173121320:18 + Wszystko +
Whiteley parkrun1410714629:06 + Wszystko +
Delamere parkrun11232321:42 + Wszystko +
Eastleigh parkrun6242524:08 Wszystko - Graph It!
Delamere parkrun8232300:21:42 +
Alice Holt parkrun59010727:19 Wszystko - Graph It!
Whiteley parkrun610714600:29:06 +
Southampton parkrun5687021:17 Wszystko - Graph It!
Alice Holt parkrun59010700:27:19 +
Fell Foot parkrun, Newby Bridge4212223:48 Wszystko - Graph It!
Southampton parkrun5687000:21:17 +
Witton parkrun4303525:40 Wszystko - Graph It!
Eastleigh parkrun5242500:24:08 +
Northwich parkrun4485224:55 Wszystko - Graph It!
Congleton parkrun49900:20:06 +
Newbury parkrun4829123:49 Wszystko - Graph It!
Witton parkrun4303500:25:40 +
Congleton parkrun49920:06 Wszystko - Graph It!
Northwich parkrun4485200:24:55 +
Medina I.O.W. parkrun4667525:13 Wszystko - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Ganger Farm parkrun38013229:25 Wszystko - Graph It!
Andover parkrun2242600:22:24 +
Burnley parkrun212718929:06 Wszystko - Graph It!
Ganger Farm parkrun29713500:29:25 +
Queen Elizabeth parkrun2364026:36 Wszystko - Graph It!
Hanley parkrun2333900:22:31 +
Andover parkrun2242622:24 Wszystko - Graph It!
Newbury parkrun2829100:23:49 +
Hanley parkrun2333922:31 Wszystko - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Netley Abbey parkrun1586424:21 Wszystko - Graph It!
Hagley parkrun1182000:22:38 +
Hilly Fields parkrun1859925:03 Wszystko -  
Ormskirk parkrun120930300:31:04 +
Brockenhurst parkrun112718632:41 Wszystko -  
Basingstoke parkrun111212900:24:31 +
Wimpole Estate parkrun112916928:07 Wszystko -  
Cuerden Valley parkrun1192000:24:47 +
Clumber Park parkrun112117629:51 Wszystko -  
Seven Fields parkrun1546700:28:28 +
Cuerden Valley parkrun1192024:47 Wszystko -  
Netley Abbey parkrun1586400:24:21 +
Hamilton Lake parkrun1151621:47 Wszystko -  
Mountbatten School parkrun17110100:31:29 +
Fountains Abbey parkrun1283020:33 Wszystko -  
Clitheroe Castle parkrun1639700:35:46 +
Ormskirk parkrun120930331:04 Wszystko -  
Medina I.O.W. parkrun19513900:30:57 +
Pendle parkrun1465926:37 Wszystko -  
Hogmoor Inclosure parkrun111314000:29:34 +
Woking parkrun1485824:01 Wszystko -  
Milano Nord parkrun1475300:27:49 +
Hagley parkrun1182022:38 Wszystko -  
Jersey parkrun111018500:30:53 +
Penrhyn parkrun1232624:33 Wszystko -  
Canterbury parkrun1323600:27:29 +
Salisbury parkrun119326729:45 Wszystko -  
Penrhyn parkrun1232600:24:33 +
Jersey parkrun111018530:53 Wszystko -  
Hyndburn parkrun1425300:29:55 +
Haigh Woodland parkrun18916837:04 Wszystko -  
Woking parkrun1485800:24:01 +
Stretford parkrun127540530:23 Wszystko -  
Fountains Abbey parkrun1283000:20:33 +
Portsmouth Lakeside parkrun1818726:32 Wszystko -  
Bushy parkrun1681102100:33:01 +
Fareham parkrun19011428:52 Wszystko -  
Clumber Park parkrun112117600:29:51 +
Milano Nord parkrun1475327:49 Wszystko -  
Wimpole Estate parkrun112916900:28:07 +
Richmond Olympic parkrun15521:59 Wszystko -  
Tidworth parkrun18615100:51:42 +
Crewe parkrun112315430:05 Wszystko -  
Hilly Fields parkrun1859900:25:03 +
Hogmoor Inclosure parkrun111314029:34 Wszystko -  
Tawd Valley parkrun18111000:29:25 +
Catford parkrun19512527:24 Wszystko -  
Watermeadows parkrun1151500:23:51 +
Clitheroe Castle parkrun1639735:46 Wszystko -  
Eden Project parkrun111116200:30:21 +
Pocket parkrun112419533:47 Wszystko -  
Catford parkrun19512500:27:24 +
Ford parkrun1477432:29 Wszystko -  
Crewe parkrun112315400:30:05 +
Watermeadows parkrun1151523:51 Wszystko -  
Long Eaton parkrun118122900:28:06 +
Mountbatten School parkrun17110131:29 Wszystko -  
Fareham parkrun19511400:28:52 +
Uckfield parkrun1416028:43 Wszystko -  
Phoenix parkrun1232600:27:31 +
Tawd Valley parkrun18111029:25 Wszystko -  
Guildford parkrun117125100:30:01 +
Seven Fields parkrun1546728:28 Wszystko -  
Pendle parkrun1465900:26:37 +
Itchen Valley Country parkrun110613529:53 Wszystko -  
Heaton parkrun133846700:31:01 +
Bartley Park parkrun1628430:26 Wszystko -  
Hamilton Lake parkrun1151600:21:47 +
Tidworth parkrun18615151:42 Wszystko -  
Brockenhurst parkrun112718600:32:41 +
Bushy parkrun1681102133:01 Wszystko -  
Itchen Valley Country parkrun110713500:29:53 +
Basingstoke parkrun111212924:31 Wszystko -  
Burnley parkrun114120400:29:06 +
Heaton parkrun133846731:01 Wszystko -  
Uckfield parkrun1416000:28:43 +
Guildford parkrun117125130:01 Wszystko -  
Abingdon parkrun114220200:29:14 +
Hyndburn parkrun1425329:55 Wszystko -  
Pocket parkrun112419500:33:47 +
Phoenix parkrun1232627:31 Wszystko -  
Bolton parkrun116221800:31:49 +
Canterbury parkrun1323627:29 Wszystko -  
Richmond Olympic parkrun15500:21:59 +
Valentines parkrun1698025:14 Wszystko -  
Poole parkrun121328400:28:59 +
Poole parkrun121328428:59 Wszystko -  
Portsmouth Lakeside parkrun1818700:26:32 +
Long Eaton parkrun118122928:06 Wszystko -  
Salisbury parkrun119326700:29:45 +
Bolton parkrun116221831:49 Wszystko -  
2455500:20:06 +
Eden Project parkrun111116230:21 + Wszystko +
Abingdon parkrun114220229:14 + Wszystko +
2975520:06 Wszystko  


Podsumowanie wolontariatu

RolaLiczba
- Koordynator(ka) spotkania - 21
- Mierząc(a)y czas - 2
- Sortując(a)y tokeny - 8
- Wprowadzając(a)y wyniki - 6
- Fotograf - 4
- Ubezpieczając(a)y trasę - 4
- Rozstawiając(a)y oznakowanie - 6
- Przechowując(a)y wyposażenie - 2
- Skanując(a)y uczestników - 2
- Zbierając(a)y oznakowanie - 10
- Wydając(a)y tokeny - 1
- Sprawdzając(a)y pozycje na mecie - 2
- Odprawa debiutantów - 1
- Koordynator tunelu mety - 1
- Zamykając(a)y stawkę - 4
- Koordynator wolontariuszy - 1
- Przygotowując(a)y raport - 10
- Wyznaczanie tempa - 1
Łączna liczba ról58

- Ta tabela przedstawia liczbę wolontariatów w ramach poszczególnych ról.
Łączna liczba wolontariatów może różnić się od liczby ról w przypadku, gdy w daną sobotę wykonywana była większa liczba ról.
Więcej informacji dostępnych jest
tutaj. + Koordynator(ka) spotkania +

21
+ Mierząc(a)y czas + 2
+ Sortując(a)y tokeny + 8
+ Wprowadzając(a)y wyniki + 6
+ Fotograf + 4
+ Ubezpieczając(a)y trasę + 5
+ Rozstawiając(a)y oznakowanie + 6
+ Przechowując(a)y wyposażenie + 2
+ Skanując(a)y uczestników + 3
+ Zbierając(a)y oznakowanie + 10
+ Wydając(a)y tokeny + 1
+ Sprawdzając(a)y pozycje na mecie + 2
+ Odprawa debiutantów + 1
+ Koordynator tunelu mety + 1
+ Zamykając(a)y stawkę + 4
+ Koordynator wolontariuszy + 1
+ Przygotowując(a)y raport + 10
+ Wyznaczanie tempa + 1
Łączna liczba ról60

+ Ta tabela przedstawia liczbę wolontariatów w ramach poszczególnych ról.
Łączna liczba wolontariatów może różnić się od liczby ról w przypadku, gdy w daną sobotę wykonywana była większa liczba ról.
Więcej informacji dostępnych jest tutaj.



parkrun Freedom

DataCzasLokalizacja
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


Edycje (nie)parkrun

TydzieńData początkowaData końcowaEdycje (nie)parkrunNajlepszy czas
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -319,78 +316,61 @@

Andrew TAYLOR (
- Liczba lokalizacji: 86 + Liczba lokalizacji: 97
- Liczba uczestników: 90 606 + Liczba uczestników: 120993
- Liczba ukończeń: 1 112 019 + Liczba ukończeń: 1512244
- Liczba edycji: 21 445 + Liczba edycji: 28595
- Liczba wolontariuszy: 15 582 + Liczba wolontariuszy: 20510
- Rekordy życiowe: 143 343 + Rekordy życiowe: 186898
- Średni czas: 00:27:57 + Średni czas: 00:28:47
- Średnia ukończonych edycji: 12,3 + Kluby/Grupy: 3350
-
- Kluby/Grupy: 2 785 -
-
-
- Rekord (K): - Monika ANDRZEJCZAK – 16:22 - (13 paź 2018) -
-
- Rekord (M): - Artur KOZŁOWSKI – 14:41 - ( 8 paź 2016) -
-
- Rekord Wsp. wieku: - Jane DAVIES - 99,12% 22:50 - (12 paź 2019) -
+

- Aktualizacja: pią, 14 kwi 2023, 00:41:02 + Aktualizacja: pon, 30 wrz 2024, 00:40:47
-

© parkrun Global Limited (Company number: 09411750)

Żadna część tej strony nie może być kopiowana, powielana, rozpowszechniana, publikowana, pobierana, prezentowana, wysyłana ani przesyłana w jakiejkolwiek formie czy za pomocą jakichkolwiek środków, w tym między innymi elektronicznych, mechanicznych, kopiujących, nagrywających lub innych, bez uprzedniej pisemnej zgody właściciela praw autorskich.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -424,8 +414,8 @@

Andrew TAYLOR ( - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/2705084/all/index.html index a3585def..56b8c268 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + rezultaty | parkrun Polska @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -120,10 +107,10 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

Zobacz podsumowanie statystyk uczestni(czki)ka

@@ -155,78 +142,61 @@

Duncan BOOTH (A
- Liczba lokalizacji: 86 -
-
- Liczba uczestników: 90 914 + Liczba lokalizacji: 97
- Liczba ukończeń: 1 116 246 + Liczba uczestników: 120993
- Liczba edycji: 21 531 + Liczba ukończeń: 1512244
- Liczba wolontariuszy: 15 647 + Liczba edycji: 28595
- Rekordy życiowe: 143 830 + Liczba wolontariuszy: 20510
- Średni czas: 00:27:57 + Rekordy życiowe: 186898
- Średnia ukończonych edycji: 12,3 + Średni czas: 00:28:47
- Kluby/Grupy: 2 790 + Kluby/Grupy: 3350
-
-
- Rekord (K): - Monika ANDRZEJCZAK – 16:22 - (13 paź 2018) -
-
- Rekord (M): - Artur KOZŁOWSKI – 14:41 - ( 8 paź 2016) -
-
- Rekord Wsp. wieku: - Jane DAVIES - 99,12% 22:50 - (12 paź 2019) -
+
- Aktualizacja: pon, 17 kwi 2023, 00:41:19 + Aktualizacja: pon, 30 wrz 2024, 00:40:47
-

© parkrun Global Limited (Company number: 09411750)

Żadna część tej strony nie może być kopiowana, powielana, rozpowszechniana, publikowana, pobierana, prezentowana, wysyłana ani przesyłana w jakiejkolwiek formie czy za pomocą jakichkolwiek środków, w tym między innymi elektronicznych, mechanicznych, kopiujących, nagrywających lub innych, bez uprzedniej pisemnej zgody właściciela praw autorskich.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -260,8 +240,8 @@

Duncan BOOTH (A - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/2705084/index.html index 04213f25..1d0786d0 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + rezultaty | parkrun Polska @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -120,16 +107,16 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Podsumowanie wolontariatu

RolaLiczba
- Ubezpieczając(a)y trasę - 260
- Rower bezpieczeństwa - 130
- Sprawdzając(a)y trasę - 9
Łączna liczba ról393

- Ta tabela przedstawia liczbę wolontariatów w ramach poszczególnych ról.
Łączna liczba wolontariatów może różnić się od liczby ról w przypadku, gdy w daną sobotę wykonywana była większa liczba ról.
Więcej informacji dostępnych jest tutaj. +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Podsumowanie wolontariatu

RolaLiczba
+ Ubezpieczając(a)y trasę + 350
+ Rower bezpieczeństwa + 130
+ Sprawdzając(a)y trasę + 82
Łączna liczba ról540

+ Ta tabela przedstawia liczbę wolontariatów w ramach poszczególnych ról.
Łączna liczba wolontariatów może różnić się od liczby ról w przypadku, gdy w daną sobotę wykonywana była większa liczba ról.
Więcej informacji dostępnych jest tutaj.



@@ -159,78 +146,61 @@

Duncan BOOTH (A
- Liczba lokalizacji: 86 -
-
- Liczba uczestników: 90 914 + Liczba lokalizacji: 97
- Liczba ukończeń: 1 116 246 + Liczba uczestników: 120993
- Liczba edycji: 21 531 + Liczba ukończeń: 1512244
- Liczba wolontariuszy: 15 647 + Liczba edycji: 28595
- Rekordy życiowe: 143 830 + Liczba wolontariuszy: 20510
- Średni czas: 00:27:57 + Rekordy życiowe: 186898
- Średnia ukończonych edycji: 12,3 + Średni czas: 00:28:47
- Kluby/Grupy: 2 790 + Kluby/Grupy: 3350
-
-
- Rekord (K): - Monika ANDRZEJCZAK – 16:22 - (13 paź 2018) -
-
- Rekord (M): - Artur KOZŁOWSKI – 14:41 - ( 8 paź 2016) -
-
- Rekord Wsp. wieku: - Jane DAVIES - 99,12% 22:50 - (12 paź 2019) -
+

- Aktualizacja: pon, 17 kwi 2023, 00:41:19 + Aktualizacja: pon, 30 wrz 2024, 00:40:47
-

© parkrun Global Limited (Company number: 09411750)

Żadna część tej strony nie może być kopiowana, powielana, rozpowszechniana, publikowana, pobierana, prezentowana, wysyłana ani przesyłana w jakiejkolwiek formie czy za pomocą jakichkolwiek środków, w tym między innymi elektronicznych, mechanicznych, kopiujących, nagrywających lub innych, bez uprzedniej pisemnej zgody właściciela praw autorskich.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -264,8 +244,8 @@

Duncan BOOTH (A - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/482/all/index.html index c78f5a3a..b3a62561 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + rezultaty | parkrun Polska @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -125,1650 +112,1816 @@

Danny NORMAN (A Member of the Volunteer 250 club

- Łącznie 785 ukończonych edycji parkrun + Łącznie 867 ukończonych edycji parkrun

Zobacz podsumowanie statystyk dla te(j)go uczestnika(czki)
- Zarejestrowan(a)y w kategorii wiekowej VM40-44 + Zarejestrowan(a)y w kategorii wiekowej VM45-49

Podsumowanie udziału -
NajlepszyŚrednia
Najgorszy
Czas16:2521:0459:17
Współczynnik wieku79.25%65.45%23.56%
Pozycja ogółem134.831692

+
NajlepszyŚrednia
Najgorszy
Czas16:2521:2659:17
Współczynnik wieku79.25%64.63%23.56%
Pozycja ogółem138.841692

Najlepsze wyniki -
RokNajlepszy czasNajwyższy poziom Wsp. wieku
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
RokNajlepszy czasNajwyższy poziom Wsp. wieku
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

Ukończone edycje parkrun -
LokalizacjaData spotkaniaEdycja spotkaniaPozCzasWsp.
wieku
PB?
Harleston Magpies08/04/2023793525:1255.42% +
LokalizacjaData spotkaniaEdycja spotkaniaPozCzasWsp.
wieku
PB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Cannock Chase01/04/20232434425:4954.10% +
Quakers Walk25/11/2023126825:0556.08%   -
Kingston25/03/202360216430:0946.32% +
Aston Hall18/11/202352225:0156.23%   -
Wolford Wood18/03/202352730:2445.94% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Kingston11/03/202360015027:1851.16% +
Belvoir Castle04/11/2023911925:4254.73%   -
Stockley Country04/03/2023817935:3239.31% +
Five Arches28/10/202365422:5861.25%   -
Chasewater25/02/202310010026:1953.07% +
Dover Waterfront21/10/202374525:2255.45%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Rushcliffe14/10/20235087323:5458.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Kingston07/10/202363033150:2927.86%   -
Worcester04/02/202354318529:3047.34% +
Maaraue03/10/20231012522:3462.33%   -
Crane Park28/01/202349014550:3727.59% +
University of Northampton30/09/2023112223:2460.11%   -
Kingston21/01/202359431139:3935.22% +
Clifton23/09/20231911025:1455.75%   -
Brooklands14/01/202313018830:4445.44% +
Wisbech16/09/202351523:0361.03%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Holbrooks09/09/202362223:4359.31%   -
Kingston01/01/202359113340:3134.47% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston31/12/202259026442:4432.68% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Bushy Park25/12/2022909169244:3931.28% +
Riverfront19/08/20232594622:5761.29%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston17/12/202258818059:1723.56% +
Kingston05/08/20236216723:2160.24%   -
Kingston10/12/202258723255:4025.09% +
Kingston29/07/20236208725:0955.93%   -
Beacon03/12/2022737326:4152.34% +
Kingston22/07/20236199224:2457.65%   -
Ganger Farm26/11/2022211426:3452.57% +
Severn Valley Country15/07/20231411626:1353.66%   -
Bushy Park19/11/2022903110553:2326.16% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Leavesden Country12/11/202246928:3248.95% +
Thornham Walks01/07/202353826:5251.99%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Kingston24/06/20236156524:0957.83%   -
Durlston Country Park29/10/2022335032:4542.65% +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1799,78 +1952,61 @@

Danny NORMAN (A
- Liczba lokalizacji: 86 + Liczba lokalizacji: 97
- Liczba uczestników: 90 606 + Liczba uczestników: 120993
- Liczba ukończeń: 1 112 019 + Liczba ukończeń: 1512244
- Liczba edycji: 21 445 + Liczba edycji: 28595
- Liczba wolontariuszy: 15 582 + Liczba wolontariuszy: 20510
- Rekordy życiowe: 143 343 + Rekordy życiowe: 186898
- Średni czas: 00:27:57 + Średni czas: 00:28:47
- Średnia ukończonych edycji: 12,3 + Kluby/Grupy: 3350
-
- Kluby/Grupy: 2 785 -
-
-
- Rekord (K): - Monika ANDRZEJCZAK – 16:22 - (13 paź 2018) -
-
- Rekord (M): - Artur KOZŁOWSKI – 14:41 - ( 8 paź 2016) -
-
- Rekord Wsp. wieku: - Jane DAVIES - 99,12% 22:50 - (12 paź 2019) -
+
- Aktualizacja: pią, 14 kwi 2023, 00:41:02 + Aktualizacja: pon, 30 wrz 2024, 00:40:47
-

© parkrun Global Limited (Company number: 09411750)

Żadna część tej strony nie może być kopiowana, powielana, rozpowszechniana, publikowana, pobierana, prezentowana, wysyłana ani przesyłana w jakiejkolwiek formie czy za pomocą jakichkolwiek środków, w tym między innymi elektronicznych, mechanicznych, kopiujących, nagrywających lub innych, bez uprzedniej pisemnej zgody właściciela praw autorskich.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1904,8 +2050,8 @@

Danny NORMAN (A - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/482/index.html index c009fb49..504101b7 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + rezultaty | parkrun Polska @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -124,876 +111,1002 @@

Danny NORMAN (A Członek klubu parkrun 500 Member of the Volunteer 250 club -

Łącznie 785 ukończonych edycji parkrun

+

Łącznie 867 ukończonych edycji parkrun

Zobacz statystyki uczestnika ze wszystkich spotkań parkrun
- Zarejestrowan(a)y w kategorii wiekowej VM40-44 -

Ostatnio ukończone edycje parkrun

LokalizacjaData spotkaniaPozycja wg płciPozycja ogółemCzasWsp.
wieku
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Ukończone edycje parkrun

LokalizacjaLiczba spotkań (Polska)Najlepsza pozycja wg płciNajlepsza pozycja ogółemNajlepszy czas  
Bushy parkrun2321100:16:25 + Zarejestrowan(a)y w kategorii wiekowej VM45-49 +

Ostatnio ukończone edycje parkrun

LokalizacjaData spotkaniaPozycja wg płciPozycja ogółemCzasWsp.
wieku
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Ukończone edycje parkrun

LokalizacjaLiczba spotkań (Polska)Najlepsza pozycja wg płciNajlepsza pozycja ogółemNajlepszy czas  
Bushy parkrun2341116:25 + Wszystko +
Kingston parkrun471116:51 + Wszystko +
Bedfont Lakes parkrun81117:04 + Wszystko +
Richmond parkrun71117:13 + Wszystko +
Nonsuch parkrun71116:52 + Wszystko +
Crane Park parkrun61116:48 + Wszystko +
Riddlesdown parkrun42217:01 + Wszystko +
Wimbledon Common parkrun35517:27 + Wszystko +
Brighton & Hove parkrun31116:27 + Wszystko +
Basingstoke parkrun35517:48 + Wszystko +
Black Park parkrun31117:25 + Wszystko +
Dulwich parkrun33317:11 + Wszystko +
Bexley parkrun31117:48 + Wszystko +
Tilgate parkrun31117:10 + Wszystko +
Frimley Lodge parkrun31117:11 + Wszystko +
Hilly Fields parkrun31117:50 + Wszystko +
Old Deer Park parkrun31117:41 + Wszystko +
Guildford parkrun31117:17 + Wszystko +
Homewood parkrun3151722:21 + Wszystko +
Brockwell parkrun, Herne Hill31116:56 + Wszystko +
Southwark parkrun34417:27 + Wszystko +
Fulham Palace parkrun33317:47 + Wszystko +
Cannon Hill parkrun, Birmingham3111118:04 + Wszystko +
Gunnersbury parkrun31116:51 + Wszystko +
Wycombe Rye parkrun22217:17 + Wszystko +
Hove Promenade parkrun27719:23 + Wszystko +
Banstead Woods parkrun21117:31 + Wszystko +
Wormwood Scrubs parkrun21118:00 + Wszystko +
Roundshaw Downs parkrun23318:14 + Wszystko +
Mile End parkrun21116:53 + Wszystko +
Bevendean Down parkrun28923:21 + Wszystko +
Finsbury parkrun22217:15 + Wszystko +
Tooting Common parkrun2181819:14 + Wszystko +
Bedgebury Pinetum parkrun28921:24 + Wszystko +
Harrow parkrun25520:23 + Wszystko +
Netley Abbey parkrun21117:21 + Wszystko +
Ellenbrook Fields parkrun2141519:58 + Wszystko +
Worthing parkrun28918:44 Wszystko - Graph It!
Kingston parkrun351100:16:51 +
Grovelands parkrun, Enfield22217:21 Wszystko - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Beckton parkrun23317:24 Wszystko - Graph It!
Richmond parkrun71100:17:13 +
Gladstone parkrun21117:09 Wszystko - Graph It!
Nonsuch parkrun71100:16:52 +
Hackney Marshes parkrun22216:46 Wszystko - Graph It!
Crane Park parkrun61100:16:48 +
Burgess parkrun22216:45 Wszystko - Graph It!
Brighton & Hove parkrun31100:16:27 +
Orpington parkrun22217:27 Wszystko - Graph It!
Fulham Palace parkrun33300:17:47 +
Barking parkrun22216:45 Wszystko - Graph It!
Frimley Lodge parkrun31100:17:11 +
Southampton parkrun23316:44 Wszystko - Graph It!
Gunnersbury parkrun31100:16:51 +
Alice Holt parkrun21117:59 Wszystko - Graph It!
Bexley parkrun31100:17:48 +
Woodley parkrun21117:02 Wszystko - Graph It!
Tilgate parkrun31100:17:10 +
Upton Court parkrun22217:24 Wszystko - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Chelmsford Central parkrun22217:24 Wszystko - Graph It!
Southwark parkrun34400:17:27 +
Mole Valley parkrun2262622:56 Wszystko - Graph It!
Basingstoke parkrun35500:17:48 +
Durlston Country Park parkrun2355032:45 Wszystko - Graph It!
Hilly Fields parkrun31100:17:50 +
Hazelwood parkrun2182222:21 Wszystko - Graph It!
Black Park parkrun31100:17:25 +
Southsea parkrun23317:55 Wszystko - Graph It!
Riddlesdown parkrun32200:17:01 +
St Albans parkrun21116:37 Wszystko - Graph It!
Dulwich parkrun33300:17:11 +
Havant parkrun21117:46 Wszystko - Graph It!
Guildford parkrun31100:17:17 +
Ashford parkrun22217:57 Wszystko - Graph It!
Old Deer Park parkrun31100:17:41 +
Bedford parkrun21116:55 Wszystko - Graph It!
Wimbledon Common parkrun35500:17:27 +
Margate parkrun21118:16 Wszystko - Graph It!
Homewood parkrun3151700:22:21 +
Milton Keynes parkrun23317:26 Wszystko - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Preston Park parkrun, Brighton22217:40 Wszystko - Graph It!
Pymmes parkrun21100:17:06 +
Shorne Woods parkrun21118:14 Wszystko - Graph It!
Hove Promenade parkrun27700:19:23 +
Canons Park parkrun27720:50 Wszystko - Graph It!
Netley Abbey parkrun21100:17:21 +
Osterley parkrun21117:57 Wszystko - Graph It!
Mile End parkrun21100:16:53 +
Eastleigh parkrun27719:14 Wszystko - Graph It!
Southampton parkrun23300:16:44 +
Brooklands parkrun2394223:22 Wszystko - Graph It!
Northala Fields parkrun22200:18:06 +
Great Lines parkrun, Medway25518:25 Wszystko - Graph It!
Hockley Woods parkrun26600:21:09 +
Malling Rec parkrun2738526:59 Wszystko - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Crystal Palace parkrun21117:24 Wszystko - Graph It!
Upton Court parkrun22200:17:24 +
Northala Fields parkrun22218:06 Wszystko - Graph It!
Alice Holt parkrun21100:17:59 +
Northampton parkrun21116:56 Wszystko - Graph It!
Osterley parkrun21100:17:57 +
Oak Hill parkrun21117:13 Wszystko - Graph It!
Burgess parkrun22200:16:45 +
Lloyd parkrun, Croydon21118:01 Wszystko - Graph It!
Gladstone parkrun21100:17:09 +
Newbury parkrun21117:20 Wszystko - Graph It!
Havant parkrun21100:17:46 +
Cranleigh parkrun26620:49 Wszystko - Graph It!
Cranleigh parkrun26600:20:49 +
Littlehampton Prom parkrun2384324:22 Wszystko - Graph It!
Finsbury parkrun22200:17:15 +
Whitstable parkrun23318:12 Wszystko - Graph It!
Southsea parkrun23300:17:55 +
Bethlem Royal Hospital parkrun2263223:22 Wszystko - Graph It!
Margate parkrun21100:18:16 +
Cyclopark parkrun2353824:01 Wszystko - Graph It!
Northampton parkrun21100:16:56 +
Hockley Woods parkrun26621:09 Wszystko - Graph It!
Roundshaw Downs parkrun23300:18:14 +
South Oxhey parkrun21119:13 Wszystko - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Pymmes parkrun21117:06 Wszystko - Graph It!
Crystal Palace parkrun21100:17:24 +
Hastings parkrun291120:41 Wszystko - Graph It!
Eastleigh parkrun27700:19:14 +
Medina I.O.W. parkrun11117:20 Wszystko - Graph It!
Hastings parkrun291100:20:41 +
Uditore parkrun13320:28 Wszystko - Graph It!
Banstead Woods parkrun21100:17:31 +
Hunstanton Promenade parkrun1283523:45 Wszystko - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Raphael parkrun13319:35 Wszystko - Graph It!
Hackney Marshes parkrun22200:16:46 +
Burnham and Highbridge parkrun17510027:51 Wszystko - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Salcey Forest parkrun1384324:53 Wszystko - Graph It!
Woodley parkrun21100:17:02 +
Ferry Meadows parkrun15517:27 Wszystko - Graph It!
Tooting Common parkrun2181800:19:14 +
Barclay parkrun15623:13 Wszystko - Graph It!
Milton Keynes parkrun23300:17:26 +
Irchester Country parkrun1586225:13 Wszystko - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Maldon Prom parkrun11118:04 Wszystko - Graph It!
Barking parkrun22200:16:45 +
Salisbury parkrun1111119:34 Wszystko - Graph It!
Canons Park parkrun27700:20:50 +
Tremorfa parkrun1272923:30 Wszystko - Graph It!
Newbury parkrun21100:17:20 +
Billericay parkrun1121321:20 Wszystko - Graph It!
Shorne Woods parkrun21100:18:14 +
Gedling parkrun1273224:59 Wszystko - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Oaklands parkrun111820336:10 Wszystko - Graph It!
Mole Valley parkrun2262600:22:56 +
Winchester parkrun14518:28 Wszystko - Graph It!
Oak Hill parkrun21100:17:13 +
Aldenham parkrun1141421:37 Wszystko - Graph It!
Cyclopark parkrun2353800:24:01 +
East Park parkrun1121424:18 Wszystko - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Soham Village College parkrun1253228:03 Wszystko - Graph It!
South Oxhey parkrun21100:19:13 +
Stevenage parkrun17719:32 Wszystko - Graph It!
Chelmsford Central parkrun22200:17:24 +
Tewkesbury parkrun1111422:50 Wszystko - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Seven Fields parkrun1475526:28 Wszystko - Graph It!
Bevendean Down parkrun28900:23:21 +
Conkers parkrun12217:46 Wszystko - Graph It!
Bedford parkrun21100:16:55 +
Lee-on-the-Solent parkrun17719:40 Wszystko - Graph It!
Whitstable parkrun23300:18:12 +
Brixworth Country parkrun1496126:53 Wszystko - Graph It!
Orpington parkrun22200:17:27 +
Abingdon parkrun15518:03 Wszystko - Graph It!
Ashford parkrun22200:17:57 +
Lowestoft parkrun1232621:10 Wszystko - Graph It!
Hazelwood parkrun2182200:22:21 +
Chipping Norton School parkrun1455126:40 Wszystko - Graph It!
Brooklands parkrun2394200:23:22 +
Linford Wood parkrun1222221:45 Wszystko - Graph It!
Wycombe Rye parkrun22200:17:17 +
Harwich parkrun191021:22 Wszystko - Graph It!
Harrow parkrun25500:20:23 +
Fulbourn Hospital parkrun1344724:59 Wszystko - Graph It!
Beckton parkrun23300:17:24 +
Gunpowder parkrun12217:34 Wszystko - Graph It!
St Albans parkrun21100:16:37 +
Dartford Heath parkrun1171722:06 Wszystko - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Sandhurst Memorial parkrun1537328:54 Wszystko -  
Buckingham parkrun12200:18:37 +
Woodhouse Moor parkrun11117:22 Wszystko -  
Thomas Mills parkrun1486500:30:19 +
Sandwell Valley parkrun1455930:43 Wszystko -  
Leamington parkrun12200:18:52 +
Wyre Forest parkrun1434825:56 Wszystko -  
Church Mead parkrun16610200:32:53 +
parkrun Zalew Żyrardowski16724:38 Wszystko -  
Letchworth parkrun1141400:23:13 +
Bramhall parkrun115924735:16 Wszystko -  
Mulbarton parkrun12200:19:55 +
Hatfield Forest parkrun1181820:36 Wszystko -  
Arrow Valley parkrun13300:18:05 +
Swansea Bay parkrun1748323:44 Wszystko -  
Frogmary Green Farm parkrun1597200:25:58 +
Wollaton Hall parkrun1889723:51 Wszystko -  
Sutton Park parkrun1475500:24:54 +
Horsham parkrun14518:16 Wszystko -  
Reigate Priory parkrun16600:19:06 +
Jersey parkrun16619:41 Wszystko -  
Bury St Edmunds parkrun13300:18:17 +
Berkeley Green parkrun1233128:31 Wszystko -  
Pollok parkrun, Glasgow11100:17:00 +
Cardiff parkrun111011722:02 Wszystko -  
Kingdom parkrun1222500:24:39 +
Ally Pally parkrun11118:09 Wszystko -  
Barclay parkrun15600:23:13 +
Thurrock parkrun, Orsett Heath16620:41 Wszystko -  
Chippenham parkrun1212100:20:08 +
Beacon parkrun1587326:41 Wszystko -  
Ipswich parkrun11100:17:34 +
Albert parkrun, Middlesbrough1515423:17 Wszystko -  
Itchen Valley Country parkrun1476100:27:37 +
Sherwood Pines parkrun1161821:33 Wszystko -  
Neckarau parkrun1243000:27:11 +
Wickford Memorial parkrun1436651:15 Wszystko -  
Brandon Country Park parkrun11100:18:30 +
Thornbury parkrun1323428:19 Wszystko -  
Boston parkrun17700:21:18 +
Malling parkrun18314547:25 Wszystko -  
University Parks parkrun119032600:31:42 +
Itchen Valley Country parkrun1476127:37 Wszystko -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Pollok parkrun, Glasgow11117:00 Wszystko -  
Lullingstone parkrun17700:21:21 +
Eastville parkrun120525325:12 Wszystko -  
Coventry parkrun1292900:20:51 +
Rutland Water parkrun1293022:44 Wszystko -  
Berkeley Green parkrun1233100:28:31 +
Chalkwell Beach parkrun1819624:40 Wszystko -  
Mersea Island parkrun1121200:20:59 +
Amager Fælled parkrun1333724:23 Wszystko -  
Aylesbury parkrun11100:17:51 +
Hoblingwell parkrun1202423:52 Wszystko -  
Royal Tunbridge Wells parkrun18900:19:23 +
Belton House parkrun1141523:48 Wszystko -  
Southall parkrun1557500:31:38 +
Kagerzoom parkrun1435824:39 Wszystko -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Gorleston Cliffs parkrun12217:43 Wszystko -  
Pomphrey Hill parkrun1364100:23:02 +
King’s Lynn parkrun1151520:07 Wszystko -  
Henley-on-Thames parkrun1111100:22:25 +
Holkham parkrun1506925:37 Wszystko -  
Aachener Weiher parkrun1101100:24:55 +
Horspath parkrun17410628:12 Wszystko -  
Penrose parkrun1151600:19:40 +
Southwick Country parkrun1272921:47 Wszystko -  
King’s Lynn parkrun1151500:20:07 +
Rushmere parkrun1131422:39 Wszystko -  
Fulbourn Hospital parkrun1344700:24:59 +
Zuiderpark parkrun, Den Haag1738124:07 Wszystko -  
Fareham parkrun16600:19:21 +
Heaton parkrun13318:08 Wszystko -  
Brockenhurst parkrun13300:18:23 +
Colney Lane parkrun1495524:01 Wszystko -  
Canterbury parkrun16600:21:56 +
Leicester Victoria parkrun19711626:45 Wszystko -  
Alton Water parkrun1538300:35:09 +
Church Mead parkrun16610232:53 Wszystko -  
Littleport parkrun1445100:25:16 +
Southend parkrun11116:28 Wszystko -  
Newport parkrun11100:17:29 +
Lydney parkrun1202123:19 Wszystko -  
California Country parkrun1649000:28:49 +
Edgbaston Reservoir parkrun1658626:24 Wszystko -  
Thornbury parkrun1323400:28:19 +
Reading parkrun12217:18 Wszystko -  
Greenwich parkrun12200:18:07 +
March parkrun15521:11 Wszystko -  
Seven Fields parkrun1475500:26:28 +
Woodgate Valley Country Park parkrun16513245:50 Wszystko -  
Highbury Fields parkrun11100:17:25 +
Maaraue parkrun1232522:34 Wszystko -  
The Great Field parkrun19313500:29:12 +
Stonehouse parkrun1131320:09 Wszystko -  
Street parkrun1283500:25:52 +
Rheinpark parkrun1151825:30 Wszystko -  
South Norwood parkrun1121200:21:11 +
Edinburgh parkrun12217:00 Wszystko -  
Dunstable Downs parkrun1374300:24:58 +
Chippenham parkrun1212120:08 Wszystko -  
Melton Mowbray parkrun1192200:22:38 +
Stratford-upon-Avon parkrun1202521:14 Wszystko -  
Horsham parkrun14500:18:16 +
Henlow Bridge Lakes parkrun17511532:34 Wszystko -  
Irchester Country parkrun1586200:25:13 +
Bromley parkrun13317:18 Wszystko -  
Stratford-upon-Avon parkrun1202500:21:14 +
Houghton Hall parkrun1131321:48 Wszystko -  
Wotton parkrun1182100:24:45 +
Sittingbourne parkrun18820:56 Wszystko -  
Bath Skyline parkrun1192000:21:08 +
Sharpham Road Playing Fields parkrun1253124:41 Wszystko -  
Great Dunmow parkrun14400:20:25 +
Gadebridge parkrun1141422:22 Wszystko -  
Corby parkrun18800:23:09 +
Chilton Fields parkrun1405428:26 Wszystko -  
Bracknell parkrun18800:20:04 +
Storeys Field parkrun115121128:49 Wszystko -  
Cromhall parkrun1151600:24:20 +
Hadleigh parkrun, Essex1252624:27 Wszystko -  
Perry Hall parkrun1464900:24:58 +
Marple parkrun11117:15 Wszystko -  
Gunpowder parkrun12200:17:34 +
Portsmouth Lakeside parkrun19919:12 Wszystko -  
Luton Wardown parkrun191000:19:36 +
Grove Fields parkrun1578528:03 Wszystko -  
Ifield Mill Pond parkrun1373800:24:33 +
Banbury parkrun1222321:16 Wszystko -  
March parkrun15500:21:11 +
Graves parkrun11118:18 Wszystko -  
Roding Valley parkrun1111300:21:26 +
Watermead Country Park parkrun110818235:52 Wszystko -  
Charlton parkrun18213000:32:05 +
Eastbourne parkrun12217:24 Wszystko -  
Malmö Ribersborg parkrun111215100:28:46 +
Malahide parkrun11116:54 Wszystko -  
Worcester parkrun114418500:29:30 +
Fareham parkrun16619:21 Wszystko -  
Wolford Wood parkrun1212700:30:24 +
Sutcliffe parkrun113117230:34 Wszystko -  
Fire Service College parkrun1181900:22:12 +
Fritton Lake parkrun11118:26 Wszystko -  
Panshanger parkrun17700:20:14 +
Bicester parkrun14420:13 Wszystko -  
Conkers parkrun12200:17:46 +
Sandringham parkrun1466330:18 Wszystko -  
Banbury parkrun1222300:21:16 +
Luton Wardown parkrun191019:36 Wszystko -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Cwmbran parkrun1171723:29 Wszystko -  
Rushmere parkrun1131400:22:39 +
Broadwater parkrun110321335:19 Wszystko -  
Whiteley parkrun1141500:20:56 +
Basildon parkrun15518:13 Wszystko -  
Sandringham parkrun1466300:30:18 +
Marecchia parkrun11119:50 Wszystko -  
Victoria Dock parkrun1283000:20:04 +
Harleston Magpies parkrun1293525:12 Wszystko -  
Queen Elizabeth parkrun12200:19:08 +
Kingsway parkrun, Gloucester1192021:20 Wszystko -  
Lordship Recreation Ground parkrun19112400:25:22 +
Bryn Bach parkrun11116:50 Wszystko -  
Somerdale Pavilion parkrun1384600:31:17 +
Mersea Island parkrun1121220:59 Wszystko -  
Dartford parkrun11100:17:59 +
Charlton parkrun18213032:05 Wszystko -  
Winchester parkrun14500:18:28 +
parkrun de Rouen15521:41 Wszystko -  
Stratford Park parkrun, Stroud1566500:27:51 +
Dallas Burston Polo Club parkrun19614732:26 Wszystko -  
Sherwood Pines parkrun1161800:21:33 +
Ashton Court parkrun1859522:59 Wszystko -  
Grove Fields parkrun1578500:28:03 +
Tøyen parkrun1668526:32 Wszystko -  
Witney parkrun1202000:22:34 +
The Great Field parkrun19313529:12 Wszystko -  
Preston Park parkrun, Brighton12200:17:40 +
Castle Park parkrun1394122:34 Wszystko -  
Colchester Castle parkrun14400:18:04 +
Swanley parkrun19712531:18 Wszystko -  
Tidworth parkrun110815500:35:14 +
Greenwich parkrun12218:07 Wszystko -  
Walmer and Deal Seafront parkrun18800:21:38 +
Neckarau parkrun1243027:11 Wszystko -  
Ferry Meadows parkrun15500:17:27 +
Bury Field parkrun1669033:07 Wszystko -  
St Mary’s parkrun1587400:29:14 +
Clifton parkrun1101025:14 Wszystko -  
Dartford Heath parkrun1171700:22:06 +
Alton Water parkrun1538335:09 Wszystko -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Colwick parkrun18819:46 Wszystko -  
Great Denham parkrun16600:19:27 +
Melksham parkrun1171724:31 Wszystko -  
Hastings High School parkrun1637800:27:33 +
Markshall Estate parkrun110315632:26 Wszystko -  
Wendover Woods parkrun1262600:23:51 +
Rogiet parkrun1151624:27 Wszystko -  
Peckham Rye parkrun11100:17:49 +
Bartley Park parkrun18415132:38 Wszystko -  
Upton House parkrun1252700:22:34 +
Lydiard parkrun18818:25 Wszystko -  
Lee-on-the-Solent parkrun17700:19:40 +
Little Stoke parkrun11117:03 Wszystko -  
Graves parkrun11100:18:18 +
Letchworth parkrun1141423:13 Wszystko -  
Maidstone parkrun13300:18:00 +
Belvoir Castle parkrun1131925:42 Wszystko -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Andover parkrun11117:33 Wszystko -  
South Woodham Ferrers parkrun18800:21:14 +
Rushcliffe parkrun1617323:54 Wszystko -  
Pontypridd parkrun12200:17:54 +
Cirencester parkrun1222422:40 Wszystko -  
Bournemouth parkrun14400:17:43 +
Southall parkrun1557531:38 Wszystko -  
Sizewell parkrun1172000:23:30 +
Forest of Dean parkrun1182224:51 Wszystko -  
Rushmoor parkrun19900:18:29 +
parkrun des Dougnes, Cubnezais12219:42 Wszystko -  
Walsall Arboretum parkrun19810600:25:31 +
South Woodham Ferrers parkrun18821:14 Wszystko -  
Gorleston Cliffs parkrun12200:17:43 +
Marine Parade parkrun17711129:24 Wszystko -  
Uckfield parkrun1404300:24:12 +
Coventry parkrun1292920:51 Wszystko -  
Aldenham parkrun1141400:21:37 +
Wotton parkrun1182124:45 Wszystko -  
Gadebridge parkrun1141400:22:22 +
Gloucester City parkrun1171922:35 Wszystko -  
Horspath parkrun17410600:28:12 +
Great Salterns parkrun19212430:27 Wszystko -  
Rogiet parkrun1151600:24:27 +
Bedworth parkrun1171722:14 Wszystko -  
Rendlesham Forest parkrun1264600:37:01 +
University Parks parkrun119032631:42 Wszystko -  
Dishley parkrun, Loughborough110311400:24:30 +
Hampstead Heath parkrun11117:45 Wszystko -  
Great Cornard parkrun1192000:20:33 +
Great Denham parkrun16619:27 Wszystko -  
Kettering parkrun1232600:22:50 +
Downham Market Academy parkrun1121324:35 Wszystko -  
Pont y Bala parkrun15700:23:18 +
Ipswich parkrun11117:34 Wszystko -  
Burnham and Highbridge parkrun17510000:27:51 +
Sixfields Upton parkrun18819:58 Wszystko -  
Stonehouse parkrun1131300:20:09 +
Rendlesham Forest parkrun1264637:01 Wszystko -  
Hampstead Heath parkrun11100:17:45 +
Frogmary Green Farm parkrun1597225:58 Wszystko -  
Wickford Memorial parkrun1436600:51:15 +
Harrow Lodge parkrun11118:48 Wszystko -  
Castle Park parkrun1394100:22:34 +
Witney parkrun1202022:34 Wszystko -  
Huntingdon parkrun1202100:21:10 +
Leamington parkrun12218:52 Wszystko -  
Great Salterns parkrun19212400:30:27 +
Brockenhurst parkrun13318:23 Wszystko -  
Snowden Field parkrun1242600:24:15 +
Hogmoor Inclosure parkrun1262625:26 Wszystko -  
Southend parkrun11100:16:28 +
Hastings High School parkrun1637827:33 Wszystko -  
Andover parkrun11100:17:33 +
Cannock Chase parkrun1384425:49 Wszystko -  
parkrun Zalew Żyrardowski16700:24:38 +
Wimpole Estate parkrun1202122:14 Wszystko -  
Marecchia parkrun11100:19:50 +
Haverhill parkrun1121323:32 Wszystko -  
Cheltenham parkrun12200:17:24 +
Edenbrook Country parkrun110514828:01 Wszystko -  
St Helens parkrun1606800:24:27 +
Maidstone River Park parkrun13318:00 Wszystko -  
Bartley Park parkrun18415100:32:38 +
Cheltenham parkrun12217:24 Wszystko -  
Severn Bridge parkrun1353900:21:32 +
Victoria Dock parkrun1273020:04 Wszystko -  
Pontypool parkrun1232300:23:51 +
Ekebergsletta parkrun1304325:57 Wszystko -  
Poole parkrun14400:16:57 +
Oxford parkrun11117:18 Wszystko -  
Bramhall parkrun115924700:35:16 +
Aylesbury parkrun11117:51 Wszystko -  
Sunny Hill parkrun1202400:24:39 +
Mote Park parkrun19712231:28 Wszystko -  
Cassiobury parkrun1111100:20:14 +
Riverfront parkrun1404622:57 Wszystko -  
Hoblingwell parkrun1202400:23:52 +
Newent parkrun1182225:27 Wszystko -  
Colwick parkrun18800:19:46 +
Clapham Common parkrun1404220:22 Wszystko -  
Chipping Norton School parkrun1455100:26:40 +
Llanishen Park parkrun1303323:48 Wszystko -  
Worthing parkrun18900:18:44 +
Heartwood Forest parkrun1252721:41 Wszystko -  
Harrow Lodge parkrun11100:18:48 +
Walthamstow parkrun11117:48 Wszystko -  
Bradford parkrun1313600:21:55 +
Malmö Ribersborg parkrun111215128:46 Wszystko -  
Bury Field parkrun1669000:33:07 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 Wszystko -  
Pocket parkrun1222300:21:38 +
Huntingdon parkrun1202121:10 Wszystko -  
Longrun Meadow parkrun111416500:32:01 +
Felixstowe parkrun1121221:07 Wszystko -  
Worcester Pitchcroft parkrun111814300:27:04 +
Tidworth parkrun110815535:14 Wszystko -  
Highwoods parkrun1252600:24:49 +
Brandon Country Park parkrun11118:30 Wszystko -  
Maidenhead parkrun17700:18:49 +
Prospect parkrun1232322:42 Wszystko -  
Soham Village College parkrun1253200:28:03 +
Mildenhall Hub parkrun1273124:33 Wszystko -  
Rickmansworth parkrun1242700:21:39 +
York parkrun12217:12 Wszystko -  
Swaffham parkrun191000:22:19 +
Thetford parkrun1161721:45 Wszystko -  
Brentwood parkrun17700:22:28 +
Great Dunmow parkrun14420:25 Wszystko -  
Lymington Woodside parkrun15700:21:59 +
Leavesden Country parkrun1506928:32 Wszystko -  
Loch Neaton parkrun, Watton1171700:25:49 +
Catford parkrun1303322:32 Wszystko -  
Daventry parkrun1151500:21:10 +
Lordship Recreation Ground parkrun19112425:22 Wszystko -  
Hatfield Forest parkrun1181800:20:36 +
Rugby parkrun1181822:26 Wszystko -  
Kingsway parkrun, Gloucester1192000:21:20 +
Mulbarton parkrun12219:55 Wszystko -  
Salcey Forest parkrun1384300:24:53 +
Swaffham parkrun191022:19 Wszystko -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Ganger Farm parkrun19811426:34 Wszystko -  
Prospect parkrun1232300:22:42 +
Beckenham Place parkrun1121220:28 Wszystko -  
Weymouth parkrun1141400:20:45 +
Forest Rec parkrun1677626:35 Wszystko -  
Westmill parkrun1101000:22:55 +
Street parkrun1283525:52 Wszystko -  
East Brighton parkrun1182100:23:56 +
Market Bosworth Country Park parkrun110614435:35 Wszystko -  
Harlow parkrun1151500:23:00 +
Whiteley parkrun1141520:56 Wszystko -  
Linford Wood parkrun1222200:21:45 +
Kingsbury Water parkrun1394725:05 Wszystko -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Springhill parkrun14422:18 Wszystko -  
Lydney parkrun1202100:23:19 +
Wolford Wood parkrun1212730:24 Wszystko -  
Braunstone parkrun1262700:20:41 +
Pontypridd parkrun12217:54 Wszystko -  
Harleston Magpies parkrun1293500:25:12 +
Pocket parkrun1222321:38 Wszystko -  
Clapham Common parkrun1404200:20:22 +
Stockley Country parkrun111917935:32 Wszystko -  
Market Bosworth Country Park parkrun110614400:35:35 +
Braunstone parkrun1262720:41 Wszystko -  
Jersey Farm parkrun1252700:23:11 +
Didcot parkrun1101121:28 Wszystko -  
Kesgrave parkrun1374000:21:18 +
Littleport parkrun1445125:16 Wszystko -  
Stevenage parkrun17700:19:32 +
Yarborough Leisure Centre parkrun1466125:59 Wszystko -  
Hadleigh parkrun, Essex1252600:24:27 +
Roding Valley parkrun1111321:26 Wszystko -  
Squerryes Winery parkrun1323600:27:45 +
Clair parkrun13318:36 Wszystko -  
Rutland Water parkrun1293000:22:44 +
Dinton Pastures parkrun1131321:23 Wszystko -  
Beckenham Place parkrun1121200:20:28 +
Beacon Hill Country Park parkrun1273725:54 Wszystko -  
Sutcliffe parkrun113117200:30:34 +
Severn Bridge parkrun1353921:32 Wszystko -  
Haverhill parkrun1121300:23:32 +
Abbey Park parkrun1779425:21 Wszystko -  
Leavesden Country parkrun1506900:28:32 +
Dudley parkrun1445626:35 Wszystko -  
Coldham’s Common parkrun1535900:23:04 +
Pegwell Bay parkrun12217:40 Wszystko -  
Chichester parkrun13300:19:05 +
Manor Field parkrun, Whittlesey1121324:25 Wszystko -  
Billericay parkrun1121300:21:20 +
Blaise Castle parkrun112816326:20 Wszystko -  
Bromley parkrun13300:17:18 +
Chipping Sodbury parkrun1303221:20 Wszystko -  
Babbs Mill parkrun1405100:28:00 +
Foots Cray Meadows parkrun1212323:17 Wszystko -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Thames Path parkrun, Woolwich1789023:42 Wszystko -  
Bryn Bach parkrun11100:16:50 +
Bath Skyline parkrun1192021:08 Wszystko -  
York parkrun12200:17:12 +
Dishley parkrun, Loughborough110311424:30 Wszystko -  
Storeys Field parkrun115121100:28:49 +
Thornham Walks parkrun1363826:52 Wszystko -  
Chipping Sodbury parkrun1303200:21:20 +
Moors Valley parkrun19919:40 Wszystko -  
Mote Park parkrun19712200:31:28 +
East Grinstead parkrun1131423:10 Wszystko -  
Watermeadows parkrun1283100:24:57 +
Sutton Park parkrun1475524:54 Wszystko -  
Woking parkrun18800:18:19 +
University of Northampton parkrun1192223:24 Wszystko -  
Raphael parkrun13300:19:35 +
Shipley Country parkrun1232424:45 Wszystko -  
Harwich parkrun191000:21:22 +
Lancing Beach Green parkrun1141421:08 Wszystko -  
Fritton Lake parkrun11100:18:26 +
Dover Waterfront parkrun1374525:22 Wszystko -  
Heartwood Forest parkrun1252700:21:41 +
Rickmansworth parkrun1242721:39 Wszystko -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Queen Elizabeth parkrun12219:08 Wszystko -  
Bedworth parkrun1171700:22:14 +
Sizewell parkrun1172023:30 Wszystko -  
Clair parkrun13300:18:36 +
Holbrooks parkrun1202223:43 Wszystko -  
Brueton parkrun1475000:21:33 +
Highbury Fields parkrun11117:25 Wszystko -  
Higginson parkrun, Marlow1272900:22:17 +
Clacton Seafront parkrun19920:35 Wszystko -  
Bognor Regis parkrun12200:18:12 +
Delaware and Raritan Canal parkrun12221:06 Wszystko -  
Huddersfield parkrun1626700:22:02 +
Wisbech parkrun1111523:03 Wszystko -  
Heaton parkrun13300:18:08 +
Milton Country parkrun13317:43 Wszystko -  
Chasewater parkrun18210000:26:19 +
Seaton parkrun1394824:09 Wszystko -  
Tewkesbury parkrun1111400:22:50 +
Higginson parkrun, Marlow1272922:17 Wszystko -  
Marple parkrun11100:17:15 +
Quakers Walk parkrun1566825:05 Wszystko -  
Cannock Chase parkrun1384400:25:49 +
Lister Park parkrun, Bradford1313621:55 Wszystko -  
Edgbaston Reservoir parkrun1658600:26:24 +
Wendover Woods parkrun1262623:51 Wszystko -  
Cirencester parkrun1222400:22:40 +
Sence Valley Forest Park parkrun1232526:28 Wszystko -  
Kingsbury Water parkrun1394700:25:05 +
Canterbury parkrun16621:56 Wszystko -  
Peacehaven parkrun17700:21:07 +
Henstridge Airfield parkrun18821:41 Wszystko -  
Lancing Beach Green parkrun1141400:21:08 +
Five Arches parkrun1455422:58 Wszystko -  
Springburn parkrun, Glasgow13300:18:05 +
Yeovil Montacute parkrun1707525:51 Wszystko -  
Market Harborough parkrun1303100:21:17 +
Watermeadows parkrun1283124:57 Wszystko -  
Amager Fælled parkrun1333700:24:23 +
Tamworth Castle Grounds parkrun1333523:26 Wszystko -  
Hanworth parkrun1364000:24:26 +
St Helens parkrun1606824:27 Wszystko -  
Salisbury parkrun1111100:19:34 +
Weymouth parkrun1141420:45 Wszystko -  
Houghton Hall parkrun1131300:21:48 +
Walmer and Deal Seafront parkrun18821:38 Wszystko -  
Chalkwell Beach parkrun1819600:24:40 +
Aston Hall parkrun1202225:01 Wszystko -  
Melksham parkrun1171700:24:31 +
Royal Tunbridge Wells parkrun18919:23 Wszystko -  
Thetford parkrun1161700:21:45 +
Corby parkrun18823:09 Wszystko -  
Pontefract parkrun1718700:24:10 +
Marlborough Common parkrun1202122:48 Wszystko -  
Downham Market Academy parkrun1121300:24:35 +
Battlestead Croft parkrun1111122:53 Wszystko -  
Fountains Abbey parkrun11100:18:03 +
Shepton Mallet parkrun1121421:50 Wszystko -  
Cardiff parkrun111011700:22:02 +
Clare Castle parkrun1252723:04 Wszystko -  
Littlehampton Prom parkrun1384300:24:22 +
Coldham’s Common parkrun1535923:04 Wszystko -  
Uditore parkrun13300:20:28 +
Brunswick Park parkrun1212223:58 Wszystko -  
Beacon parkrun1587300:26:41 +
Brentwood parkrun17722:28 Wszystko -  
parkrun de Rouen15500:21:41 +
Somerdale Pavilion parkrun1384631:17 Wszystko -  
Walthamstow parkrun11100:17:48 +
Wakehurst parkrun18810525:00 Wszystko -  
Shepton Mallet parkrun1121400:21:50 +
Boston parkrun17721:18 Wszystko -  
Marine Parade parkrun17711100:29:24 +
Morden parkrun111715526:58 Wszystko -  
Foots Cray Meadows parkrun1212300:23:17 +
Pontefract parkrun1718724:10 Wszystko -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Jersey Farm parkrun1252723:11 Wszystko -  
Evesham parkrun1111100:21:39 +
Bug Hunter Waters parkrun1455022:41 Wszystko -  
Southwick Country parkrun1272900:21:47 +
Rosliston parkrun1333624:41 Wszystko -  
Lydiard parkrun18800:18:25 +
Longrun Meadow parkrun111416532:01 Wszystko -  
Sandhurst Memorial parkrun1537300:28:54 +
Fire Service College parkrun1181922:12 Wszystko -  
Bicester parkrun14400:20:13 +
Woolacombe Dunes parkrun19410931:20 Wszystko -  
Wimpole Estate parkrun1202100:22:14 +
The Plens parkrun1303124:04 Wszystko -  
Markshall Estate parkrun110315600:32:26 +
Arrow Valley parkrun13318:05 Wszystko -  
Dinton Pastures parkrun1131300:21:23 +
Tonbridge parkrun14418:40 Wszystko -  
Tonbridge parkrun14400:18:40 +
East Brighton parkrun1182123:56 Wszystko -  
Wanstead Flats parkrun13300:17:13 +
Three Brooks parkrun1697223:46 Wszystko -  
Woodhouse Moor parkrun11100:17:22 +
Peacehaven parkrun17721:07 Wszystko -  
Mountbatten School parkrun1323400:24:11 +
Pontypool parkrun1232323:51 Wszystko -  
Eastville parkrun120525300:25:12 +
Cromhall parkrun1151624:20 Wszystko -  
Brixworth Country parkrun1496100:26:53 +
Dereham parkrun1323323:47 Wszystko -  
Portsmouth Lakeside parkrun19900:19:12 +
Bournemouth parkrun14417:43 Wszystko -  
Milton Country parkrun13300:17:43 +
Pomphrey Hill parkrun1364123:02 Wszystko -  
Swanley parkrun19712500:31:18 +
Seaford Beach parkrun1535622:25 Wszystko -  
Springhill parkrun14400:22:18 +
Mansfield parkrun11117:09 Wszystko -  
Gloucester North parkrun1101000:22:14 +
Fountains Abbey parkrun11118:03 Wszystko -  
Feltham parkrun13400:24:56 +
Loch Neaton parkrun, Watton1171725:49 Wszystko -  
Crissy Field parkrun1101200:20:40 +
Brueton parkrun1475021:33 Wszystko -  
Ally Pally parkrun11100:18:09 +
Great Cornard parkrun1192020:33 Wszystko -  
Ashton Court parkrun1859500:22:59 +
Dunstable Downs parkrun1374324:58 Wszystko -  
Oaklands parkrun111820300:36:10 +
Beeston parkrun1374023:53 Wszystko -  
Sittingbourne parkrun18800:20:56 +
Feltham parkrun13424:56 Wszystko -  
Moors Valley parkrun19900:19:40 +
Markeaton parkrun1576422:56 Wszystko -  
Catford parkrun1303300:22:32 +
Reigate Priory parkrun16619:06 Wszystko -  
Clare Castle parkrun1252700:23:04 +
Highwoods parkrun1252624:49 Wszystko -  
Harrogate parkrun13300:18:11 +
Valentines parkrun11116:49 Wszystko -  
Seaford Beach parkrun1535600:22:25 +
Springburn parkrun, Glasgow13318:05 Wszystko -  
Tring parkrun1171800:23:38 +
California Country parkrun1649028:49 Wszystko -  
Sandwell Valley parkrun1455900:30:43 +
Rushmoor parkrun19918:29 Wszystko -  
Basildon parkrun15500:18:13 +
Mountbatten School parkrun1323424:11 Wszystko -  
The Leas parkrun, Minster1252500:24:37 +
Colchester Castle parkrun14418:04 Wszystko -  
Little Stoke parkrun11100:17:03 +
Buckingham parkrun12218:37 Wszystko -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Sunny Hill parkrun1202424:39 Wszystko -  
Felixstowe parkrun1121200:21:07 +
Bognor Regis parkrun12218:12 Wszystko -  
Yeovil Montacute parkrun1707500:25:51 +
Aachener Weiher parkrun1101124:55 Wszystko -  
Stockley Country parkrun111917900:35:32 +
Peckham Rye parkrun11117:49 Wszystko -  
Woolacombe Dunes parkrun19410900:31:20 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 Wszystko -  
Harcourt Hill parkrun1171700:21:13 +
Great Notley parkrun16620:16 Wszystko -  
Abingdon parkrun15500:18:03 +
Snowden Field parkrun1242624:15 Wszystko -  
Eastbourne parkrun12200:17:24 +
Burnham-on-Crouch parkrun18822:01 Wszystko -  
Warwick Racecourse parkrun1486000:24:55 +
Woking parkrun18818:19 Wszystko -  
Leicester Victoria parkrun19711600:26:45 +
Neckarufer parkrun, Esslingen1364425:12 Wszystko -  
Broadwater parkrun110321300:35:19 +
Worcester parkrun114418529:30 Wszystko -  
Clacton Seafront parkrun19900:20:35 +
Blandford parkrun18920:11 Wszystko -  
Burnham-on-Crouch parkrun18800:22:01 +
Pont y Bala parkrun15723:18 Wszystko -  
Ganger Farm parkrun19811400:26:34 +
Chichester parkrun13319:05 Wszystko -  
Folkestone parkrun1212500:21:48 +
Kingdom parkrun1222524:39 Wszystko -  
Mallards Pike parkrun1324600:30:57 +
Westmill parkrun1101022:55 Wszystko -  
Malling parkrun18314500:47:25 +
Dartford parkrun11117:59 Wszystko -  
Rugby parkrun1181800:22:26 +
Hanworth parkrun1364024:26 Wszystko -  
Watermead Country Park parkrun110818200:35:52 +
Bracknell parkrun18820:04 Wszystko -  
Hogmoor Inclosure parkrun1262600:25:26 +
Folkestone parkrun1212521:48 Wszystko -  
East Grinstead parkrun1131400:23:10 +
Uckfield parkrun1404324:12 Wszystko -  
Mildenhall Hub parkrun1273100:24:33 +
Harrogate parkrun13318:11 Wszystko -  
Marlborough Common parkrun1202100:22:48 +
Kesgrave parkrun1374021:18 Wszystko -  
Blandford parkrun18900:20:11 +
Thomas Mills parkrun1486530:19 Wszystko -  
Maldon Prom parkrun11100:18:04 +
Lymington Woodside parkrun15721:59 Wszystko -  
Edinburgh parkrun12200:17:00 +
Hereford parkrun1535323:07 Wszystko -  
The Old Showfield parkrun1636900:23:30 +
Chasewater parkrun18210026:19 Wszystko -  
Jersey parkrun16600:19:41 +
South Norwood parkrun1121221:11 Wszystko -  
Chilton Fields parkrun1405400:28:26 +
Panshanger parkrun17720:14 Wszystko -  
Sixfields Upton parkrun18800:19:58 +
Wolverhampton parkrun1556624:54 Wszystko -  
Pegwell Bay parkrun12200:17:40 +
Harcourt Hill parkrun1171721:13 Wszystko -  
Valentines parkrun11100:16:49 +
Tetbury Goods Shed parkrun1253024:25 Wszystko -  
Edenbrook Country parkrun110514800:28:01 +
Gloucester North parkrun1101022:14 Wszystko -  
Henstridge Airfield parkrun18800:21:41 +
Harlow parkrun1151523:00 Wszystko -  
Great Notley parkrun16600:20:16 +
Alvaston parkrun1515922:24 Wszystko -  
Medina I.O.W. parkrun11100:17:20 +
Worcester Pitchcroft parkrun111814327:04 Wszystko -  
Reading parkrun12200:17:18 +
Perry Hall parkrun1464924:58 Wszystko -  
Tetbury Goods Shed parkrun1253000:24:25 +
Newport parkrun11117:29 Wszystko -  
Lowestoft parkrun1232600:21:10 +
Tring parkrun1171823:38 Wszystko -  
Malahide parkrun11100:16:54 +
Severn Valley Country parkrun1141626:13 Wszystko -  
Oxford parkrun11100:17:18 +
Wanstead Flats parkrun13317:13 Wszystko -  
Rheinpark parkrun1151800:25:30 +
Daventry parkrun1151521:10 Wszystko -  
Gloucester City parkrun1171900:22:35 +
St Mary’s parkrun1587429:14 Wszystko -  
Didcot parkrun1101100:21:28 +
Poole parkrun14416:57 Wszystko -  
Mansfield parkrun11100:17:09 +
Melton Mowbray parkrun1192222:38 Wszystko -  
7851100:16:25 +
The Old Showfield parkrun1636923:30 + Wszystko +
Henley-on-Thames parkrun1111122:25 + Wszystko +
Crissy Field parkrun1101220:40 + Wszystko +
Babbs Mill parkrun1405128:00 + Wszystko +
Maidenhead parkrun17718:49 + Wszystko +
Ross-on-Wye parkrun1172124:22 + Wszystko +
Kettering parkrun1232622:50 + Wszystko +
Stratford Park parkrun, Stroud1566527:51 + Wszystko +
Bury St Edmunds parkrun13318:17 + Wszystko +
Mallards Pike parkrun1324630:57 + Wszystko +
Market Harborough parkrun1303121:17 + Wszystko +
Cassiobury parkrun1111120:14 + Wszystko +
Squerryes Winery parkrun1323627:45 + Wszystko +
Walsall Arboretum parkrun19010625:31 + Wszystko +
Penrose parkrun1151619:40 + Wszystko +
King George V Playing Field parkrun, Cheltenham1232826:08 + Wszystko +
Evesham parkrun1111121:39 + Wszystko +
Warwick Racecourse parkrun1486024:55 + Wszystko +
Huddersfield parkrun1626722:02 + Wszystko +
Clevedon Salthouse Fields parkrun1384925:13 + Wszystko +
Long Eaton parkrun19912124:06 + Wszystko +
Barry Island parkrun1394223:51 + Wszystko +
Ifield Mill Pond parkrun1373824:33 + Wszystko +
Upton House parkrun1252722:34 + Wszystko +
Lullingstone parkrun17721:21 + Wszystko +
The Leas parkrun, Minster1252524:37 + Wszystko +
8671116:25 Wszystko  


Podsumowanie wolontariatu

RolaLiczba
- Koordynator(ka) spotkania - 94
- Mierząc(a)y czas - 59
- Sortując(a)y tokeny - 3
- Wprowadzając(a)y wyniki - 87
- Fotograf - 6
- Komunikacja i promocja - 10
- Ubezpieczając(a)y trasę - 39
- Rozstawiając(a)y oznakowanie - 130
- Przechowując(a)y wyposażenie - 128
- Inne - 23
- Skanując(a)y uczestników - 55
- Zbierając(a)y oznakowanie - 45
- Wydając(a)y tokeny - 15
- Sprawdzając(a)y pozycje na mecie - 2
- Odprawa debiutantów - 68
- Koordynator tunelu mety - 15
- Pomocnik wydające(j)go tokeny - 9
- Zamykając(a)y stawkę - 29
- Koordynator wolontariuszy - 146
- Przygotowując(a)y raport - 97
- Mierząc(a)y czas (dodatkowy) - 3
- (nie dotyczy parkrun Polska) - 16
- Koordynator(ka) parkingu - 1
- Sprawdzając(a)y trasę - 8
- parkwalker - 9
Łączna liczba ról396

- Ta tabela przedstawia liczbę wolontariatów w ramach poszczególnych ról.
Łączna liczba wolontariatów może różnić się od liczby ról w przypadku, gdy w daną sobotę wykonywana była większa liczba ról.
Więcej informacji dostępnych jest
tutaj. + Koordynator(ka) spotkania +

99
+ Mierząc(a)y czas + 94
+ Sortując(a)y tokeny + 12
+ Wprowadzając(a)y wyniki + 87
+ Fotograf + 6
+ Komunikacja i promocja + 10
+ Ubezpieczając(a)y trasę + 54
+ Rozstawiając(a)y oznakowanie + 148
+ Przechowując(a)y wyposażenie + 130
+ Inne + 26
+ Skanując(a)y uczestników + 78
+ Zbierając(a)y oznakowanie + 51
+ Wydając(a)y tokeny + 21
+ Sprawdzając(a)y pozycje na mecie + 2
+ Odprawa debiutantów + 82
+ Koordynator tunelu mety + 15
+ Pomocnik wydające(j)go tokeny + 12
+ Zamykając(a)y stawkę + 29
+ Koordynator wolontariuszy + 148
+ Przygotowując(a)y raport + 100
+ Mierząc(a)y czas (dodatkowy) + 3
+ (nie dotyczy parkrun Polska) + 16
+ Koordynator(ka) parkingu + 1
+ Sprawdzając(a)y trasę + 14
+ parkwalker + 10
Łączna liczba ról499

+ Ta tabela przedstawia liczbę wolontariatów w ramach poszczególnych ról.
Łączna liczba wolontariatów może różnić się od liczby ról w przypadku, gdy w daną sobotę wykonywana była większa liczba ról.
Więcej informacji dostępnych jest tutaj.



parkrun Freedom

DataCzasLokalizacja
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


Edycje (nie)parkrun

TydzieńData początkowaData końcowaEdycje (nie)parkrunNajlepszy czas
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1023,78 +1136,61 @@

Danny NORMAN (A
- Liczba lokalizacji: 86 + Liczba lokalizacji: 97
- Liczba uczestników: 90 606 + Liczba uczestników: 120993
- Liczba ukończeń: 1 112 019 + Liczba ukończeń: 1512244
- Liczba edycji: 21 445 + Liczba edycji: 28595
- Liczba wolontariuszy: 15 582 + Liczba wolontariuszy: 20510
- Rekordy życiowe: 143 343 + Rekordy życiowe: 186898
- Średni czas: 00:27:57 + Średni czas: 00:28:47
- Średnia ukończonych edycji: 12,3 + Kluby/Grupy: 3350
-
- Kluby/Grupy: 2 785 -
-
-
- Rekord (K): - Monika ANDRZEJCZAK – 16:22 - (13 paź 2018) -
-
- Rekord (M): - Artur KOZŁOWSKI – 14:41 - ( 8 paź 2016) -
-
- Rekord Wsp. wieku: - Jane DAVIES - 99,12% 22:50 - (12 paź 2019) -
+

- Aktualizacja: pią, 14 kwi 2023, 00:41:02 + Aktualizacja: pon, 30 wrz 2024, 00:40:47
-

© parkrun Global Limited (Company number: 09411750)

Żadna część tej strony nie może być kopiowana, powielana, rozpowszechniana, publikowana, pobierana, prezentowana, wysyłana ani przesyłana w jakiejkolwiek formie czy za pomocą jakichkolwiek środków, w tym między innymi elektronicznych, mechanicznych, kopiujących, nagrywających lub innych, bez uprzedniej pisemnej zgody właściciela praw autorskich.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1128,8 +1234,8 @@

Danny NORMAN (A - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/88720/all/index.html index 40b62c75..546a2675 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + rezultaty | parkrun Polska @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -122,631 +109,729 @@

Phillip WHETTLOCK (A88720)

Członek klubu parkrun 250 - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- Łącznie 299 ukończonych edycji parkrun + Łącznie 345 ukończonych edycji parkrun

Zobacz podsumowanie statystyk dla te(j)go uczestnika(czki)
- Zarejestrowan(a)y w kategorii wiekowej VM55-59 + Zarejestrowan(a)y w kategorii wiekowej VM60-64

Podsumowanie udziału -
NajlepszyŚrednia
Najgorszy
Czas21:4025:2552:00
Współczynnik wieku69.71%60.41%29.55%
Pozycja ogółem648.88374

+
NajlepszyŚrednia
Najgorszy
Czas21:3625:2654:59
Współczynnik wieku72.99%60.80%28.92%
Pozycja ogółem648.44374

Najlepsze wyniki -
RokNajlepszy czasNajwyższy poziom Wsp. wieku
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
RokNajlepszy czasNajwyższy poziom Wsp. wieku
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

Ukończone edycje parkrun -
LokalizacjaData spotkaniaEdycja spotkaniaPozCzasWsp.
wieku
PB?
Halifax08/04/20233313225:0063.07% +
LokalizacjaData spotkaniaEdycja spotkaniaPozCzasWsp.
wieku
PB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + PB + +   +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34%   -
Fulham Palace01/04/202339110924:0965.29% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Halifax25/03/20233291624:4363.79% +
Halifax16/09/20233532123:4367.04%   -
Halifax18/03/20233282326:4758.87% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax04/03/20233273825:1962.28% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Myrtle25/02/20231593824:5263.40% +
Glossop12/08/20233152824:2564.57% +   +
Halifax05/08/20233473024:4363.79% +   +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% PB   -
Halifax18/02/20233252926:0360.52% +
Stratford Park, Stroud01/07/20231253126:2959.53%   -
Halifax11/02/20233243124:0365.56% +
Wetherby24/06/20233094124:4663.66%   -
Bradford04/02/20235795022:3769.71% +
Halifax10/06/20233402524:0265.60%   -
Bowling Park28/01/202379924:1165.20% +
Halifax03/06/20233392124:1365.11%   -
Bramley21/01/20233004925:3461.67% +
Long Eaton20/05/20233306921:3672.99%   -
Halifax14/01/20233213325:5260.95% +
Halifax06/05/20233352423:4566.39%   -
Halifax07/01/20233203026:2659.65% +
Keswick29/04/20233904121:3672.99% + PB +   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax22/04/20233334725:0262.98%   -
Nostell31/12/20223614325:0063.07% +
Halifax08/04/20233313225:0063.07%   -
Halifax24/12/20223173125:4661.19% +
Fulham Palace01/04/202339110924:0965.29%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax25/03/20233291624:4363.79%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax18/03/20233282326:4758.87% +   +
Halifax04/03/20233273825:1962.28% +   +
Myrtle25/02/20231593824:5263.40% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71%   -
Brighouse12/11/20222213725:1762.36% +
Bowling Park28/01/202379924:1165.20%   -
Halifax05/11/20223122424:5163.45% +
Bramley21/01/20233004925:3461.67%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB +   -
Halifax15/10/202230910749:5431.60% +
Conkers19/11/20225485624:1465.06%   -
Crosby08/10/20222833525:3861.51% +
Brighouse12/11/20222213725:1762.36%   -
Alness01/10/20221801024:0965.29% +
Halifax05/11/20223122424:5163.45%   -
Victoria24/09/20223736722:5468.85% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax17/09/20223052625:0063.07% +
Halifax15/10/202230910749:5431.60%   -
Centre Vale10/09/20221034428:4454.87% +
Crosby08/10/20222833525:3861.51%   -
Halifax03/09/20223033125:3361.71% +
Alness01/10/20221801024:0965.29%   -
Skipton27/08/20224035325:3561.11% +
Victoria24/09/20223736722:5468.85%   -
Halifax20/08/20223012824:5262.87% +
Halifax17/09/20223052625:0063.07%   -
Halifax06/08/20222996426:0360.01% +
Centre Vale10/09/20221034428:4454.87%   -
Armley30/07/20221432724:2863.90% +
Halifax03/09/20223033125:3361.71%   -
Halifax16/07/20222962524:2663.98% +
Skipton27/08/20224035325:3561.11%   -
Halifax02/07/20222942524:4863.04% +
Halifax20/08/20223012824:5262.87%   -
Halifax18/06/20222922424:5462.78% +
Halifax06/08/20222996426:0360.01%   -
The Pastures11/06/2022991826:2159.33% +
Armley30/07/20221432724:2863.90%   -
Halifax04/06/20222913826:4858.33% +
Halifax16/07/20222962524:2663.98%   -
Horton Park28/05/20222942225:1262.04% +
Halifax02/07/20222942524:4863.04%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax18/06/20222922424:5462.78%   -
Halifax07/05/20222877529:3552.85% +
The Pastures11/06/2022991826:2159.33%   -
Harrogate30/04/202246716226:4458.48% +
Halifax04/06/20222913826:4858.33%   -
Halifax23/04/20222854927:0057.90% +
Horton Park28/05/20222942225:1262.04%   -
Halifax09/04/20222834526:3758.74% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax02/04/20222822924:4463.21% +
Halifax07/05/20222877529:3552.85%   -
Pendle26/03/20223443126:1659.52% +
Harrogate30/04/202246716226:4458.48%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax23/04/20222854927:0057.90%   -
Halifax05/03/20222784925:3761.03% +
Halifax09/04/20222834526:3758.74%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -777,78 +862,61 @@

Phillip WHETTLOCK 
- Liczba lokalizacji: 86 + Liczba lokalizacji: 97
- Liczba uczestników: 90 914 + Liczba uczestników: 120993
- Liczba ukończeń: 1 116 246 + Liczba ukończeń: 1512244
- Liczba edycji: 21 531 + Liczba edycji: 28595
- Liczba wolontariuszy: 15 647 + Liczba wolontariuszy: 20510
- Rekordy życiowe: 143 830 + Rekordy życiowe: 186898
- Średni czas: 00:27:57 + Średni czas: 00:28:47
- Średnia ukończonych edycji: 12,3 + Kluby/Grupy: 3350
-
- Kluby/Grupy: 2 790 -
- -
- Rekord (K): - Monika ANDRZEJCZAK – 16:22 - (13 paź 2018) -
-
- Rekord (M): - Artur KOZŁOWSKI – 14:41 - ( 8 paź 2016) -
-
- Rekord Wsp. wieku: - Jane DAVIES - 99,12% 22:50 - (12 paź 2019) -
+
- Aktualizacja: pon, 17 kwi 2023, 00:41:19 + Aktualizacja: pon, 30 wrz 2024, 00:40:47
-

© parkrun Global Limited (Company number: 09411750)

Żadna część tej strony nie może być kopiowana, powielana, rozpowszechniana, publikowana, pobierana, prezentowana, wysyłana ani przesyłana w jakiejkolwiek formie czy za pomocą jakichkolwiek środków, w tym między innymi elektronicznych, mechanicznych, kopiujących, nagrywających lub innych, bez uprzedniej pisemnej zgody właściciela praw autorskich.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -882,8 +960,8 @@

Phillip WHETTLOCK  + rezultaty | parkrun Polska @@ -23,32 +25,26 @@ - - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -122,183 +109,239 @@

Phillip WHETTLOCK (A88720)

Członek klubu parkrun 250 - - Member of the Volunteer 100 club -

Łącznie 299 ukończonych edycji parkrun

+ + Member of the Volunteer 250 club +

Łącznie 345 ukończonych edycji parkrun

Zobacz statystyki uczestnika ze wszystkich spotkań parkrun
- Zarejestrowan(a)y w kategorii wiekowej VM55-59 -

Ostatnio ukończone edycje parkrun

LokalizacjaData spotkaniaPozycja wg płciPozycja ogółemCzasWsp.
wieku
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Ukończone edycje parkrun

LokalizacjaLiczba spotkań (Polska)Najlepsza pozycja wg płciNajlepsza pozycja ogółemNajlepszy czas  
Bradford parkrun1166600:21:40 + Zarejestrowan(a)y w kategorii wiekowej VM60-64 +

Ostatnio ukończone edycje parkrun

LokalizacjaData spotkaniaPozycja wg płciPozycja ogółemCzasWsp.
wieku
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Ukończone edycje parkrun

LokalizacjaLiczba spotkań (Polska)Najlepsza pozycja wg płciNajlepsza pozycja ogółemNajlepszy czas  
Halifax parkrun1268822:13 + Wszystko +
Lister Park parkrun, Bradford1166621:40 + Wszystko +
Horton Park parkrun9131322:18 + Wszystko +
Keswick parkrun4253321:36 + Wszystko +
Sewerby parkrun3121222:08 + Wszystko +
Pontefract parkrun2273222:08 + Wszystko +
Brighouse parkrun2333723:53 + Wszystko +
Temple Newsam parkrun2272925:14 + Wszystko +
Fountains Abbey parkrun2394822:26 + Wszystko +
Oakwell Hall parkrun2293626:10 + Wszystko +
Whinlatter Forest parkrun2283227:23 + Wszystko +
Bramley parkrun2252524:06 + Wszystko +
Middleton Woods parkrun2121424:55 + Wszystko +
Myrtle parkrun2333824:52 + Wszystko +
Centre Vale parkrun2303626:37 + Wszystko +
Bushy parkrun130137424:06 + Wszystko +
Woodhouse Moor parkrun1778222:18 + Wszystko +
Pollok parkrun, Glasgow1667223:58 + Wszystko +
Edinburgh parkrun1646721:54 + Wszystko +
Wakefield Thornes parkrun1545824:29 Wszystko - Graph It!
Halifax parkrun1148800:22:13 +
Hyndburn parkrun1253125:51 Wszystko - Graph It!
Horton Park parkrun9131300:22:18 +
York parkrun111413522:55 Wszystko - Graph It!
Sewerby parkrun3121200:22:08 +
Milton Country parkrun1707522:40 Wszystko - Graph It!
Keswick parkrun3253300:23:33 +
Carlisle parkrun1567126:05 Wszystko - Graph It!
Pontefract parkrun2273200:22:08 +
Harrogate parkrun112316226:44 Wszystko - Graph It!
Temple Newsam parkrun2272900:25:14 +
Southport parkrun1545723:57 Wszystko - Graph It!
Myrtle parkrun2333800:24:52 +
Barnsley parkrun1414325:05 Wszystko - Graph It!
Middleton Woods parkrun2121400:24:55 +
Rothwell parkrun1535724:20 Wszystko - Graph It!
Bramley parkrun2252500:24:06 +
Huddersfield parkrun1596722:47 Wszystko - Graph It!
Druridge Bay parkrun1354200:23:35 +
Long Eaton parkrun1556921:36 Wszystko -  
Fountains Abbey parkrun1394800:22:26 +
Wycombe Rye parkrun1232622:35 Wszystko -  
Victoria parkrun, Glasgow1546700:22:54 +
Conkers parkrun1525624:14 Wszystko -  
Clumber Park parkrun1101100:21:46 +
Roundhay parkrun112815726:55 Wszystko -  
Rothay Park parkrun1202700:24:48 +
Hanley parkrun16622:03 Wszystko -  
Warwick Racecourse parkrun1638200:24:06 +
Worsley Woods parkrun1728824:46 Wszystko -  
Conkers parkrun1525600:24:14 +
Burnley parkrun1545725:21 Wszystko -  
The Pastures parkrun1161800:26:21 +
Dewsbury parkrun18610128:15 Wszystko -  
Harrogate parkrun112316200:26:44 +
Cross Flatts parkrun1303724:16 Wszystko -  
Dishley parkrun, Loughborough1535700:24:25 +
Clumber Park parkrun1101121:46 Wszystko -  
Dalby Forest parkrun1283200:23:06 +
Skipton parkrun1505325:35 Wszystko -  
Woodhouse Moor parkrun1778200:22:18 +
Flatts Lane parkrun1171826:53 Wszystko -  
Whinlatter Forest parkrun1283200:27:23 +
Victoria parkrun, Glasgow1546722:54 Wszystko -  
Watergrove parkrun, Rochdale1111200:27:57 +
Alness parkrun171024:09 Wszystko -  
Springburn parkrun, Glasgow1161600:23:14 +
Fulham Palace parkrun18610924:09 Wszystko -  
Fulham Palace parkrun18610900:24:09 +
Springburn parkrun, Glasgow1161623:14 Wszystko -  
Flatts Lane parkrun1171800:26:53 +
Druridge Bay parkrun1354223:35 Wszystko -  
Roberts Park parkrun1657500:24:54 +
Pendle parkrun1263126:16 Wszystko -  
Bowling Park parkrun18900:24:11 +
Watergrove parkrun, Rochdale1111227:57 Wszystko -  
Hanley parkrun16600:22:03 +
Wetherby parkrun1374124:46 Wszystko -  
Centre Vale parkrun1304400:28:44 +
Portobello parkrun, Edinburgh1668024:16 Wszystko -  
Wycombe Rye parkrun1232600:22:35 +
Nostell parkrun1374325:00 Wszystko -  
Carlisle parkrun1567100:26:05 +
Fell Foot parkrun, Newby Bridge1161722:57 Wszystko -  
Armley parkrun1262700:24:28 +
Conwy parkrun1394424:53 Wszystko -  
Crosby parkrun1293500:25:38 +
Glossop parkrun1242824:25 Wszystko -  
Edinburgh parkrun1646700:21:54 +
Crosby parkrun1293525:38 Wszystko -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Dolgellau parkrun1459954:59 Wszystko -  
Bushy parkrun130137400:24:06 +
Dalby Forest parkrun1283223:06 Wszystko -  
Oakwell Hall parkrun1344000:26:10 +
Clitheroe Castle parkrun1192525:41 Wszystko -  
Pendle parkrun1263100:26:16 +
Armley parkrun1262724:28 Wszystko -  
Alness parkrun171000:24:09 +
Dishley parkrun, Loughborough1535724:25 Wszystko -  
Skipton parkrun1505300:25:35 +
Ford parkrun1202525:00 Wszystko -  
Chevin Forest parkrun1213000:26:47 +
Cliffe Castle parkrun1151725:18 Wszystko -  
Burnley parkrun1545700:25:21 +
Potternewton parkrun1293625:04 Wszystko -  
Queen’s parkrun, Glasgow1677900:25:29 +
Isabel Trail parkrun1293422:02 Wszystko -  
Roundhay parkrun112815700:26:55 +
The Pastures parkrun1161826:21 Wszystko -  
Storthes Hall parkrun1263000:26:20 +
Storthes Hall parkrun1263026:20 Wszystko -  
Southport parkrun1545700:23:57 +
Hafan Pwllheli parkrun1212726:48 Wszystko -  
Cliffe Castle parkrun1151700:25:18 +
Penistone parkrun1343724:20 Wszystko -  
Brighouse parkrun1333700:25:17 +
Conyngham Hall parkrun1363824:55 Wszystko -  
Milton Country parkrun1707500:22:40 +
Stratford Park parkrun, Stroud1303126:29 Wszystko -  
Pollok parkrun, Glasgow1667200:23:58 +
Warwick Racecourse parkrun1638224:06 Wszystko -  
Nostell parkrun1384300:25:00 +
University of Stirling parkrun1343723:52 Wszystko -  
Portobello parkrun, Edinburgh1668000:24:16 +
Jubilee parkrun1121926:42 Wszystko -  
2996600:21:40 +
Queen’s parkrun, Glasgow1677925:29 + Wszystko +
Bowling Park parkrun18924:11 + Wszystko +
Rothay Park parkrun1202724:48 + Wszystko +
Zuiderpark parkrun, Den Haag1151722:03 + Wszystko +
Carlisle Park parkrun, Morpeth1293325:44 + Wszystko +
Chevin Forest parkrun1213026:47 + Wszystko +
Roberts Park parkrun1657524:54 + Wszystko +
Beacon Hill Country Park parkrun1192325:36 + Wszystko +
Thames Path parkrun, Woolwich1586323:49 + Wszystko +
3456621:36 Wszystko  


Podsumowanie wolontariatu

RolaLiczba
- Koordynator(ka) spotkania - 32
- Mierząc(a)y czas - 17
- Sortując(a)y tokeny - 5
- Wprowadzając(a)y wyniki - 1
- Fotograf - 1
- Komunikacja i promocja - 5
- Ubezpieczając(a)y trasę - 35
- Rozstawiając(a)y oznakowanie - 28
- Przechowując(a)y wyposażenie - 5
- Inne - 1
- Skanując(a)y uczestników - 27
- Zbierając(a)y oznakowanie - 24
- Wydając(a)y tokeny - 11
- Sprawdzając(a)y pozycje na mecie - 1
- Odprawa debiutantów - 77
- Koordynator tunelu mety - 12
- Pomocnik wydające(j)go tokeny - 10
- Zamykając(a)y stawkę - 5
- Koordynator wolontariuszy - 10
- Przygotowując(a)y raport - 1
- Wyznaczanie tempa - 5
- Mierząc(a)y czas (dodatkowy) - 14
- Przewodnik dla słabowidzących - 1
- (nie dotyczy parkrun Polska) - 5
- Tłumacz(ka) języka migowego - 1
- Koordynator(ka) parkingu - 1
- Sprawdzając(a)y trasę - 25
- parkwalker - 1
Łączna liczba ról249

- Ta tabela przedstawia liczbę wolontariatów w ramach poszczególnych ról.
Łączna liczba wolontariatów może różnić się od liczby ról w przypadku, gdy w daną sobotę wykonywana była większa liczba ról.
Więcej informacji dostępnych jest
tutaj. -



parkrun Freedom

DataCzasLokalizacja
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


Edycje (nie)parkrun

TydzieńData początkowaData końcowaEdycje (nie)parkrunNajlepszy czas
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+ Koordynator(ka) spotkania +
33
+ Mierząc(a)y czas + 28
+ Sortując(a)y tokeny + 5
+ Wprowadzając(a)y wyniki + 4
+ Fotograf + 1
+ Komunikacja i promocja + 6
+ Ubezpieczając(a)y trasę + 35
+ Rozstawiając(a)y oznakowanie + 29
+ Przechowując(a)y wyposażenie + 6
+ Inne + 2
+ Skanując(a)y uczestników + 46
+ Zbierając(a)y oznakowanie + 25
+ Wydając(a)y tokeny + 16
+ Sprawdzając(a)y pozycje na mecie + 1
+ Odprawa debiutantów + 82
+ Koordynator tunelu mety + 16
+ Pomocnik wydające(j)go tokeny + 16
+ Zamykając(a)y stawkę + 15
+ Koordynator wolontariuszy + 11
+ Przygotowując(a)y raport + 1
+ Wyznaczanie tempa + 10
+ Mierząc(a)y czas (dodatkowy) + 14
+ Przewodnik dla słabowidzących + 1
+ (nie dotyczy parkrun Polska) + 15
+ Tłumacz(ka) języka migowego + 1
+ Koordynator(ka) parkingu + 1
+ Sprawdzając(a)y trasę + 57
+ parkwalker + 1
Łączna liczba ról316

+ Ta tabela przedstawia liczbę wolontariatów w ramach poszczególnych ról.
Łączna liczba wolontariatów może różnić się od liczby ról w przypadku, gdy w daną sobotę wykonywana była większa liczba ról.
Więcej informacji dostępnych jest tutaj. +



parkrun Freedom

DataCzasLokalizacja
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


Edycje (nie)parkrun

TydzieńData początkowaData końcowaEdycje (nie)parkrunNajlepszy czas
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -327,78 +370,61 @@

Phillip WHETTLOCK 
- Liczba lokalizacji: 86 -
-
- Liczba uczestników: 90 914 + Liczba lokalizacji: 97
- Liczba ukończeń: 1 116 246 + Liczba uczestników: 120993
- Liczba edycji: 21 531 + Liczba ukończeń: 1512244
- Liczba wolontariuszy: 15 647 + Liczba edycji: 28595
- Rekordy życiowe: 143 830 + Liczba wolontariuszy: 20510
- Średni czas: 00:27:57 + Rekordy życiowe: 186898
- Średnia ukończonych edycji: 12,3 + Średni czas: 00:28:47
- Kluby/Grupy: 2 790 + Kluby/Grupy: 3350
-

-
- Rekord (K): - Monika ANDRZEJCZAK – 16:22 - (13 paź 2018) -
-
- Rekord (M): - Artur KOZŁOWSKI – 14:41 - ( 8 paź 2016) -
-
- Rekord Wsp. wieku: - Jane DAVIES - 99,12% 22:50 - (12 paź 2019) -
+
- Aktualizacja: pon, 17 kwi 2023, 00:41:19 + Aktualizacja: pon, 30 wrz 2024, 00:40:47
-

© parkrun Global Limited (Company number: 09411750)

Żadna część tej strony nie może być kopiowana, powielana, rozpowszechniana, publikowana, pobierana, prezentowana, wysyłana ani przesyłana w jakiejkolwiek formie czy za pomocą jakichkolwiek środków, w tym między innymi elektronicznych, mechanicznych, kopiujących, nagrywających lub innych, bez uprzedniej pisemnej zgody właściciela praw autorskich.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -432,8 +468,8 @@

Phillip WHETTLOCK  + rezultaty | parkrun Polska @@ -35,15 +37,14 @@ - + - + - @@ -53,7 +54,7 @@
@@ -65,34 +66,25 @@
@@ -116,7 +108,7 @@

Jakub WOLSKI (A999999)

- No results have been recorded yet for this parkrunner. + ​

Zobacz podsumowanie statystyk uczestni(czki)ka

@@ -148,78 +140,61 @@

Jakub WOLSKI (A
- Liczba lokalizacji: 89 -
-
- Liczba uczestników: 95 099 + Liczba lokalizacji: 97
- Liczba ukończeń: 1 164 502 + Liczba uczestników: 120993
- Liczba edycji: 22 385 + Liczba ukończeń: 1512244
- Liczba wolontariuszy: 16 247 + Liczba edycji: 28595
- Rekordy życiowe: 150 002 + Liczba wolontariuszy: 20510
- Średni czas: 00:28:06 + Rekordy życiowe: 186898
- Średnia ukończonych edycji: 12,2 + Średni czas: 00:28:47
- Kluby/Grupy: 2 864 + Kluby/Grupy: 3350
-
-
- Rekord (K): - Monika ANDRZEJCZAK – 16:22 - (13 paź 2018) -
-
- Rekord (M): - Artur KOZŁOWSKI – 14:41 - ( 8 paź 2016) -
-
- Rekord Wsp. wieku: - Jane DAVIES - 99,12% 22:50 - (12 paź 2019) -
+
- Aktualizacja: czw, 29 cze 2023, 00:41:31 + Aktualizacja: pon, 30 wrz 2024, 00:40:47
-

© parkrun Global Limited (Company number: 09411750)

Żadna część tej strony nie może być kopiowana, powielana, rozpowszechniana, publikowana, pobierana, prezentowana, wysyłana ani przesyłana w jakiejkolwiek formie czy za pomocą jakichkolwiek środków, w tym między innymi elektronicznych, mechanicznych, kopiujących, nagrywających lub innych, bez uprzedniej pisemnej zgody właściciela praw autorskich.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -253,8 +238,8 @@

Jakub WOLSKI (A - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/999999/index.html index a9b9e9f7..a797bbdc 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.pl/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + rezultaty | parkrun Polska @@ -35,15 +37,14 @@ - + - + - @@ -53,7 +54,7 @@
@@ -65,34 +66,25 @@
@@ -115,7 +107,7 @@ style='width:auto;margin-bottom: 20px;'> -

Jakub WOLSKI (A999999)

No results have been recorded yet for this parkrunner.

+

Jakub WOLSKI (A999999)

@@ -144,78 +136,61 @@

Jakub WOLSKI (A
- Liczba lokalizacji: 89 -
-
- Liczba uczestników: 95 099 + Liczba lokalizacji: 97
- Liczba ukończeń: 1 164 502 + Liczba uczestników: 120993
- Liczba edycji: 22 385 + Liczba ukończeń: 1512244
- Liczba wolontariuszy: 16 247 + Liczba edycji: 28595
- Rekordy życiowe: 150 002 + Liczba wolontariuszy: 20510
- Średni czas: 00:28:06 + Rekordy życiowe: 186898
- Średnia ukończonych edycji: 12,2 + Średni czas: 00:28:47
- Kluby/Grupy: 2 864 + Kluby/Grupy: 3350
-
-
- Rekord (K): - Monika ANDRZEJCZAK – 16:22 - (13 paź 2018) -
-
- Rekord (M): - Artur KOZŁOWSKI – 14:41 - ( 8 paź 2016) -
-
- Rekord Wsp. wieku: - Jane DAVIES - 99,12% 22:50 - (12 paź 2019) -
+

- Aktualizacja: czw, 29 cze 2023, 00:41:31 + Aktualizacja: pon, 30 wrz 2024, 00:40:47
-

© parkrun Global Limited (Company number: 09411750)

Żadna część tej strony nie może być kopiowana, powielana, rozpowszechniana, publikowana, pobierana, prezentowana, wysyłana ani przesyłana w jakiejkolwiek formie czy za pomocą jakichkolwiek środków, w tym między innymi elektronicznych, mechanicznych, kopiujących, nagrywających lub innych, bez uprzedniej pisemnej zgody właściciela praw autorskich.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -249,8 +234,8 @@

Jakub WOLSKI (A - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/1309364/all/index.html index a08d97a0..937709d2 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + resultat | parkrun Sweden - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -121,543 +107,649 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Medlem i parkruns 100-klubb +

Andrew TAYLOR (A1309364)

+ Medlem i parkruns 250-klubb Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns total

View summary stats for this parkrunner
- Deltog senast i ålderskategorin VM35-39 + Deltog senast i ålderskategorin VM40-44

Summary Stats for All Locations -
SnabbastGenomsnittLångsammaste
Tid20:0628:4757:34
Åldersgradering64.51%47.44%23.54%
Total placering5165.361021

+
SnabbastGenomsnittLångsammaste
Tid20:0629:2057:34
Åldersgradering64.51%46.67%23.54%
Total placering5182.341021

Best Overall Annual Achievements -
ÅrBästa tidBästa åldersgradering
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
ÅrBästa tidBästa åldersgradering
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

– Alla resultat -
EventDatumEventPlac.TidÅldersgraderingPB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventDatumEventPlac.TidÅldersgraderingPB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97%   -
Whiteley25/03/202321418332:2441.82% +
Winchester25/11/202346134636:0237.60%   -
Winchester11/03/202342821230:3744.26% +
Whiteley18/11/202324721037:0536.54%   -
Winchester04/03/202342730935:4537.90% +
Whiteley11/11/202324617430:3744.26%   -
Winchester25/02/202342632536:0937.48% +
Winchester21/10/202345731533:5140.03%   -
Winchester18/02/202342530336:3137.11% +
Winchester14/10/202345634233:5439.97%   -
Delamere31/12/202242331536:2537.21% +
Ganger Farm07/10/20234713233:4940.07%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester23/09/202345321928:2247.77%   -
Winchester26/11/202241229335:3137.87% +
Winchester16/09/202345235430:3244.38%   -
Whiteley12/11/202221016534:2839.02% +
Winchester09/09/202345129229:1146.43%   -
Winchester29/10/202240924429:5544.96% +
Delamere02/09/202345822633:2840.49%   -
Winchester22/10/202240833736:0837.22% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester17/09/202240326230:2944.12% +
Winchester29/07/202344622227:3649.09%   -
Winchester10/09/202240231134:3338.93% +
Winchester22/07/202344540537:0036.62%   -
Alice Holt03/09/202241817936:3236.82% +
Whiteley15/07/202322915731:1643.34%   -
Winchester27/08/202240042335:2138.05% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester13/08/202239823431:3042.70% +
Winchester17/06/202344128530:4144.16%   -
Tidworth30/07/2022615151:4226.02% +
Winchester10/06/202344032435:2138.33%   -
Uckfield23/07/20221006028:4346.84% +
Winchester20/05/202343822427:0949.91%   -
Winchester09/07/202239428633:1640.43% +
Winchester13/05/202343733232:4341.42%   -
Eastleigh28/05/202254015531:2042.93% +
Whiteley29/04/202321919635:3138.15%   -
Winchester21/05/202238930733:2840.19% +
Winchester22/04/202343431731:1143.45%   -
Alice Holt14/05/202240216932:0142.01% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Winchester07/05/202238734034:1339.31% +
Whiteley25/03/202321418332:2441.82%   -
Guildford30/04/202242825130:0144.81% +
Winchester11/03/202342821230:3744.26%   -
Winchester23/04/202238522932:0241.99% +
Winchester04/03/202342730935:4537.90%   -
Winchester16/04/202238431033:2340.29% +
Winchester25/02/202342632536:0937.48%   -
Winchester19/03/202238025033:5439.68% +
Winchester18/02/202342530336:3137.11%   -
Alice Holt01/01/202238524237:4635.61% +
Delamere31/12/202242331536:2537.21%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester20/11/202136338445:0729.59% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester09/10/202135739843:0730.96% +
Winchester26/11/202241229335:3137.87%   -
Winchester25/09/202135538955:0324.25% +
Whiteley12/11/202221016534:2839.02%   -
Winchester18/09/202135433938:1234.95% +
Winchester29/10/202240924429:5544.96%   -
Winchester04/09/202135233838:2434.77% +
Winchester22/10/202240833736:0837.22%   -
Winchester28/08/202135139841:0132.55% +
Winchester17/09/202240326230:2944.12%   -
Winchester14/08/202134936055:4623.94% +
Winchester10/09/202240231134:3338.93%   -
Winchester31/07/202134832845:2029.45% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester14/03/202034625851:3825.69% +
Winchester27/08/202240042335:2138.05%   -
Winchester07/03/202034510325:5251.29% +
Winchester13/08/202239823431:3042.70%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Tidworth30/07/2022615151:4226.02%   -
Newbury22/02/202043434631:1142.54% +
Uckfield23/07/20221006028:4346.84%   -
Alice Holt08/02/202036010727:1948.57% +
Winchester09/07/202239428633:1640.43% +   +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -688,63 +780,61 @@

Andrew TAYLOR (A13093
- Platser: 11 -
-
- Deltagare: 14 075 + Platser: 12
- Starter: 66 470 + Deltagare: 23074
- Genomförda event: 1 727 + Starter: 105540
- Volontärer: 1 312 + Genomförda event: 2493
- Personbästan: 10 792 + Volontärer: 1831
- Genomsnittlig sluttid: 00:28:35 + Personbästan: 15958
- Genomsnittligt antal starter per deltagare: 4,7 + Genomsnittlig sluttid: 00:28:45
- Grupper: 1 103 + Grupper: 1630
-
+
- Resultaten senast uppdaterad: fre 14 apr 2023 00:42:37 + Resultaten senast uppdaterad: mån 30 sep 2024 00:42:53
-

© parkrun Global Limited (Company number: 09411750)

Ingen del av denna webbplats får på något sätt reproduceras helt eller delvis utan upphovsrättsinnehavarens tillstånd.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -778,8 +878,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/1309364/index.html index 76812dbe..3448f2aa 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + resultat | parkrun Sweden - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -121,178 +107,188 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Medlem i parkruns 100-klubb +

Andrew TAYLOR (A1309364)

+ Medlem i parkruns 250-klubb Member of the Volunteer 50 club -

245 parkruns total

+

297 parkruns total

Se statistik för alla parkruns genomförda av denna deltagare
- Deltog senast i ålderskategorin VM35-39 -

Senaste lopp

EventDatumPlac.
M/K
Total placeringTidÅldersgradering
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Eventsummering

EventAntal eventBästa resultat för ditt könBästa placering totaltBästa tid  
Winchester parkrun146121300:20:18 + Deltog senast i ålderskategorin VM40-44 +

Senaste lopp

EventDatumPlac.
M/K
Total placeringTidÅldersgradering
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Eventsummering

EventAntal eventBästa resultat för ditt könBästa placering totaltBästa tid  
Winchester parkrun173121320:18 + Allt +
Whiteley parkrun1410714629:06 + Allt +
Delamere parkrun11232321:42 Allt - Graph It!
Delamere parkrun8232300:21:42 +
Eastleigh parkrun6242524:08 Allt - Graph It!
Whiteley parkrun610714600:29:06 +
Alice Holt parkrun59010727:19 Allt - Graph It!
Alice Holt parkrun59010700:27:19 +
Southampton parkrun5687021:17 Allt - Graph It!
Southampton parkrun5687000:21:17 +
Fell Foot parkrun, Newby Bridge4212223:48 Allt - Graph It!
Eastleigh parkrun5242500:24:08 +
Witton parkrun4303525:40 Allt - Graph It!
Congleton parkrun49900:20:06 +
Northwich parkrun4485224:55 Allt - Graph It!
Witton parkrun4303500:25:40 +
Newbury parkrun4829123:49 Allt - Graph It!
Northwich parkrun4485200:24:55 +
Congleton parkrun49920:06 Allt - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Medina I.O.W. parkrun4667525:13 Allt - Graph It!
Andover parkrun2242600:22:24 +
Ganger Farm parkrun38013229:25 Allt - Graph It!
Ganger Farm parkrun29713500:29:25 +
Hanley parkrun2333922:31 Allt - Graph It!
Hanley parkrun2333900:22:31 +
Burnley parkrun212718929:06 Allt - Graph It!
Newbury parkrun2829100:23:49 +
Queen Elizabeth parkrun2364026:36 Allt - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Andover parkrun2242622:24 Allt - Graph It!
Hagley parkrun1182000:22:38 +
Abingdon parkrun114220229:14 Allt -  
Ormskirk parkrun120930300:31:04 +
Netley Abbey parkrun1586424:21 Allt -  
Basingstoke parkrun111212900:24:31 +
Hilly Fields parkrun1859925:03 Allt -  
Cuerden Valley parkrun1192000:24:47 +
Brockenhurst parkrun112718632:41 Allt -  
Seven Fields parkrun1546700:28:28 +
Wimpole Estate parkrun112916928:07 Allt -  
Netley Abbey parkrun1586400:24:21 +
Clumber Park parkrun112117629:51 Allt -  
Mountbatten School parkrun17110100:31:29 +
Cuerden Valley parkrun1192024:47 Allt -  
Clitheroe Castle parkrun1639700:35:46 +
Hamilton Lake parkrun1151621:47 Allt -  
Medina I.O.W. parkrun19513900:30:57 +
Fountains Abbey parkrun1283020:33 Allt -  
Hogmoor Inclosure parkrun111314000:29:34 +
Ormskirk parkrun120930331:04 Allt -  
Milano Nord parkrun1475300:27:49 +
Pendle parkrun1465926:37 Allt -  
Jersey parkrun111018500:30:53 +
Woking parkrun1485824:01 Allt -  
Canterbury parkrun1323600:27:29 +
Hagley parkrun1182022:38 Allt -  
Penrhyn parkrun1232600:24:33 +
Penrhyn parkrun1232624:33 Allt -  
Hyndburn parkrun1425300:29:55 +
Salisbury parkrun119326729:45 Allt -  
Woking parkrun1485800:24:01 +
Jersey parkrun111018530:53 Allt -  
Fountains Abbey parkrun1283000:20:33 +
Haigh Woodland parkrun18916837:04 Allt -  
Bushy parkrun1681102100:33:01 +
Stretford parkrun127540530:23 Allt -  
Clumber Park parkrun112117600:29:51 +
Portsmouth Lakeside parkrun1818726:32 Allt -  
Wimpole Estate parkrun112916900:28:07 +
Fareham parkrun19011428:52 Allt -  
Tidworth parkrun18615100:51:42 +
Milano Nord parkrun1475327:49 Allt -  
Hilly Fields parkrun1859900:25:03 +
Richmond Olympic parkrun15521:59 Allt -  
Tawd Valley parkrun18111000:29:25 +
Crewe parkrun112315430:05 Allt -  
Watermeadows parkrun1151500:23:51 +
Hogmoor Inclosure parkrun111314029:34 Allt -  
Eden Project parkrun111116200:30:21 +
Catford parkrun19512527:24 Allt -  
Catford parkrun19512500:27:24 +
Clitheroe Castle parkrun1639735:46 Allt -  
Crewe parkrun112315400:30:05 +
Pocket parkrun112419533:47 Allt -  
Long Eaton parkrun118122900:28:06 +
Ford parkrun1477432:29 Allt -  
Fareham parkrun19511400:28:52 +
Watermeadows parkrun1151523:51 Allt -  
Phoenix parkrun1232600:27:31 +
Mountbatten School parkrun17110131:29 Allt -  
Guildford parkrun117125100:30:01 +
Uckfield parkrun1416028:43 Allt -  
Pendle parkrun1465900:26:37 +
Tawd Valley parkrun18111029:25 Allt -  
Heaton parkrun133846700:31:01 +
Seven Fields parkrun1546728:28 Allt -  
Hamilton Lake parkrun1151600:21:47 +
Itchen Valley Country parkrun110613529:53 Allt -  
Brockenhurst parkrun112718600:32:41 +
Bartley Park parkrun1628430:26 Allt -  
Itchen Valley Country parkrun110713500:29:53 +
Tidworth parkrun18615151:42 Allt -  
Burnley parkrun114120400:29:06 +
Bushy parkrun1681102133:01 Allt -  
Uckfield parkrun1416000:28:43 +
Basingstoke parkrun111212924:31 Allt -  
Abingdon parkrun114220200:29:14 +
Heaton parkrun133846731:01 Allt -  
Pocket parkrun112419500:33:47 +
Guildford parkrun117125130:01 Allt -  
Bolton parkrun116221800:31:49 +
Hyndburn parkrun1425329:55 Allt -  
Richmond Olympic parkrun15500:21:59 +
Phoenix parkrun1232627:31 Allt -  
Poole parkrun121328400:28:59 +
Canterbury parkrun1323627:29 Allt -  
Portsmouth Lakeside parkrun1818700:26:32 +
Valentines parkrun1698025:14 Allt -  
Salisbury parkrun119326700:29:45 +
Poole parkrun121328428:59 Allt -  
2455500:20:06 +
Long Eaton parkrun118122928:06 + Allt +
Bolton parkrun116221831:49 + Allt +
Eden Project parkrun111116230:21 + Allt +
2975520:06 Allt  


Volontärsummering

RollAntal gånger
- Loppansvarig - 21
- Tidtagare - 2
- Pollettsorterare - 8
- Resultatsansvarig - 6
- Fotograf - 4
- Funktionär - 4
- Ansvarig för att sätta upp banan - 6
- Material - förvaring och leverans - 2
- Streckkod scanning - 2
- Ansvarig för att ta ner banan - 10
- Pollettutdelare - 1
- Nummerkontrollant - 2
- Informationsansvarig för förstagångslöpare - 1
- Målfållaansvarig - 1
- Sistagångare - 4
- Volontäransvarig - 1
- Journalist - 10
- Farthållare - 1
Total Credits58

+ Loppansvarig +

21
+ Tidtagare + 2
+ Pollettsorterare + 8
+ Resultatsansvarig + 6
+ Fotograf + 4
+ Funktionär + 5
+ Ansvarig för att sätta upp banan + 6
+ Material - förvaring och leverans + 2
+ Streckkod scanning + 3
+ Ansvarig för att ta ner banan + 10
+ Pollettutdelare + 1
+ Nummerkontrollant + 2
+ Informationsansvarig för förstagångslöpare + 1
+ Målfållaansvarig + 1
+ Sistagångare + 4
+ Volontäransvarig + 1
+ Journalist + 10
+ Farthållare + 1
Total Credits60

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



parkrun Freedom-lopp

DatumTidPlats
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(inte)parkruns

WeekDatumDatum(inte)parkrunsBästa tid
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -322,63 +318,61 @@

Andrew TAYLOR (A13093
- Platser: 11 -
-
- Deltagare: 14 075 + Platser: 12
- Starter: 66 470 + Deltagare: 23074
- Genomförda event: 1 727 + Starter: 105540
- Volontärer: 1 312 + Genomförda event: 2493
- Personbästan: 10 792 + Volontärer: 1831
- Genomsnittlig sluttid: 00:28:35 + Personbästan: 15958
- Genomsnittligt antal starter per deltagare: 4,7 + Genomsnittlig sluttid: 00:28:45
- Grupper: 1 103 + Grupper: 1630
-
+

- Resultaten senast uppdaterad: fre 14 apr 2023 00:42:37 + Resultaten senast uppdaterad: mån 30 sep 2024 00:42:53
-

© parkrun Global Limited (Company number: 09411750)

Ingen del av denna webbplats får på något sätt reproduceras helt eller delvis utan upphovsrättsinnehavarens tillstånd.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -412,8 +416,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/2705084/all/index.html index 042f5a41..84c84083 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + resultat | parkrun Sweden - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -121,10 +107,10 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -156,63 +142,61 @@

Duncan BOOTH (A270508
- Platser: 11 -
-
- Deltagare: 14 178 + Platser: 12
- Starter: 67 029 + Deltagare: 23074
- Genomförda event: 1 738 + Starter: 105540
- Volontärer: 1 317 + Genomförda event: 2493
- Personbästan: 10 877 + Volontärer: 1831
- Genomsnittlig sluttid: 00:28:35 + Personbästan: 15958
- Genomsnittligt antal starter per deltagare: 4,7 + Genomsnittlig sluttid: 00:28:45
- Grupper: 1 105 + Grupper: 1630
-
+
- Resultaten senast uppdaterad: mån 17 apr 2023 00:43:09 + Resultaten senast uppdaterad: mån 30 sep 2024 00:42:53
-

© parkrun Global Limited (Company number: 09411750)

Ingen del av denna webbplats får på något sätt reproduceras helt eller delvis utan upphovsrättsinnehavarens tillstånd.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -246,8 +240,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/2705084/index.html index d99fd629..4043a24d 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + resultat | parkrun Sweden - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -121,18 +107,18 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volontärsummering

RollAntal gånger
- Funktionär - 260
- Förcyklist - 130
- Bankontroll på eventdagen - 9
Total Credits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Volontärsummering

RollAntal gånger
+ Funktionär + 350
+ Förcyklist + 130
+ Bankontroll på eventdagen + 82
Total Credits540

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



@@ -162,63 +148,61 @@

Duncan BOOTH (A270508
- Platser: 11 -
-
- Deltagare: 14 178 + Platser: 12
- Starter: 67 029 + Deltagare: 23074
- Genomförda event: 1 738 + Starter: 105540
- Volontärer: 1 317 + Genomförda event: 2493
- Personbästan: 10 877 + Volontärer: 1831
- Genomsnittlig sluttid: 00:28:35 + Personbästan: 15958
- Genomsnittligt antal starter per deltagare: 4,7 + Genomsnittlig sluttid: 00:28:45
- Grupper: 1 105 + Grupper: 1630
-
+

- Resultaten senast uppdaterad: mån 17 apr 2023 00:43:09 + Resultaten senast uppdaterad: mån 30 sep 2024 00:42:53
-

© parkrun Global Limited (Company number: 09411750)

Ingen del av denna webbplats får på något sätt reproduceras helt eller delvis utan upphovsrättsinnehavarens tillstånd.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -252,8 +246,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/482/all/index.html index c8f7df08..1e209e8b 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + resultat | parkrun Sweden - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -126,1650 +112,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns total

View summary stats for this parkrunner
- Deltog senast i ålderskategorin VM40-44 + Deltog senast i ålderskategorin VM45-49

Summary Stats for All Locations -
SnabbastGenomsnittLångsammaste
Tid16:2521:0459:17
Åldersgradering79.25%65.45%23.56%
Total placering134.831692

+
SnabbastGenomsnittLångsammaste
Tid16:2521:2659:17
Åldersgradering79.25%64.63%23.56%
Total placering138.841692

Best Overall Annual Achievements -
ÅrBästa tidBästa åldersgradering
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
ÅrBästa tidBästa åldersgradering
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

– Alla resultat -
EventDatumEventPlac.TidÅldersgraderingPB?
Harleston Magpies08/04/2023793525:1255.42% +
EventDatumEventPlac.TidÅldersgraderingPB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34%   -
Cannock Chase01/04/20232434425:4954.10% +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Kingston25/03/202360216430:0946.32% +
Quakers Walk25/11/2023126825:0556.08%   -
Wolford Wood18/03/202352730:2445.94% +
Aston Hall18/11/202352225:0156.23%   -
Kingston11/03/202360015027:1851.16% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Stockley Country04/03/2023817935:3239.31% +
Belvoir Castle04/11/2023911925:4254.73%   -
Chasewater25/02/202310010026:1953.07% +
Five Arches28/10/202365422:5861.25%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Dover Waterfront21/10/202374525:2255.45%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Rushcliffe14/10/20235087323:5458.86%   -
Worcester04/02/202354318529:3047.34% +
Kingston07/10/202363033150:2927.86%   -
Crane Park28/01/202349014550:3727.59% +
Maaraue03/10/20231012522:3462.33%   -
Kingston21/01/202359431139:3935.22% +
University of Northampton30/09/2023112223:2460.11%   -
Brooklands14/01/202313018830:4445.44% +
Clifton23/09/20231911025:1455.75%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Wisbech16/09/202351523:0361.03%   -
Kingston01/01/202359113340:3134.47% +
Holbrooks09/09/202362223:4359.31%   -
Kingston31/12/202259026442:4432.68% +
Wyre Forest02/09/20233404825:5654.24%   -
Bushy Park25/12/2022909169244:3931.28% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Riverfront19/08/20232594622:5761.29%   -
Kingston17/12/202258818059:1723.56% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston10/12/202258723255:4025.09% +
Kingston05/08/20236216723:2160.24%   -
Beacon03/12/2022737326:4152.34% +
Kingston29/07/20236208725:0955.93%   -
Ganger Farm26/11/2022211426:3452.57% +
Kingston22/07/20236199224:2457.65%   -
Bushy Park19/11/2022903110553:2326.16% +
Severn Valley Country15/07/20231411626:1353.66%   -
Leavesden Country12/11/202246928:3248.95% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Thornham Walks01/07/202353826:5251.99%   -
Durlston Country Park29/10/2022335032:4542.65% +
Kingston24/06/20236156524:0957.83% +   +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1800,63 +1952,61 @@

Danny NORMAN (A482)
- Platser: 11 -
-
- Deltagare: 14 075 + Platser: 12
- Starter: 66 470 + Deltagare: 23074
- Genomförda event: 1 727 + Starter: 105540
- Volontärer: 1 312 + Genomförda event: 2493
- Personbästan: 10 792 + Volontärer: 1831
- Genomsnittlig sluttid: 00:28:35 + Personbästan: 15958
- Genomsnittligt antal starter per deltagare: 4,7 + Genomsnittlig sluttid: 00:28:45
- Grupper: 1 103 + Grupper: 1630
- +
- Resultaten senast uppdaterad: fre 14 apr 2023 00:42:37 + Resultaten senast uppdaterad: mån 30 sep 2024 00:42:53
-

© parkrun Global Limited (Company number: 09411750)

Ingen del av denna webbplats får på något sätt reproduceras helt eller delvis utan upphovsrättsinnehavarens tillstånd.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1890,8 +2050,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/482/index.html index f30f6a57..6849a8d0 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + resultat | parkrun Sweden - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -125,878 +111,1004 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns total

+

867 parkruns total

Se statistik för alla parkruns genomförda av denna deltagare
- Deltog senast i ålderskategorin VM40-44 -

Senaste lopp

EventDatumPlac.
M/K
Total placeringTidÅldersgradering
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Eventsummering

EventAntal eventBästa resultat för ditt könBästa placering totaltBästa tid  
Bushy parkrun2321100:16:25 + Deltog senast i ålderskategorin VM45-49 +

Senaste lopp

EventDatumPlac.
M/K
Total placeringTidÅldersgradering
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Eventsummering

EventAntal eventBästa resultat för ditt könBästa placering totaltBästa tid  
Bushy parkrun2341116:25 + Allt +
Kingston parkrun471116:51 + Allt +
Bedfont Lakes parkrun81117:04 + Allt +
Nonsuch parkrun71116:52 + Allt +
Richmond parkrun71117:13 + Allt +
Crane Park parkrun61116:48 + Allt +
Riddlesdown parkrun42217:01 + Allt +
Bexley parkrun31117:48 + Allt +
Tilgate parkrun31117:10 + Allt +
Frimley Lodge parkrun31117:11 + Allt +
Hilly Fields parkrun31117:50 + Allt +
Old Deer Park parkrun31117:41 + Allt +
Guildford parkrun31117:17 + Allt +
Homewood parkrun3151722:21 + Allt +
Brockwell parkrun, Herne Hill31116:56 + Allt +
Southwark parkrun34417:27 + Allt +
Fulham Palace parkrun33317:47 + Allt +
Cannon Hill parkrun, Birmingham3111118:04 + Allt +
Gunnersbury parkrun31116:51 + Allt +
Wimbledon Common parkrun35517:27 + Allt +
Brighton & Hove parkrun31116:27 + Allt +
Basingstoke parkrun35517:48 + Allt +
Black Park parkrun31117:25 + Allt +
Dulwich parkrun33317:11 + Allt +
Bedgebury Pinetum parkrun28921:24 + Allt +
Harrow parkrun25520:23 + Allt +
Netley Abbey parkrun21117:21 + Allt +
Ellenbrook Fields parkrun2141519:58 + Allt +
Worthing parkrun28918:44 + Allt +
Grovelands parkrun, Enfield22217:21 + Allt +
Beckton parkrun23317:24 + Allt +
Gladstone parkrun21117:09 + Allt +
Hackney Marshes parkrun22216:46 + Allt +
Burgess parkrun22216:45 + Allt +
Orpington parkrun22217:27 + Allt +
Barking parkrun22216:45 Allt - Graph It!
Kingston parkrun351100:16:51 +
Southampton parkrun23316:44 Allt - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Alice Holt parkrun21117:59 Allt - Graph It!
Richmond parkrun71100:17:13 +
Woodley parkrun21117:02 Allt - Graph It!
Nonsuch parkrun71100:16:52 +
Upton Court parkrun22217:24 Allt - Graph It!
Crane Park parkrun61100:16:48 +
Chelmsford Central parkrun22217:24 Allt - Graph It!
Brighton & Hove parkrun31100:16:27 +
Mole Valley parkrun2262622:56 Allt - Graph It!
Fulham Palace parkrun33300:17:47 +
Durlston Country Park parkrun2355032:45 Allt - Graph It!
Frimley Lodge parkrun31100:17:11 +
Hazelwood parkrun2182222:21 Allt - Graph It!
Gunnersbury parkrun31100:16:51 +
Southsea parkrun23317:55 Allt - Graph It!
Bexley parkrun31100:17:48 +
St Albans parkrun21116:37 Allt - Graph It!
Tilgate parkrun31100:17:10 +
Havant parkrun21117:46 Allt - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Ashford parkrun22217:57 Allt - Graph It!
Southwark parkrun34400:17:27 +
Bedford parkrun21116:55 Allt - Graph It!
Basingstoke parkrun35500:17:48 +
Margate parkrun21118:16 Allt - Graph It!
Hilly Fields parkrun31100:17:50 +
Milton Keynes parkrun23317:26 Allt - Graph It!
Black Park parkrun31100:17:25 +
Preston Park parkrun, Brighton22217:40 Allt - Graph It!
Riddlesdown parkrun32200:17:01 +
Shorne Woods parkrun21118:14 Allt - Graph It!
Dulwich parkrun33300:17:11 +
Canons Park parkrun27720:50 Allt - Graph It!
Guildford parkrun31100:17:17 +
Osterley parkrun21117:57 Allt - Graph It!
Old Deer Park parkrun31100:17:41 +
Eastleigh parkrun27719:14 Allt - Graph It!
Wimbledon Common parkrun35500:17:27 +
Brooklands parkrun2394223:22 Allt - Graph It!
Homewood parkrun3151700:22:21 +
Great Lines parkrun, Medway25518:25 Allt - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Malling Rec parkrun2738526:59 Allt - Graph It!
Pymmes parkrun21100:17:06 +
Crystal Palace parkrun21117:24 Allt - Graph It!
Hove Promenade parkrun27700:19:23 +
Northala Fields parkrun22218:06 Allt - Graph It!
Netley Abbey parkrun21100:17:21 +
Northampton parkrun21116:56 Allt - Graph It!
Mile End parkrun21100:16:53 +
Oak Hill parkrun21117:13 Allt - Graph It!
Southampton parkrun23300:16:44 +
Lloyd parkrun, Croydon21118:01 Allt - Graph It!
Northala Fields parkrun22200:18:06 +
Newbury parkrun21117:20 Allt - Graph It!
Hockley Woods parkrun26600:21:09 +
Cranleigh parkrun26620:49 Allt - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Littlehampton Prom parkrun2384324:22 Allt - Graph It!
Upton Court parkrun22200:17:24 +
Whitstable parkrun23318:12 Allt - Graph It!
Alice Holt parkrun21100:17:59 +
Bethlem Royal Hospital parkrun2263223:22 Allt - Graph It!
Osterley parkrun21100:17:57 +
Cyclopark parkrun2353824:01 Allt - Graph It!
Burgess parkrun22200:16:45 +
Hockley Woods parkrun26621:09 Allt - Graph It!
Gladstone parkrun21100:17:09 +
South Oxhey parkrun21119:13 Allt - Graph It!
Havant parkrun21100:17:46 +
Pymmes parkrun21117:06 Allt - Graph It!
Cranleigh parkrun26600:20:49 +
Hastings parkrun291120:41 Allt - Graph It!
Finsbury parkrun22200:17:15 +
Wycombe Rye parkrun22217:17 Allt - Graph It!
Southsea parkrun23300:17:55 +
Hove Promenade parkrun27719:23 Allt - Graph It!
Margate parkrun21100:18:16 +
Banstead Woods parkrun21117:31 Allt - Graph It!
Northampton parkrun21100:16:56 +
Wormwood Scrubs parkrun21118:00 Allt - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Roundshaw Downs parkrun23318:14 Allt - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Mile End parkrun21116:53 Allt - Graph It!
Crystal Palace parkrun21100:17:24 +
Bevendean Down parkrun28923:21 Allt - Graph It!
Eastleigh parkrun27700:19:14 +
Finsbury parkrun22217:15 Allt - Graph It!
Hastings parkrun291100:20:41 +
Tooting Common parkrun2181819:14 Allt - Graph It!
Banstead Woods parkrun21100:17:31 +
Bromley parkrun13317:18 Allt - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Houghton Hall parkrun1131321:48 Allt - Graph It!
Hackney Marshes parkrun22200:16:46 +
Sittingbourne parkrun18820:56 Allt - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Sharpham Road Playing Fields parkrun1253124:41 Allt - Graph It!
Woodley parkrun21100:17:02 +
Gadebridge parkrun1141422:22 Allt - Graph It!
Tooting Common parkrun2181800:19:14 +
Chilton Fields parkrun1405428:26 Allt - Graph It!
Milton Keynes parkrun23300:17:26 +
Storeys Field parkrun115121128:49 Allt - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Hadleigh parkrun, Essex1252624:27 Allt - Graph It!
Barking parkrun22200:16:45 +
Marple parkrun11117:15 Allt - Graph It!
Canons Park parkrun27700:20:50 +
Portsmouth Lakeside parkrun19919:12 Allt - Graph It!
Newbury parkrun21100:17:20 +
Grove Fields parkrun1578528:03 Allt - Graph It!
Shorne Woods parkrun21100:18:14 +
Banbury parkrun1222321:16 Allt - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Graves parkrun11118:18 Allt - Graph It!
Mole Valley parkrun2262600:22:56 +
Watermead Country Park parkrun110818235:52 Allt - Graph It!
Oak Hill parkrun21100:17:13 +
Eastbourne parkrun12217:24 Allt - Graph It!
Cyclopark parkrun2353800:24:01 +
Malahide parkrun11116:54 Allt - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Fareham parkrun16619:21 Allt - Graph It!
South Oxhey parkrun21100:19:13 +
Sutcliffe parkrun113117230:34 Allt - Graph It!
Chelmsford Central parkrun22200:17:24 +
Fritton Lake parkrun11118:26 Allt - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Bicester parkrun14420:13 Allt - Graph It!
Bevendean Down parkrun28900:23:21 +
Sandringham parkrun1466330:18 Allt - Graph It!
Bedford parkrun21100:16:55 +
Luton Wardown parkrun191019:36 Allt - Graph It!
Whitstable parkrun23300:18:12 +
Cwmbran parkrun1171723:29 Allt - Graph It!
Orpington parkrun22200:17:27 +
Broadwater parkrun110321335:19 Allt - Graph It!
Ashford parkrun22200:17:57 +
Basildon parkrun15518:13 Allt - Graph It!
Hazelwood parkrun2182200:22:21 +
Marecchia parkrun11119:50 Allt - Graph It!
Brooklands parkrun2394200:23:22 +
Harleston Magpies parkrun1293525:12 Allt - Graph It!
Wycombe Rye parkrun22200:17:17 +
Kingsway parkrun, Gloucester1192021:20 Allt - Graph It!
Harrow parkrun25500:20:23 +
Bryn Bach parkrun11116:50 Allt - Graph It!
Beckton parkrun23300:17:24 +
Mersea Island parkrun1121220:59 Allt - Graph It!
St Albans parkrun21100:16:37 +
Charlton parkrun18213032:05 Allt - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
parkrun de Rouen15521:41 Allt -  
Buckingham parkrun12200:18:37 +
Dallas Burston Polo Club parkrun19614732:26 Allt -  
Thomas Mills parkrun1486500:30:19 +
Ashton Court parkrun1859522:59 Allt -  
Leamington parkrun12200:18:52 +
Tøyen parkrun1668526:32 Allt -  
Church Mead parkrun16610200:32:53 +
The Great Field parkrun19313529:12 Allt -  
Letchworth parkrun1141400:23:13 +
Castle Park parkrun1394122:34 Allt -  
Mulbarton parkrun12200:19:55 +
Swanley parkrun19712531:18 Allt -  
Arrow Valley parkrun13300:18:05 +
Greenwich parkrun12218:07 Allt -  
Frogmary Green Farm parkrun1597200:25:58 +
Neckarau parkrun1243027:11 Allt -  
Sutton Park parkrun1475500:24:54 +
Bury Field parkrun1669033:07 Allt -  
Reigate Priory parkrun16600:19:06 +
Clifton parkrun1101025:14 Allt -  
Bury St Edmunds parkrun13300:18:17 +
Alton Water parkrun1538335:09 Allt -  
Pollok parkrun, Glasgow11100:17:00 +
Colwick parkrun18819:46 Allt -  
Kingdom parkrun1222500:24:39 +
Melksham parkrun1171724:31 Allt -  
Barclay parkrun15600:23:13 +
Markshall Estate parkrun110315632:26 Allt -  
Chippenham parkrun1212100:20:08 +
Rogiet parkrun1151624:27 Allt -  
Ipswich parkrun11100:17:34 +
Bartley Park parkrun18415132:38 Allt -  
Itchen Valley Country parkrun1476100:27:37 +
Lydiard parkrun18818:25 Allt -  
Neckarau parkrun1243000:27:11 +
Little Stoke parkrun11117:03 Allt -  
Brandon Country Park parkrun11100:18:30 +
Letchworth parkrun1141423:13 Allt -  
Boston parkrun17700:21:18 +
Belvoir Castle parkrun1131925:42 Allt -  
University Parks parkrun119032600:31:42 +
Andover parkrun11117:33 Allt -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Rushcliffe parkrun1617323:54 Allt -  
Lullingstone parkrun17700:21:21 +
Cirencester parkrun1222422:40 Allt -  
Coventry parkrun1292900:20:51 +
Southall parkrun1557531:38 Allt -  
Berkeley Green parkrun1233100:28:31 +
Forest of Dean parkrun1182224:51 Allt -  
Mersea Island parkrun1121200:20:59 +
parkrun des Dougnes, Cubnezais12219:42 Allt -  
Aylesbury parkrun11100:17:51 +
South Woodham Ferrers parkrun18821:14 Allt -  
Royal Tunbridge Wells parkrun18900:19:23 +
Marine Parade parkrun17711129:24 Allt -  
Southall parkrun1557500:31:38 +
Coventry parkrun1292920:51 Allt -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Wotton parkrun1182124:45 Allt -  
Pomphrey Hill parkrun1364100:23:02 +
Gloucester City parkrun1171922:35 Allt -  
Henley-on-Thames parkrun1111100:22:25 +
Great Salterns parkrun19212430:27 Allt -  
Aachener Weiher parkrun1101100:24:55 +
Bedworth parkrun1171722:14 Allt -  
Penrose parkrun1151600:19:40 +
University Parks parkrun119032631:42 Allt -  
King’s Lynn parkrun1151500:20:07 +
Hampstead Heath parkrun11117:45 Allt -  
Fulbourn Hospital parkrun1344700:24:59 +
Great Denham parkrun16619:27 Allt -  
Fareham parkrun16600:19:21 +
Downham Market Academy parkrun1121324:35 Allt -  
Brockenhurst parkrun13300:18:23 +
Ipswich parkrun11117:34 Allt -  
Canterbury parkrun16600:21:56 +
Sixfields Upton parkrun18819:58 Allt -  
Alton Water parkrun1538300:35:09 +
Rendlesham Forest parkrun1264637:01 Allt -  
Littleport parkrun1445100:25:16 +
Frogmary Green Farm parkrun1597225:58 Allt -  
Newport parkrun11100:17:29 +
Harrow Lodge parkrun11118:48 Allt -  
California Country parkrun1649000:28:49 +
Witney parkrun1202022:34 Allt -  
Thornbury parkrun1323400:28:19 +
Leamington parkrun12218:52 Allt -  
Greenwich parkrun12200:18:07 +
Brockenhurst parkrun13318:23 Allt -  
Seven Fields parkrun1475500:26:28 +
Hogmoor Inclosure parkrun1262625:26 Allt -  
Highbury Fields parkrun11100:17:25 +
Hastings High School parkrun1637827:33 Allt -  
The Great Field parkrun19313500:29:12 +
Cannock Chase parkrun1384425:49 Allt -  
Street parkrun1283500:25:52 +
Wimpole Estate parkrun1202122:14 Allt -  
South Norwood parkrun1121200:21:11 +
Haverhill parkrun1121323:32 Allt -  
Dunstable Downs parkrun1374300:24:58 +
Edenbrook Country parkrun110514828:01 Allt -  
Melton Mowbray parkrun1192200:22:38 +
Maidstone River Park parkrun13318:00 Allt -  
Horsham parkrun14500:18:16 +
Cheltenham parkrun12217:24 Allt -  
Irchester Country parkrun1586200:25:13 +
Victoria Dock parkrun1273020:04 Allt -  
Stratford-upon-Avon parkrun1202500:21:14 +
Ekebergsletta parkrun1304325:57 Allt -  
Wotton parkrun1182100:24:45 +
Oxford parkrun11117:18 Allt -  
Bath Skyline parkrun1192000:21:08 +
Aylesbury parkrun11117:51 Allt -  
Great Dunmow parkrun14400:20:25 +
Mote Park parkrun19712231:28 Allt -  
Corby parkrun18800:23:09 +
Riverfront parkrun1404622:57 Allt -  
Bracknell parkrun18800:20:04 +
Newent parkrun1182225:27 Allt -  
Cromhall parkrun1151600:24:20 +
Clapham Common parkrun1404220:22 Allt -  
Perry Hall parkrun1464900:24:58 +
Llanishen Park parkrun1303323:48 Allt -  
Gunpowder parkrun12200:17:34 +
Heartwood Forest parkrun1252721:41 Allt -  
Luton Wardown parkrun191000:19:36 +
Walthamstow parkrun11117:48 Allt -  
Ifield Mill Pond parkrun1373800:24:33 +
Malmö Ribersborg parkrun111215128:46 Allt -  
March parkrun15500:21:11 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 Allt -  
Roding Valley parkrun1111300:21:26 +
Huntingdon parkrun1202121:10 Allt -  
Charlton parkrun18213000:32:05 +
Felixstowe parkrun1121221:07 Allt -  
Malmö Ribersborg parkrun111215100:28:46 +
Tidworth parkrun110815535:14 Allt -  
Worcester parkrun114418500:29:30 +
Brandon Country Park parkrun11118:30 Allt -  
Wolford Wood parkrun1212700:30:24 +
Prospect parkrun1232322:42 Allt -  
Fire Service College parkrun1181900:22:12 +
Mildenhall Hub parkrun1273124:33 Allt -  
Panshanger parkrun17700:20:14 +
York parkrun12217:12 Allt -  
Conkers parkrun12200:17:46 +
Thetford parkrun1161721:45 Allt -  
Banbury parkrun1222300:21:16 +
Great Dunmow parkrun14420:25 Allt -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Leavesden Country parkrun1506928:32 Allt -  
Rushmere parkrun1131400:22:39 +
Catford parkrun1303322:32 Allt -  
Whiteley parkrun1141500:20:56 +
Lordship Recreation Ground parkrun19112425:22 Allt -  
Sandringham parkrun1466300:30:18 +
Rugby parkrun1181822:26 Allt -  
Victoria Dock parkrun1283000:20:04 +
Mulbarton parkrun12219:55 Allt -  
Queen Elizabeth parkrun12200:19:08 +
Swaffham parkrun191022:19 Allt -  
Lordship Recreation Ground parkrun19112400:25:22 +
Ganger Farm parkrun19811426:34 Allt -  
Somerdale Pavilion parkrun1384600:31:17 +
Beckenham Place parkrun1121220:28 Allt -  
Dartford parkrun11100:17:59 +
Forest Rec parkrun1677626:35 Allt -  
Winchester parkrun14500:18:28 +
Street parkrun1283525:52 Allt -  
Stratford Park parkrun, Stroud1566500:27:51 +
Market Bosworth Country Park parkrun110614435:35 Allt -  
Sherwood Pines parkrun1161800:21:33 +
Whiteley parkrun1141520:56 Allt -  
Grove Fields parkrun1578500:28:03 +
Kingsbury Water parkrun1394725:05 Allt -  
Witney parkrun1202000:22:34 +
Springhill parkrun14422:18 Allt -  
Preston Park parkrun, Brighton12200:17:40 +
Wolford Wood parkrun1212730:24 Allt -  
Colchester Castle parkrun14400:18:04 +
Pontypridd parkrun12217:54 Allt -  
Tidworth parkrun110815500:35:14 +
Pocket parkrun1222321:38 Allt -  
Walmer and Deal Seafront parkrun18800:21:38 +
Stockley Country parkrun111917935:32 Allt -  
Ferry Meadows parkrun15500:17:27 +
Braunstone parkrun1262720:41 Allt -  
St Mary’s parkrun1587400:29:14 +
Didcot parkrun1101121:28 Allt -  
Dartford Heath parkrun1171700:22:06 +
Littleport parkrun1445125:16 Allt -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Yarborough Leisure Centre parkrun1466125:59 Allt -  
Great Denham parkrun16600:19:27 +
Roding Valley parkrun1111321:26 Allt -  
Hastings High School parkrun1637800:27:33 +
Clair parkrun13318:36 Allt -  
Wendover Woods parkrun1262600:23:51 +
Dinton Pastures parkrun1131321:23 Allt -  
Peckham Rye parkrun11100:17:49 +
Beacon Hill Country Park parkrun1273725:54 Allt -  
Upton House parkrun1252700:22:34 +
Severn Bridge parkrun1353921:32 Allt -  
Lee-on-the-Solent parkrun17700:19:40 +
Abbey Park parkrun1779425:21 Allt -  
Graves parkrun11100:18:18 +
Dudley parkrun1445626:35 Allt -  
Maidstone parkrun13300:18:00 +
Pegwell Bay parkrun12217:40 Allt -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Manor Field parkrun, Whittlesey1121324:25 Allt -  
South Woodham Ferrers parkrun18800:21:14 +
Blaise Castle parkrun112816326:20 Allt -  
Pontypridd parkrun12200:17:54 +
Chipping Sodbury parkrun1303221:20 Allt -  
Bournemouth parkrun14400:17:43 +
Foots Cray Meadows parkrun1212323:17 Allt -  
Sizewell parkrun1172000:23:30 +
Thames Path parkrun, Woolwich1789023:42 Allt -  
Rushmoor parkrun19900:18:29 +
Bath Skyline parkrun1192021:08 Allt -  
Walsall Arboretum parkrun19810600:25:31 +
Dishley parkrun, Loughborough110311424:30 Allt -  
Gorleston Cliffs parkrun12200:17:43 +
Thornham Walks parkrun1363826:52 Allt -  
Uckfield parkrun1404300:24:12 +
Moors Valley parkrun19919:40 Allt -  
Aldenham parkrun1141400:21:37 +
East Grinstead parkrun1131423:10 Allt -  
Gadebridge parkrun1141400:22:22 +
Sutton Park parkrun1475524:54 Allt -  
Horspath parkrun17410600:28:12 +
University of Northampton parkrun1192223:24 Allt -  
Rogiet parkrun1151600:24:27 +
Shipley Country parkrun1232424:45 Allt -  
Rendlesham Forest parkrun1264600:37:01 +
Lancing Beach Green parkrun1141421:08 Allt -  
Dishley parkrun, Loughborough110311400:24:30 +
Dover Waterfront parkrun1374525:22 Allt -  
Great Cornard parkrun1192000:20:33 +
Rickmansworth parkrun1242721:39 Allt -  
Kettering parkrun1232600:22:50 +
Queen Elizabeth parkrun12219:08 Allt -  
Pont y Bala parkrun15700:23:18 +
Sizewell parkrun1172023:30 Allt -  
Burnham and Highbridge parkrun17510000:27:51 +
Holbrooks parkrun1202223:43 Allt -  
Stonehouse parkrun1131300:20:09 +
Highbury Fields parkrun11117:25 Allt -  
Hampstead Heath parkrun11100:17:45 +
Clacton Seafront parkrun19920:35 Allt -  
Wickford Memorial parkrun1436600:51:15 +
Delaware and Raritan Canal parkrun12221:06 Allt -  
Castle Park parkrun1394100:22:34 +
Wisbech parkrun1111523:03 Allt -  
Huntingdon parkrun1202100:21:10 +
Milton Country parkrun13317:43 Allt -  
Great Salterns parkrun19212400:30:27 +
Seaton parkrun1394824:09 Allt -  
Snowden Field parkrun1242600:24:15 +
Higginson parkrun, Marlow1272922:17 Allt -  
Southend parkrun11100:16:28 +
Quakers Walk parkrun1566825:05 Allt -  
Andover parkrun11100:17:33 +
Lister Park parkrun, Bradford1313621:55 Allt -  
parkrun Zalew Żyrardowski16700:24:38 +
Wendover Woods parkrun1262623:51 Allt -  
Marecchia parkrun11100:19:50 +
Sence Valley Forest Park parkrun1232526:28 Allt -  
Cheltenham parkrun12200:17:24 +
Canterbury parkrun16621:56 Allt -  
St Helens parkrun1606800:24:27 +
Henstridge Airfield parkrun18821:41 Allt -  
Bartley Park parkrun18415100:32:38 +
Five Arches parkrun1455422:58 Allt -  
Severn Bridge parkrun1353900:21:32 +
Yeovil Montacute parkrun1707525:51 Allt -  
Pontypool parkrun1232300:23:51 +
Watermeadows parkrun1283124:57 Allt -  
Poole parkrun14400:16:57 +
Tamworth Castle Grounds parkrun1333523:26 Allt -  
Bramhall parkrun115924700:35:16 +
St Helens parkrun1606824:27 Allt -  
Sunny Hill parkrun1202400:24:39 +
Weymouth parkrun1141420:45 Allt -  
Cassiobury parkrun1111100:20:14 +
Walmer and Deal Seafront parkrun18821:38 Allt -  
Hoblingwell parkrun1202400:23:52 +
Aston Hall parkrun1202225:01 Allt -  
Colwick parkrun18800:19:46 +
Royal Tunbridge Wells parkrun18919:23 Allt -  
Chipping Norton School parkrun1455100:26:40 +
Corby parkrun18823:09 Allt -  
Worthing parkrun18900:18:44 +
Marlborough Common parkrun1202122:48 Allt -  
Harrow Lodge parkrun11100:18:48 +
Battlestead Croft parkrun1111122:53 Allt -  
Bradford parkrun1313600:21:55 +
Shepton Mallet parkrun1121421:50 Allt -  
Bury Field parkrun1669000:33:07 +
Clare Castle parkrun1252723:04 Allt -  
Pocket parkrun1222300:21:38 +
Coldham’s Common parkrun1535923:04 Allt -  
Longrun Meadow parkrun111416500:32:01 +
Brunswick Park parkrun1212223:58 Allt -  
Worcester Pitchcroft parkrun111814300:27:04 +
Brentwood parkrun17722:28 Allt -  
Highwoods parkrun1252600:24:49 +
Somerdale Pavilion parkrun1384631:17 Allt -  
Maidenhead parkrun17700:18:49 +
Wakehurst parkrun18810525:00 Allt -  
Soham Village College parkrun1253200:28:03 +
Boston parkrun17721:18 Allt -  
Rickmansworth parkrun1242700:21:39 +
Morden parkrun111715526:58 Allt -  
Swaffham parkrun191000:22:19 +
Pontefract parkrun1718724:10 Allt -  
Brentwood parkrun17700:22:28 +
Jersey Farm parkrun1252723:11 Allt -  
Lymington Woodside parkrun15700:21:59 +
Bug Hunter Waters parkrun1455022:41 Allt -  
Loch Neaton parkrun, Watton1171700:25:49 +
Rosliston parkrun1333624:41 Allt -  
Daventry parkrun1151500:21:10 +
Longrun Meadow parkrun111416532:01 Allt -  
Hatfield Forest parkrun1181800:20:36 +
Fire Service College parkrun1181922:12 Allt -  
Kingsway parkrun, Gloucester1192000:21:20 +
Woolacombe Dunes parkrun19410931:20 Allt -  
Salcey Forest parkrun1384300:24:53 +
The Plens parkrun1303124:04 Allt -  
parkrun des Dougnes, Cubnezais12200:19:42 +
Arrow Valley parkrun13318:05 Allt -  
Prospect parkrun1232300:22:42 +
Tonbridge parkrun14418:40 Allt -  
Weymouth parkrun1141400:20:45 +
East Brighton parkrun1182123:56 Allt -  
Westmill parkrun1101000:22:55 +
Three Brooks parkrun1697223:46 Allt -  
East Brighton parkrun1182100:23:56 +
Peacehaven parkrun17721:07 Allt -  
Harlow parkrun1151500:23:00 +
Pontypool parkrun1232323:51 Allt -  
Linford Wood parkrun1222200:21:45 +
Cromhall parkrun1151624:20 Allt -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Dereham parkrun1323323:47 Allt -  
Lydney parkrun1202100:23:19 +
Bournemouth parkrun14417:43 Allt -  
Braunstone parkrun1262700:20:41 +
Pomphrey Hill parkrun1364123:02 Allt -  
Harleston Magpies parkrun1293500:25:12 +
Seaford Beach parkrun1535622:25 Allt -  
Clapham Common parkrun1404200:20:22 +
Mansfield parkrun11117:09 Allt -  
Market Bosworth Country Park parkrun110614400:35:35 +
Fountains Abbey parkrun11118:03 Allt -  
Jersey Farm parkrun1252700:23:11 +
Loch Neaton parkrun, Watton1171725:49 Allt -  
Kesgrave parkrun1374000:21:18 +
Brueton parkrun1475021:33 Allt -  
Stevenage parkrun17700:19:32 +
Great Cornard parkrun1192020:33 Allt -  
Hadleigh parkrun, Essex1252600:24:27 +
Dunstable Downs parkrun1374324:58 Allt -  
Squerryes Winery parkrun1323600:27:45 +
Beeston parkrun1374023:53 Allt -  
Rutland Water parkrun1293000:22:44 +
Feltham parkrun13424:56 Allt -  
Beckenham Place parkrun1121200:20:28 +
Markeaton parkrun1576422:56 Allt -  
Sutcliffe parkrun113117200:30:34 +
Reigate Priory parkrun16619:06 Allt -  
Haverhill parkrun1121300:23:32 +
Highwoods parkrun1252624:49 Allt -  
Leavesden Country parkrun1506900:28:32 +
Valentines parkrun11116:49 Allt -  
Coldham’s Common parkrun1535900:23:04 +
Springburn parkrun, Glasgow13318:05 Allt -  
Chichester parkrun13300:19:05 +
California Country parkrun1649028:49 Allt -  
Billericay parkrun1121300:21:20 +
Rushmoor parkrun19918:29 Allt -  
Bromley parkrun13300:17:18 +
Mountbatten School parkrun1323424:11 Allt -  
Babbs Mill parkrun1405100:28:00 +
Colchester Castle parkrun14418:04 Allt -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Buckingham parkrun12218:37 Allt -  
Bryn Bach parkrun11100:16:50 +
Sunny Hill parkrun1202424:39 Allt -  
York parkrun12200:17:12 +
Bognor Regis parkrun12218:12 Allt -  
Storeys Field parkrun115121100:28:49 +
Aachener Weiher parkrun1101124:55 Allt -  
Chipping Sodbury parkrun1303200:21:20 +
Peckham Rye parkrun11117:49 Allt -  
Mote Park parkrun19712200:31:28 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 Allt -  
Watermeadows parkrun1283100:24:57 +
Great Notley parkrun16620:16 Allt -  
Woking parkrun18800:18:19 +
Snowden Field parkrun1242624:15 Allt -  
Raphael parkrun13300:19:35 +
Burnham-on-Crouch parkrun18822:01 Allt -  
Harwich parkrun191000:21:22 +
Woking parkrun18818:19 Allt -  
Fritton Lake parkrun11100:18:26 +
Neckarufer parkrun, Esslingen1364425:12 Allt -  
Heartwood Forest parkrun1252700:21:41 +
Worcester parkrun114418529:30 Allt -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Blandford parkrun18920:11 Allt -  
Bedworth parkrun1171700:22:14 +
Pont y Bala parkrun15723:18 Allt -  
Clair parkrun13300:18:36 +
Chichester parkrun13319:05 Allt -  
Brueton parkrun1475000:21:33 +
Kingdom parkrun1222524:39 Allt -  
Higginson parkrun, Marlow1272900:22:17 +
Westmill parkrun1101022:55 Allt -  
Bognor Regis parkrun12200:18:12 +
Dartford parkrun11117:59 Allt -  
Huddersfield parkrun1626700:22:02 +
Hanworth parkrun1364024:26 Allt -  
Heaton parkrun13300:18:08 +
Bracknell parkrun18820:04 Allt -  
Chasewater parkrun18210000:26:19 +
Folkestone parkrun1212521:48 Allt -  
Tewkesbury parkrun1111400:22:50 +
Uckfield parkrun1404324:12 Allt -  
Marple parkrun11100:17:15 +
Harrogate parkrun13318:11 Allt -  
Cannock Chase parkrun1384400:25:49 +
Kesgrave parkrun1374021:18 Allt -  
Edgbaston Reservoir parkrun1658600:26:24 +
Thomas Mills parkrun1486530:19 Allt -  
Cirencester parkrun1222400:22:40 +
Lymington Woodside parkrun15721:59 Allt -  
Kingsbury Water parkrun1394700:25:05 +
Hereford parkrun1535323:07 Allt -  
Peacehaven parkrun17700:21:07 +
Chasewater parkrun18210026:19 Allt -  
Lancing Beach Green parkrun1141400:21:08 +
South Norwood parkrun1121221:11 Allt -  
Springburn parkrun, Glasgow13300:18:05 +
Panshanger parkrun17720:14 Allt -  
Market Harborough parkrun1303100:21:17 +
Wolverhampton parkrun1556624:54 Allt -  
Amager Fælled parkrun1333700:24:23 +
Harcourt Hill parkrun1171721:13 Allt -  
Hanworth parkrun1364000:24:26 +
Tetbury Goods Shed parkrun1253024:25 Allt -  
Salisbury parkrun1111100:19:34 +
Gloucester North parkrun1101022:14 Allt -  
Houghton Hall parkrun1131300:21:48 +
Harlow parkrun1151523:00 Allt -  
Chalkwell Beach parkrun1819600:24:40 +
Alvaston parkrun1515922:24 Allt -  
Melksham parkrun1171700:24:31 +
Worcester Pitchcroft parkrun111814327:04 Allt -  
Thetford parkrun1161700:21:45 +
Perry Hall parkrun1464924:58 Allt -  
Pontefract parkrun1718700:24:10 +
Newport parkrun11117:29 Allt -  
Downham Market Academy parkrun1121300:24:35 +
Tring parkrun1171823:38 Allt -  
Fountains Abbey parkrun11100:18:03 +
Severn Valley Country parkrun1141626:13 Allt -  
Cardiff parkrun111011700:22:02 +
Wanstead Flats parkrun13317:13 Allt -  
Littlehampton Prom parkrun1384300:24:22 +
Daventry parkrun1151521:10 Allt -  
Uditore parkrun13300:20:28 +
St Mary’s parkrun1587429:14 Allt -  
Beacon parkrun1587300:26:41 +
Poole parkrun14416:57 Allt -  
parkrun de Rouen15500:21:41 +
Melton Mowbray parkrun1192222:38 Allt -  
Walthamstow parkrun11100:17:48 +
The Old Showfield parkrun1636923:30 Allt -  
Shepton Mallet parkrun1121400:21:50 +
Henley-on-Thames parkrun1111122:25 Allt -  
Marine Parade parkrun17711100:29:24 +
Crissy Field parkrun1101220:40 Allt -  
Foots Cray Meadows parkrun1212300:23:17 +
Babbs Mill parkrun1405128:00 Allt -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Maidenhead parkrun17718:49 Allt -  
Evesham parkrun1111100:21:39 +
Ross-on-Wye parkrun1172124:22 Allt -  
Southwick Country parkrun1272900:21:47 +
Kettering parkrun1232622:50 Allt -  
Lydiard parkrun18800:18:25 +
Stratford Park parkrun, Stroud1566527:51 Allt -  
Sandhurst Memorial parkrun1537300:28:54 +
Bury St Edmunds parkrun13318:17 Allt -  
Bicester parkrun14400:20:13 +
Mallards Pike parkrun1324630:57 Allt -  
Wimpole Estate parkrun1202100:22:14 +
Market Harborough parkrun1303121:17 Allt -  
Markshall Estate parkrun110315600:32:26 +
Cassiobury parkrun1111120:14 Allt -  
Dinton Pastures parkrun1131300:21:23 +
Squerryes Winery parkrun1323627:45 Allt -  
Tonbridge parkrun14400:18:40 +
Walsall Arboretum parkrun19010625:31 Allt -  
Wanstead Flats parkrun13300:17:13 +
Penrose parkrun1151619:40 Allt -  
Woodhouse Moor parkrun11100:17:22 +
King George V Playing Field parkrun, Cheltenham1232826:08 Allt -  
Mountbatten School parkrun1323400:24:11 +
Evesham parkrun1111121:39 Allt -  
Eastville parkrun120525300:25:12 +
Warwick Racecourse parkrun1486024:55 Allt -  
Brixworth Country parkrun1496100:26:53 +
Huddersfield parkrun1626722:02 Allt -  
Portsmouth Lakeside parkrun19900:19:12 +
Clevedon Salthouse Fields parkrun1384925:13 Allt -  
Milton Country parkrun13300:17:43 +
Long Eaton parkrun19912124:06 Allt -  
Swanley parkrun19712500:31:18 +
Barry Island parkrun1394223:51 Allt -  
Springhill parkrun14400:22:18 +
Ifield Mill Pond parkrun1373824:33 Allt -  
Gloucester North parkrun1101000:22:14 +
Upton House parkrun1252722:34 Allt -  
Feltham parkrun13400:24:56 +
Lullingstone parkrun17721:21 Allt -  
Crissy Field parkrun1101200:20:40 +
The Leas parkrun, Minster1252524:37 Allt -  
Ally Pally parkrun11100:18:09 +
Medina I.O.W. parkrun11117:20 Allt -  
Ashton Court parkrun1859500:22:59 +
Uditore parkrun13320:28 Allt -  
Oaklands parkrun111820300:36:10 +
Hunstanton Promenade parkrun1283523:45 Allt -  
Sittingbourne parkrun18800:20:56 +
Raphael parkrun13319:35 Allt -  
Moors Valley parkrun19900:19:40 +
Burnham and Highbridge parkrun17510027:51 Allt -  
Catford parkrun1303300:22:32 +
Salcey Forest parkrun1384324:53 Allt -  
Clare Castle parkrun1252700:23:04 +
Ferry Meadows parkrun15517:27 Allt -  
Harrogate parkrun13300:18:11 +
Barclay parkrun15623:13 Allt -  
Seaford Beach parkrun1535600:22:25 +
Irchester Country parkrun1586225:13 Allt -  
Tring parkrun1171800:23:38 +
Maldon Prom parkrun11118:04 Allt -  
Sandwell Valley parkrun1455900:30:43 +
Salisbury parkrun1111119:34 Allt -  
Basildon parkrun15500:18:13 +
Tremorfa parkrun1272923:30 Allt -  
The Leas parkrun, Minster1252500:24:37 +
Billericay parkrun1121321:20 Allt -  
Little Stoke parkrun11100:17:03 +
Gedling parkrun1273224:59 Allt -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Oaklands parkrun111820336:10 Allt -  
Felixstowe parkrun1121200:21:07 +
Winchester parkrun14518:28 Allt -  
Yeovil Montacute parkrun1707500:25:51 +
Aldenham parkrun1141421:37 Allt -  
Stockley Country parkrun111917900:35:32 +
East Park parkrun1121424:18 Allt -  
Woolacombe Dunes parkrun19410900:31:20 +
Soham Village College parkrun1253228:03 Allt -  
Harcourt Hill parkrun1171700:21:13 +
Stevenage parkrun17719:32 Allt -  
Abingdon parkrun15500:18:03 +
Tewkesbury parkrun1111422:50 Allt -  
Eastbourne parkrun12200:17:24 +
Seven Fields parkrun1475526:28 Allt -  
Warwick Racecourse parkrun1486000:24:55 +
Conkers parkrun12217:46 Allt -  
Leicester Victoria parkrun19711600:26:45 +
Lee-on-the-Solent parkrun17719:40 Allt -  
Broadwater parkrun110321300:35:19 +
Brixworth Country parkrun1496126:53 Allt -  
Clacton Seafront parkrun19900:20:35 +
Abingdon parkrun15518:03 Allt -  
Burnham-on-Crouch parkrun18800:22:01 +
Lowestoft parkrun1232621:10 Allt -  
Ganger Farm parkrun19811400:26:34 +
Chipping Norton School parkrun1455126:40 Allt -  
Folkestone parkrun1212500:21:48 +
Linford Wood parkrun1222221:45 Allt -  
Mallards Pike parkrun1324600:30:57 +
Harwich parkrun191021:22 Allt -  
Malling parkrun18314500:47:25 +
Fulbourn Hospital parkrun1344724:59 Allt -  
Rugby parkrun1181800:22:26 +
Gunpowder parkrun12217:34 Allt -  
Watermead Country Park parkrun110818200:35:52 +
Dartford Heath parkrun1171722:06 Allt -  
Hogmoor Inclosure parkrun1262600:25:26 +
Sandhurst Memorial parkrun1537328:54 Allt -  
East Grinstead parkrun1131400:23:10 +
Woodhouse Moor parkrun11117:22 Allt -  
Mildenhall Hub parkrun1273100:24:33 +
Sandwell Valley parkrun1455930:43 Allt -  
Marlborough Common parkrun1202100:22:48 +
Wyre Forest parkrun1434825:56 Allt -  
Blandford parkrun18900:20:11 +
parkrun Zalew Żyrardowski16724:38 Allt -  
Maldon Prom parkrun11100:18:04 +
Bramhall parkrun115924735:16 Allt -  
Edinburgh parkrun12200:17:00 +
Hatfield Forest parkrun1181820:36 Allt -  
The Old Showfield parkrun1636900:23:30 +
Swansea Bay parkrun1748323:44 Allt -  
Jersey parkrun16600:19:41 +
Wollaton Hall parkrun1889723:51 Allt -  
Chilton Fields parkrun1405400:28:26 +
Horsham parkrun14518:16 Allt -  
Sixfields Upton parkrun18800:19:58 +
Jersey parkrun16619:41 Allt -  
Pegwell Bay parkrun12200:17:40 +
Berkeley Green parkrun1233128:31 Allt -  
Valentines parkrun11100:16:49 +
Cardiff parkrun111011722:02 Allt -  
Edenbrook Country parkrun110514800:28:01 +
Ally Pally parkrun11118:09 Allt -  
Henstridge Airfield parkrun18800:21:41 +
Thurrock parkrun, Orsett Heath16620:41 Allt -  
Great Notley parkrun16600:20:16 +
Beacon parkrun1587326:41 Allt -  
Medina I.O.W. parkrun11100:17:20 +
Albert parkrun, Middlesbrough1515423:17 Allt -  
Reading parkrun12200:17:18 +
Sherwood Pines parkrun1161821:33 Allt -  
Tetbury Goods Shed parkrun1253000:24:25 +
Wickford Memorial parkrun1436651:15 Allt -  
Lowestoft parkrun1232600:21:10 +
Thornbury parkrun1323428:19 Allt -  
Malahide parkrun11100:16:54 +
Malling parkrun18314547:25 Allt -  
Oxford parkrun11100:17:18 +
Itchen Valley Country parkrun1476127:37 Allt -  
Rheinpark parkrun1151800:25:30 +
Pollok parkrun, Glasgow11117:00 Allt -  
Gloucester City parkrun1171900:22:35 +
Eastville parkrun120525325:12 Allt -  
Didcot parkrun1101100:21:28 +
Rutland Water parkrun1293022:44 Allt -  
Mansfield parkrun11100:17:09 +
Chalkwell Beach parkrun1819624:40 Allt -  
7851100:16:25 +
Amager Fælled parkrun1333724:23 + Allt +
Hoblingwell parkrun1202423:52 + Allt +
Belton House parkrun1141523:48 + Allt +
Kagerzoom parkrun1435824:39 + Allt +
Gorleston Cliffs parkrun12217:43 + Allt +
King’s Lynn parkrun1151520:07 + Allt +
Holkham parkrun1506925:37 + Allt +
Horspath parkrun17410628:12 + Allt +
Southwick Country parkrun1272921:47 + Allt +
Rushmere parkrun1131422:39 + Allt +
Zuiderpark parkrun, Den Haag1738124:07 + Allt +
Heaton parkrun13318:08 + Allt +
Colney Lane parkrun1495524:01 + Allt +
Leicester Victoria parkrun19711626:45 + Allt +
Church Mead parkrun16610232:53 + Allt +
Southend parkrun11116:28 + Allt +
Lydney parkrun1202123:19 + Allt +
Edgbaston Reservoir parkrun1658626:24 + Allt +
Reading parkrun12217:18 + Allt +
March parkrun15521:11 + Allt +
Woodgate Valley Country Park parkrun16513245:50 + Allt +
Maaraue parkrun1232522:34 + Allt +
Stonehouse parkrun1131320:09 + Allt +
Rheinpark parkrun1151825:30 + Allt +
Edinburgh parkrun12217:00 + Allt +
Chippenham parkrun1212120:08 + Allt +
Stratford-upon-Avon parkrun1202521:14 + Allt +
Henlow Bridge Lakes parkrun17511532:34 + Allt +
8671116:25 Allt  


Volontärsummering

RollAntal gånger
- Loppansvarig - 94
- Tidtagare - 59
- Pollettsorterare - 3
- Resultatsansvarig - 87
- Fotograf - 6
- Kommunikationsansvarig - 10
- Funktionär - 39
- Ansvarig för att sätta upp banan - 130
- Material - förvaring och leverans - 128
- Övrigt - 23
- Streckkod scanning - 55
- Ansvarig för att ta ner banan - 45
- Pollettutdelare - 15
- Nummerkontrollant - 2
- Informationsansvarig för förstagångslöpare - 68
- Målfållaansvarig - 15
- Pollettutdelare assistent - 9
- Sistagångare - 29
- Volontäransvarig - 146
- Journalist - 97
- Backup Timer - 3
- Ledare för uppvärmning - 16
- Parkeringsvakt - 1
- Bankontroll på eventdagen - 8
- parkwalker - 9
Total Credits396

+ Loppansvarig +

99
+ Tidtagare + 94
+ Pollettsorterare + 12
+ Resultatsansvarig + 87
+ Fotograf + 6
+ Kommunikationsansvarig + 10
+ Funktionär + 54
+ Ansvarig för att sätta upp banan + 148
+ Material - förvaring och leverans + 130
+ Övrigt + 26
+ Streckkod scanning + 78
+ Ansvarig för att ta ner banan + 51
+ Pollettutdelare + 21
+ Nummerkontrollant + 2
+ Informationsansvarig för förstagångslöpare + 82
+ Målfållaansvarig + 15
+ Pollettutdelare assistent + 12
+ Sistagångare + 29
+ Volontäransvarig + 148
+ Journalist + 100
+ Backup Timer + 3
+ Ledare för uppvärmning + 16
+ Parkeringsvakt + 1
+ Bankontroll på eventdagen + 14
+ parkwalker + 10
Total Credits499

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



parkrun Freedom-lopp

DatumTidPlats
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(inte)parkruns

WeekDatumDatum(inte)parkrunsBästa tid
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1026,63 +1138,61 @@

Danny NORMAN (A482)
- Platser: 11 + Platser: 12
- Deltagare: 14 075 + Deltagare: 23074
- Starter: 66 470 + Starter: 105540
- Genomförda event: 1 727 + Genomförda event: 2493
- Volontärer: 1 312 + Volontärer: 1831
- Personbästan: 10 792 + Personbästan: 15958
- Genomsnittlig sluttid: 00:28:35 + Genomsnittlig sluttid: 00:28:45
- Genomsnittligt antal starter per deltagare: 4,7 + Grupper: 1630
-
- Grupper: 1 103 -
-

+
- Resultaten senast uppdaterad: fre 14 apr 2023 00:42:37 + Resultaten senast uppdaterad: mån 30 sep 2024 00:42:53
-

© parkrun Global Limited (Company number: 09411750)

Ingen del av denna webbplats får på något sätt reproduceras helt eller delvis utan upphovsrättsinnehavarens tillstånd.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1116,8 +1236,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/88720/all/index.html index 280861ac..2371af1c 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + resultat | parkrun Sweden - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -123,631 +109,729 @@

Phillip WHETTLOCK (A88720)

Medlem i parkruns 250-klubb - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns total

View summary stats for this parkrunner
- Deltog senast i ålderskategorin VM55-59 + Deltog senast i ålderskategorin VM60-64

Summary Stats for All Locations -
SnabbastGenomsnittLångsammaste
Tid21:4025:2552:00
Åldersgradering69.71%60.41%29.55%
Total placering648.88374

+
SnabbastGenomsnittLångsammaste
Tid21:3625:2654:59
Åldersgradering72.99%60.80%28.92%
Total placering648.44374

Best Overall Annual Achievements -
ÅrBästa tidBästa åldersgradering
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
ÅrBästa tidBästa åldersgradering
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

– Alla resultat -
EventDatumEventPlac.TidÅldersgraderingPB?
Halifax08/04/20233313225:0063.07% +
EventDatumEventPlac.TidÅldersgraderingPB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73%   -
Fulham Palace01/04/202339110924:0965.29% +
Halifax04/05/20243842924:2665.08%   -
Halifax25/03/20233291624:4363.79% +
Hyndburn27/04/20242593125:5161.51%   -
Halifax18/03/20233282326:4758.87% +
Zuiderpark20/04/20241261722:0372.11%   -
Halifax04/03/20233273825:1962.28% +
Halifax13/04/20243813524:3764.59%   -
Myrtle25/02/20231593824:5263.40% +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% PB   -
Halifax18/02/20233252926:0360.52% +
Conwy18/11/20233764424:5363.90%   -
Halifax11/02/20233243124:0365.56% +
Penistone28/10/20231393724:2065.34%   -
Bradford04/02/20235795022:3769.71% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Bowling Park28/01/202379924:1165.20% +
Halifax16/09/20233532123:4367.04%   -
Bramley21/01/20233004925:3461.67% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax14/01/20233213325:5260.95% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Halifax07/01/20233203026:2659.65% +
Glossop12/08/20233152824:2564.57%   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax05/08/20233473024:4363.79%   -
Nostell31/12/20223614325:0063.07% +
Huddersfield29/07/20235456722:4769.20%   -
Halifax24/12/20223173125:4661.19% +
Brighouse15/07/20232544223:5366.02% + PB + +   +
Stratford Park, Stroud01/07/20231253126:2959.53% +   +
Wetherby24/06/20233094124:4663.66%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax10/06/20233402524:0265.60%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax03/06/20233392124:1365.11% +   +
Long Eaton20/05/20233306921:3672.99% +   +
Halifax06/05/20233352423:4566.39% +   +
Keswick29/04/20233904121:3672.99% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax22/04/20233334725:0262.98%   -
Brighouse12/11/20222213725:1762.36% +
Halifax08/04/20233313225:0063.07%   -
Halifax05/11/20223122424:5163.45% +
Fulham Palace01/04/202339110924:0965.29%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax25/03/20233291624:4363.79%   -
Halifax15/10/202230910749:5431.60% +
Halifax18/03/20233282326:4758.87%   -
Crosby08/10/20222833525:3861.51% +
Halifax04/03/20233273825:1962.28%   -
Alness01/10/20221801024:0965.29% +
Myrtle25/02/20231593824:5263.40% + PB + +   +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71% +   +
Bowling Park28/01/202379924:1165.20% +   +
Bramley21/01/20233004925:3461.67% +   +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB + +   +
Conkers19/11/20225485624:1465.06%   -
Victoria24/09/20223736722:5468.85% +
Brighouse12/11/20222213725:1762.36%   -
Halifax17/09/20223052625:0063.07% +
Halifax05/11/20223122424:5163.45%   -
Centre Vale10/09/20221034428:4454.87% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax03/09/20223033125:3361.71% +
Halifax15/10/202230910749:5431.60%   -
Skipton27/08/20224035325:3561.11% +
Crosby08/10/20222833525:3861.51%   -
Halifax20/08/20223012824:5262.87% +
Alness01/10/20221801024:0965.29%   -
Halifax06/08/20222996426:0360.01% +
Victoria24/09/20223736722:5468.85%   -
Armley30/07/20221432724:2863.90% +
Halifax17/09/20223052625:0063.07%   -
Halifax16/07/20222962524:2663.98% +
Centre Vale10/09/20221034428:4454.87%   -
Halifax02/07/20222942524:4863.04% +
Halifax03/09/20223033125:3361.71%   -
Halifax18/06/20222922424:5462.78% +
Skipton27/08/20224035325:3561.11%   -
The Pastures11/06/2022991826:2159.33% +
Halifax20/08/20223012824:5262.87%   -
Halifax04/06/20222913826:4858.33% +
Halifax06/08/20222996426:0360.01%   -
Horton Park28/05/20222942225:1262.04% +
Armley30/07/20221432724:2863.90%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax16/07/20222962524:2663.98%   -
Halifax07/05/20222877529:3552.85% +
Halifax02/07/20222942524:4863.04%   -
Harrogate30/04/202246716226:4458.48% +
Halifax18/06/20222922424:5462.78%   -
Halifax23/04/20222854927:0057.90% +
The Pastures11/06/2022991826:2159.33%   -
Halifax09/04/20222834526:3758.74% +
Halifax04/06/20222913826:4858.33%   -
Halifax02/04/20222822924:4463.21% +
Horton Park28/05/20222942225:1262.04%   -
Pendle26/03/20223443126:1659.52% +
Bushy Park21/05/202287737424:0664.87%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax07/05/20222877529:3552.85%   -
Halifax05/03/20222784925:3761.03% +
Harrogate30/04/202246716226:4458.48%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax23/04/20222854927:0057.90% +   +
Halifax09/04/20222834526:3758.74% +   +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -778,63 +862,61 @@

Phillip WHETTLOCK (A8
- Platser: 11 -
-
- Deltagare: 14 178 + Platser: 12
- Starter: 67 029 + Deltagare: 23074
- Genomförda event: 1 738 + Starter: 105540
- Volontärer: 1 317 + Genomförda event: 2493
- Personbästan: 10 877 + Volontärer: 1831
- Genomsnittlig sluttid: 00:28:35 + Personbästan: 15958
- Genomsnittligt antal starter per deltagare: 4,7 + Genomsnittlig sluttid: 00:28:45
- Grupper: 1 105 + Grupper: 1630
-
+
- Resultaten senast uppdaterad: mån 17 apr 2023 00:43:09 + Resultaten senast uppdaterad: mån 30 sep 2024 00:42:53
-

© parkrun Global Limited (Company number: 09411750)

Ingen del av denna webbplats får på något sätt reproduceras helt eller delvis utan upphovsrättsinnehavarens tillstånd.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -868,8 +960,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/88720/index.html index 72abbd45..5c89095d 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + resultat | parkrun Sweden - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - - @@ -59,7 +54,7 @@
@@ -71,34 +66,25 @@
@@ -123,185 +109,241 @@

Phillip WHETTLOCK (A88720)

Medlem i parkruns 250-klubb - - Member of the Volunteer 100 club -

299 parkruns total

+ + Member of the Volunteer 250 club +

345 parkruns total

Se statistik för alla parkruns genomförda av denna deltagare
- Deltog senast i ålderskategorin VM55-59 -

Senaste lopp

EventDatumPlac.
M/K
Total placeringTidÅldersgradering
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Eventsummering

EventAntal eventBästa resultat för ditt könBästa placering totaltBästa tid  
Bradford parkrun1166600:21:40 + Deltog senast i ålderskategorin VM60-64 +

Senaste lopp

EventDatumPlac.
M/K
Total placeringTidÅldersgradering
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Eventsummering

EventAntal eventBästa resultat för ditt könBästa placering totaltBästa tid  
Halifax parkrun1268822:13 + Allt +
Lister Park parkrun, Bradford1166621:40 + Allt +
Horton Park parkrun9131322:18 + Allt +
Keswick parkrun4253321:36 + Allt +
Sewerby parkrun3121222:08 + Allt +
Pontefract parkrun2273222:08 + Allt +
Brighouse parkrun2333723:53 + Allt +
Temple Newsam parkrun2272925:14 + Allt +
Fountains Abbey parkrun2394822:26 + Allt +
Oakwell Hall parkrun2293626:10 + Allt +
Whinlatter Forest parkrun2283227:23 + Allt +
Bramley parkrun2252524:06 + Allt +
Middleton Woods parkrun2121424:55 + Allt +
Myrtle parkrun2333824:52 + Allt +
Centre Vale parkrun2303626:37 + Allt +
Bushy parkrun130137424:06 + Allt +
Woodhouse Moor parkrun1778222:18 + Allt +
Pollok parkrun, Glasgow1667223:58 + Allt +
Edinburgh parkrun1646721:54 Allt - Graph It!
Halifax parkrun1148800:22:13 +
Wakefield Thornes parkrun1545824:29 Allt - Graph It!
Horton Park parkrun9131300:22:18 +
Hyndburn parkrun1253125:51 Allt - Graph It!
Sewerby parkrun3121200:22:08 +
York parkrun111413522:55 Allt - Graph It!
Keswick parkrun3253300:23:33 +
Milton Country parkrun1707522:40 Allt - Graph It!
Pontefract parkrun2273200:22:08 +
Carlisle parkrun1567126:05 Allt - Graph It!
Temple Newsam parkrun2272900:25:14 +
Harrogate parkrun112316226:44 Allt - Graph It!
Myrtle parkrun2333800:24:52 +
Southport parkrun1545723:57 Allt - Graph It!
Middleton Woods parkrun2121400:24:55 +
Barnsley parkrun1414325:05 Allt - Graph It!
Bramley parkrun2252500:24:06 +
Rothwell parkrun1535724:20 Allt - Graph It!
Druridge Bay parkrun1354200:23:35 +
Huddersfield parkrun1596722:47 Allt -  
Fountains Abbey parkrun1394800:22:26 +
Long Eaton parkrun1556921:36 Allt -  
Victoria parkrun, Glasgow1546700:22:54 +
Wycombe Rye parkrun1232622:35 Allt -  
Clumber Park parkrun1101100:21:46 +
Conkers parkrun1525624:14 Allt -  
Rothay Park parkrun1202700:24:48 +
Roundhay parkrun112815726:55 Allt -  
Warwick Racecourse parkrun1638200:24:06 +
Hanley parkrun16622:03 Allt -  
Conkers parkrun1525600:24:14 +
Worsley Woods parkrun1728824:46 Allt -  
The Pastures parkrun1161800:26:21 +
Burnley parkrun1545725:21 Allt -  
Harrogate parkrun112316200:26:44 +
Dewsbury parkrun18610128:15 Allt -  
Dishley parkrun, Loughborough1535700:24:25 +
Cross Flatts parkrun1303724:16 Allt -  
Dalby Forest parkrun1283200:23:06 +
Clumber Park parkrun1101121:46 Allt -  
Woodhouse Moor parkrun1778200:22:18 +
Skipton parkrun1505325:35 Allt -  
Whinlatter Forest parkrun1283200:27:23 +
Flatts Lane parkrun1171826:53 Allt -  
Watergrove parkrun, Rochdale1111200:27:57 +
Victoria parkrun, Glasgow1546722:54 Allt -  
Springburn parkrun, Glasgow1161600:23:14 +
Alness parkrun171024:09 Allt -  
Fulham Palace parkrun18610900:24:09 +
Fulham Palace parkrun18610924:09 Allt -  
Flatts Lane parkrun1171800:26:53 +
Springburn parkrun, Glasgow1161623:14 Allt -  
Roberts Park parkrun1657500:24:54 +
Druridge Bay parkrun1354223:35 Allt -  
Bowling Park parkrun18900:24:11 +
Pendle parkrun1263126:16 Allt -  
Hanley parkrun16600:22:03 +
Watergrove parkrun, Rochdale1111227:57 Allt -  
Centre Vale parkrun1304400:28:44 +
Wetherby parkrun1374124:46 Allt -  
Wycombe Rye parkrun1232600:22:35 +
Portobello parkrun, Edinburgh1668024:16 Allt -  
Carlisle parkrun1567100:26:05 +
Nostell parkrun1374325:00 Allt -  
Armley parkrun1262700:24:28 +
Fell Foot parkrun, Newby Bridge1161722:57 Allt -  
Crosby parkrun1293500:25:38 +
Conwy parkrun1394424:53 Allt -  
Edinburgh parkrun1646700:21:54 +
Glossop parkrun1242824:25 Allt -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Crosby parkrun1293525:38 Allt -  
Bushy parkrun130137400:24:06 +
Dolgellau parkrun1459954:59 Allt -  
Oakwell Hall parkrun1344000:26:10 +
Dalby Forest parkrun1283223:06 Allt -  
Pendle parkrun1263100:26:16 +
Clitheroe Castle parkrun1192525:41 Allt -  
Alness parkrun171000:24:09 +
Armley parkrun1262724:28 Allt -  
Skipton parkrun1505300:25:35 +
Dishley parkrun, Loughborough1535724:25 Allt -  
Chevin Forest parkrun1213000:26:47 +
Ford parkrun1202525:00 Allt -  
Burnley parkrun1545700:25:21 +
Cliffe Castle parkrun1151725:18 Allt -  
Queen’s parkrun, Glasgow1677900:25:29 +
Potternewton parkrun1293625:04 Allt -  
Roundhay parkrun112815700:26:55 +
Isabel Trail parkrun1293422:02 Allt -  
Storthes Hall parkrun1263000:26:20 +
The Pastures parkrun1161826:21 Allt -  
Southport parkrun1545700:23:57 +
Storthes Hall parkrun1263026:20 Allt -  
Cliffe Castle parkrun1151700:25:18 +
Hafan Pwllheli parkrun1212726:48 Allt -  
Brighouse parkrun1333700:25:17 +
Penistone parkrun1343724:20 Allt -  
Milton Country parkrun1707500:22:40 +
Conyngham Hall parkrun1363824:55 Allt -  
Pollok parkrun, Glasgow1667200:23:58 +
Stratford Park parkrun, Stroud1303126:29 Allt -  
Nostell parkrun1384300:25:00 +
Warwick Racecourse parkrun1638224:06 Allt -  
Portobello parkrun, Edinburgh1668000:24:16 +
University of Stirling parkrun1343723:52 Allt -  
2996600:21:40 +
Jubilee parkrun1121926:42 + Allt +
Queen’s parkrun, Glasgow1677925:29 + Allt +
Bowling Park parkrun18924:11 + Allt +
Rothay Park parkrun1202724:48 + Allt +
Zuiderpark parkrun, Den Haag1151722:03 + Allt +
Carlisle Park parkrun, Morpeth1293325:44 + Allt +
Chevin Forest parkrun1213026:47 + Allt +
Roberts Park parkrun1657524:54 + Allt +
Beacon Hill Country Park parkrun1192325:36 + Allt +
Thames Path parkrun, Woolwich1586323:49 + Allt +
3456621:36 Allt  


Volontärsummering

RollAntal gånger
- Loppansvarig - 32
- Tidtagare - 17
- Pollettsorterare - 5
- Resultatsansvarig - 1
- Fotograf - 1
- Kommunikationsansvarig - 5
- Funktionär - 35
- Ansvarig för att sätta upp banan - 28
- Material - förvaring och leverans - 5
- Övrigt - 1
- Streckkod scanning - 27
- Ansvarig för att ta ner banan - 24
- Pollettutdelare - 11
- Nummerkontrollant - 1
- Informationsansvarig för förstagångslöpare - 77
- Målfållaansvarig - 12
- Pollettutdelare assistent - 10
- Sistagångare - 5
- Volontäransvarig - 10
- Journalist - 1
- Farthållare - 5
- Backup Timer - 14
- Ledsagare för synskadad - 1
- Ledare för uppvärmning - 5
- Teckenspråk assistent - 1
- Parkeringsvakt - 1
- Bankontroll på eventdagen - 25
- parkwalker - 1
Total Credits249

+ Loppansvarig +

33
+ Tidtagare + 28
+ Pollettsorterare + 5
+ Resultatsansvarig + 4
+ Fotograf + 1
+ Kommunikationsansvarig + 6
+ Funktionär + 35
+ Ansvarig för att sätta upp banan + 29
+ Material - förvaring och leverans + 6
+ Övrigt + 2
+ Streckkod scanning + 46
+ Ansvarig för att ta ner banan + 25
+ Pollettutdelare + 16
+ Nummerkontrollant + 1
+ Informationsansvarig för förstagångslöpare + 82
+ Målfållaansvarig + 16
+ Pollettutdelare assistent + 16
+ Sistagångare + 15
+ Volontäransvarig + 11
+ Journalist + 1
+ Farthållare + 10
+ Backup Timer + 14
+ Ledsagare för synskadad + 1
+ Ledare för uppvärmning + 15
+ Teckenspråk assistent + 1
+ Parkeringsvakt + 1
+ Bankontroll på eventdagen + 57
+ parkwalker + 1
Total Credits316

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. -



parkrun Freedom-lopp

DatumTidPlats
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(inte)parkruns

WeekDatumDatum(inte)parkrunsBästa tid
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here. +



parkrun Freedom-lopp

DatumTidPlats
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(inte)parkruns

WeekDatumDatum(inte)parkrunsBästa tid
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -330,63 +372,61 @@

Phillip WHETTLOCK (A8
- Platser: 11 + Platser: 12
- Deltagare: 14 178 + Deltagare: 23074
- Starter: 67 029 + Starter: 105540
- Genomförda event: 1 738 + Genomförda event: 2493
- Volontärer: 1 317 + Volontärer: 1831
- Personbästan: 10 877 + Personbästan: 15958
- Genomsnittlig sluttid: 00:28:35 + Genomsnittlig sluttid: 00:28:45
- Genomsnittligt antal starter per deltagare: 4,7 + Grupper: 1630
-
- Grupper: 1 105 -
-
+

- Resultaten senast uppdaterad: mån 17 apr 2023 00:43:09 + Resultaten senast uppdaterad: mån 30 sep 2024 00:42:53
-

© parkrun Global Limited (Company number: 09411750)

Ingen del av denna webbplats får på något sätt reproduceras helt eller delvis utan upphovsrättsinnehavarens tillstånd.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -420,8 +470,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/999999/all/index.html index 9a721eca..88b06d5c 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + resultat | parkrun Sweden @@ -54,7 +54,7 @@
@@ -66,34 +66,25 @@
@@ -117,7 +108,7 @@

Jakub WOLSKI (A999999)

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -149,63 +140,61 @@

Jakub WOLSKI (A999999
- Platser: 11 -
-
- Deltagare: 15 961 + Platser: 12
- Starter: 72 842 + Deltagare: 23074
- Genomförda event: 1 850 + Starter: 105540
- Volontärer: 1 445 + Genomförda event: 2493
- Personbästan: 11 600 + Volontärer: 1831
- Genomsnittlig sluttid: 00:28:39 + Personbästan: 15958
- Genomsnittligt antal starter per deltagare: 4,6 + Genomsnittlig sluttid: 00:28:45
- Grupper: 1 260 + Grupper: 1630
-
+
- Resultaten senast uppdaterad: tor 29 jun 2023 00:43:10 + Resultaten senast uppdaterad: mån 30 sep 2024 00:42:53
-

© parkrun Global Limited (Company number: 09411750)

Ingen del av denna webbplats får på något sätt reproduceras helt eller delvis utan upphovsrättsinnehavarens tillstånd.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -239,8 +238,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/999999/index.html index cea99e2d..71f0e609 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.se/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + resultat | parkrun Sweden @@ -54,7 +54,7 @@
@@ -66,34 +66,25 @@
@@ -116,7 +107,7 @@ style='width:auto;margin-bottom: 20px;'> -

Jakub WOLSKI (A999999)

No results have been recorded yet for this parkrunner.

+

Jakub WOLSKI (A999999)

@@ -145,63 +136,61 @@

Jakub WOLSKI (A999999
- Platser: 11 -
-
- Deltagare: 15 961 + Platser: 12
- Starter: 72 842 + Deltagare: 23074
- Genomförda event: 1 850 + Starter: 105540
- Volontärer: 1 445 + Genomförda event: 2493
- Personbästan: 11 600 + Volontärer: 1831
- Genomsnittlig sluttid: 00:28:39 + Personbästan: 15958
- Genomsnittligt antal starter per deltagare: 4,6 + Genomsnittlig sluttid: 00:28:45
- Grupper: 1 260 + Grupper: 1630
-
+

- Resultaten senast uppdaterad: tor 29 jun 2023 00:43:10 + Resultaten senast uppdaterad: mån 30 sep 2024 00:42:53
-

© parkrun Global Limited (Company number: 09411750)

Ingen del av denna webbplats får på något sätt reproduceras helt eller delvis utan upphovsrättsinnehavarens tillstånd.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -235,8 +234,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/1309364/all/index.html index 4a424336..e0105743 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Singapore - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -113,543 +100,649 @@ -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM35-39 + Most recent age category was VM40-44

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time20:0628:4757:34
Age Grading64.51%47.44%23.54%
Overall Position5165.361021

+
FastestAverage
(mean)
Slowest
Time20:0629:2057:34
Age Grading64.51%46.67%23.54%
Overall Position5182.341021

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60%   -
Whiteley25/03/202321418332:2441.82% +
Whiteley18/11/202324721037:0536.54%   -
Winchester11/03/202342821230:3744.26% +
Whiteley11/11/202324617430:3744.26%   -
Winchester04/03/202342730935:4537.90% +
Winchester21/10/202345731533:5140.03%   -
Winchester25/02/202342632536:0937.48% +
Winchester14/10/202345634233:5439.97%   -
Winchester18/02/202342530336:3137.11% +
Ganger Farm07/10/20234713233:4940.07%   -
Delamere31/12/202242331536:2537.21% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester23/09/202345321928:2247.77%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester16/09/202345235430:3244.38%   -
Winchester26/11/202241229335:3137.87% +
Winchester09/09/202345129229:1146.43%   -
Whiteley12/11/202221016534:2839.02% +
Delamere02/09/202345822633:2840.49%   -
Winchester29/10/202240924429:5544.96% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester22/10/202240833736:0837.22% +
Winchester29/07/202344622227:3649.09%   -
Winchester17/09/202240326230:2944.12% +
Winchester22/07/202344540537:0036.62%   -
Winchester10/09/202240231134:3338.93% +
Whiteley15/07/202322915731:1643.34%   -
Alice Holt03/09/202241817936:3236.82% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester27/08/202240042335:2138.05% +
Winchester17/06/202344128530:4144.16%   -
Winchester13/08/202239823431:3042.70% +
Winchester10/06/202344032435:2138.33%   -
Tidworth30/07/2022615151:4226.02% +
Winchester20/05/202343822427:0949.91%   -
Uckfield23/07/20221006028:4346.84% +
Winchester13/05/202343733232:4341.42%   -
Winchester09/07/202239428633:1640.43% +
Whiteley29/04/202321919635:3138.15%   -
Eastleigh28/05/202254015531:2042.93% +
Winchester22/04/202343431731:1143.45%   -
Winchester21/05/202238930733:2840.19% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Alice Holt14/05/202240216932:0142.01% +
Whiteley25/03/202321418332:2441.82%   -
Winchester07/05/202238734034:1339.31% +
Winchester11/03/202342821230:3744.26%   -
Guildford30/04/202242825130:0144.81% +
Winchester04/03/202342730935:4537.90%   -
Winchester23/04/202238522932:0241.99% +
Winchester25/02/202342632536:0937.48%   -
Winchester16/04/202238431033:2340.29% +
Winchester18/02/202342530336:3137.11%   -
Winchester19/03/202238025033:5439.68% +
Delamere31/12/202242331536:2537.21%   -
Alice Holt01/01/202238524237:4635.61% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester20/11/202136338445:0729.59% +
Winchester26/11/202241229335:3137.87%   -
Winchester09/10/202135739843:0730.96% +
Whiteley12/11/202221016534:2839.02%   -
Winchester25/09/202135538955:0324.25% +
Winchester29/10/202240924429:5544.96%   -
Winchester18/09/202135433938:1234.95% +
Winchester22/10/202240833736:0837.22%   -
Winchester04/09/202135233838:2434.77% +
Winchester17/09/202240326230:2944.12%   -
Winchester28/08/202135139841:0132.55% +
Winchester10/09/202240231134:3338.93%   -
Winchester14/08/202134936055:4623.94% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester31/07/202134832845:2029.45% +
Winchester27/08/202240042335:2138.05%   -
Winchester14/03/202034625851:3825.69% +
Winchester13/08/202239823431:3042.70%   -
Winchester07/03/202034510325:5251.29% +
Tidworth30/07/2022615151:4226.02%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Uckfield23/07/20221006028:4346.84%   -
Newbury22/02/202043434631:1142.54% +
Winchester09/07/202239428633:1640.43%   -
Alice Holt08/02/202036010727:1948.57% +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -680,78 +773,61 @@

Andrew TAYLOR (A13093
- Locations: 3 + Locations: 4
- Finishers: 12,825 + Finishers: 18930
- Finishes: 50,149 + Finishes: 73937
- All-time events: 721 + All-time events: 969
- Volunteers: 1,180 + Volunteers: 1621
- PBs: 8,967 + PBs: 12384
- Average finish time: 00:28:41 + Average finish time: 00:29:19
- Average finishes per participant: 3.9 + Groups: 1564
-
- Groups: 1,220 -
-
-
- Female record: - Alexandria ANTHONY – 17:28 - (28 Jan 2023) -
-
- Male record: - Aki NUMMELA – 15:16 - (28 Feb 2015) -
-
- Age graded record: - Lavinia PETRIE - 99.58% 23:55 - (21 Jul 2018) -
+
- Stats last updated: Fri 14 Apr 2023 00:41:04 UTC + Stats last updated: Mon 30 Sep 2024 00:40:48 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -780,8 +866,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/1309364/index.html index 656ad976..2cbec477 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + results | parkrun Singapore - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -113,178 +100,188 @@ -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club -

245 parkruns total

+

297 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM35-39 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun146121300:20:18 + Most recent age category was VM40-44 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun173121320:18 + All +
Whiteley parkrun1410714629:06 + All +
Delamere parkrun11232321:42 + All +
Eastleigh parkrun6242524:08 All - Graph It!
Delamere parkrun8232300:21:42 +
Southampton parkrun5687021:17 All - Graph It!
Whiteley parkrun610714600:29:06 +
Alice Holt parkrun59010727:19 All - Graph It!
Alice Holt parkrun59010700:27:19 +
Newbury parkrun4829123:49 All - Graph It!
Southampton parkrun5687000:21:17 +
Congleton parkrun49920:06 All - Graph It!
Eastleigh parkrun5242500:24:08 +
Medina I.O.W. parkrun4667525:13 All - Graph It!
Congleton parkrun49900:20:06 +
Fell Foot parkrun, Newby Bridge4212223:48 All - Graph It!
Witton parkrun4303500:25:40 +
Witton parkrun4303525:40 All - Graph It!
Northwich parkrun4485200:24:55 +
Northwich parkrun4485224:55 All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Ganger Farm parkrun38013229:25 All - Graph It!
Andover parkrun2242600:22:24 +
Andover parkrun2242622:24 All - Graph It!
Ganger Farm parkrun29713500:29:25 +
Hanley parkrun2333922:31 All - Graph It!
Hanley parkrun2333900:22:31 +
Burnley parkrun212718929:06 All - Graph It!
Newbury parkrun2829100:23:49 +
Queen Elizabeth parkrun2364026:36 All - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Heaton parkrun133846731:01 All - Graph It!
Hagley parkrun1182000:22:38 +
Guildford parkrun117125130:01 All -  
Ormskirk parkrun120930300:31:04 +
Hyndburn parkrun1425329:55 All -  
Basingstoke parkrun111212900:24:31 +
Phoenix parkrun1232627:31 All -  
Cuerden Valley parkrun1192000:24:47 +
Canterbury parkrun1323627:29 All -  
Seven Fields parkrun1546700:28:28 +
Valentines parkrun1698025:14 All -  
Netley Abbey parkrun1586400:24:21 +
Poole parkrun121328428:59 All -  
Mountbatten School parkrun17110100:31:29 +
Long Eaton parkrun118122928:06 All -  
Clitheroe Castle parkrun1639700:35:46 +
Bolton parkrun116221831:49 All -  
Medina I.O.W. parkrun19513900:30:57 +
Eden Project parkrun111116230:21 All -  
Hogmoor Inclosure parkrun111314000:29:34 +
Abingdon parkrun114220229:14 All -  
Milano Nord parkrun1475300:27:49 +
Netley Abbey parkrun1586424:21 All -  
Jersey parkrun111018500:30:53 +
Hilly Fields parkrun1859925:03 All -  
Canterbury parkrun1323600:27:29 +
Brockenhurst parkrun112718632:41 All -  
Penrhyn parkrun1232600:24:33 +
Wimpole Estate parkrun112916928:07 All -  
Hyndburn parkrun1425300:29:55 +
Clumber Park parkrun112117629:51 All -  
Woking parkrun1485800:24:01 +
Cuerden Valley parkrun1192024:47 All -  
Fountains Abbey parkrun1283000:20:33 +
Hamilton Lake parkrun1151621:47 All -  
Bushy parkrun1681102100:33:01 +
Fountains Abbey parkrun1283020:33 All -  
Clumber Park parkrun112117600:29:51 +
Ormskirk parkrun120930331:04 All -  
Wimpole Estate parkrun112916900:28:07 +
Pendle parkrun1465926:37 All -  
Tidworth parkrun18615100:51:42 +
Woking parkrun1485824:01 All -  
Hilly Fields parkrun1859900:25:03 +
Hagley parkrun1182022:38 All -  
Tawd Valley parkrun18111000:29:25 +
Penrhyn parkrun1232624:33 All -  
Watermeadows parkrun1151500:23:51 +
Salisbury parkrun119326729:45 All -  
Eden Project parkrun111116200:30:21 +
Jersey parkrun111018530:53 All -  
Catford parkrun19512500:27:24 +
Haigh Woodland parkrun18916837:04 All -  
Crewe parkrun112315400:30:05 +
Stretford parkrun127540530:23 All -  
Long Eaton parkrun118122900:28:06 +
Portsmouth Lakeside parkrun1818726:32 All -  
Fareham parkrun19511400:28:52 +
Fareham parkrun19011428:52 All -  
Phoenix parkrun1232600:27:31 +
Milano Nord parkrun1475327:49 All -  
Guildford parkrun117125100:30:01 +
Richmond Olympic parkrun15521:59 All -  
Pendle parkrun1465900:26:37 +
Crewe parkrun112315430:05 All -  
Heaton parkrun133846700:31:01 +
Hogmoor Inclosure parkrun111314029:34 All -  
Hamilton Lake parkrun1151600:21:47 +
Catford parkrun19512527:24 All -  
Brockenhurst parkrun112718600:32:41 +
Clitheroe Castle parkrun1639735:46 All -  
Itchen Valley Country parkrun110713500:29:53 +
Pocket parkrun112419533:47 All -  
Burnley parkrun114120400:29:06 +
Ford parkrun1477432:29 All -  
Uckfield parkrun1416000:28:43 +
Watermeadows parkrun1151523:51 All -  
Abingdon parkrun114220200:29:14 +
Mountbatten School parkrun17110131:29 All -  
Pocket parkrun112419500:33:47 +
Uckfield parkrun1416028:43 All -  
Bolton parkrun116221800:31:49 +
Tawd Valley parkrun18111029:25 All -  
Richmond Olympic parkrun15500:21:59 +
Seven Fields parkrun1546728:28 All -  
Poole parkrun121328400:28:59 +
Itchen Valley Country parkrun110613529:53 All -  
Portsmouth Lakeside parkrun1818700:26:32 +
Bartley Park parkrun1628430:26 All -  
Salisbury parkrun119326700:29:45 +
Tidworth parkrun18615151:42 All -  
2455500:20:06 +
Bushy parkrun1681102133:01 + All +
Basingstoke parkrun111212924:31 + All +
2975520:06 All  


Volunteer Summary

RoleOccasions
- Run Director - 21
- Timekeeper - 2
- Token Sorting - 8
- Results Processor - 6
- Photographer - 4
- Marshal - 4
- Pre-event Setup - 6
- Equipment Storage and Delivery - 2
- Barcode Scanning - 2
- Post-event Close Down - 10
- Finish Tokens - 1
- Number Checker - 2
- First Timers Welcome - 1
- Funnel Manager - 1
- Tail Walker - 4
- Volunteer Co-ordinator - 1
- Report Writer - 10
- Pacer (5k only) - 1
Total Credits58

+ Run Director +

21
+ Timekeeper + 2
+ Token Sorting + 8
+ Results Processor + 6
+ Photographer + 4
+ Marshal + 5
+ Pre-event Setup + 6
+ Equipment Storage and Delivery + 2
+ Barcode Scanning + 3
+ Post-event Close Down + 10
+ Finish Tokens + 1
+ Number Checker + 2
+ First Timers Welcome + 1
+ Funnel Manager + 1
+ Tail Walker + 4
+ Volunteer Co-ordinator + 1
+ Report Writer + 10
+ Pacer (5k only) + 1
Total Credits60

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -314,78 +311,61 @@

Andrew TAYLOR (A13093
- Locations: 3 + Locations: 4
- Finishers: 12,825 + Finishers: 18930
- Finishes: 50,149 + Finishes: 73937
- All-time events: 721 + All-time events: 969
- Volunteers: 1,180 + Volunteers: 1621
- PBs: 8,967 + PBs: 12384
- Average finish time: 00:28:41 + Average finish time: 00:29:19
- Average finishes per participant: 3.9 + Groups: 1564
-
- Groups: 1,220 -
-
-
- Female record: - Alexandria ANTHONY – 17:28 - (28 Jan 2023) -
-
- Male record: - Aki NUMMELA – 15:16 - (28 Feb 2015) -
-
- Age graded record: - Lavinia PETRIE - 99.58% 23:55 - (21 Jul 2018) -
+

- Stats last updated: Fri 14 Apr 2023 00:41:04 UTC + Stats last updated: Mon 30 Sep 2024 00:40:48 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -414,8 +404,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/2705084/all/index.html index a10cc777..850c77ff 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Singapore - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -113,10 +100,10 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -148,78 +135,61 @@

Duncan BOOTH (A270508
- Locations: 3 -
-
- Finishers: 12,874 + Locations: 4
- Finishes: 50,326 + Finishers: 18930
- All-time events: 723 + Finishes: 73937
- Volunteers: 1,181 + All-time events: 969
- PBs: 8,985 + Volunteers: 1621
- Average finish time: 00:28:42 + PBs: 12384
- Average finishes per participant: 3.9 + Average finish time: 00:29:19
- Groups: 1,224 + Groups: 1564
-
-
- Female record: - Alexandria ANTHONY – 17:28 - (28 Jan 2023) -
-
- Male record: - Aki NUMMELA – 15:16 - (28 Feb 2015) -
-
- Age graded record: - Lavinia PETRIE - 99.58% 23:55 - (21 Jul 2018) -
+
- Stats last updated: Mon 17 Apr 2023 00:41:21 UTC + Stats last updated: Mon 30 Sep 2024 00:40:48 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -248,8 +228,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/2705084/index.html index ef176932..edd2f607 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + results | parkrun Singapore - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -113,18 +100,18 @@ -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volunteer Summary

RoleOccasions
- Marshal - 260
- Lead Bike - 130
- Event Day Course Check - 9
Total Credits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Volunteer Summary

RoleOccasions
+ Marshal + 350
+ Lead Bike + 130
+ Event Day Course Check + 82
Total Credits540

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



@@ -154,78 +141,61 @@

Duncan BOOTH (A270508
- Locations: 3 -
-
- Finishers: 12,874 + Locations: 4
- Finishes: 50,326 + Finishers: 18930
- All-time events: 723 + Finishes: 73937
- Volunteers: 1,181 + All-time events: 969
- PBs: 8,985 + Volunteers: 1621
- Average finish time: 00:28:42 + PBs: 12384
- Average finishes per participant: 3.9 + Average finish time: 00:29:19
- Groups: 1,224 + Groups: 1564
-
-
- Female record: - Alexandria ANTHONY – 17:28 - (28 Jan 2023) -
-
- Male record: - Aki NUMMELA – 15:16 - (28 Feb 2015) -
-
- Age graded record: - Lavinia PETRIE - 99.58% 23:55 - (21 Jul 2018) -
+

- Stats last updated: Mon 17 Apr 2023 00:41:21 UTC + Stats last updated: Mon 30 Sep 2024 00:40:48 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -254,8 +234,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/482/all/index.html index 97bc6bb5..8ed0956a 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Singapore - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -118,1650 +105,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM40-44 + Most recent age category was VM45-49

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time16:2521:0459:17
Age Grading79.25%65.45%23.56%
Overall Position134.831692

+
FastestAverage
(mean)
Slowest
Time16:2521:2659:17
Age Grading79.25%64.63%23.56%
Overall Position138.841692

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Harleston Magpies08/04/2023793525:1255.42% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Cannock Chase01/04/20232434425:4954.10% +
Quakers Walk25/11/2023126825:0556.08%   -
Kingston25/03/202360216430:0946.32% +
Aston Hall18/11/202352225:0156.23%   -
Wolford Wood18/03/202352730:2445.94% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Kingston11/03/202360015027:1851.16% +
Belvoir Castle04/11/2023911925:4254.73%   -
Stockley Country04/03/2023817935:3239.31% +
Five Arches28/10/202365422:5861.25%   -
Chasewater25/02/202310010026:1953.07% +
Dover Waterfront21/10/202374525:2255.45%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Rushcliffe14/10/20235087323:5458.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Kingston07/10/202363033150:2927.86%   -
Worcester04/02/202354318529:3047.34% +
Maaraue03/10/20231012522:3462.33%   -
Crane Park28/01/202349014550:3727.59% +
University of Northampton30/09/2023112223:2460.11%   -
Kingston21/01/202359431139:3935.22% +
Clifton23/09/20231911025:1455.75%   -
Brooklands14/01/202313018830:4445.44% +
Wisbech16/09/202351523:0361.03%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Holbrooks09/09/202362223:4359.31%   -
Kingston01/01/202359113340:3134.47% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston31/12/202259026442:4432.68% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Bushy Park25/12/2022909169244:3931.28% +
Riverfront19/08/20232594622:5761.29%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston17/12/202258818059:1723.56% +
Kingston05/08/20236216723:2160.24%   -
Kingston10/12/202258723255:4025.09% +
Kingston29/07/20236208725:0955.93%   -
Beacon03/12/2022737326:4152.34% +
Kingston22/07/20236199224:2457.65%   -
Ganger Farm26/11/2022211426:3452.57% +
Severn Valley Country15/07/20231411626:1353.66%   -
Bushy Park19/11/2022903110553:2326.16% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Leavesden Country12/11/202246928:3248.95% +
Thornham Walks01/07/202353826:5251.99%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Kingston24/06/20236156524:0957.83%   -
Durlston Country Park29/10/2022335032:4542.65% +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1792,78 +1945,61 @@

Danny NORMAN (A482)
- Locations: 3 + Locations: 4
- Finishers: 12,825 + Finishers: 18930
- Finishes: 50,149 + Finishes: 73937
- All-time events: 721 + All-time events: 969
- Volunteers: 1,180 + Volunteers: 1621
- PBs: 8,967 + PBs: 12384
- Average finish time: 00:28:41 + Average finish time: 00:29:19
- Average finishes per participant: 3.9 + Groups: 1564
-
- Groups: 1,220 -
- -
- Female record: - Alexandria ANTHONY – 17:28 - (28 Jan 2023) -
-
- Male record: - Aki NUMMELA – 15:16 - (28 Feb 2015) -
-
- Age graded record: - Lavinia PETRIE - 99.58% 23:55 - (21 Jul 2018) -
+
- Stats last updated: Fri 14 Apr 2023 00:41:04 UTC + Stats last updated: Mon 30 Sep 2024 00:40:48 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1892,8 +2038,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/482/index.html index 35663e11..c3771254 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + results | parkrun Singapore - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -117,878 +104,1004 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns total

+

867 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM40-44 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2321100:16:25 + Most recent age category was VM45-49 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2341116:25 + All +
Kingston parkrun471116:51 + All +
Bedfont Lakes parkrun81117:04 + All +
Nonsuch parkrun71116:52 + All +
Richmond parkrun71117:13 + All +
Crane Park parkrun61116:48 + All +
Riddlesdown parkrun42217:01 + All +
Bexley parkrun31117:48 + All +
Tilgate parkrun31117:10 + All +
Frimley Lodge parkrun31117:11 + All +
Hilly Fields parkrun31117:50 + All +
Old Deer Park parkrun31117:41 + All +
Guildford parkrun31117:17 + All +
Homewood parkrun3151722:21 + All +
Brockwell parkrun, Herne Hill31116:56 + All +
Southwark parkrun34417:27 + All +
Fulham Palace parkrun33317:47 + All +
Cannon Hill parkrun, Birmingham3111118:04 + All +
Gunnersbury parkrun31116:51 + All +
Wimbledon Common parkrun35517:27 + All +
Brighton & Hove parkrun31116:27 + All +
Basingstoke parkrun35517:48 + All +
Black Park parkrun31117:25 + All +
Dulwich parkrun33317:11 + All +
Bedgebury Pinetum parkrun28921:24 + All +
Harrow parkrun25520:23 + All +
Netley Abbey parkrun21117:21 + All +
Ellenbrook Fields parkrun2141519:58 + All +
Worthing parkrun28918:44 + All +
Grovelands parkrun, Enfield22217:21 + All +
Beckton parkrun23317:24 + All +
Gladstone parkrun21117:09 + All +
Hackney Marshes parkrun22216:46 + All +
Burgess parkrun22216:45 + All +
Orpington parkrun22217:27 + All +
Barking parkrun22216:45 + All +
Southampton parkrun23316:44 + All +
Alice Holt parkrun21117:59 All - Graph It!
Kingston parkrun351100:16:51 +
Woodley parkrun21117:02 All - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Upton Court parkrun22217:24 All - Graph It!
Richmond parkrun71100:17:13 +
Chelmsford Central parkrun22217:24 All - Graph It!
Nonsuch parkrun71100:16:52 +
Mole Valley parkrun2262622:56 All - Graph It!
Crane Park parkrun61100:16:48 +
Durlston Country Park parkrun2355032:45 All - Graph It!
Brighton & Hove parkrun31100:16:27 +
Hazelwood parkrun2182222:21 All - Graph It!
Fulham Palace parkrun33300:17:47 +
Southsea parkrun23317:55 All - Graph It!
Frimley Lodge parkrun31100:17:11 +
St Albans parkrun21116:37 All - Graph It!
Gunnersbury parkrun31100:16:51 +
Havant parkrun21117:46 All - Graph It!
Bexley parkrun31100:17:48 +
Ashford parkrun22217:57 All - Graph It!
Tilgate parkrun31100:17:10 +
Bedford parkrun21116:55 All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Margate parkrun21118:16 All - Graph It!
Southwark parkrun34400:17:27 +
Milton Keynes parkrun23317:26 All - Graph It!
Basingstoke parkrun35500:17:48 +
Preston Park parkrun, Brighton22217:40 All - Graph It!
Hilly Fields parkrun31100:17:50 +
Shorne Woods parkrun21118:14 All - Graph It!
Black Park parkrun31100:17:25 +
Canons Park parkrun27720:50 All - Graph It!
Riddlesdown parkrun32200:17:01 +
Osterley parkrun21117:57 All - Graph It!
Dulwich parkrun33300:17:11 +
Eastleigh parkrun27719:14 All - Graph It!
Guildford parkrun31100:17:17 +
Brooklands parkrun2394223:22 All - Graph It!
Old Deer Park parkrun31100:17:41 +
Great Lines parkrun, Medway25518:25 All - Graph It!
Wimbledon Common parkrun35500:17:27 +
Malling Rec parkrun2738526:59 All - Graph It!
Homewood parkrun3151700:22:21 +
Crystal Palace parkrun21117:24 All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Northala Fields parkrun22218:06 All - Graph It!
Pymmes parkrun21100:17:06 +
Northampton parkrun21116:56 All - Graph It!
Hove Promenade parkrun27700:19:23 +
Oak Hill parkrun21117:13 All - Graph It!
Netley Abbey parkrun21100:17:21 +
Lloyd parkrun, Croydon21118:01 All - Graph It!
Mile End parkrun21100:16:53 +
Newbury parkrun21117:20 All - Graph It!
Southampton parkrun23300:16:44 +
Cranleigh parkrun26620:49 All - Graph It!
Northala Fields parkrun22200:18:06 +
Littlehampton Prom parkrun2384324:22 All - Graph It!
Hockley Woods parkrun26600:21:09 +
Whitstable parkrun23318:12 All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Bethlem Royal Hospital parkrun2263223:22 All - Graph It!
Upton Court parkrun22200:17:24 +
Cyclopark parkrun2353824:01 All - Graph It!
Alice Holt parkrun21100:17:59 +
Hockley Woods parkrun26621:09 All - Graph It!
Osterley parkrun21100:17:57 +
South Oxhey parkrun21119:13 All - Graph It!
Burgess parkrun22200:16:45 +
Pymmes parkrun21117:06 All - Graph It!
Gladstone parkrun21100:17:09 +
Hastings parkrun291120:41 All - Graph It!
Havant parkrun21100:17:46 +
Wycombe Rye parkrun22217:17 All - Graph It!
Cranleigh parkrun26600:20:49 +
Hove Promenade parkrun27719:23 All - Graph It!
Finsbury parkrun22200:17:15 +
Banstead Woods parkrun21117:31 All - Graph It!
Southsea parkrun23300:17:55 +
Wormwood Scrubs parkrun21118:00 All - Graph It!
Margate parkrun21100:18:16 +
Roundshaw Downs parkrun23318:14 All - Graph It!
Northampton parkrun21100:16:56 +
Mile End parkrun21116:53 All - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Bevendean Down parkrun28923:21 All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Finsbury parkrun22217:15 All - Graph It!
Crystal Palace parkrun21100:17:24 +
Tooting Common parkrun2181819:14 All - Graph It!
Eastleigh parkrun27700:19:14 +
Bromley parkrun13317:18 All - Graph It!
Hastings parkrun291100:20:41 +
Houghton Hall parkrun1131321:48 All - Graph It!
Banstead Woods parkrun21100:17:31 +
Sittingbourne parkrun18820:56 All - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Sharpham Road Playing Fields parkrun1253124:41 All - Graph It!
Hackney Marshes parkrun22200:16:46 +
Gadebridge parkrun1141422:22 All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Chilton Fields parkrun1405428:26 All - Graph It!
Woodley parkrun21100:17:02 +
Storeys Field parkrun115121128:49 All - Graph It!
Tooting Common parkrun2181800:19:14 +
Hadleigh parkrun, Essex1252624:27 All - Graph It!
Milton Keynes parkrun23300:17:26 +
Marple parkrun11117:15 All - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Portsmouth Lakeside parkrun19919:12 All - Graph It!
Barking parkrun22200:16:45 +
Grove Fields parkrun1578528:03 All - Graph It!
Canons Park parkrun27700:20:50 +
Banbury parkrun1222321:16 All - Graph It!
Newbury parkrun21100:17:20 +
Graves parkrun11118:18 All - Graph It!
Shorne Woods parkrun21100:18:14 +
Watermead Country Park parkrun110818235:52 All - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Eastbourne parkrun12217:24 All - Graph It!
Mole Valley parkrun2262600:22:56 +
Malahide parkrun11116:54 All - Graph It!
Oak Hill parkrun21100:17:13 +
Fareham parkrun16619:21 All - Graph It!
Cyclopark parkrun2353800:24:01 +
Sutcliffe parkrun113117230:34 All - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Fritton Lake parkrun11118:26 All - Graph It!
South Oxhey parkrun21100:19:13 +
Bicester parkrun14420:13 All - Graph It!
Chelmsford Central parkrun22200:17:24 +
Sandringham parkrun1466330:18 All - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Luton Wardown parkrun191019:36 All - Graph It!
Bevendean Down parkrun28900:23:21 +
Cwmbran parkrun1171723:29 All - Graph It!
Bedford parkrun21100:16:55 +
Broadwater parkrun110321335:19 All - Graph It!
Whitstable parkrun23300:18:12 +
Basildon parkrun15518:13 All - Graph It!
Orpington parkrun22200:17:27 +
Marecchia parkrun11119:50 All - Graph It!
Ashford parkrun22200:17:57 +
Harleston Magpies parkrun1293525:12 All - Graph It!
Hazelwood parkrun2182200:22:21 +
Kingsway parkrun, Gloucester1192021:20 All - Graph It!
Brooklands parkrun2394200:23:22 +
Bryn Bach parkrun11116:50 All - Graph It!
Wycombe Rye parkrun22200:17:17 +
Mersea Island parkrun1121220:59 All - Graph It!
Harrow parkrun25500:20:23 +
Charlton parkrun18213032:05 All - Graph It!
Beckton parkrun23300:17:24 +
parkrun de Rouen15521:41 All - Graph It!
St Albans parkrun21100:16:37 +
Dallas Burston Polo Club parkrun19614732:26 All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Ashton Court parkrun1859522:59 All -  
Buckingham parkrun12200:18:37 +
Tøyen parkrun1668526:32 All -  
Thomas Mills parkrun1486500:30:19 +
The Great Field parkrun19313529:12 All -  
Leamington parkrun12200:18:52 +
Castle Park parkrun1394122:34 All -  
Church Mead parkrun16610200:32:53 +
Swanley parkrun19712531:18 All -  
Letchworth parkrun1141400:23:13 +
Greenwich parkrun12218:07 All -  
Mulbarton parkrun12200:19:55 +
Neckarau parkrun1243027:11 All -  
Arrow Valley parkrun13300:18:05 +
Bury Field parkrun1669033:07 All -  
Frogmary Green Farm parkrun1597200:25:58 +
Clifton parkrun1101025:14 All -  
Sutton Park parkrun1475500:24:54 +
Alton Water parkrun1538335:09 All -  
Reigate Priory parkrun16600:19:06 +
Colwick parkrun18819:46 All -  
Bury St Edmunds parkrun13300:18:17 +
Melksham parkrun1171724:31 All -  
Pollok parkrun, Glasgow11100:17:00 +
Markshall Estate parkrun110315632:26 All -  
Kingdom parkrun1222500:24:39 +
Rogiet parkrun1151624:27 All -  
Barclay parkrun15600:23:13 +
Bartley Park parkrun18415132:38 All -  
Chippenham parkrun1212100:20:08 +
Lydiard parkrun18818:25 All -  
Ipswich parkrun11100:17:34 +
Little Stoke parkrun11117:03 All -  
Itchen Valley Country parkrun1476100:27:37 +
Letchworth parkrun1141423:13 All -  
Neckarau parkrun1243000:27:11 +
Belvoir Castle parkrun1131925:42 All -  
Brandon Country Park parkrun11100:18:30 +
Andover parkrun11117:33 All -  
Boston parkrun17700:21:18 +
Rushcliffe parkrun1617323:54 All -  
University Parks parkrun119032600:31:42 +
Cirencester parkrun1222422:40 All -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Southall parkrun1557531:38 All -  
Lullingstone parkrun17700:21:21 +
Forest of Dean parkrun1182224:51 All -  
Coventry parkrun1292900:20:51 +
parkrun des Dougnes, Cubnezais12219:42 All -  
Berkeley Green parkrun1233100:28:31 +
South Woodham Ferrers parkrun18821:14 All -  
Mersea Island parkrun1121200:20:59 +
Marine Parade parkrun17711129:24 All -  
Aylesbury parkrun11100:17:51 +
Coventry parkrun1292920:51 All -  
Royal Tunbridge Wells parkrun18900:19:23 +
Wotton parkrun1182124:45 All -  
Southall parkrun1557500:31:38 +
Gloucester City parkrun1171922:35 All -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Great Salterns parkrun19212430:27 All -  
Pomphrey Hill parkrun1364100:23:02 +
Bedworth parkrun1171722:14 All -  
Henley-on-Thames parkrun1111100:22:25 +
University Parks parkrun119032631:42 All -  
Aachener Weiher parkrun1101100:24:55 +
Hampstead Heath parkrun11117:45 All -  
Penrose parkrun1151600:19:40 +
Great Denham parkrun16619:27 All -  
King’s Lynn parkrun1151500:20:07 +
Downham Market Academy parkrun1121324:35 All -  
Fulbourn Hospital parkrun1344700:24:59 +
Ipswich parkrun11117:34 All -  
Fareham parkrun16600:19:21 +
Sixfields Upton parkrun18819:58 All -  
Brockenhurst parkrun13300:18:23 +
Rendlesham Forest parkrun1264637:01 All -  
Canterbury parkrun16600:21:56 +
Frogmary Green Farm parkrun1597225:58 All -  
Alton Water parkrun1538300:35:09 +
Harrow Lodge parkrun11118:48 All -  
Littleport parkrun1445100:25:16 +
Witney parkrun1202022:34 All -  
Newport parkrun11100:17:29 +
Leamington parkrun12218:52 All -  
California Country parkrun1649000:28:49 +
Brockenhurst parkrun13318:23 All -  
Thornbury parkrun1323400:28:19 +
Hogmoor Inclosure parkrun1262625:26 All -  
Greenwich parkrun12200:18:07 +
Hastings High School parkrun1637827:33 All -  
Seven Fields parkrun1475500:26:28 +
Cannock Chase parkrun1384425:49 All -  
Highbury Fields parkrun11100:17:25 +
Wimpole Estate parkrun1202122:14 All -  
The Great Field parkrun19313500:29:12 +
Haverhill parkrun1121323:32 All -  
Street parkrun1283500:25:52 +
Edenbrook Country parkrun110514828:01 All -  
South Norwood parkrun1121200:21:11 +
Maidstone River Park parkrun13318:00 All -  
Dunstable Downs parkrun1374300:24:58 +
Cheltenham parkrun12217:24 All -  
Melton Mowbray parkrun1192200:22:38 +
Victoria Dock parkrun1273020:04 All -  
Horsham parkrun14500:18:16 +
Ekebergsletta parkrun1304325:57 All -  
Irchester Country parkrun1586200:25:13 +
Oxford parkrun11117:18 All -  
Stratford-upon-Avon parkrun1202500:21:14 +
Aylesbury parkrun11117:51 All -  
Wotton parkrun1182100:24:45 +
Mote Park parkrun19712231:28 All -  
Bath Skyline parkrun1192000:21:08 +
Riverfront parkrun1404622:57 All -  
Great Dunmow parkrun14400:20:25 +
Newent parkrun1182225:27 All -  
Corby parkrun18800:23:09 +
Clapham Common parkrun1404220:22 All -  
Bracknell parkrun18800:20:04 +
Llanishen Park parkrun1303323:48 All -  
Cromhall parkrun1151600:24:20 +
Heartwood Forest parkrun1252721:41 All -  
Perry Hall parkrun1464900:24:58 +
Walthamstow parkrun11117:48 All -  
Gunpowder parkrun12200:17:34 +
Malmö Ribersborg parkrun111215128:46 All -  
Luton Wardown parkrun191000:19:36 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 All -  
Ifield Mill Pond parkrun1373800:24:33 +
Huntingdon parkrun1202121:10 All -  
March parkrun15500:21:11 +
Felixstowe parkrun1121221:07 All -  
Roding Valley parkrun1111300:21:26 +
Tidworth parkrun110815535:14 All -  
Charlton parkrun18213000:32:05 +
Brandon Country Park parkrun11118:30 All -  
Malmö Ribersborg parkrun111215100:28:46 +
Prospect parkrun1232322:42 All -  
Worcester parkrun114418500:29:30 +
Mildenhall Hub parkrun1273124:33 All -  
Wolford Wood parkrun1212700:30:24 +
York parkrun12217:12 All -  
Fire Service College parkrun1181900:22:12 +
Thetford parkrun1161721:45 All -  
Panshanger parkrun17700:20:14 +
Great Dunmow parkrun14420:25 All -  
Conkers parkrun12200:17:46 +
Leavesden Country parkrun1506928:32 All -  
Banbury parkrun1222300:21:16 +
Catford parkrun1303322:32 All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Lordship Recreation Ground parkrun19112425:22 All -  
Rushmere parkrun1131400:22:39 +
Rugby parkrun1181822:26 All -  
Whiteley parkrun1141500:20:56 +
Mulbarton parkrun12219:55 All -  
Sandringham parkrun1466300:30:18 +
Swaffham parkrun191022:19 All -  
Victoria Dock parkrun1283000:20:04 +
Ganger Farm parkrun19811426:34 All -  
Queen Elizabeth parkrun12200:19:08 +
Beckenham Place parkrun1121220:28 All -  
Lordship Recreation Ground parkrun19112400:25:22 +
Forest Rec parkrun1677626:35 All -  
Somerdale Pavilion parkrun1384600:31:17 +
Street parkrun1283525:52 All -  
Dartford parkrun11100:17:59 +
Market Bosworth Country Park parkrun110614435:35 All -  
Winchester parkrun14500:18:28 +
Whiteley parkrun1141520:56 All -  
Stratford Park parkrun, Stroud1566500:27:51 +
Kingsbury Water parkrun1394725:05 All -  
Sherwood Pines parkrun1161800:21:33 +
Springhill parkrun14422:18 All -  
Grove Fields parkrun1578500:28:03 +
Wolford Wood parkrun1212730:24 All -  
Witney parkrun1202000:22:34 +
Pontypridd parkrun12217:54 All -  
Preston Park parkrun, Brighton12200:17:40 +
Pocket parkrun1222321:38 All -  
Colchester Castle parkrun14400:18:04 +
Stockley Country parkrun111917935:32 All -  
Tidworth parkrun110815500:35:14 +
Braunstone parkrun1262720:41 All -  
Walmer and Deal Seafront parkrun18800:21:38 +
Didcot parkrun1101121:28 All -  
Ferry Meadows parkrun15500:17:27 +
Littleport parkrun1445125:16 All -  
St Mary’s parkrun1587400:29:14 +
Yarborough Leisure Centre parkrun1466125:59 All -  
Dartford Heath parkrun1171700:22:06 +
Roding Valley parkrun1111321:26 All -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Clair parkrun13318:36 All -  
Great Denham parkrun16600:19:27 +
Dinton Pastures parkrun1131321:23 All -  
Hastings High School parkrun1637800:27:33 +
Beacon Hill Country Park parkrun1273725:54 All -  
Wendover Woods parkrun1262600:23:51 +
Severn Bridge parkrun1353921:32 All -  
Peckham Rye parkrun11100:17:49 +
Abbey Park parkrun1779425:21 All -  
Upton House parkrun1252700:22:34 +
Dudley parkrun1445626:35 All -  
Lee-on-the-Solent parkrun17700:19:40 +
Pegwell Bay parkrun12217:40 All -  
Graves parkrun11100:18:18 +
Manor Field parkrun, Whittlesey1121324:25 All -  
Maidstone parkrun13300:18:00 +
Blaise Castle parkrun112816326:20 All -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Chipping Sodbury parkrun1303221:20 All -  
South Woodham Ferrers parkrun18800:21:14 +
Foots Cray Meadows parkrun1212323:17 All -  
Pontypridd parkrun12200:17:54 +
Thames Path parkrun, Woolwich1789023:42 All -  
Bournemouth parkrun14400:17:43 +
Bath Skyline parkrun1192021:08 All -  
Sizewell parkrun1172000:23:30 +
Dishley parkrun, Loughborough110311424:30 All -  
Rushmoor parkrun19900:18:29 +
Thornham Walks parkrun1363826:52 All -  
Walsall Arboretum parkrun19810600:25:31 +
Moors Valley parkrun19919:40 All -  
Gorleston Cliffs parkrun12200:17:43 +
East Grinstead parkrun1131423:10 All -  
Uckfield parkrun1404300:24:12 +
Sutton Park parkrun1475524:54 All -  
Aldenham parkrun1141400:21:37 +
University of Northampton parkrun1192223:24 All -  
Gadebridge parkrun1141400:22:22 +
Shipley Country parkrun1232424:45 All -  
Horspath parkrun17410600:28:12 +
Lancing Beach Green parkrun1141421:08 All -  
Rogiet parkrun1151600:24:27 +
Dover Waterfront parkrun1374525:22 All -  
Rendlesham Forest parkrun1264600:37:01 +
Rickmansworth parkrun1242721:39 All -  
Dishley parkrun, Loughborough110311400:24:30 +
Queen Elizabeth parkrun12219:08 All -  
Great Cornard parkrun1192000:20:33 +
Sizewell parkrun1172023:30 All -  
Kettering parkrun1232600:22:50 +
Holbrooks parkrun1202223:43 All -  
Pont y Bala parkrun15700:23:18 +
Highbury Fields parkrun11117:25 All -  
Burnham and Highbridge parkrun17510000:27:51 +
Clacton Seafront parkrun19920:35 All -  
Stonehouse parkrun1131300:20:09 +
Delaware and Raritan Canal parkrun12221:06 All -  
Hampstead Heath parkrun11100:17:45 +
Wisbech parkrun1111523:03 All -  
Wickford Memorial parkrun1436600:51:15 +
Milton Country parkrun13317:43 All -  
Castle Park parkrun1394100:22:34 +
Seaton parkrun1394824:09 All -  
Huntingdon parkrun1202100:21:10 +
Higginson parkrun, Marlow1272922:17 All -  
Great Salterns parkrun19212400:30:27 +
Quakers Walk parkrun1566825:05 All -  
Snowden Field parkrun1242600:24:15 +
Lister Park parkrun, Bradford1313621:55 All -  
Southend parkrun11100:16:28 +
Wendover Woods parkrun1262623:51 All -  
Andover parkrun11100:17:33 +
Sence Valley Forest Park parkrun1232526:28 All -  
parkrun Zalew Żyrardowski16700:24:38 +
Canterbury parkrun16621:56 All -  
Marecchia parkrun11100:19:50 +
Henstridge Airfield parkrun18821:41 All -  
Cheltenham parkrun12200:17:24 +
Five Arches parkrun1455422:58 All -  
St Helens parkrun1606800:24:27 +
Yeovil Montacute parkrun1707525:51 All -  
Bartley Park parkrun18415100:32:38 +
Watermeadows parkrun1283124:57 All -  
Severn Bridge parkrun1353900:21:32 +
Tamworth Castle Grounds parkrun1333523:26 All -  
Pontypool parkrun1232300:23:51 +
St Helens parkrun1606824:27 All -  
Poole parkrun14400:16:57 +
Weymouth parkrun1141420:45 All -  
Bramhall parkrun115924700:35:16 +
Walmer and Deal Seafront parkrun18821:38 All -  
Sunny Hill parkrun1202400:24:39 +
Aston Hall parkrun1202225:01 All -  
Cassiobury parkrun1111100:20:14 +
Royal Tunbridge Wells parkrun18919:23 All -  
Hoblingwell parkrun1202400:23:52 +
Corby parkrun18823:09 All -  
Colwick parkrun18800:19:46 +
Marlborough Common parkrun1202122:48 All -  
Chipping Norton School parkrun1455100:26:40 +
Battlestead Croft parkrun1111122:53 All -  
Worthing parkrun18900:18:44 +
Shepton Mallet parkrun1121421:50 All -  
Harrow Lodge parkrun11100:18:48 +
Clare Castle parkrun1252723:04 All -  
Bradford parkrun1313600:21:55 +
Coldham’s Common parkrun1535923:04 All -  
Bury Field parkrun1669000:33:07 +
Brunswick Park parkrun1212223:58 All -  
Pocket parkrun1222300:21:38 +
Brentwood parkrun17722:28 All -  
Longrun Meadow parkrun111416500:32:01 +
Somerdale Pavilion parkrun1384631:17 All -  
Worcester Pitchcroft parkrun111814300:27:04 +
Wakehurst parkrun18810525:00 All -  
Highwoods parkrun1252600:24:49 +
Boston parkrun17721:18 All -  
Maidenhead parkrun17700:18:49 +
Morden parkrun111715526:58 All -  
Soham Village College parkrun1253200:28:03 +
Pontefract parkrun1718724:10 All -  
Rickmansworth parkrun1242700:21:39 +
Jersey Farm parkrun1252723:11 All -  
Swaffham parkrun191000:22:19 +
Bug Hunter Waters parkrun1455022:41 All -  
Brentwood parkrun17700:22:28 +
Rosliston parkrun1333624:41 All -  
Lymington Woodside parkrun15700:21:59 +
Longrun Meadow parkrun111416532:01 All -  
Loch Neaton parkrun, Watton1171700:25:49 +
Fire Service College parkrun1181922:12 All -  
Daventry parkrun1151500:21:10 +
Woolacombe Dunes parkrun19410931:20 All -  
Hatfield Forest parkrun1181800:20:36 +
The Plens parkrun1303124:04 All -  
Kingsway parkrun, Gloucester1192000:21:20 +
Arrow Valley parkrun13318:05 All -  
Salcey Forest parkrun1384300:24:53 +
Tonbridge parkrun14418:40 All -  
parkrun des Dougnes, Cubnezais12200:19:42 +
East Brighton parkrun1182123:56 All -  
Prospect parkrun1232300:22:42 +
Three Brooks parkrun1697223:46 All -  
Weymouth parkrun1141400:20:45 +
Peacehaven parkrun17721:07 All -  
Westmill parkrun1101000:22:55 +
Pontypool parkrun1232323:51 All -  
East Brighton parkrun1182100:23:56 +
Cromhall parkrun1151624:20 All -  
Harlow parkrun1151500:23:00 +
Dereham parkrun1323323:47 All -  
Linford Wood parkrun1222200:21:45 +
Bournemouth parkrun14417:43 All -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Pomphrey Hill parkrun1364123:02 All -  
Lydney parkrun1202100:23:19 +
Seaford Beach parkrun1535622:25 All -  
Braunstone parkrun1262700:20:41 +
Mansfield parkrun11117:09 All -  
Harleston Magpies parkrun1293500:25:12 +
Fountains Abbey parkrun11118:03 All -  
Clapham Common parkrun1404200:20:22 +
Loch Neaton parkrun, Watton1171725:49 All -  
Market Bosworth Country Park parkrun110614400:35:35 +
Brueton parkrun1475021:33 All -  
Jersey Farm parkrun1252700:23:11 +
Great Cornard parkrun1192020:33 All -  
Kesgrave parkrun1374000:21:18 +
Dunstable Downs parkrun1374324:58 All -  
Stevenage parkrun17700:19:32 +
Beeston parkrun1374023:53 All -  
Hadleigh parkrun, Essex1252600:24:27 +
Feltham parkrun13424:56 All -  
Squerryes Winery parkrun1323600:27:45 +
Markeaton parkrun1576422:56 All -  
Rutland Water parkrun1293000:22:44 +
Reigate Priory parkrun16619:06 All -  
Beckenham Place parkrun1121200:20:28 +
Highwoods parkrun1252624:49 All -  
Sutcliffe parkrun113117200:30:34 +
Valentines parkrun11116:49 All -  
Haverhill parkrun1121300:23:32 +
Springburn parkrun, Glasgow13318:05 All -  
Leavesden Country parkrun1506900:28:32 +
California Country parkrun1649028:49 All -  
Coldham’s Common parkrun1535900:23:04 +
Rushmoor parkrun19918:29 All -  
Chichester parkrun13300:19:05 +
Mountbatten School parkrun1323424:11 All -  
Billericay parkrun1121300:21:20 +
Colchester Castle parkrun14418:04 All -  
Bromley parkrun13300:17:18 +
Buckingham parkrun12218:37 All -  
Babbs Mill parkrun1405100:28:00 +
Sunny Hill parkrun1202424:39 All -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Bognor Regis parkrun12218:12 All -  
Bryn Bach parkrun11100:16:50 +
Aachener Weiher parkrun1101124:55 All -  
York parkrun12200:17:12 +
Peckham Rye parkrun11117:49 All -  
Storeys Field parkrun115121100:28:49 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 All -  
Chipping Sodbury parkrun1303200:21:20 +
Great Notley parkrun16620:16 All -  
Mote Park parkrun19712200:31:28 +
Snowden Field parkrun1242624:15 All -  
Watermeadows parkrun1283100:24:57 +
Burnham-on-Crouch parkrun18822:01 All -  
Woking parkrun18800:18:19 +
Woking parkrun18818:19 All -  
Raphael parkrun13300:19:35 +
Neckarufer parkrun, Esslingen1364425:12 All -  
Harwich parkrun191000:21:22 +
Worcester parkrun114418529:30 All -  
Fritton Lake parkrun11100:18:26 +
Blandford parkrun18920:11 All -  
Heartwood Forest parkrun1252700:21:41 +
Pont y Bala parkrun15723:18 All -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Chichester parkrun13319:05 All -  
Bedworth parkrun1171700:22:14 +
Kingdom parkrun1222524:39 All -  
Clair parkrun13300:18:36 +
Westmill parkrun1101022:55 All -  
Brueton parkrun1475000:21:33 +
Dartford parkrun11117:59 All -  
Higginson parkrun, Marlow1272900:22:17 +
Hanworth parkrun1364024:26 All -  
Bognor Regis parkrun12200:18:12 +
Bracknell parkrun18820:04 All -  
Huddersfield parkrun1626700:22:02 +
Folkestone parkrun1212521:48 All -  
Heaton parkrun13300:18:08 +
Uckfield parkrun1404324:12 All -  
Chasewater parkrun18210000:26:19 +
Harrogate parkrun13318:11 All -  
Tewkesbury parkrun1111400:22:50 +
Kesgrave parkrun1374021:18 All -  
Marple parkrun11100:17:15 +
Thomas Mills parkrun1486530:19 All -  
Cannock Chase parkrun1384400:25:49 +
Lymington Woodside parkrun15721:59 All -  
Edgbaston Reservoir parkrun1658600:26:24 +
Hereford parkrun1535323:07 All -  
Cirencester parkrun1222400:22:40 +
Chasewater parkrun18210026:19 All -  
Kingsbury Water parkrun1394700:25:05 +
South Norwood parkrun1121221:11 All -  
Peacehaven parkrun17700:21:07 +
Panshanger parkrun17720:14 All -  
Lancing Beach Green parkrun1141400:21:08 +
Wolverhampton parkrun1556624:54 All -  
Springburn parkrun, Glasgow13300:18:05 +
Harcourt Hill parkrun1171721:13 All -  
Market Harborough parkrun1303100:21:17 +
Tetbury Goods Shed parkrun1253024:25 All -  
Amager Fælled parkrun1333700:24:23 +
Gloucester North parkrun1101022:14 All -  
Hanworth parkrun1364000:24:26 +
Harlow parkrun1151523:00 All -  
Salisbury parkrun1111100:19:34 +
Alvaston parkrun1515922:24 All -  
Houghton Hall parkrun1131300:21:48 +
Worcester Pitchcroft parkrun111814327:04 All -  
Chalkwell Beach parkrun1819600:24:40 +
Perry Hall parkrun1464924:58 All -  
Melksham parkrun1171700:24:31 +
Newport parkrun11117:29 All -  
Thetford parkrun1161700:21:45 +
Tring parkrun1171823:38 All -  
Pontefract parkrun1718700:24:10 +
Severn Valley Country parkrun1141626:13 All -  
Downham Market Academy parkrun1121300:24:35 +
Wanstead Flats parkrun13317:13 All -  
Fountains Abbey parkrun11100:18:03 +
Daventry parkrun1151521:10 All -  
Cardiff parkrun111011700:22:02 +
St Mary’s parkrun1587429:14 All -  
Littlehampton Prom parkrun1384300:24:22 +
Poole parkrun14416:57 All -  
Uditore parkrun13300:20:28 +
Melton Mowbray parkrun1192222:38 All -  
Beacon parkrun1587300:26:41 +
The Old Showfield parkrun1636923:30 All -  
parkrun de Rouen15500:21:41 +
Henley-on-Thames parkrun1111122:25 All -  
Walthamstow parkrun11100:17:48 +
Crissy Field parkrun1101220:40 All -  
Shepton Mallet parkrun1121400:21:50 +
Babbs Mill parkrun1405128:00 All -  
Marine Parade parkrun17711100:29:24 +
Maidenhead parkrun17718:49 All -  
Foots Cray Meadows parkrun1212300:23:17 +
Ross-on-Wye parkrun1172124:22 All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Kettering parkrun1232622:50 All -  
Evesham parkrun1111100:21:39 +
Stratford Park parkrun, Stroud1566527:51 All -  
Southwick Country parkrun1272900:21:47 +
Bury St Edmunds parkrun13318:17 All -  
Lydiard parkrun18800:18:25 +
Mallards Pike parkrun1324630:57 All -  
Sandhurst Memorial parkrun1537300:28:54 +
Market Harborough parkrun1303121:17 All -  
Bicester parkrun14400:20:13 +
Cassiobury parkrun1111120:14 All -  
Wimpole Estate parkrun1202100:22:14 +
Squerryes Winery parkrun1323627:45 All -  
Markshall Estate parkrun110315600:32:26 +
Walsall Arboretum parkrun19010625:31 All -  
Dinton Pastures parkrun1131300:21:23 +
Penrose parkrun1151619:40 All -  
Tonbridge parkrun14400:18:40 +
King George V Playing Field parkrun, Cheltenham1232826:08 All -  
Wanstead Flats parkrun13300:17:13 +
Evesham parkrun1111121:39 All -  
Woodhouse Moor parkrun11100:17:22 +
Warwick Racecourse parkrun1486024:55 All -  
Mountbatten School parkrun1323400:24:11 +
Huddersfield parkrun1626722:02 All -  
Eastville parkrun120525300:25:12 +
Clevedon Salthouse Fields parkrun1384925:13 All -  
Brixworth Country parkrun1496100:26:53 +
Long Eaton parkrun19912124:06 All -  
Portsmouth Lakeside parkrun19900:19:12 +
Barry Island parkrun1394223:51 All -  
Milton Country parkrun13300:17:43 +
Ifield Mill Pond parkrun1373824:33 All -  
Swanley parkrun19712500:31:18 +
Upton House parkrun1252722:34 All -  
Springhill parkrun14400:22:18 +
Lullingstone parkrun17721:21 All -  
Gloucester North parkrun1101000:22:14 +
The Leas parkrun, Minster1252524:37 All -  
Feltham parkrun13400:24:56 +
Medina I.O.W. parkrun11117:20 All -  
Crissy Field parkrun1101200:20:40 +
Uditore parkrun13320:28 All -  
Ally Pally parkrun11100:18:09 +
Hunstanton Promenade parkrun1283523:45 All -  
Ashton Court parkrun1859500:22:59 +
Raphael parkrun13319:35 All -  
Oaklands parkrun111820300:36:10 +
Burnham and Highbridge parkrun17510027:51 All -  
Sittingbourne parkrun18800:20:56 +
Salcey Forest parkrun1384324:53 All -  
Moors Valley parkrun19900:19:40 +
Ferry Meadows parkrun15517:27 All -  
Catford parkrun1303300:22:32 +
Barclay parkrun15623:13 All -  
Clare Castle parkrun1252700:23:04 +
Irchester Country parkrun1586225:13 All -  
Harrogate parkrun13300:18:11 +
Maldon Prom parkrun11118:04 All -  
Seaford Beach parkrun1535600:22:25 +
Salisbury parkrun1111119:34 All -  
Tring parkrun1171800:23:38 +
Tremorfa parkrun1272923:30 All -  
Sandwell Valley parkrun1455900:30:43 +
Billericay parkrun1121321:20 All -  
Basildon parkrun15500:18:13 +
Gedling parkrun1273224:59 All -  
The Leas parkrun, Minster1252500:24:37 +
Oaklands parkrun111820336:10 All -  
Little Stoke parkrun11100:17:03 +
Winchester parkrun14518:28 All -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Aldenham parkrun1141421:37 All -  
Felixstowe parkrun1121200:21:07 +
East Park parkrun1121424:18 All -  
Yeovil Montacute parkrun1707500:25:51 +
Soham Village College parkrun1253228:03 All -  
Stockley Country parkrun111917900:35:32 +
Stevenage parkrun17719:32 All -  
Woolacombe Dunes parkrun19410900:31:20 +
Tewkesbury parkrun1111422:50 All -  
Harcourt Hill parkrun1171700:21:13 +
Seven Fields parkrun1475526:28 All -  
Abingdon parkrun15500:18:03 +
Conkers parkrun12217:46 All -  
Eastbourne parkrun12200:17:24 +
Lee-on-the-Solent parkrun17719:40 All -  
Warwick Racecourse parkrun1486000:24:55 +
Brixworth Country parkrun1496126:53 All -  
Leicester Victoria parkrun19711600:26:45 +
Abingdon parkrun15518:03 All -  
Broadwater parkrun110321300:35:19 +
Lowestoft parkrun1232621:10 All -  
Clacton Seafront parkrun19900:20:35 +
Chipping Norton School parkrun1455126:40 All -  
Burnham-on-Crouch parkrun18800:22:01 +
Linford Wood parkrun1222221:45 All -  
Ganger Farm parkrun19811400:26:34 +
Harwich parkrun191021:22 All -  
Folkestone parkrun1212500:21:48 +
Fulbourn Hospital parkrun1344724:59 All -  
Mallards Pike parkrun1324600:30:57 +
Gunpowder parkrun12217:34 All -  
Malling parkrun18314500:47:25 +
Dartford Heath parkrun1171722:06 All -  
Rugby parkrun1181800:22:26 +
Sandhurst Memorial parkrun1537328:54 All -  
Watermead Country Park parkrun110818200:35:52 +
Woodhouse Moor parkrun11117:22 All -  
Hogmoor Inclosure parkrun1262600:25:26 +
Sandwell Valley parkrun1455930:43 All -  
East Grinstead parkrun1131400:23:10 +
Wyre Forest parkrun1434825:56 All -  
Mildenhall Hub parkrun1273100:24:33 +
parkrun Zalew Żyrardowski16724:38 All -  
Marlborough Common parkrun1202100:22:48 +
Bramhall parkrun115924735:16 All -  
Blandford parkrun18900:20:11 +
Hatfield Forest parkrun1181820:36 All -  
Maldon Prom parkrun11100:18:04 +
Swansea Bay parkrun1748323:44 All -  
Edinburgh parkrun12200:17:00 +
Wollaton Hall parkrun1889723:51 All -  
The Old Showfield parkrun1636900:23:30 +
Horsham parkrun14518:16 All -  
Jersey parkrun16600:19:41 +
Jersey parkrun16619:41 All -  
Chilton Fields parkrun1405400:28:26 +
Berkeley Green parkrun1233128:31 All -  
Sixfields Upton parkrun18800:19:58 +
Cardiff parkrun111011722:02 All -  
Pegwell Bay parkrun12200:17:40 +
Ally Pally parkrun11118:09 All -  
Valentines parkrun11100:16:49 +
Thurrock parkrun, Orsett Heath16620:41 All -  
Edenbrook Country parkrun110514800:28:01 +
Beacon parkrun1587326:41 All -  
Henstridge Airfield parkrun18800:21:41 +
Albert parkrun, Middlesbrough1515423:17 All -  
Great Notley parkrun16600:20:16 +
Sherwood Pines parkrun1161821:33 All -  
Medina I.O.W. parkrun11100:17:20 +
Wickford Memorial parkrun1436651:15 All -  
Reading parkrun12200:17:18 +
Thornbury parkrun1323428:19 All -  
Tetbury Goods Shed parkrun1253000:24:25 +
Malling parkrun18314547:25 All -  
Lowestoft parkrun1232600:21:10 +
Itchen Valley Country parkrun1476127:37 All -  
Malahide parkrun11100:16:54 +
Pollok parkrun, Glasgow11117:00 All -  
Oxford parkrun11100:17:18 +
Eastville parkrun120525325:12 All -  
Rheinpark parkrun1151800:25:30 +
Rutland Water parkrun1293022:44 All -  
Gloucester City parkrun1171900:22:35 +
Chalkwell Beach parkrun1819624:40 All -  
Didcot parkrun1101100:21:28 +
Amager Fælled parkrun1333724:23 All -  
Mansfield parkrun11100:17:09 +
Hoblingwell parkrun1202423:52 All -  
7851100:16:25 +
Belton House parkrun1141523:48 + All +
Kagerzoom parkrun1435824:39 + All +
Gorleston Cliffs parkrun12217:43 + All +
King’s Lynn parkrun1151520:07 + All +
Holkham parkrun1506925:37 + All +
Horspath parkrun17410628:12 + All +
Southwick Country parkrun1272921:47 + All +
Rushmere parkrun1131422:39 + All +
Zuiderpark parkrun, Den Haag1738124:07 + All +
Heaton parkrun13318:08 + All +
Colney Lane parkrun1495524:01 + All +
Leicester Victoria parkrun19711626:45 + All +
Church Mead parkrun16610232:53 + All +
Southend parkrun11116:28 + All +
Lydney parkrun1202123:19 + All +
Edgbaston Reservoir parkrun1658626:24 + All +
Reading parkrun12217:18 + All +
March parkrun15521:11 + All +
Woodgate Valley Country Park parkrun16513245:50 + All +
Maaraue parkrun1232522:34 + All +
Stonehouse parkrun1131320:09 + All +
Rheinpark parkrun1151825:30 + All +
Edinburgh parkrun12217:00 + All +
Chippenham parkrun1212120:08 + All +
Stratford-upon-Avon parkrun1202521:14 + All +
Henlow Bridge Lakes parkrun17511532:34 + All +
8671116:25 All  


Volunteer Summary

RoleOccasions
- Run Director - 94
- Timekeeper - 59
- Token Sorting - 3
- Results Processor - 87
- Photographer - 6
- Communications Person - 10
- Marshal - 39
- Pre-event Setup - 130
- Equipment Storage and Delivery - 128
- Other - 23
- Barcode Scanning - 55
- Post-event Close Down - 45
- Finish Tokens - 15
- Number Checker - 2
- First Timers Welcome - 68
- Funnel Manager - 15
- Finish Token Support - 9
- Tail Walker - 29
- Volunteer Co-ordinator - 146
- Report Writer - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Car Park Marshal - 1
- Event Day Course Check - 8
- parkwalker - 9
Total Credits396

+ Run Director +

99
+ Timekeeper + 94
+ Token Sorting + 12
+ Results Processor + 87
+ Photographer + 6
+ Communications Person + 10
+ Marshal + 54
+ Pre-event Setup + 148
+ Equipment Storage and Delivery + 130
+ Other + 26
+ Barcode Scanning + 78
+ Post-event Close Down + 51
+ Finish Tokens + 21
+ Number Checker + 2
+ First Timers Welcome + 82
+ Funnel Manager + 15
+ Finish Token Support + 12
+ Tail Walker + 29
+ Volunteer Co-ordinator + 148
+ Report Writer + 100
+ Backup Timer + 3
+ Warm Up Leader + 16
+ Car Park Marshal + 1
+ Event Day Course Check + 14
+ parkwalker + 10
Total Credits499

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1018,78 +1131,61 @@

Danny NORMAN (A482)
- Locations: 3 + Locations: 4
- Finishers: 12,825 + Finishers: 18930
- Finishes: 50,149 + Finishes: 73937
- All-time events: 721 + All-time events: 969
- Volunteers: 1,180 + Volunteers: 1621
- PBs: 8,967 + PBs: 12384
- Average finish time: 00:28:41 + Average finish time: 00:29:19
- Average finishes per participant: 3.9 + Groups: 1564
-
- Groups: 1,220 -
-

-
- Female record: - Alexandria ANTHONY – 17:28 - (28 Jan 2023) -
-
- Male record: - Aki NUMMELA – 15:16 - (28 Feb 2015) -
-
- Age graded record: - Lavinia PETRIE - 99.58% 23:55 - (21 Jul 2018) -
+
- Stats last updated: Fri 14 Apr 2023 00:41:04 UTC + Stats last updated: Mon 30 Sep 2024 00:40:48 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1118,8 +1224,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/88720/all/index.html index dd6bed87..c0559893 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Singapore - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -115,631 +102,729 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM55-59 + Most recent age category was VM60-64

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time21:4025:2552:00
Age Grading69.71%60.41%29.55%
Overall Position648.88374

+
FastestAverage
(mean)
Slowest
Time21:3625:2654:59
Age Grading72.99%60.80%28.92%
Overall Position648.44374

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Halifax08/04/20233313225:0063.07% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + PB + +   +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34%   -
Fulham Palace01/04/202339110924:0965.29% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Halifax25/03/20233291624:4363.79% +
Halifax16/09/20233532123:4367.04%   -
Halifax18/03/20233282326:4758.87% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax04/03/20233273825:1962.28% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Myrtle25/02/20231593824:5263.40% +
Glossop12/08/20233152824:2564.57% +   +
Halifax05/08/20233473024:4363.79% +   +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% PB   -
Halifax18/02/20233252926:0360.52% +
Stratford Park, Stroud01/07/20231253126:2959.53%   -
Halifax11/02/20233243124:0365.56% +
Wetherby24/06/20233094124:4663.66%   -
Bradford04/02/20235795022:3769.71% +
Halifax10/06/20233402524:0265.60%   -
Bowling Park28/01/202379924:1165.20% +
Halifax03/06/20233392124:1365.11%   -
Bramley21/01/20233004925:3461.67% +
Long Eaton20/05/20233306921:3672.99%   -
Halifax14/01/20233213325:5260.95% +
Halifax06/05/20233352423:4566.39%   -
Halifax07/01/20233203026:2659.65% +
Keswick29/04/20233904121:3672.99% + PB +   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax22/04/20233334725:0262.98%   -
Nostell31/12/20223614325:0063.07% +
Halifax08/04/20233313225:0063.07%   -
Halifax24/12/20223173125:4661.19% +
Fulham Palace01/04/202339110924:0965.29%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax25/03/20233291624:4363.79%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax18/03/20233282326:4758.87% +   +
Halifax04/03/20233273825:1962.28% +   +
Myrtle25/02/20231593824:5263.40% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71%   -
Brighouse12/11/20222213725:1762.36% +
Bowling Park28/01/202379924:1165.20%   -
Halifax05/11/20223122424:5163.45% +
Bramley21/01/20233004925:3461.67%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB +   -
Halifax15/10/202230910749:5431.60% +
Conkers19/11/20225485624:1465.06%   -
Crosby08/10/20222833525:3861.51% +
Brighouse12/11/20222213725:1762.36%   -
Alness01/10/20221801024:0965.29% +
Halifax05/11/20223122424:5163.45%   -
Victoria24/09/20223736722:5468.85% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax17/09/20223052625:0063.07% +
Halifax15/10/202230910749:5431.60%   -
Centre Vale10/09/20221034428:4454.87% +
Crosby08/10/20222833525:3861.51%   -
Halifax03/09/20223033125:3361.71% +
Alness01/10/20221801024:0965.29%   -
Skipton27/08/20224035325:3561.11% +
Victoria24/09/20223736722:5468.85%   -
Halifax20/08/20223012824:5262.87% +
Halifax17/09/20223052625:0063.07%   -
Halifax06/08/20222996426:0360.01% +
Centre Vale10/09/20221034428:4454.87%   -
Armley30/07/20221432724:2863.90% +
Halifax03/09/20223033125:3361.71%   -
Halifax16/07/20222962524:2663.98% +
Skipton27/08/20224035325:3561.11%   -
Halifax02/07/20222942524:4863.04% +
Halifax20/08/20223012824:5262.87%   -
Halifax18/06/20222922424:5462.78% +
Halifax06/08/20222996426:0360.01%   -
The Pastures11/06/2022991826:2159.33% +
Armley30/07/20221432724:2863.90%   -
Halifax04/06/20222913826:4858.33% +
Halifax16/07/20222962524:2663.98%   -
Horton Park28/05/20222942225:1262.04% +
Halifax02/07/20222942524:4863.04%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax18/06/20222922424:5462.78%   -
Halifax07/05/20222877529:3552.85% +
The Pastures11/06/2022991826:2159.33%   -
Harrogate30/04/202246716226:4458.48% +
Halifax04/06/20222913826:4858.33%   -
Halifax23/04/20222854927:0057.90% +
Horton Park28/05/20222942225:1262.04%   -
Halifax09/04/20222834526:3758.74% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax02/04/20222822924:4463.21% +
Halifax07/05/20222877529:3552.85%   -
Pendle26/03/20223443126:1659.52% +
Harrogate30/04/202246716226:4458.48%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax23/04/20222854927:0057.90%   -
Halifax05/03/20222784925:3761.03% +
Halifax09/04/20222834526:3758.74%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -770,78 +855,61 @@

Phillip WHETTLOCK (A8
- Locations: 3 + Locations: 4
- Finishers: 12,874 + Finishers: 18930
- Finishes: 50,326 + Finishes: 73937
- All-time events: 723 + All-time events: 969
- Volunteers: 1,181 + Volunteers: 1621
- PBs: 8,985 + PBs: 12384
- Average finish time: 00:28:42 + Average finish time: 00:29:19
- Average finishes per participant: 3.9 + Groups: 1564
-
- Groups: 1,224 -
-
-
- Female record: - Alexandria ANTHONY – 17:28 - (28 Jan 2023) -
-
- Male record: - Aki NUMMELA – 15:16 - (28 Feb 2015) -
-
- Age graded record: - Lavinia PETRIE - 99.58% 23:55 - (21 Jul 2018) -
+
- Stats last updated: Mon 17 Apr 2023 00:41:21 UTC + Stats last updated: Mon 30 Sep 2024 00:40:48 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -870,8 +948,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/88720/index.html index 97184131..2a4169fe 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + results | parkrun Singapore - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -58,7 +54,7 @@
@@ -70,34 +66,25 @@
@@ -115,185 +102,241 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns total

+ + Member of the Volunteer 250 club +

345 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM55-59 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bradford parkrun1166600:21:40 + Most recent age category was VM60-64 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Halifax parkrun1268822:13 + All +
Lister Park parkrun, Bradford1166621:40 + All +
Horton Park parkrun9131322:18 + All +
Keswick parkrun4253321:36 + All +
Sewerby parkrun3121222:08 + All +
Pontefract parkrun2273222:08 + All +
Brighouse parkrun2333723:53 + All +
Temple Newsam parkrun2272925:14 + All +
Fountains Abbey parkrun2394822:26 + All +
Oakwell Hall parkrun2293626:10 + All +
Whinlatter Forest parkrun2283227:23 + All +
Bramley parkrun2252524:06 + All +
Middleton Woods parkrun2121424:55 + All +
Myrtle parkrun2333824:52 + All +
Centre Vale parkrun2303626:37 + All +
Bushy parkrun130137424:06 + All +
Woodhouse Moor parkrun1778222:18 + All +
Pollok parkrun, Glasgow1667223:58 + All +
Edinburgh parkrun1646721:54 + All +
Wakefield Thornes parkrun1545824:29 All - Graph It!
Halifax parkrun1148800:22:13 +
Hyndburn parkrun1253125:51 All - Graph It!
Horton Park parkrun9131300:22:18 +
York parkrun111413522:55 All - Graph It!
Sewerby parkrun3121200:22:08 +
Milton Country parkrun1707522:40 All - Graph It!
Keswick parkrun3253300:23:33 +
Carlisle parkrun1567126:05 All - Graph It!
Pontefract parkrun2273200:22:08 +
Harrogate parkrun112316226:44 All - Graph It!
Temple Newsam parkrun2272900:25:14 +
Southport parkrun1545723:57 All - Graph It!
Myrtle parkrun2333800:24:52 +
Barnsley parkrun1414325:05 All - Graph It!
Middleton Woods parkrun2121400:24:55 +
Rothwell parkrun1535724:20 All - Graph It!
Bramley parkrun2252500:24:06 +
Huddersfield parkrun1596722:47 All - Graph It!
Druridge Bay parkrun1354200:23:35 +
Long Eaton parkrun1556921:36 All -  
Fountains Abbey parkrun1394800:22:26 +
Wycombe Rye parkrun1232622:35 All -  
Victoria parkrun, Glasgow1546700:22:54 +
Conkers parkrun1525624:14 All -  
Clumber Park parkrun1101100:21:46 +
Roundhay parkrun112815726:55 All -  
Rothay Park parkrun1202700:24:48 +
Hanley parkrun16622:03 All -  
Warwick Racecourse parkrun1638200:24:06 +
Worsley Woods parkrun1728824:46 All -  
Conkers parkrun1525600:24:14 +
Burnley parkrun1545725:21 All -  
The Pastures parkrun1161800:26:21 +
Dewsbury parkrun18610128:15 All -  
Harrogate parkrun112316200:26:44 +
Cross Flatts parkrun1303724:16 All -  
Dishley parkrun, Loughborough1535700:24:25 +
Clumber Park parkrun1101121:46 All -  
Dalby Forest parkrun1283200:23:06 +
Skipton parkrun1505325:35 All -  
Woodhouse Moor parkrun1778200:22:18 +
Flatts Lane parkrun1171826:53 All -  
Whinlatter Forest parkrun1283200:27:23 +
Victoria parkrun, Glasgow1546722:54 All -  
Watergrove parkrun, Rochdale1111200:27:57 +
Alness parkrun171024:09 All -  
Springburn parkrun, Glasgow1161600:23:14 +
Fulham Palace parkrun18610924:09 All -  
Fulham Palace parkrun18610900:24:09 +
Springburn parkrun, Glasgow1161623:14 All -  
Flatts Lane parkrun1171800:26:53 +
Druridge Bay parkrun1354223:35 All -  
Roberts Park parkrun1657500:24:54 +
Pendle parkrun1263126:16 All -  
Bowling Park parkrun18900:24:11 +
Watergrove parkrun, Rochdale1111227:57 All -  
Hanley parkrun16600:22:03 +
Wetherby parkrun1374124:46 All -  
Centre Vale parkrun1304400:28:44 +
Portobello parkrun, Edinburgh1668024:16 All -  
Wycombe Rye parkrun1232600:22:35 +
Nostell parkrun1374325:00 All -  
Carlisle parkrun1567100:26:05 +
Fell Foot parkrun, Newby Bridge1161722:57 All -  
Armley parkrun1262700:24:28 +
Conwy parkrun1394424:53 All -  
Crosby parkrun1293500:25:38 +
Glossop parkrun1242824:25 All -  
Edinburgh parkrun1646700:21:54 +
Crosby parkrun1293525:38 All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Dolgellau parkrun1459954:59 All -  
Bushy parkrun130137400:24:06 +
Dalby Forest parkrun1283223:06 All -  
Oakwell Hall parkrun1344000:26:10 +
Clitheroe Castle parkrun1192525:41 All -  
Pendle parkrun1263100:26:16 +
Armley parkrun1262724:28 All -  
Alness parkrun171000:24:09 +
Dishley parkrun, Loughborough1535724:25 All -  
Skipton parkrun1505300:25:35 +
Ford parkrun1202525:00 All -  
Chevin Forest parkrun1213000:26:47 +
Cliffe Castle parkrun1151725:18 All -  
Burnley parkrun1545700:25:21 +
Potternewton parkrun1293625:04 All -  
Queen’s parkrun, Glasgow1677900:25:29 +
Isabel Trail parkrun1293422:02 All -  
Roundhay parkrun112815700:26:55 +
The Pastures parkrun1161826:21 All -  
Storthes Hall parkrun1263000:26:20 +
Storthes Hall parkrun1263026:20 All -  
Southport parkrun1545700:23:57 +
Hafan Pwllheli parkrun1212726:48 All -  
Cliffe Castle parkrun1151700:25:18 +
Penistone parkrun1343724:20 All -  
Brighouse parkrun1333700:25:17 +
Conyngham Hall parkrun1363824:55 All -  
Milton Country parkrun1707500:22:40 +
Stratford Park parkrun, Stroud1303126:29 All -  
Pollok parkrun, Glasgow1667200:23:58 +
Warwick Racecourse parkrun1638224:06 All -  
Nostell parkrun1384300:25:00 +
University of Stirling parkrun1343723:52 All -  
Portobello parkrun, Edinburgh1668000:24:16 +
Jubilee parkrun1121926:42 All -  
2996600:21:40 +
Queen’s parkrun, Glasgow1677925:29 + All +
Bowling Park parkrun18924:11 + All +
Rothay Park parkrun1202724:48 + All +
Zuiderpark parkrun, Den Haag1151722:03 + All +
Carlisle Park parkrun, Morpeth1293325:44 + All +
Chevin Forest parkrun1213026:47 + All +
Roberts Park parkrun1657524:54 + All +
Beacon Hill Country Park parkrun1192325:36 + All +
Thames Path parkrun, Woolwich1586323:49 + All +
3456621:36 All  


Volunteer Summary

RoleOccasions
- Run Director - 32
- Timekeeper - 17
- Token Sorting - 5
- Results Processor - 1
- Photographer - 1
- Communications Person - 5
- Marshal - 35
- Pre-event Setup - 28
- Equipment Storage and Delivery - 5
- Other - 1
- Barcode Scanning - 27
- Post-event Close Down - 24
- Finish Tokens - 11
- Number Checker - 1
- First Timers Welcome - 77
- Funnel Manager - 12
- Finish Token Support - 10
- Tail Walker - 5
- Volunteer Co-ordinator - 10
- Report Writer - 1
- Pacer (5k only) - 5
- Backup Timer - 14
- VI Guide - 1
- Warm Up Leader - 5
- Sign Language Support - 1
- Car Park Marshal - 1
- Event Day Course Check - 25
- parkwalker - 1
Total Credits249

+ Run Director +

33
+ Timekeeper + 28
+ Token Sorting + 5
+ Results Processor + 4
+ Photographer + 1
+ Communications Person + 6
+ Marshal + 35
+ Pre-event Setup + 29
+ Equipment Storage and Delivery + 6
+ Other + 2
+ Barcode Scanning + 46
+ Post-event Close Down + 25
+ Finish Tokens + 16
+ Number Checker + 1
+ First Timers Welcome + 82
+ Funnel Manager + 16
+ Finish Token Support + 16
+ Tail Walker + 15
+ Volunteer Co-ordinator + 11
+ Report Writer + 1
+ Pacer (5k only) + 10
+ Backup Timer + 14
+ VI Guide + 1
+ Warm Up Leader + 15
+ Sign Language Support + 1
+ Car Park Marshal + 1
+ Event Day Course Check + 57
+ parkwalker + 1
Total Credits316

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. -



Freedom parkruns

DateTimeLocation
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here. +



Freedom parkruns

DateTimeLocation
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -322,78 +365,61 @@

Phillip WHETTLOCK (A8
- Locations: 3 -
-
- Finishers: 12,874 + Locations: 4
- Finishes: 50,326 + Finishers: 18930
- All-time events: 723 + Finishes: 73937
- Volunteers: 1,181 + All-time events: 969
- PBs: 8,985 + Volunteers: 1621
- Average finish time: 00:28:42 + PBs: 12384
- Average finishes per participant: 3.9 + Average finish time: 00:29:19
- Groups: 1,224 + Groups: 1564
-
-
- Female record: - Alexandria ANTHONY – 17:28 - (28 Jan 2023) -
-
- Male record: - Aki NUMMELA – 15:16 - (28 Feb 2015) -
-
- Age graded record: - Lavinia PETRIE - 99.58% 23:55 - (21 Jul 2018) -
+

- Stats last updated: Mon 17 Apr 2023 00:41:21 UTC + Stats last updated: Mon 30 Sep 2024 00:40:48 UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -422,8 +458,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/999999/all/index.html index c8bd8bc6..fc5d098d 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + results | parkrun Singapore @@ -241,8 +226,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/999999/index.html index 09abab40..ccb93816 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.sg/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + results | parkrun Singapore @@ -237,8 +222,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/1309364/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/1309364/all/index.html index bcd4685a..1fd533ec 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/1309364/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/1309364/all/index.html @@ -14,6 +14,8 @@ + results | parkrun USA - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -57,7 +53,7 @@
@@ -69,34 +65,25 @@
@@ -119,543 +106,649 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club

- 245 parkruns total + 297 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM35-39 + Most recent age category was VM40-44

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time20:0628:4757:34
Age Grading64.51%47.44%23.54%
Overall Position5165.361021

+
FastestAverage
(mean)
Slowest
Time20:0629:2057:34
Age Grading64.51%46.67%23.54%
Overall Position5182.341021

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:30:3744.26%

+
YearBest TimeBest Age Grading
201400:23:1355.85%
201500:20:0664.51%
201600:20:1864.04%
201700:21:5959.36%
201800:23:0456.86%
201900:22:4657.91%
202000:25:3151.99%
202100:29:2045.85%
202200:28:4346.84%
202300:27:0949.91%
202400:24:0756.60%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Clitheroe Castle08/04/20231789735:4637.88% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Winchester28/09/202449532833:5740.21% +   +
Winchester21/09/202449438134:4539.28% +   +
Ford14/09/20242347432:2942.02% +   +
Eastleigh17/08/202464113129:1746.61% +   +
Winchester10/08/202448923228:0448.63% +   +
Valentines27/07/20246348025:1454.10% +   +
Winchester13/07/202448730328:3347.81% +   +
Winchester06/07/202448637535:3538.36% +   +
Medina I.O.W.29/06/202460621833:4440.46% +   +
Medina I.O.W.22/06/20246057525:1354.13% + PB + +   +
Winchester08/06/202448224327:5648.87% +   +
Bartley Park01/06/20241248430:2644.85% +   +
Newbury25/05/202456827130:0745.32% +   +
Winchester18/05/202448026030:0945.27% +   +
Winchester11/05/202447936234:1339.89% +   +
Winchester04/05/202447830530:0245.45% +   +
Winchester27/04/202447736231:3443.24% +   +
Stretford30/03/202434840530:2344.93% +   +
Winchester23/03/20244747324:0756.60% +   +
Newbury16/03/202455840634:5639.07% +   +
Whiteley09/03/202426322130:5544.15% +   +
Whiteley02/03/202426222731:5942.68% +   +
Whiteley17/02/202426023535:2738.50% +   +
Whiteley10/02/202425919633:3940.56% +   +
Winchester03/02/202447129831:1643.66% +   +
Winchester27/01/202447032734:0640.03% +   +
Haigh Woodland01/01/202434516837:0436.83% +   +
Burnley30/12/202351818935:0538.91% +   +
Delamere25/12/202347465536:1537.66% +   +
Delamere23/12/202347334834:0939.97% +   +
Winchester25/11/202346134636:0237.60%   -
Whiteley25/03/202321418332:2441.82% +
Whiteley18/11/202324721037:0536.54%   -
Winchester11/03/202342821230:3744.26% +
Whiteley11/11/202324617430:3744.26%   -
Winchester04/03/202342730935:4537.90% +
Winchester21/10/202345731533:5140.03%   -
Winchester25/02/202342632536:0937.48% +
Winchester14/10/202345634233:5439.97%   -
Winchester18/02/202342530336:3137.11% +
Ganger Farm07/10/20234713233:4940.07%   -
Delamere31/12/202242331536:2537.21% +
Winchester30/09/202345427529:3145.91%   -
Ganger Farm10/12/2022418257:3423.54% +
Winchester23/09/202345321928:2247.77%   -
Ganger Farm03/12/2022313529:2546.06% +
Winchester16/09/202345235430:3244.38%   -
Winchester26/11/202241229335:3137.87% +
Winchester09/09/202345129229:1146.43%   -
Whiteley12/11/202221016534:2839.02% +
Delamere02/09/202345822633:2840.49%   -
Winchester29/10/202240924429:5544.96% +
Fell Foot26/08/202336724531:4742.63%   -
Winchester22/10/202240833736:0837.22% +
Winchester29/07/202344622227:3649.09%   -
Winchester17/09/202240326230:2944.12% +
Winchester22/07/202344540537:0036.62%   -
Winchester10/09/202240231134:3338.93% +
Whiteley15/07/202322915731:1643.34%   -
Alice Holt03/09/202241817936:3236.82% +
Medina I.O.W.01/07/202355221834:0239.81%   -
Winchester27/08/202240042335:2138.05% +
Winchester17/06/202344128530:4144.16%   -
Winchester13/08/202239823431:3042.70% +
Winchester10/06/202344032435:2138.33%   -
Tidworth30/07/2022615151:4226.02% +
Winchester20/05/202343822427:0949.91%   -
Uckfield23/07/20221006028:4346.84% +
Winchester13/05/202343733232:4341.42%   -
Winchester09/07/202239428633:1640.43% +
Whiteley29/04/202321919635:3138.15%   -
Eastleigh28/05/202254015531:2042.93% +
Winchester22/04/202343431731:1143.45%   -
Winchester21/05/202238930733:2840.19% +
Clitheroe Castle08/04/20231789735:4637.88%   -
Alice Holt14/05/202240216932:0142.01% +
Whiteley25/03/202321418332:2441.82%   -
Winchester07/05/202238734034:1339.31% +
Winchester11/03/202342821230:3744.26%   -
Guildford30/04/202242825130:0144.81% +
Winchester04/03/202342730935:4537.90%   -
Winchester23/04/202238522932:0241.99% +
Winchester25/02/202342632536:0937.48%   -
Winchester16/04/202238431033:2340.29% +
Winchester18/02/202342530336:3137.11%   -
Winchester19/03/202238025033:5439.68% +
Delamere31/12/202242331536:2537.21%   -
Alice Holt01/01/202238524237:4635.61% +
Ganger Farm10/12/2022418257:3423.54%   -
Winchester04/12/202136518229:2045.85% +
Ganger Farm03/12/2022313529:2546.06%   -
Winchester20/11/202136338445:0729.59% +
Winchester26/11/202241229335:3137.87%   -
Winchester09/10/202135739843:0730.96% +
Whiteley12/11/202221016534:2839.02%   -
Winchester25/09/202135538955:0324.25% +
Winchester29/10/202240924429:5544.96%   -
Winchester18/09/202135433938:1234.95% +
Winchester22/10/202240833736:0837.22%   -
Winchester04/09/202135233838:2434.77% +
Winchester17/09/202240326230:2944.12%   -
Winchester28/08/202135139841:0132.55% +
Winchester10/09/202240231134:3338.93%   -
Winchester14/08/202134936055:4623.94% +
Alice Holt03/09/202241817936:3236.82%   -
Winchester31/07/202134832845:2029.45% +
Winchester27/08/202240042335:2138.05%   -
Winchester14/03/202034625851:3825.69% +
Winchester13/08/202239823431:3042.70%   -
Winchester07/03/202034510325:5251.29% +
Tidworth30/07/2022615151:4226.02%   -
Itchen Valley Country29/02/2020113529:5344.39% +
Uckfield23/07/20221006028:4346.84%   -
Newbury22/02/202043434631:1142.54% +
Winchester09/07/202239428633:1640.43%   -
Alice Holt08/02/202036010727:1948.57% +
Eastleigh28/05/202254015531:2042.93% +   +
Winchester21/05/202238930733:2840.19% +   +
Alice Holt14/05/202240216932:0142.01% +   +
Winchester07/05/202238734034:1339.31% +   +
Guildford30/04/202242825130:0144.81% +   +
Winchester23/04/202238522932:0241.99% +   +
Winchester16/04/202238431033:2340.29% +   +
Winchester19/03/202238025033:5439.68% +   +
Alice Holt01/01/202238524237:4635.61% +   +
Winchester04/12/202136518229:2045.85% +   +
Winchester20/11/202136338445:0729.59% +   +
Winchester09/10/202135739843:0730.96% +   +
Winchester25/09/202135538955:0324.25% +   +
Winchester18/09/202135433938:1234.95% +   +
Winchester04/09/202135233838:2434.77% +   +
Winchester28/08/202135139841:0132.55% +   +
Winchester14/08/202134936055:4623.94% +   +
Winchester31/07/202134832845:2029.45% +   +
Winchester14/03/202034625851:3825.69% +   +
Winchester07/03/202034510325:5251.29% +   +
Itchen Valley Country29/02/2020113529:5344.39% +   +
Newbury22/02/202043434631:1142.54% +   +
Alice Holt08/02/202036010727:1948.57% PB   -
Southampton01/02/202039737225:3151.99% +
Southampton01/02/202039737225:3151.99%   -
Queen Elizabeth25/01/20203564026:3649.87% +
Queen Elizabeth25/01/20203564026:3649.87% PB   -
Portsmouth Lakeside18/01/20201938726:3250.00% +
Portsmouth Lakeside18/01/20201938726:3250.00%   -
Hogmoor Inclosure11/01/20209914029:3444.87% +
Hogmoor Inclosure11/01/20209914029:3444.87%   -
Brockenhurst04/01/202033618632:4140.59% +
Brockenhurst04/01/202033618632:4140.59%   -
Tawd Valley01/01/20202311029:2545.10% +
Tawd Valley01/01/20202311029:2545.10%   -
Ormskirk01/01/202029830331:0442.70% +
Ormskirk01/01/202029830331:0442.70%   -
Witton28/12/20192003525:4051.69% +
Witton28/12/20192003525:4051.69% PB   -
Northwich25/12/2019938829:1145.46% +
Northwich25/12/2019938829:1145.46%   -
Fareham21/12/201919911428:5245.96% +
Fareham21/12/201919911428:5245.96%   -
Winchester07/12/201933716426:4049.75% +
Winchester07/12/201933716426:4049.75%   -
Seven Fields23/11/201926728:2846.31% +
Seven Fields23/11/201926728:2846.31%   -
Clumber Park16/11/201932617629:5144.17% +
Clumber Park16/11/201932617629:5144.17%   -
Whiteley09/11/201913616429:2444.84% +
Whiteley09/11/201913616429:2444.84%   -
Winchester26/10/201933217629:1445.10% +
Winchester26/10/201933217629:1445.10%   -
Heaton Park19/10/201947646731:0142.50% +
Heaton Park19/10/201947646731:0142.50%   -
Winchester05/10/201932933732:0641.07% +
Winchester05/10/201932933732:0641.07%   -
Winchester28/09/201932834031:3441.76% +
Winchester28/09/201932834031:3441.76%   -
Winchester14/09/20193268822:4657.91% +
Winchester14/09/20193268822:4657.91%   -
Catford07/09/20197112527:2448.11% +
Catford07/09/20197112527:2448.11%   -
Winchester24/08/201932325428:5145.70% +
Winchester24/08/201932325428:5145.70%   -
Whiteley17/08/201912416829:0645.30% +
Whiteley17/08/201912416829:0645.30% PB   -
Winchester10/08/201932241035:2737.19% +
Winchester10/08/201932241035:2737.19%   -
Winchester03/08/201932134230:5542.64% +
Winchester03/08/201932134230:5542.64%   -
Bushy Park20/07/2019798102133:0139.93% +
Bushy Park20/07/2019798102133:0139.93%   -
Winchester13/07/201931838033:4239.12% +
Winchester13/07/201931838033:4239.12%   -
Pocket06/07/20195719533:4739.02% +
Pocket06/07/20195719533:4739.02%   -
Winchester29/06/201931630432:0041.20% +
Winchester29/06/201931630432:0041.20%   -
Salisbury22/06/201921426729:4544.31% +
Salisbury22/06/201921426729:4544.31%   -
Eastleigh15/06/201946225531:4141.61% +
Eastleigh15/06/201946225531:4141.61%   -
Watermeadows08/06/2019171523:5155.28% +
Watermeadows08/06/2019171523:5155.28%   -
Winchester01/06/201931313523:4355.59% +
Winchester01/06/201931313523:4355.59%   -
Milano Nord25/05/20191395327:4947.39% +
Milano Nord25/05/20191395327:4947.39%   -
Eden Project04/05/20197416230:2143.44% +
Eden Project04/05/20197416230:2143.44%   -
Winchester27/04/201930825828:0646.92% +
Winchester27/04/201930825828:0646.92%   -
Winchester20/04/201930731729:2544.82% +
Winchester20/04/201930731729:2544.82%   -
Mountbatten School13/04/2019710131:2941.87% +
Mountbatten School13/04/2019710131:2941.87%   -
Long Eaton06/04/201919422928:0646.92% +
Long Eaton06/04/201919422928:0646.92%   -
Hilly Fields23/03/20193499925:0352.63% +
Hilly Fields23/03/20193499925:0352.63%   -
Winchester16/03/201930225528:5145.70% +
Winchester16/03/201930225528:5145.70%   -
Winchester09/03/201930121728:3446.15% +
Winchester09/03/201930121728:3446.15%   -
Winchester02/03/201930021526:5149.10% +
Winchester02/03/201930021526:5149.10%   -
Winchester23/02/201929939435:2837.17% +
Winchester23/02/201929939435:2837.17%   -
Winchester26/01/201929538835:2637.21% +
Winchester26/01/201929538835:2637.21%   -
Winchester19/01/201929440238:1434.48% +
Winchester19/01/201929440238:1434.48%   -
Winchester12/01/201929319126:2250.00% +
Winchester12/01/201929319126:2250.00%   -
Winchester05/01/201929229329:2844.74% +
Winchester05/01/201929229329:2844.74%   -
Northwich01/01/20194229435:2737.19% +
Northwich01/01/20194229435:2737.19%   -
Delamere01/01/201929236234:2938.23% +
Delamere01/01/201929236234:2938.23%   -
Crewe29/12/20184715430:0543.82% +
Crewe29/12/20184715430:0543.82%   -
Witton25/12/20181556829:1145.17% +
Witton25/12/20181556829:1145.17% PB   -
Alice Holt22/12/201830415329:3744.51% +
Alice Holt22/12/201830415329:3744.51%   -
Winchester15/12/201828713227:3447.82% +
Winchester15/12/201828713227:3447.82%   -
Winchester08/12/201828612825:2351.94% +
Winchester08/12/201828612825:2351.94%   -
Winchester24/11/201828413325:0252.40% +
Winchester24/11/201828413325:0252.40%   -
Winchester17/11/201828328229:4844.02% +
Winchester17/11/201828328229:4844.02%   -
Whiteley10/11/20188318532:2640.44% +
Whiteley10/11/20188318532:2640.44%   -
Southampton03/11/201833132325:0152.43% +
Southampton03/11/201833132325:0152.43%   -
Winchester27/10/201828128830:2143.22% +
Winchester27/10/201828128830:2143.22%   -
Winchester13/10/20182797223:0456.86% +
Winchester13/10/20182797223:0456.86%   -
Winchester06/10/201827812624:5552.64% +
Winchester06/10/201827812624:5552.64%   -
Winchester15/09/201827535834:1438.32% +
Winchester15/09/201827535834:1438.32%   -
Winchester08/09/201827418327:0448.46% +
Winchester08/09/201827418327:0448.46%   -
Northwich01/09/20182310533:4838.81% +
Northwich01/09/20182310533:4838.81%   -
Andover25/08/201838420533:2639.23% +
Andover25/08/201838420533:2639.23%   -
Winchester18/08/201827129030:2843.05% +
Winchester18/08/201827129030:2843.05%   -
Winchester11/08/201827015025:2051.78% +
Winchester11/08/201827015025:2051.78%   -
Queen Elizabeth04/08/20182777233:0439.67% +
Queen Elizabeth04/08/20182777233:0439.67%   -
Winchester28/07/201826820126:4249.13% +
Winchester28/07/201826820126:4249.13%   -
Winchester07/07/201826527529:5843.77% +
Winchester07/07/201826527529:5843.77%   -
Winchester30/06/201826428830:5242.49% +
Winchester30/06/201826428830:5242.49%   -
Winchester09/06/201826232230:4942.56% +
Winchester09/06/201826232230:4942.56%   -
Winchester02/06/201826136732:4040.15% +
Winchester02/06/201826136732:4040.15%   -
Winchester19/05/201825934233:4438.88% +
Winchester19/05/201825934233:4438.88%   -
Winchester12/05/201825814425:2751.54% +
Winchester12/05/201825814425:2751.54%   -
Winchester05/05/201825720727:0148.55% +
Winchester05/05/201825720727:0148.55%   -
Winchester28/04/201825613525:3851.17% +
Winchester28/04/201825613525:3851.17%   -
Winchester21/04/201825532434:4737.71% +
Winchester21/04/201825532434:4737.71%   -
Jersey07/04/201813118530:5342.47% +
Jersey07/04/201813118530:5342.47%   -
Northwich31/03/201815224:5552.64% +
Northwich31/03/201815224:5552.64%   -
Winchester24/03/201825215630:4942.56% +
Winchester24/03/201825215630:4942.56%   -
Poole17/03/201836328428:5945.26% +
Poole17/03/201836328428:5945.26%   -
Winchester10/03/201825015331:2741.71% +
Winchester10/03/201825015331:2741.71%   -
Winchester03/03/20182499330:2843.05% +
Winchester03/03/20182499330:2843.05%   -
Winchester10/02/201824614627:2247.93% +
Winchester10/02/201824614627:2247.93%   -
Whiteley27/01/20184414629:1044.97% +
Whiteley27/01/20184414629:1044.97%   -
Winchester20/01/201824415129:4644.06% +
Winchester20/01/201824415129:4644.06%   -
Winchester13/01/20182439725:1851.84% +
Winchester13/01/20182439725:1851.84%   -
Pendle01/01/20181955926:3749.28% +
Pendle01/01/20181955926:3749.28%   -
Hyndburn30/12/2017115329:5543.84% +
Hyndburn30/12/2017115329:5543.84%   -
Delamere25/12/201724033033:4938.79% +
Delamere25/12/201724033033:4938.79%   -
Phoenix23/12/2017452627:3147.67% +
Phoenix23/12/2017452627:3147.67%   -
Winchester09/12/201723918030:1943.27% +
Winchester09/12/201723918030:1943.27%   -
Southampton02/12/201728448228:3245.97% +
Southampton02/12/201728448228:3245.97%   -
Witton11/11/20171046634:5637.36% +
Witton11/11/20171046634:5637.36%   -
Eastleigh04/11/201738511126:5148.60% +
Eastleigh04/11/201738511126:5148.60%   -
Winchester14/10/201723214725:1451.72% +
Winchester14/10/201723214725:1451.72%   -
Winchester07/10/201723127633:3038.96% +
Winchester07/10/201723127633:3038.96%   -
Winchester30/09/201723016427:1547.89% +
Winchester30/09/201723016427:1547.89%   -
Winchester16/09/20172285322:0858.96% +
Winchester16/09/20172285322:0858.96%   -
Cuerden Valley09/09/20172092024:4752.66% +
Cuerden Valley09/09/20172092024:4752.66%   -
Winchester02/09/20172266522:2758.13% +
Winchester02/09/20172266522:2758.13%   -
Wimpole Estate26/08/201723416928:0746.41% +
Wimpole Estate26/08/201723416928:0746.41%   -
Canterbury19/08/20171793627:2947.48% +
Canterbury19/08/20171793627:2947.48%   -
Winchester05/08/20172236923:0656.49% +
Winchester05/08/20172236923:0656.49%   -
Winchester22/07/201722121727:1847.80% +
Winchester22/07/201722121727:1847.80%   -
Winchester15/07/201722025127:2947.48% +
Winchester15/07/201722025127:2947.48%   -
Winchester08/07/201721925631:0242.05% +
Winchester08/07/201721925631:0242.05%   -
Winchester24/06/201721730232:1840.40% +
Winchester24/06/201721730232:1840.40%   -
Winchester10/06/20172169923:5654.53% +
Winchester10/06/20172169923:5654.53%   -
Burnley27/05/201725720429:0644.85% +
Burnley27/05/201725720429:0644.85%   -
Winchester06/05/201721130230:2842.83% +
Winchester06/05/201721130230:2842.83%   -
Winchester29/04/20172107222:1958.48% +
Winchester29/04/20172107222:1958.48%   -
Medina I.O.W.22/04/201730213930:5742.16% +
Medina I.O.W.22/04/201730213930:5742.16%   -
Winchester15/04/201720825829:1944.51% +
Winchester15/04/201720825829:1944.51%   -
Hanley08/04/20172903922:3157.96% +
Hanley08/04/20172903922:3157.96% PB   -
Eastleigh01/04/201735412527:5446.77% +
Eastleigh01/04/201735412527:5446.77%   -
Winchester18/03/201720415628:4445.42% +
Winchester18/03/201720415628:4445.42%   -
Newbury11/03/20172769123:4954.79% +
Newbury11/03/20172769123:4954.79%   -
Winchester04/03/20172028925:5850.26% +
Winchester04/03/20172028925:5850.26%   -
Richmond Olympic18/02/201714521:5959.36% +
Richmond Olympic18/02/201714521:5959.36%   -
Winchester21/01/20171977323:4355.02% +
Winchester21/01/20171977323:4355.02%   -
Winchester14/01/201719611125:0552.03% +
Winchester14/01/201719611125:0552.03%   -
Winchester07/01/20171959626:0450.06% +
Winchester07/01/20171959626:0450.06%   -
Congleton01/01/201721411329:5743.57% +
Congleton01/01/201721411329:5743.57%   -
Delamere31/12/201619119228:4745.34% +
Delamere31/12/201619119228:4745.34%   -
Witton25/12/2016634530:3742.62% +
Witton25/12/2016634530:3742.62%   -
Bolton24/12/201629821831:4941.02% +
Bolton24/12/201629821831:4941.02%   -
Winchester17/12/201619019530:3342.72% +
Winchester17/12/201619019530:3342.72%   -
Winchester26/11/201618712225:3350.88% +
Winchester26/11/201618712225:3350.88%   -
Basingstoke05/11/201645112924:3153.03% +
Basingstoke05/11/201645112924:3153.03%   -
Winchester22/10/201618310924:5552.17% +
Winchester22/10/201618310924:5552.17%   -
Winchester08/10/20161815522:3957.40% +
Winchester08/10/20161815522:3957.40%   -
Winchester24/09/201617920131:2941.29% +
Winchester24/09/201617920131:2941.29%   -
Winchester17/09/20161786323:2955.36% +
Winchester17/09/20161786323:2955.36%   -
Winchester10/09/20161774822:3457.61% +
Winchester10/09/20161774822:3457.61%   -
Winchester03/09/20161764923:0956.16% +
Winchester03/09/20161764923:0956.16%   -
Fell Foot20/08/2016866426:1149.65% +
Fell Foot20/08/2016866426:1149.65%   -
Woking13/08/20161015824:0154.13% +
Woking13/08/20161015824:0154.13%   -
Netley Abbey16/07/20162346424:2153.39% +
Netley Abbey16/07/20162346424:2153.39%   -
Winchester09/07/20161705922:4257.27% +
Winchester09/07/20161705922:4257.27%   -
Winchester02/07/20161696723:0256.44% +
Winchester02/07/20161696723:0256.44%   -
Winchester11/06/201616622532:1640.29% +
Winchester11/06/201616622532:1640.29%   -
Abingdon28/05/201624820229:1444.47% +
Abingdon28/05/201624820229:1444.47%   -
Winchester21/05/20161632621:0161.86% +
Winchester21/05/20161632621:0161.86%   -
Winchester14/05/201616214925:4150.62% +
Winchester14/05/201616214925:4150.62%   -
Winchester30/04/20161601720:1864.04% +
Winchester30/04/20161601720:1864.04% PB   -
Winchester23/04/20161592321:1861.03% +
Winchester23/04/20161592321:1861.03%   -
Winchester02/04/201615610527:0947.88% +
Winchester02/04/201615610527:0947.88%   -
Winchester26/03/20161551721:1061.42% +
Winchester26/03/20161551721:1061.42%   -
Winchester19/03/20161541320:5961.95% +
Winchester19/03/20161541320:5961.95%   -
Winchester12/03/20161532321:5059.54% +
Winchester12/03/20161532321:5059.54%   -
Winchester05/03/20161525223:3655.08% +
Winchester05/03/20161525223:3655.08%   -
Winchester20/02/201615010526:2249.30% +
Winchester20/02/201615010526:2249.30%   -
Winchester13/02/20161491521:4159.95% +
Winchester13/02/20161491521:4159.95%   -
Winchester30/01/20161475426:1949.40% +
Winchester30/01/20161475426:1949.40%   -
Winchester23/01/20161466025:0052.00% +
Winchester23/01/20161466025:0052.00%   -
Winchester16/01/201614518639:1133.18% +
Winchester16/01/201614518639:1133.18%   -
Winchester09/01/201614417446:2727.99% +
Winchester09/01/201614417446:2727.99%   -
Hanley01/01/20162248427:0348.06% +
Hanley01/01/20162248427:0348.06%   -
Congleton01/01/20161615623:4754.66% +
Congleton01/01/20161615623:4754.66%   -
Delamere25/12/20151394723:1455.95% +
Delamere25/12/20151394723:1455.95%   -
Hagley12/12/2015622022:3857.44% +
Hagley12/12/2015622022:3857.44%   -
Hamilton Lake05/12/20151121621:4759.68% +
Hamilton Lake05/12/20151121621:4759.68%   -
Winchester21/11/20151362222:1658.23% +
Winchester21/11/20151362222:1658.23%   -
Winchester14/11/20151352521:4959.43% +
Winchester14/11/20151352521:4959.43%   -
Eastleigh07/11/20152822524:0853.73% +
Eastleigh07/11/20152822524:0853.73%   -
Winchester31/10/20151342621:2160.73% +
Winchester31/10/20151342621:2160.73%   -
Congleton24/10/2015150920:0664.51% +
Congleton24/10/2015150920:0664.51% PB   -
Winchester17/10/20151322020:3263.15% +
Winchester17/10/20151322020:3263.15% PB   -
Winchester10/10/20151312221:0061.75% +
Winchester10/10/20151312221:0061.75%   -
Winchester03/10/20151306623:0056.38% +
Winchester03/10/20151306623:0056.38%   -
Fountains Abbey26/09/2015813020:3363.10% +
Fountains Abbey26/09/2015813020:3363.10%   -
Winchester05/09/20151263621:4259.75% +
Winchester05/09/20151263621:4259.75%   -
Winchester15/08/20151233022:1358.36% +
Winchester15/08/20151233022:1358.36%   -
Southampton01/08/20151637021:1760.92% +
Southampton01/08/20151637021:1760.92% PB   -
Winchester25/07/20151214222:0958.54% +
Winchester25/07/20151214222:0958.54%   -
Congleton18/07/20151362321:0461.55% +
Congleton18/07/20151362321:0461.55%   -
Delamere20/06/20151162321:4259.75% +
Delamere20/06/20151162321:4259.75% PB   -
Winchester13/06/20151163521:2060.78% +
Winchester13/06/20151163521:2060.78%   -
Winchester30/05/20151142420:5062.24% +
Winchester30/05/20151142420:5062.24%   -
Winchester23/05/20151131820:4462.54% +
Winchester23/05/20151131820:4462.54%   -
Winchester16/05/20151122021:0761.40% +
Winchester16/05/20151122021:0761.40%   -
Winchester09/05/20151112221:0461.55% +
Winchester09/05/20151112221:0461.55%   -
Winchester02/05/20151102020:3563.00% +
Winchester02/05/20151102020:3563.00% PB   -
Winchester25/04/20151097423:2755.29% +
Winchester25/04/20151097423:2755.29%   -
Winchester18/04/20151083921:4359.71% +
Winchester18/04/20151083921:4359.71%   -
Winchester11/04/20151073221:2060.78% +
Winchester11/04/20151073221:2060.78% PB   -
Delamere04/04/20151055122:1158.45% +
Delamere04/04/20151055122:1158.45% PB   -
Andover21/03/20151992622:2457.89% +
Andover21/03/20151992622:2457.89%   -
Fell Foot07/03/2015192223:4854.48% +
Fell Foot07/03/2015192223:4854.48% PB   -
Southampton28/02/201514212722:3057.63% +
Southampton28/02/201514212722:3057.63%   -
Penrhyn21/02/2015142624:3352.82% +
Penrhyn21/02/2015142624:3352.82%   -
Winchester14/02/2015995324:4252.50% +
Winchester14/02/2015995324:4252.50%   -
Winchester07/02/2015984824:1253.58% +
Winchester07/02/2015984824:1253.58%   -
Winchester31/01/2015977327:2047.44% +
Winchester31/01/2015977327:2047.44%   -
Delamere25/12/2014915823:1355.85% +
Delamere25/12/2014915823:1355.85%   -
Winchester20/12/2014894723:1655.73% +
Winchester20/12/2014894723:1655.73% PB   -
Winchester13/12/2014886725:4550.36% +
Winchester13/12/2014886725:4550.36%   -
Winchester29/11/2014865424:0153.99% +
Winchester29/11/2014865424:0153.99%   -
Fell Foot22/11/201464426:1949.15% +
Fell Foot22/11/201464426:1949.15%  

@@ -686,78 +779,61 @@

Andrew TAYLOR (A13093
- Locations: 58 + Locations: 75
- Finishers: 81,482 + Finishers: 124697
- Finishes: 386,576 + Finishes: 636582
- All-time events: 8,777 + All-time events: 13685
- Volunteers: 9,152 + Volunteers: 13160
- PBs: 58,526 + PBs: 93120
- Average finish time: 00:33:35 + Average finish time: 00:34:06
- Average finishes per participant: 4.7 + Groups: 3140
-
- Groups: 2,656 -
-
-
- Female record: - Lauren HURLEY – 16:17 - (11 Sep 2021) -
-
- Male record: - Paul MARTELLETTI – 14:57 - ( 5 Aug 2017) -
-
- Age graded record: - Sabra HARVEY - 103.73% 21:28 - ( 4 May 2019) -
+
- Stats last updated: Fri 14 Apr 2023 12:45:50 AM UTC + Stats last updated: Mon 30 Sep 2024 12:46:01 AM UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -791,8 +877,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/1309364/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/1309364/index.html index 488d0156..563e5106 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/1309364/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/1309364/index.html @@ -14,6 +14,8 @@ + results | parkrun USA - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -57,7 +53,7 @@
@@ -69,34 +65,25 @@
@@ -119,178 +106,188 @@ style='width:auto;margin-bottom: 20px;'> -

Andrew TAYLOR (A1309364)

- Member of the parkrun 100 Club +

Andrew TAYLOR (A1309364)

+ Member of the parkrun 250 Club Member of the Volunteer 50 club -

245 parkruns total

+

297 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM35-39 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Clitheroe Castle parkrun08/04/2023639735:4637.88%
Whiteley parkrun25/03/202312418332:2441.82%
Winchester parkrun11/03/202314921230:3744.26%
Winchester parkrun04/03/202318330935:4537.90%
Winchester parkrun25/02/202320332536:0937.48%
Winchester parkrun18/02/202319230336:3137.11%
Delamere parkrun31/12/202218131536:2537.21%
Ganger Farm parkrun10/12/202211118257:3423.54%
Ganger Farm parkrun03/12/20229713529:2546.06%
Winchester parkrun26/11/202217929335:3137.87%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun146121300:20:18 + Most recent age category was VM40-44 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Winchester parkrun28/09/202421232833:5740.21%
Winchester parkrun21/09/202423238134:4539.28%
Ford parkrun14/09/2024477432:2942.02%
Eastleigh parkrun17/08/202410113129:1746.61%
Winchester parkrun10/08/202416823228:0448.63%
Valentines parkrun27/07/2024698025:1454.10%
Winchester parkrun13/07/202422430328:3347.81%
Winchester parkrun06/07/202421537535:3538.36%
Medina I.O.W. parkrun29/06/202414421833:4440.46%
Medina I.O.W. parkrun22/06/2024667525:1354.13%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Winchester parkrun173121320:18 + All +
Whiteley parkrun1410714629:06 + All +
Delamere parkrun11232321:42 + All +
Eastleigh parkrun6242524:08 All - Graph It!
Delamere parkrun8232300:21:42 +
Alice Holt parkrun59010727:19 All - Graph It!
Whiteley parkrun610714600:29:06 +
Southampton parkrun5687021:17 All - Graph It!
Alice Holt parkrun59010700:27:19 +
Fell Foot parkrun, Newby Bridge4212223:48 All - Graph It!
Southampton parkrun5687000:21:17 +
Witton parkrun4303525:40 All - Graph It!
Eastleigh parkrun5242500:24:08 +
Northwich parkrun4485224:55 All - Graph It!
Congleton parkrun49900:20:06 +
Newbury parkrun4829123:49 All - Graph It!
Witton parkrun4303500:25:40 +
Congleton parkrun49920:06 All - Graph It!
Northwich parkrun4485200:24:55 +
Medina I.O.W. parkrun4667525:13 All - Graph It!
Fell Foot parkrun, Newby Bridge3212200:23:48 +
Ganger Farm parkrun38013229:25 All - Graph It!
Andover parkrun2242600:22:24 +
Burnley parkrun212718929:06 All - Graph It!
Ganger Farm parkrun29713500:29:25 +
Queen Elizabeth parkrun2364026:36 All - Graph It!
Hanley parkrun2333900:22:31 +
Andover parkrun2242622:24 All - Graph It!
Newbury parkrun2829100:23:49 +
Hanley parkrun2333922:31 All - Graph It!
Queen Elizabeth parkrun2364000:26:36 +
Netley Abbey parkrun1586424:21 All - Graph It!
Hagley parkrun1182000:22:38 +
Hilly Fields parkrun1859925:03 All -  
Ormskirk parkrun120930300:31:04 +
Brockenhurst parkrun112718632:41 All -  
Basingstoke parkrun111212900:24:31 +
Wimpole Estate parkrun112916928:07 All -  
Cuerden Valley parkrun1192000:24:47 +
Clumber Park parkrun112117629:51 All -  
Seven Fields parkrun1546700:28:28 +
Cuerden Valley parkrun1192024:47 All -  
Netley Abbey parkrun1586400:24:21 +
Hamilton Lake parkrun1151621:47 All -  
Mountbatten School parkrun17110100:31:29 +
Fountains Abbey parkrun1283020:33 All -  
Clitheroe Castle parkrun1639700:35:46 +
Ormskirk parkrun120930331:04 All -  
Medina I.O.W. parkrun19513900:30:57 +
Pendle parkrun1465926:37 All -  
Hogmoor Inclosure parkrun111314000:29:34 +
Woking parkrun1485824:01 All -  
Milano Nord parkrun1475300:27:49 +
Hagley parkrun1182022:38 All -  
Jersey parkrun111018500:30:53 +
Penrhyn parkrun1232624:33 All -  
Canterbury parkrun1323600:27:29 +
Salisbury parkrun119326729:45 All -  
Penrhyn parkrun1232600:24:33 +
Jersey parkrun111018530:53 All -  
Hyndburn parkrun1425300:29:55 +
Haigh Woodland parkrun18916837:04 All -  
Woking parkrun1485800:24:01 +
Stretford parkrun127540530:23 All -  
Fountains Abbey parkrun1283000:20:33 +
Portsmouth Lakeside parkrun1818726:32 All -  
Bushy parkrun1681102100:33:01 +
Fareham parkrun19011428:52 All -  
Clumber Park parkrun112117600:29:51 +
Milano Nord parkrun1475327:49 All -  
Wimpole Estate parkrun112916900:28:07 +
Richmond Olympic parkrun15521:59 All -  
Tidworth parkrun18615100:51:42 +
Crewe parkrun112315430:05 All -  
Hilly Fields parkrun1859900:25:03 +
Hogmoor Inclosure parkrun111314029:34 All -  
Tawd Valley parkrun18111000:29:25 +
Catford parkrun19512527:24 All -  
Watermeadows parkrun1151500:23:51 +
Clitheroe Castle parkrun1639735:46 All -  
Eden Project parkrun111116200:30:21 +
Pocket parkrun112419533:47 All -  
Catford parkrun19512500:27:24 +
Ford parkrun1477432:29 All -  
Crewe parkrun112315400:30:05 +
Watermeadows parkrun1151523:51 All -  
Long Eaton parkrun118122900:28:06 +
Mountbatten School parkrun17110131:29 All -  
Fareham parkrun19511400:28:52 +
Uckfield parkrun1416028:43 All -  
Phoenix parkrun1232600:27:31 +
Tawd Valley parkrun18111029:25 All -  
Guildford parkrun117125100:30:01 +
Seven Fields parkrun1546728:28 All -  
Pendle parkrun1465900:26:37 +
Itchen Valley Country parkrun110613529:53 All -  
Heaton parkrun133846700:31:01 +
Bartley Park parkrun1628430:26 All -  
Hamilton Lake parkrun1151600:21:47 +
Tidworth parkrun18615151:42 All -  
Brockenhurst parkrun112718600:32:41 +
Bushy parkrun1681102133:01 All -  
Itchen Valley Country parkrun110713500:29:53 +
Basingstoke parkrun111212924:31 All -  
Burnley parkrun114120400:29:06 +
Heaton parkrun133846731:01 All -  
Uckfield parkrun1416000:28:43 +
Guildford parkrun117125130:01 All -  
Abingdon parkrun114220200:29:14 +
Hyndburn parkrun1425329:55 All -  
Pocket parkrun112419500:33:47 +
Phoenix parkrun1232627:31 All -  
Bolton parkrun116221800:31:49 +
Canterbury parkrun1323627:29 All -  
Richmond Olympic parkrun15500:21:59 +
Valentines parkrun1698025:14 All -  
Poole parkrun121328400:28:59 +
Poole parkrun121328428:59 All -  
Portsmouth Lakeside parkrun1818700:26:32 +
Long Eaton parkrun118122928:06 All -  
Salisbury parkrun119326700:29:45 +
Bolton parkrun116221831:49 All -  
2455500:20:06 +
Eden Project parkrun111116230:21 + All +
Abingdon parkrun114220229:14 + All +
2975520:06 All  


Volunteer Summary

RoleOccasions
- Run Director - 21
- Timekeeper - 2
- Token Sorting - 8
- Results Processor - 6
- Photographer - 4
- Marshal - 4
- Pre-event Setup - 6
- Equipment Storage and Delivery - 2
- Barcode Scanning - 2
- Post-event Close Down - 10
- Finish Tokens - 1
- Number Checker - 2
- First Timers Welcome - 1
- Funnel Manager - 1
- Tail Walker - 4
- Volunteer Co-ordinator - 1
- Report Writer - 10
- Pacer (5k only) - 1
Total Credits58

+ Run Director +

21
+ Timekeeper + 2
+ Token Sorting + 8
+ Results Processor + 6
+ Photographer + 4
+ Marshal + 5
+ Pre-event Setup + 6
+ Equipment Storage and Delivery + 2
+ Barcode Scanning + 3
+ Post-event Close Down + 10
+ Finish Tokens + 1
+ Number Checker + 2
+ First Timers Welcome + 1
+ Funnel Manager + 1
+ Tail Walker + 4
+ Volunteer Co-ordinator + 1
+ Report Writer + 10
+ Pacer (5k only) + 1
Total Credits60

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
13/12/201500:33:09Dunedin
09/12/201500:24:58Kapiti Coast
09/12/201500:27:34Lower Hutt
09/12/201500:25:11Porirua
02/12/201500:24:40Barry Curtis
02/12/201500:25:45Millwater
01/12/201500:26:11Western Springs
30/11/201500:25:09Cornwall Park
12/09/201500:23:37Winchester
27/06/201500:23:37Winchester


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
3908/03/202114/03/2021200:28:36
3801/03/202107/03/2021200:51:43
3722/02/202128/02/2021100:52:54
1017/08/202023/08/2020101:07:44
727/07/202002/08/2020100:27:31
513/07/202019/07/2020101:02:57
406/07/202012/07/2020100:29:24
329/06/202005/07/2020100:29:48
222/06/202028/06/2020100:28:22
115/06/202021/06/2020100:27:46
@@ -320,78 +317,61 @@

Andrew TAYLOR (A13093
- Locations: 58 + Locations: 75
- Finishers: 81,482 + Finishers: 124697
- Finishes: 386,576 + Finishes: 636582
- All-time events: 8,777 + All-time events: 13685
- Volunteers: 9,152 + Volunteers: 13160
- PBs: 58,526 + PBs: 93120
- Average finish time: 00:33:35 + Average finish time: 00:34:06
- Average finishes per participant: 4.7 + Groups: 3140
-
- Groups: 2,656 -
-
-
- Female record: - Lauren HURLEY – 16:17 - (11 Sep 2021) -
-
- Male record: - Paul MARTELLETTI – 14:57 - ( 5 Aug 2017) -
-
- Age graded record: - Sabra HARVEY - 103.73% 21:28 - ( 4 May 2019) -
+

- Stats last updated: Fri 14 Apr 2023 12:45:50 AM UTC + Stats last updated: Mon 30 Sep 2024 12:46:01 AM UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -425,8 +415,8 @@

Andrew TAYLOR (A13093 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/2705084/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/2705084/all/index.html index 9381c570..9a0b2d42 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/2705084/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/2705084/all/index.html @@ -14,6 +14,8 @@ + results | parkrun USA - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -57,7 +53,7 @@
@@ -69,34 +65,25 @@
@@ -119,10 +106,10 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club +

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club

- No results have been recorded yet for this parkrunner. + ​

View summary stats for this parkrunner

@@ -154,78 +141,61 @@

Duncan BOOTH (A270508
- Locations: 59 -
-
- Finishers: 82,078 + Locations: 75
- Finishes: 389,202 + Finishers: 124697
- All-time events: 8,831 + Finishes: 636582
- Volunteers: 9,226 + All-time events: 13685
- PBs: 58,839 + Volunteers: 13160
- Average finish time: 00:33:35 + PBs: 93120
- Average finishes per participant: 4.7 + Average finish time: 00:34:06
- Groups: 2,672 + Groups: 3140
-
-
- Female record: - Lauren HURLEY – 16:17 - (11 Sep 2021) -
-
- Male record: - Paul MARTELLETTI – 14:57 - ( 5 Aug 2017) -
-
- Age graded record: - Sabra HARVEY - 103.73% 21:28 - ( 4 May 2019) -
+
- Stats last updated: Mon 17 Apr 2023 12:46:21 AM UTC + Stats last updated: Mon 30 Sep 2024 12:46:01 AM UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -259,8 +239,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/2705084/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/2705084/index.html index 7e899946..ddec8acd 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/2705084/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/2705084/index.html @@ -14,6 +14,8 @@ + results | parkrun USA - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -57,7 +53,7 @@
@@ -69,34 +65,25 @@
@@ -119,18 +106,18 @@ style='width:auto;margin-bottom: 20px;'> -

Duncan BOOTH (A2705084)

- Member of the Volunteer 250 club -

No results have been recorded yet for this parkrunner.

Volunteer Summary

RoleOccasions
- Marshal - 260
- Lead Bike - 130
- Event Day Course Check - 9
Total Credits393

+

Duncan BOOTH (A2705084)

+ Member of the Volunteer 500 club +

Volunteer Summary

RoleOccasions
+ Marshal + 350
+ Lead Bike + 130
+ Event Day Course Check + 82
Total Credits540

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



@@ -160,78 +147,61 @@

Duncan BOOTH (A270508
- Locations: 59 -
-
- Finishers: 82,078 + Locations: 75
- Finishes: 389,202 + Finishers: 124697
- All-time events: 8,831 + Finishes: 636582
- Volunteers: 9,226 + All-time events: 13685
- PBs: 58,839 + Volunteers: 13160
- Average finish time: 00:33:35 + PBs: 93120
- Average finishes per participant: 4.7 + Average finish time: 00:34:06
- Groups: 2,672 + Groups: 3140
-
-
- Female record: - Lauren HURLEY – 16:17 - (11 Sep 2021) -
-
- Male record: - Paul MARTELLETTI – 14:57 - ( 5 Aug 2017) -
-
- Age graded record: - Sabra HARVEY - 103.73% 21:28 - ( 4 May 2019) -
+

- Stats last updated: Mon 17 Apr 2023 12:46:21 AM UTC + Stats last updated: Mon 30 Sep 2024 12:46:01 AM UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -265,8 +245,8 @@

Duncan BOOTH (A270508 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/482/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/482/all/index.html index 763c0d6d..368d882b 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/482/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/482/all/index.html @@ -14,6 +14,8 @@ + results | parkrun USA - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -57,7 +53,7 @@
@@ -69,34 +65,25 @@
@@ -124,1650 +111,1816 @@

Danny NORMAN (A482) Member of the Volunteer 250 club

- 785 parkruns total + 867 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM40-44 + Most recent age category was VM45-49

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time16:2521:0459:17
Age Grading79.25%65.45%23.56%
Overall Position134.831692

+
FastestAverage
(mean)
Slowest
Time16:2521:2659:17
Age Grading79.25%64.63%23.56%
Overall Position138.841692

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:25:1255.42%

+
YearBest TimeBest Age Grading
200500:18:0871.14%
200600:17:2474.14%
200700:16:3777.56%
200800:16:2778.42%
200900:16:2578.68%
201000:16:3378.15%
201100:16:4377.57%
201200:16:2879.25%
201300:16:5177.45%
201400:17:2475.38%
201500:18:4070.63%
201600:18:4470.82%
201700:20:0966.75%
201800:19:2769.15%
201900:21:1064.02%
202000:23:1858.58%
202100:26:4551.78%
202200:23:5857.79%
202300:22:3462.33%
202400:22:2462.80%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Harleston Magpies08/04/2023793525:1255.42% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Seaton28/09/20243384824:0958.73% +   +
Malling Rec21/09/2024128526:5952.56% + PB + +   +
Dereham14/09/202493323:4759.64% +   +
Swansea Bay07/09/20243758323:4459.76% +   +
The Plens31/08/202473124:0458.93% +   +
Kingston24/08/20246754623:3060.35% +   +
Three Brooks17/08/202457223:4659.68% +   +
Malling Rec10/08/2024613828:1550.21% +   +
Shipley Country03/08/20242962424:4557.31% +   +
Morden27/07/2024515526:5852.60% +   +
Kingston20/07/20246716523:4159.89% +   +
Bug Hunter Waters13/07/202455022:4162.53% +   +
Gedling06/07/20244033224:5956.30% +   +
Barry Island29/06/20243954223:5158.98% +   +
Albert22/06/20247765423:1760.42% +   +
Kingston15/06/202466610425:0056.27% +   +
Colney Lane08/06/20242675524:0158.57% +   +
Wakehurst01/06/2024710525:0056.27% +   +
Holkham25/05/20243186925:3754.91% +   +
Kingston18/05/202466211625:5154.42% +   +
Ross-on-Wye11/05/20241352124:2257.73% +   +
Forest Rec04/05/20244797626:3552.92% +   +
Wollaton Hall27/04/20241369723:5158.98% +   +
Kingston20/04/202465813026:4652.55% +   +
Llanishen Park13/04/2024933323:4859.10% +   +
Hereford06/04/20244115323:0760.85% +   +
Bushy Park30/03/202497829523:0860.81% +   +
Riddlesdown23/03/20246189428:1049.94% +   +
Littlehampton Prom16/03/20241829925:0855.97% +   +
Brunswick Park09/03/202482223:5858.69% +   +
Preston Park02/03/202448833728:5648.62% +   +
Tremorfa24/02/20241412923:3059.86% +   +
Cwmbran17/02/20243181723:2959.90% +   +
Worthing10/02/20243148722:4062.06% +   +
Chippenham Playing Fields, Monmouth03/02/2024791923:0560.94% +   +
Forest of Dean27/01/20246572224:5156.61% +   +
Battlestead Croft20/01/202461122:5361.47% +   +
Markeaton13/01/20244326422:5661.34% +   +
Alvaston06/01/20241655922:2462.80% +   +
Kingston01/01/20246427526:5552.26% +   +
Beeston30/12/20234284023:5358.90% +   +
Bushy Park25/12/202396387626:3652.88% +   +
Newent23/12/20234812225:2755.27% +   +
Belton House16/12/20233051523:4859.10% +   +
Kingston09/12/20236386824:3257.34% +   +
Tamworth Castle Grounds02/12/202363523:2660.03%   -
Cannock Chase01/04/20232434425:4954.10% +
Quakers Walk25/11/2023126825:0556.08%   -
Kingston25/03/202360216430:0946.32% +
Aston Hall18/11/202352225:0156.23%   -
Wolford Wood18/03/202352730:2445.94% +
Sence Valley Forest Park11/11/202352526:2853.15%   -
Kingston11/03/202360015027:1851.16% +
Belvoir Castle04/11/2023911925:4254.73%   -
Stockley Country04/03/2023817935:3239.31% +
Five Arches28/10/202365422:5861.25%   -
Chasewater25/02/202310010026:1953.07% +
Dover Waterfront21/10/202374525:2255.45%   -
Worcester Pitchcroft18/02/202320614327:0451.60% +
Rushcliffe14/10/20235087323:5458.86%   -
Bethlem Royal Hospital11/02/20231159229:2547.48% +
Kingston07/10/202363033150:2927.86%   -
Worcester04/02/202354318529:3047.34% +
Maaraue03/10/20231012522:3462.33%   -
Crane Park28/01/202349014550:3727.59% +
University of Northampton30/09/2023112223:2460.11%   -
Kingston21/01/202359431139:3935.22% +
Clifton23/09/20231911025:1455.75%   -
Brooklands14/01/202313018830:4445.44% +
Wisbech16/09/202351523:0361.03%   -
Market Bosworth Country Park07/01/2023414435:3539.25% +
Holbrooks09/09/202362223:4359.31%   -
Kingston01/01/202359113340:3134.47% +
Wyre Forest02/09/20233404825:5654.24%   -
Kingston31/12/202259026442:4432.68% +
Hunstanton Promenade26/08/20231313523:4559.23%   -
Bushy Park25/12/2022909169244:3931.28% +
Riverfront19/08/20232594622:5761.29%   -
Woodgate Valley Country Park24/12/20226913245:5030.47% +
Long Eaton12/08/202334112124:0658.37%   -
Kingston17/12/202258818059:1723.56% +
Kingston05/08/20236216723:2160.24%   -
Kingston10/12/202258723255:4025.09% +
Kingston29/07/20236208725:0955.93%   -
Beacon03/12/2022737326:4152.34% +
Kingston22/07/20236199224:2457.65%   -
Ganger Farm26/11/2022211426:3452.57% +
Severn Valley Country15/07/20231411626:1353.66%   -
Bushy Park19/11/2022903110553:2326.16% +
Beacon Hill Country Park08/07/2023193725:5453.93%   -
Leavesden Country12/11/202246928:3248.95% +
Thornham Walks01/07/202353826:5251.99%   -
Lordship Recreation Ground05/11/2022312425:2255.06% +
Kingston24/06/20236156524:0957.83%   -
Durlston Country Park29/10/2022335032:4542.65% +
Rosliston17/06/20233073624:4156.58% +   +
East Park10/06/20231101424:1857.48% +   +
Thames Path, Woolwich03/06/202359023:4258.93% +   +
Kagerzoom29/05/2023915824:3956.66% +   +
Zuiderpark27/05/2023808124:0757.91% +   +
Blaise Castle20/05/2023316326:2053.04% +   +
Abbey Park13/05/202359425:2155.10% +   +
Wolverhampton06/05/20234566624:5456.09% +   +
Tøyen01/05/20231798526:3252.64% +   +
Ekebergsletta29/04/2023324325:5753.82% +   +
Dudley22/04/20232255626:3552.54% +   +
Yarborough Leisure Centre15/04/2023106125:5953.75% +   +
Harleston Magpies08/04/2023793525:1255.42% +   +
Cannock Chase01/04/20232434425:4954.10% +   +
Kingston25/03/202360216430:0946.32% +   +
Wolford Wood18/03/202352730:2445.94% +   +
Kingston11/03/202360015027:1851.16% +   +
Stockley Country04/03/2023817935:3239.31% +   +
Chasewater25/02/202310010026:1953.07% +   +
Worcester Pitchcroft18/02/202320614327:0451.60% +   +
Bethlem Royal Hospital11/02/20231159229:2547.48% +   +
Worcester04/02/202354318529:3047.34% +   +
Crane Park28/01/202349014550:3727.59% +   +
Kingston21/01/202359431139:3935.22% +   +
Brooklands14/01/202313018830:4445.44% +   +
Market Bosworth Country Park07/01/2023414435:3539.25% +   +
Kingston01/01/202359113340:3134.47% +   +
Kingston31/12/202259026442:4432.68% +   +
Bushy Park25/12/2022909169244:3931.28% +   +
Woodgate Valley Country Park24/12/20226913245:5030.47% +   +
Kingston17/12/202258818059:1723.56% +   +
Kingston10/12/202258723255:4025.09% +   +
Beacon03/12/2022737326:4152.34% +   +
Ganger Farm26/11/2022211426:3452.57% +   +
Bushy Park19/11/2022903110553:2326.16% +   +
Leavesden Country12/11/202246928:3248.95% +   +
Lordship Recreation Ground05/11/2022312425:2255.06% +   +
Durlston Country Park29/10/2022335032:4542.65% PB   -
Kingston22/10/20225808625:0755.61% +
Kingston22/10/20225808625:0755.61%   -
Cannon Hill15/10/202253818325:1455.35% +
Cannon Hill15/10/202253818325:1455.35%   -
Sutton Park08/10/20221455524:5456.09% +
Sutton Park08/10/20221455524:5456.09%   -
Aachener Weiher03/10/20221171124:5556.05% +
Aachener Weiher03/10/20221171124:5556.05%   -
Rheinpark01/10/2022551825:3054.77% +
Rheinpark01/10/2022551825:3054.77%   -
Kingston24/09/20225769324:3156.97% +
Kingston24/09/20225769324:3156.97%   -
Kingsbury Water17/09/20223934725:0555.68% +
Kingsbury Water17/09/20223934725:0555.68%   -
Loch Neaton10/09/20221131725:4954.10% +
Loch Neaton10/09/20221131725:4954.10%   -
Mole Valley03/09/202216814129:4047.08% +
Mole Valley03/09/202216814129:4047.08%   -
Kingston27/08/20225729626:4652.18% +
Kingston27/08/20225729626:4652.18%   -
Old Deer Park20/08/20225405625:3254.70% +
Old Deer Park20/08/20225405625:3254.70%   -
Rogiet13/08/20221611624:2757.12% +
Rogiet13/08/20221611624:2757.12%   -
Mildenhall Hub06/08/202273124:3356.89% +
Mildenhall Hub06/08/202273124:3356.89%   -
Chilton Fields30/07/2022525428:2649.12% +
Chilton Fields30/07/2022525428:2649.12%   -
Kingston23/07/202256710225:5453.93% +
Kingston23/07/202256710225:5453.93%   -
Downham Market Academy16/07/2022191324:3556.81% +
Downham Market Academy16/07/2022191324:3556.81%   -
Perry Hall09/07/20223214924:5855.47% +
Perry Hall09/07/20223214924:5855.47%   -
Rendlesham Forest02/07/2022194637:0137.42% +
Rendlesham Forest02/07/2022194637:0137.42%   -
Mote Park25/06/2022412231:2844.01% +
Mote Park25/06/2022412231:2844.01%   -
Durlston Country Park18/06/2022147939:4134.90% +
Durlston Country Park18/06/2022147939:4134.90%   -
Tidworth11/06/2022215535:1439.31% +
Tidworth11/06/2022215535:1439.31%   -
Malmö Ribersborg06/06/202214615128:4648.15% +
Malmö Ribersborg06/06/202214615128:4648.15%   -
Amager Fælled04/06/20226303724:2356.80% +
Amager Fælled04/06/20226303724:2356.80%   -
Northampton28/05/20224516923:5857.79% +
Northampton28/05/20224516923:5857.79%   -
Edgbaston Reservoir21/05/2022398626:2452.46% +
Edgbaston Reservoir21/05/2022398626:2452.46%   -
Edenbrook Country14/05/2022414828:0149.43% +
Edenbrook Country14/05/2022414828:0149.43%   -
Hastings High School07/05/202277827:3350.27% +
Hastings High School07/05/202277827:3350.27%   -
Church Mead30/04/2022410232:5342.12% +
Church Mead30/04/2022410232:5342.12%   -
Sandwell Valley23/04/20221485930:4345.09% +
Sandwell Valley23/04/20221485930:4345.09%   -
Thornbury16/04/20221173428:1948.91% +
Thornbury16/04/20221173428:1948.91%   -
Sharpham Road Playing Fields09/04/2022283124:4156.11% +
Sharpham Road Playing Fields09/04/2022283124:4156.11%   -
Frogmary Green Farm02/04/202257225:5853.34% +
Frogmary Green Farm02/04/202257225:5853.34%   -
Street26/03/20221303525:5253.54% +
Street26/03/20221303525:5253.54%   -
Kingston19/03/20225496825:2354.56% +
Kingston19/03/20225496825:2354.56%   -
Marine Parade12/03/2022811129:2447.11% +
Marine Parade12/03/2022811129:2447.11%   -
The Great Field05/03/20221813529:1247.43% +
The Great Field05/03/20221813529:1247.43%   -
University Parks26/02/2022332631:4243.69% +
University Parks26/02/2022332631:4243.69%   -
Hazelwood19/02/202212612626:5951.33% +
Hazelwood19/02/202212612626:5951.33%   -
Berkeley Green12/02/2022293128:3148.57% +
Berkeley Green12/02/2022293128:3148.57%   -
Great Salterns05/02/2022312430:2745.48% +
Great Salterns05/02/2022312430:2745.48%   -
Southall29/01/202247531:3843.78% +
Southall29/01/202247531:3843.78%   -
Bartley Park22/01/2022615132:3842.44% +
Bartley Park22/01/2022615132:3842.44%   -
Sandringham15/01/2022166330:1845.71% +
Sandringham15/01/2022166330:1845.71%   -
Burnham and Highbridge08/01/202226910027:5149.73% +
Burnham and Highbridge08/01/202226910027:5149.73%   -
Cyclopark01/01/2022597527:1750.76% +
Cyclopark01/01/2022597527:1750.76%   -
Bushy Park25/12/2021857146038:3135.96% +
Bushy Park25/12/2021857146038:3135.96%   -
Watermead Country Park18/12/20211318235:5238.62% +
Watermead Country Park18/12/20211318235:5238.62%   -
Longrun Meadow11/12/202135516532:0143.26% +
Longrun Meadow11/12/202135516532:0143.26%   -
Alton Water04/12/202158335:0939.40% +
Alton Water04/12/202158335:0939.40%   -
Bury Field27/11/202149033:0741.82% +
Bury Field27/11/202149033:0741.82%   -
Markshall Estate20/11/2021215632:2642.70% +
Markshall Estate20/11/2021215632:2642.70%   -
Dallas Burston Polo Club13/11/2021514732:2642.70% +
Dallas Burston Polo Club13/11/2021514732:2642.70%   -
Swanley06/11/2021312531:1844.25% +
Swanley06/11/2021312531:1844.25%   -
Charlton30/10/2021513032:0543.17% +
Charlton30/10/2021513032:0543.17%   -
Broadwater23/10/2021621335:1939.22% +
Broadwater23/10/2021621335:1939.22%   -
Oaklands16/10/20212920336:1038.29% +
Oaklands16/10/20212920336:1038.29%   -
Bramhall Park09/10/202160924735:1639.27% +
Bramhall Park09/10/202160924735:1639.27%   -
Henlow Bridge Lakes02/10/2021211532:3442.53% +
Henlow Bridge Lakes02/10/2021211532:3442.53%   -
Mallards Pike25/09/2021304630:5744.75% +
Mallards Pike25/09/2021304630:5744.75%   -
Sutcliffe18/09/2021217230:3445.31% +
Sutcliffe18/09/2021217230:3445.31%   -
Thomas Mills11/09/2021466530:1945.68% +
Thomas Mills11/09/2021466530:1945.68%   -
St Mary’s04/09/2021447429:1447.38% +
St Mary’s04/09/2021447429:1447.38%   -
Grove Fields28/08/202128528:0349.38% +
Grove Fields28/08/202128528:0349.38%   -
Storeys Field21/08/2021421128:4948.06% +
Storeys Field21/08/2021421128:4948.06%   -
Horspath14/08/2021210628:1249.11% +
Horspath14/08/2021210628:1249.11%   -
Babbs Mill07/08/2021365128:0049.46% +
Babbs Mill07/08/2021365128:0049.46%   -
Leicester Victoria31/07/202122511626:4551.78% +
Leicester Victoria31/07/202122511626:4551.78%   -
Wickford Memorial24/07/202146651:1527.02% +
Wickford Memorial24/07/202146651:1527.02%   -
Chalkwell Beach14/03/202039624:4055.34% +
Chalkwell Beach14/03/202039624:4055.34%   -
Itchen Valley Country07/03/202026127:3749.43% +
Itchen Valley Country07/03/202026127:3749.43%   -
Soham Village College29/02/2020153228:0348.66% +
Soham Village College29/02/2020153228:0348.66%   -
St Helens22/02/20202956824:2755.83% +
St Helens22/02/20202956824:2755.83%   -
Bedfont Lakes15/02/20205485626:1751.93% +
Bedfont Lakes15/02/20205485626:1751.93%   -
Zalew Żyrardowski08/02/20209724:3855.41% +
Zalew Żyrardowski08/02/20209724:3855.41%   -
Fulbourn Hospital01/02/202094724:5954.64% +
Fulbourn Hospital01/02/202094724:5954.64%   -
Pontefract25/01/20204528724:1056.48% +
Pontefract25/01/20204528724:1056.48%   -
Pont y Bala18/01/202041723:1858.58% +
Pont y Bala18/01/202041723:1858.58%   -
Brixworth Country11/01/202076126:5350.77% +
Brixworth Country11/01/202076126:5350.77%   -
Cromhall04/01/2020461624:2056.10% +
Cromhall04/01/2020461624:2056.10%   -
Milton Keynes01/01/202050918425:2253.81% +
Milton Keynes01/01/202050918425:2253.81%   -
Bedford01/01/202044011224:4055.34% +
Bedford01/01/202044011224:4055.34%   -
Chipping Norton School28/12/201925126:4051.19% +
Chipping Norton School28/12/201925126:4051.19%   -
Bushy Park25/12/201982163024:5654.75% +
Bushy Park25/12/201982163024:5654.75%   -
Sandhurst Memorial21/12/201927328:5447.23% +
Sandhurst Memorial21/12/201927328:5447.23%   -
Clevedon Salthouse Fields14/12/2019124925:1354.13% +
Clevedon Salthouse Fields14/12/2019124925:1354.13%   -
Neckarau07/12/20191073027:1150.21% +
Neckarau07/12/20191073027:1150.21%   -
Walsall Arboretum30/11/201940510625:3153.49% +
Walsall Arboretum30/11/201940510625:3153.49%   -
Seven Fields23/11/201925526:2851.57% +
Seven Fields23/11/201925526:2851.57%   -
Irchester Country16/11/201936225:1354.13% +
Irchester Country16/11/201936225:1354.13%   -
Salcey Forest09/11/201934324:5354.86% +
Salcey Forest09/11/201934324:5354.86%   -
Warwick Racecourse02/11/201956024:5554.78% +
Warwick Racecourse02/11/201956024:5554.78%   -
The Leas26/10/201952524:3755.45% +
The Leas26/10/201952524:3755.45%   -
King George V Playing Field19/10/201962826:0852.23% +
King George V Playing Field19/10/201962826:0852.23%   -
Squerryes Winery12/10/201953627:4549.19% +
Squerryes Winery12/10/201953627:4549.19%   -
Bushy Park05/10/201980945824:0456.72% +
Bushy Park05/10/201980945824:0456.72%   -
Neckarufer, Esslingen03/10/2019274425:1254.17% +
Neckarufer, Esslingen03/10/2019274425:1254.17%   -
Ifield Mill Pond28/09/201923824:3355.60% +
Ifield Mill Pond28/09/201923824:3355.60%   -
Stratford Park, Stroud21/09/201946527:5149.01% +
Stratford Park, Stroud21/09/201946527:5149.01%   -
Feltham14/09/201929424:5654.75% +
Feltham14/09/201929424:5654.75%   -
Hockley Woods07/09/20192358526:1651.97% +
Hockley Woods07/09/20192358526:1651.97%   -
The Old Showfield31/08/201936923:3058.09% +
The Old Showfield31/08/201936923:3058.09%   -
Watermeadows24/08/2019283124:5754.71% +
Watermeadows24/08/2019283124:5754.71%   -
Woolacombe Dunes17/08/20193610931:2043.56% +
Woolacombe Dunes17/08/20193610931:2043.56%   -
Cyclopark10/08/201943824:0156.84% +
Cyclopark10/08/201943824:0156.84%   -
Pontypool03/08/20192872323:5157.23% +
Pontypool03/08/20192872323:5157.23%   -
Dishley, Loughborough27/07/20195511424:3055.71% +
Dishley, Loughborough27/07/20195511424:3055.71%   -
Bethlem Royal Hospital20/07/201983223:2258.42% +
Bethlem Royal Hospital20/07/201983223:2258.42%   -
Tetbury Goods Shed13/07/201993024:2555.90% +
Tetbury Goods Shed13/07/201993024:2555.90%   -
Uckfield06/07/2019104324:1255.99% +
Uckfield06/07/2019104324:1255.99%   -
Springhill29/06/201954422:1860.76% +
Springhill29/06/201954422:1860.76%   -
Snowden Field22/06/201972624:1555.88% +
Snowden Field22/06/201972624:1555.88%   -
Kingston15/06/20194867823:3757.37% +
Kingston15/06/20194867823:3757.37%   -
California Country08/06/2019169028:4947.02% +
California Country08/06/2019169028:4947.02%   -
Littlehampton Prom01/06/201984324:2255.61% +
Littlehampton Prom01/06/201984324:2255.61%   -
Kingdom25/05/201952524:3954.97% +
Kingdom25/05/201952524:3954.97%   -
Hanworth18/05/201934024:2655.46% +
Hanworth18/05/201934024:2655.46%   -
Millennium Country11/05/201983923:0158.87% +
Millennium Country11/05/201983923:0158.87%   -
Lydney04/05/20191762123:1958.11% +
Lydney04/05/20191762123:1958.11%   -
Sunny Hill27/04/201952424:3954.97% +
Sunny Hill27/04/201952424:3954.97%   -
Seaford Beach20/04/201985622:2560.45% +
Seaford Beach20/04/201985622:2560.45%   -
Wotton13/04/20191242124:4554.75% +
Wotton13/04/20191242124:4554.75%   -
Mountbatten School06/04/201963424:1156.03% +
Mountbatten School06/04/201963424:1156.03%   -
Sizewell30/03/2019322023:3057.66% +
Sizewell30/03/2019322023:3057.66%   -
Dunstable Downs23/03/201944324:5854.27% +
Dunstable Downs23/03/201944324:5854.27%   -
Highwoods16/03/201932624:4954.60% +
Highwoods16/03/201932624:4954.60%   -
Somerdale Pavilion09/03/2019154631:1743.31% +
Somerdale Pavilion09/03/2019154631:1743.31%   -
Tewkesbury02/03/20191751422:5059.34% +
Tewkesbury02/03/20191751422:5059.34%   -
Shepton Mallet23/02/2019931421:5062.06% +
Shepton Mallet23/02/2019931421:5062.06%   -
Pomphrey Hill16/02/20192594123:0258.83% +
Pomphrey Hill16/02/20192594123:0258.83%   -
Cardiff09/02/201958311722:0261.50% +
Cardiff09/02/201958311722:0261.50%   -
Kingston02/02/20194684322:2960.27% +
Kingston02/02/20194684322:2960.27%   -
Henstridge Airfield26/01/201923821:4162.49% +
Henstridge Airfield26/01/201923821:4162.49%   -
Gloucester North19/01/20191661022:1460.94% +
Gloucester North19/01/20191661022:1460.94%   -
Lowestoft12/01/20191682621:1064.02% +
Lowestoft12/01/20191682621:1064.02%   -
Fire Service College05/01/201951922:1261.04% +
Fire Service College05/01/201951922:1261.04%   -
Eastville01/01/20195725325:1253.77% +
Eastville01/01/20195725325:1253.77%   -
Ashton Court01/01/20193889522:5958.96% +
Ashton Court01/01/20193889522:5958.96%   -
Severn Bridge29/12/2018183921:3262.93% +
Severn Bridge29/12/2018183921:3262.93%   -
Bushy Park25/12/201876719521:0264.42% +
Bushy Park25/12/201876719521:0264.42%   -
East Brighton22/12/201832123:5656.62% +
East Brighton22/12/201832123:5656.62%   -
Gloucester City15/12/2018381922:3560.00% +
Gloucester City15/12/2018381922:3560.00%   -
Bedworth08/12/2018411722:1460.94% +
Bedworth08/12/2018411722:1460.94%   -
Brooklands01/12/201834223:2257.99% +
Brooklands01/12/201834223:2257.99%   -
Jersey Farm24/11/201832723:1158.45% +
Jersey Farm24/11/201832723:1158.45%   -
Coldham’s Common17/11/201885923:0458.74% +
Coldham’s Common17/11/201885923:0458.74%   -
Walmer and Deal Seafront10/11/20189821:3862.63% +
Walmer and Deal Seafront10/11/20189821:3862.63%   -
Manor Field, Whittlesey03/11/201891324:2555.49% +
Manor Field, Whittlesey03/11/201891324:2555.49%   -
Southwark27/10/20182594721:2163.47% +
Southwark27/10/20182594721:2163.47%   -
Marlborough Common20/10/201832122:4859.43% +
Marlborough Common20/10/201832122:4859.43%   -
Wendover Woods13/10/201852623:5156.81% +
Wendover Woods13/10/201852623:5156.81%   -
Huddersfield06/10/20183796722:0261.50% +
Huddersfield06/10/20183796722:0261.50%   -
Rouen29/09/201865521:4162.49% +
Rouen29/09/201865521:4162.49%   -
Delaware and Raritan Canal22/09/20186221:0664.22% +
Delaware and Raritan Canal22/09/20186221:0664.22%   -
Chipping Sodbury15/09/20182253221:2063.52% +
Chipping Sodbury15/09/20182253221:2063.52%   -
Lancing Beach Green08/09/201831421:0864.12% +
Lancing Beach Green08/09/201831421:0864.12%   -
Swaffham01/09/2018151022:1960.72% +
Swaffham01/09/2018151022:1960.72%   -
Higginson, Marlow25/08/201822922:1760.81% +
Higginson, Marlow25/08/201822922:1760.81%   -
Cirencester18/08/2018282422:4059.78% +
Cirencester18/08/2018282422:4059.78%   -
Littleport11/08/201885125:1653.63% +
Littleport11/08/201885125:1653.63%   -
Felixstowe04/08/2018171221:0764.17% +
Felixstowe04/08/2018171221:0764.17%   -
Foots Cray Meadows28/07/201822323:1758.20% +
Foots Cray Meadows28/07/201822323:1758.20%   -
Dinton Pastures21/07/201821321:2363.37% +
Dinton Pastures21/07/201821321:2363.37%   -
Pocket14/07/201852321:3862.63% +
Pocket14/07/201852321:3862.63%   -
Great Dunmow07/07/201813420:2565.88% +
Great Dunmow07/07/201813420:2565.88%   -
Kingston30/06/20184368724:0455.89% +
Kingston30/06/20184368724:0455.89%   -
Boston23/06/2018140721:1863.15% +
Boston23/06/2018140721:1863.15%   -
Prospect16/06/201872322:4259.25% +
Prospect16/06/201872322:4259.25%   -
Yeovil Montacute09/06/20182157525:5152.03% +
Yeovil Montacute09/06/20182157525:5152.03%   -
Kingsway02/06/20181532021:2063.05% +
Kingsway02/06/20181532021:2063.05%   -
Dartford Heath26/05/201831722:0660.86% +
Dartford Heath26/05/201831722:0660.86%   -
Hazelwood19/05/2018102222:2160.18% +
Hazelwood19/05/2018102222:2160.18%   -
Catford12/05/201833322:3259.69% +
Catford12/05/201833322:3259.69%   -
Witney05/05/201862022:3459.60% +
Witney05/05/201862022:3459.60%   -
Mole Valley28/04/201872622:5658.65% +
Mole Valley28/04/201872622:5658.65%   -
Victoria Dock21/04/201863020:0467.03% +
Victoria Dock21/04/201863020:0467.03%   -
South Woodham Ferrers14/04/20185821:1463.34% +
South Woodham Ferrers14/04/20185821:1463.34%   -
Clapham Common07/04/201834220:2266.04% +
Clapham Common07/04/201834220:2266.04%   -
Hogmoor Inclosure31/03/201842625:2652.88% +
Hogmoor Inclosure31/03/201842625:2652.88%   -
Haverhill24/03/201831323:3257.15% +
Haverhill24/03/201831323:3257.15%   -
Kingston17/03/20184211320:0766.86% +
Kingston17/03/20184211320:0766.86%   -
Sixfields Upton10/03/20182819:5867.36% +
Sixfields Upton10/03/20182819:5867.36%   -
Kingston03/03/20184191722:3359.65% +
Kingston03/03/20184191722:3359.65%   -
Great Denham24/02/20182619:2769.15% +
Great Denham24/02/20182619:2769.15%   -
Bath Skyline17/02/20181772021:0863.64% +
Bath Skyline17/02/20181772021:0863.64%   -
Coventry10/02/20184032920:5164.51% +
Coventry10/02/20184032920:5164.51%   -
Letchworth03/02/201821423:1357.93% +
Letchworth03/02/201821423:1357.93%   -
King’s Lynn27/01/20183371520:0766.86% +
King’s Lynn27/01/20183371520:0766.86%   -
Melksham20/01/201861724:3154.86% +
Melksham20/01/201861724:3154.86%   -
Melton Mowbray13/01/20181622222:3859.43% +
Melton Mowbray13/01/20181622222:3859.43%   -
Stratford-upon-Avon06/01/2018972521:1463.34% +
Stratford-upon-Avon06/01/2018972521:1463.34%   -
Kingston01/01/201841012324:3454.75% +
Kingston01/01/201841012324:3454.75%   -
Bushy Park01/01/201871520323:0158.44% +
Bushy Park01/01/201871520323:0158.44%   -
Houghton Hall30/12/201721321:4861.70% +
Houghton Hall30/12/201721321:4861.70%   -
Bushy Park25/12/201771327322:3159.73% +
Bushy Park25/12/201771327322:3159.73%   -
Rutland Water23/12/20171073022:4459.16% +
Rutland Water23/12/20171073022:4459.16%   -
St Albans16/12/20173136223:0458.31% +
St Albans16/12/20173136223:0458.31%   -
Evesham09/12/20171391121:3962.12% +
Evesham09/12/20171391121:3962.12%   -
Rugby02/12/2017511822:2659.96% +
Rugby02/12/2017511822:2659.96%   -
Southwick Country Park25/11/20173282921:4761.74% +
Southwick Country Park25/11/20173282921:4761.74%   -
Market Harborough18/11/20171363121:1763.19% +
Market Harborough18/11/20171363121:1763.19%   -
Corby11/11/2017213823:0958.10% +
Corby11/11/2017213823:0958.10%   -
Brueton04/11/20173825021:3362.41% +
Brueton04/11/20173825021:3362.41%   -
Crissy Field28/10/20171441220:4065.08% +
Crissy Field28/10/20171441220:4065.08%   -
Clare Castle21/10/201742723:0458.31% +
Clare Castle21/10/201742723:0458.31%   -
Castle Park14/10/201734122:3459.60% +
Castle Park14/10/201734122:3459.60%   -
Upton House07/10/2017182722:3459.60% +
Upton House07/10/2017182722:3459.60%   -
Kettering30/09/2017522622:5058.91% +
Kettering30/09/2017522622:5058.91%   -
Sherwood Pines23/09/2017991821:3362.41% +
Sherwood Pines23/09/2017991821:3362.41%   -
East Grinstead16/09/201721423:1058.06% +
East Grinstead16/09/201721423:1058.06%   -
Thetford09/09/20172461721:4561.84% +
Thetford09/09/20172461721:4561.84%   -
Burnham-on-Crouch02/09/20177822:0161.09% +
Burnham-on-Crouch02/09/20177822:0161.09%   -
Kesgrave26/08/20171574021:1863.15% +
Kesgrave26/08/20171574021:1863.15%   -
Westmill19/08/201751022:5558.69% +
Westmill19/08/201751022:5558.69%   -
South Norwood12/08/201761221:1163.49% +
South Norwood12/08/201761221:1163.49%   -
Heartwood Forest05/08/201722721:4162.03% +
Heartwood Forest05/08/201722721:4162.03%   -
Hoblingwell29/07/201732423:5256.35% +
Hoblingwell29/07/201732423:5256.35%   -
Stonehouse22/07/2017521320:0966.75% +
Stonehouse22/07/2017521320:0966.75%   -
Blandford15/07/2017156920:1166.64% +
Blandford15/07/2017156920:1166.64%   -
Henley-on-Thames08/07/201721122:2559.55% +
Henley-on-Thames08/07/201721122:2559.55%   -
Billericay01/07/201721321:2062.58% +
Billericay01/07/201721321:2062.58%   -
Margate24/06/2017222321:1562.82% +
Margate24/06/2017222321:1562.82%   -
March17/06/201772521:1163.02% +
March17/06/201772521:1163.02%   -
Huntingdon10/06/20172152121:1063.07% +
Huntingdon10/06/20172152121:1063.07%   -
Peacehaven03/06/20173721:0763.22% +
Peacehaven03/06/20173721:0763.22%   -
Daventry27/05/20171381521:1063.07% +
Daventry27/05/20171381521:1063.07%   -
Banbury20/05/20171352321:1662.77% +
Banbury20/05/20171352321:1662.77%   -
Great Cornard13/05/20171702020:3364.96% +
Great Cornard13/05/20171702020:3364.96%   -
Harwich06/05/2017971021:2262.48% +
Harwich06/05/2017971021:2262.48%   -
Clacton Seafront29/04/201729920:3564.86% +
Clacton Seafront29/04/201729920:3564.86%   -
Mersea Island22/04/2017191220:5963.62% +
Mersea Island22/04/2017191220:5963.62%   -
Southsea15/04/20171863420:3165.07% +
Southsea15/04/20171863420:3165.07%   -
Whiteley08/04/201721520:5663.77% +
Whiteley08/04/201721520:5663.77%   -
Braunstone01/04/20173372720:4164.54% +
Braunstone01/04/20173372720:4164.54%   -
Hastings25/03/20171021920:5763.72% +
Hastings25/03/20171021920:5763.72%   -
Bexley18/03/20172683222:3858.98% +
Bexley18/03/20172683222:3858.98%   -
Rickmansworth11/03/201722721:3961.66% +
Rickmansworth11/03/201722721:3961.66%   -
Homewood04/03/2017212425:1053.05% +
Homewood04/03/2017212425:1053.05%   -
Linford Wood25/02/2017352221:4561.38% +
Linford Wood25/02/2017352221:4561.38%   -
Canons Park18/02/2017201021:1962.63% +
Canons Park18/02/2017201021:1962.63%   -
Kingston11/02/20173633723:0557.83% +
Kingston11/02/20173633723:0557.83%   -
Basingstoke04/02/20174665021:4661.33% +
Basingstoke04/02/20174665021:4661.33%   -
Brockwell28/01/20173104821:1163.02% +
Brockwell28/01/20173104821:1163.02%   -
Roding Valley21/01/201721321:2662.29% +
Roding Valley21/01/201721321:2662.29%   -
Homewood14/01/2017143927:3448.43% +
Homewood14/01/2017143927:3448.43%   -
Whitstable07/01/20173304423:4156.37% +
Whitstable07/01/20173304423:4156.37%   -
Kingston01/01/201735711024:0955.28% +
Kingston01/01/201735711024:0955.28%   -
Bushy Park01/01/201766112321:3861.71% +
Bushy Park01/01/201766112321:3861.71%   -
Ellenbrook Fields31/12/2016331522:0560.45% +
Ellenbrook Fields31/12/2016331522:0560.45%   -
Bushy Park25/12/201665953726:1150.99% +
Bushy Park25/12/201665953726:1150.99%   -
Netley Abbey24/12/20162574022:1060.23% +
Netley Abbey24/12/20162574022:1060.23%   -
Beckenham Place17/12/201651220:2865.23% +
Beckenham Place17/12/201651220:2865.23%   -
Hadleigh10/12/201682624:2754.60% +
Hadleigh10/12/201682624:2754.60%   -
Hilly Fields03/12/20162263021:5960.73% +
Hilly Fields03/12/20162263021:5960.73%   -
Harcourt Hill26/11/20161111721:1362.92% +
Harcourt Hill26/11/20161111721:1362.92%   -
Nonsuch19/11/20162725621:3461.90% +
Nonsuch19/11/20162725621:3461.90%   -
Guildford12/11/20162313421:4361.47% +
Guildford12/11/20162313421:4361.47%   -
Southampton05/11/20162288520:3564.86% +
Southampton05/11/20162288520:3564.86%   -
Homewood29/10/201631722:2159.73% +
Homewood29/10/201631722:2159.73%   -
Canons Park22/10/20163720:5064.08% +
Canons Park22/10/20163720:5064.08%   -
Bradford15/10/20163323621:5560.91% +
Lister Park, Bradford15/10/20163323621:5560.91%   -
Hatfield Forest08/10/2016811820:3664.81% +
Hatfield Forest08/10/2016811820:3664.81%   -
Weymouth01/10/20161621420:4564.34% +
Weymouth01/10/20161621420:4564.34%   -
South Oxhey24/09/201688621:3361.95% +
South Oxhey24/09/201688621:3361.95%   -
Rushmere17/09/2016461422:3958.94% +
Rushmere17/09/2016461422:3958.94%   -
Bedgebury Pinetum10/09/2016251022:3059.33% +
Bedgebury Pinetum10/09/2016251022:3059.33%   -
Marecchia03/09/201614119:5067.31% +
Marecchia03/09/201614119:5067.31%   -
Eastleigh27/08/20163221320:4164.54% +
Eastleigh27/08/20163221320:4164.54%   -
Roundshaw Downs20/08/20163822223:4956.05% +
Roundshaw Downs20/08/20163822223:4956.05%   -
Penrose13/08/2016721619:4067.88% +
Penrose13/08/2016721619:4067.88%   -
Bicester06/08/201617420:1366.03% +
Bicester06/08/201617420:1366.03%   -
Bevendean Down30/07/201626923:2557.01% +
Bevendean Down30/07/201626923:2557.01%   -
Chippenham23/07/20161162120:0866.31% +
Chippenham23/07/20161162120:0866.31%   -
Lymington Woodside16/07/20162721:5960.73% +
Lymington Woodside16/07/20162721:5960.73%   -
Stevenage09/07/20167719:3267.92% +
Stevenage09/07/20167719:3267.92%   -
Havant02/07/20162132822:2659.14% +
Havant02/07/20162132822:2659.14%   -
Moors Valley25/06/201633919:4067.46% +
Moors Valley25/06/201633919:4067.46%   -
Worthing18/06/20162918:4470.82% +
Worthing18/06/20162918:4470.82%   -
Jersey11/06/201637619:4167.40% +
Jersey11/06/201637619:4167.40%   -
Les Dougnes04/06/201653219:4267.34% +
Les Dougnes04/06/201653219:4267.34%   -
Wycombe Rye28/05/20161963521:1462.48% +
Wycombe Rye28/05/20161963521:1462.48%   -
Ellenbrook Fields21/05/201612919:5866.44% +
Ellenbrook Fields21/05/201612919:5866.44%   -
Alice Holt14/05/20161742822:0160.26% +
Alice Holt14/05/20161742822:0160.26%   -
Portsmouth Lakeside07/05/20162919:1269.10% +
Portsmouth Lakeside07/05/20162919:1269.10%   -
Salisbury30/04/2016491119:3467.80% +
Salisbury30/04/2016491119:3467.80%   -
Harrow23/04/2016511921:4261.14% +
Harrow23/04/2016511921:4261.14%   -
Fareham16/04/20162619:2168.56% +
Fareham16/04/20162619:2168.56%   -
Bedgebury Pinetum09/04/20164921:2461.99% +
Bedgebury Pinetum09/04/20164921:2461.99%   -
Tooting Common02/04/2016101819:1468.98% +
Tooting Common02/04/2016101819:1468.98% PB   -
Crystal Palace26/03/20162803121:5660.49% +
Crystal Palace26/03/20162803121:5660.49%   -
Great Lines19/03/2016127819:5166.83% +
Great Lines19/03/2016127819:5166.83%   -
Woodley12/03/20161831019:3967.51% +
Woodley12/03/20161831019:3967.51%   -
Sittingbourne05/03/20162820:5663.38% +
Sittingbourne05/03/20162820:5663.38%   -
Crane Park27/02/20161991819:3367.86% +
Crane Park27/02/20161991819:3367.86%   -
Bevendean Down20/02/201631023:2156.82% +
Bevendean Down20/02/201631023:2156.82%   -
Kingston13/02/20163102624:1154.86% +
Kingston13/02/20163102624:1154.86%   -
Tooting Common06/02/201622319:2168.56% +
Tooting Common06/02/201622319:2168.56%   -
Ashford30/01/2016117819:0569.52% +
Ashford30/01/2016117819:0569.52%   -
Hockley Woods23/01/201650621:0962.73% +
Hockley Woods23/01/201650621:0962.73%   -
Bushy Park16/01/20166094519:4867.00% +
Bushy Park16/01/20166094519:4867.00%   -
Kingston09/01/20163051721:2761.85% +
Kingston09/01/20163051721:2761.85%   -
Tilgate02/01/20161892721:4161.18% +
Tilgate02/01/20161892721:4161.18%   -
Kingston01/01/20163033821:0862.78% +
Kingston01/01/20163033821:0862.78%   -
Bushy Park01/01/20166068221:0363.02% +
Bushy Park01/01/20166068221:0363.02%   -
Luton Wardown26/12/2015351019:3667.69% +
Luton Wardown26/12/2015351019:3667.69%   -
Bushy Park25/12/201560410220:1365.62% +
Bushy Park25/12/201560410220:1365.62%   -
Lee-on-the-Solent19/12/201525719:4067.46% +
Lee-on-the-Solent19/12/201525719:4067.46%   -
Dulwich12/12/20151931318:5470.19% +
Dulwich12/12/20151931318:5470.19%   -
Hackney Marshes05/12/20152821020:4463.99% +
Hackney Marshes05/12/20152821020:4463.99%   -
Thurrock28/11/20158620:4164.14% +
Thurrock28/11/20158620:4164.14%   -
Canterbury21/11/201587621:5660.49% +
Canterbury21/11/201587621:5660.49%   -
Gladstone14/11/2015180920:1965.30% +
Gladstone14/11/2015180920:1965.30%   -
Hove Promenade07/11/201516719:2368.44% +
Hove Promenade07/11/201516719:2368.44% PB   -
Kingston31/10/20152944522:5957.72% +
Kingston31/10/20152944522:5957.72%   -
Shorne Woods24/10/20151371622:1859.49% +
Shorne Woods24/10/20151371622:1859.49%   -
Malling10/10/2015214547:2527.98% +
Malling10/10/2015214547:2527.98%   -
Bedfont Lakes03/10/2015327419:4167.40% +
Bedfont Lakes03/10/2015327419:4167.40%   -
Gunnersbury26/09/20152011719:1668.86% +
Gunnersbury26/09/20152011719:1668.86%   -
Crane Park19/09/2015174719:5666.56% +
Crane Park19/09/2015174719:5666.56%   -
Nonsuch12/09/20152104520:4663.88% +
Nonsuch12/09/20152104520:4663.88%   -
Hastings05/09/2015211120:4164.14% +
Hastings05/09/2015211120:4164.14%   -
Bushy Park29/08/20155876920:0965.84% +
Bushy Park29/08/20155876920:0965.84%   -
Hove Promenade22/08/201561319:4067.46% +
Hove Promenade22/08/201561319:4067.46%   -
Brockwell15/08/201523915225:5551.19% +
Brockwell15/08/201523915225:5551.19%   -
Orpington08/08/20151521221:2561.95% +
Orpington08/08/20151521221:2561.95%   -
Harlow01/08/2015401523:0057.68% +
Harlow01/08/2015401523:0057.68%   -
Kingston25/07/2015280619:2768.21% +
Kingston25/07/2015280619:2768.21%   -
Great Notley18/07/201556620:1665.46% +
Great Notley18/07/201556620:1665.46%   -
Bexley11/07/20151781521:2461.99% +
Bexley11/07/20151781521:2461.99%   -
Aldenham04/07/201531421:3760.99% +
Aldenham04/07/201531421:3760.99%   -
Bushy Park27/06/201557813221:1661.99% +
Bushy Park27/06/201557813221:1661.99%   -
Barclay20/06/20153623:1356.78% +
Barclay20/06/20153623:1356.78%   -
Didcot13/06/2015121121:2861.41% +
Didcot13/06/2015121121:2861.41%   -
Uditore06/06/20153320:2864.41% +
Uditore06/06/20153320:2864.41%   -
Gadebridge30/05/201551422:2258.94% +
Gadebridge30/05/201551422:2258.94%   -
Folkestone23/05/2015402521:4860.47% +
Folkestone23/05/2015402521:4860.47%   -
Harrow16/05/20152520:2364.68% +
Harrow16/05/20152520:2364.68%   -
Raphael09/05/20152319:3567.32% +
Raphael09/05/20152319:3567.32%   -
Banstead Woods02/05/20154158324:0854.63% +
Banstead Woods02/05/20154158324:0854.63%   -
Beckton25/04/2015152319:3067.61% +
Beckton25/04/2015152319:3067.61%   -
Lullingstone18/04/20152721:2161.75% +
Lullingstone18/04/20152721:2161.75%   -
Bracknell11/04/20152820:0465.70% +
Bracknell11/04/20152820:0465.70%   -
Kingston04/04/2015264318:5569.69% +
Kingston04/04/2015264318:5569.69%   -
Frimley Lodge28/03/20152712619:1068.78% +
Frimley Lodge28/03/20152712619:1068.78%   -
Maidenhead21/03/20151718:4970.06% +
Maidenhead21/03/20151718:4970.06%   -
Chichester14/03/201534319:0569.08% +
Chichester14/03/201534319:0569.08%   -
Cassiobury07/03/201521120:1465.16% +
Cassiobury07/03/201521120:1465.16%   -
Wimpole Estate28/02/20151092122:1459.30% +
Wimpole Estate28/02/20151092122:1459.30%   -
Hilly Fields21/02/20151331921:5860.02% +
Hilly Fields21/02/20151331921:5860.02%   -
Bushy Park14/02/20155592018:4070.63% +
Bushy Park14/02/20155592018:4070.63%   -
South Oxhey07/02/20152119:1368.60% +
South Oxhey07/02/20152119:1368.60%   -
Guildford24/01/2015144418:5669.63% +
Guildford24/01/2015144418:5669.63%   -
Cranleigh17/01/201517620:4963.33% +
Cranleigh17/01/201517620:4963.33% PB   -
Bedfont Lakes10/01/20152895025:4351.26% +
Bedfont Lakes10/01/20152895025:4351.26%   -
Panshanger03/01/201515720:1465.16% +
Panshanger03/01/201515720:1465.16%   -
Kingston01/01/20152504321:2961.37% +
Bushy Park01/01/20155521719:0768.96%   -
Bushy Park01/01/20155521719:0768.96% +
Kingston01/01/20152504321:2961.37%   -
Buckingham27/12/201434218:3770.81% +
Buckingham27/12/201434218:3770.81%   -
Bushy Park25/12/20145503218:2171.84% +
Bushy Park25/12/20145503218:2171.84%   -
Kingston20/12/2014248618:5969.45% +
Kingston20/12/2014248618:5969.45%   -
Brentwood13/12/20142722:2858.68% +
Brentwood13/12/20142722:2858.68%   -
Crane Park06/12/2014131919:4067.03% +
Crane Park06/12/2014131919:4067.03%   -
Tilgate29/11/20141292021:0162.73% +
Tilgate29/11/20141292021:0162.73%   -
Richmond Park22/11/20143714621:3760.99% +
Richmond Park22/11/20143714621:3760.99%   -
Colwick15/11/2014178819:4666.69% +
Colwick15/11/2014178819:4666.69%   -
Tring08/11/201421823:3855.78% +
Tring08/11/201421823:3855.78%   -
Cranleigh01/11/201452026:1650.19% +
Cranleigh01/11/201452026:1650.19%   -
Kingston18/10/2014239318:3770.81% +
Kingston18/10/2014239318:3770.81%   -
Northala Fields11/10/201417318:1971.97% +
Northala Fields11/10/201417318:1971.97%   -
Bushy Park04/10/20145384418:1572.24% +
Bushy Park04/10/20145384418:1572.24%   -
Heaton Park27/09/2014246318:0872.70% +
Heaton Park27/09/2014246318:0872.70%   -
Bedfont Lakes20/09/2014273118:2171.84% +
Bedfont Lakes20/09/2014273118:2171.84%   -
Horsham13/09/20142518:1672.17% +
Horsham13/09/20142518:1672.17%   -
Arrow Valley06/09/2014112318:0572.90% +
Arrow Valley06/09/2014112318:0572.90%   -
Nonsuch30/08/2014155517:5673.51% +
Nonsuch30/08/2014155517:5673.51%   -
Riddlesdown23/08/2014172218:0073.24% +
Riddlesdown23/08/2014172218:0073.24%   -
Woking16/08/20141818:1971.97% +
Woking16/08/20141818:1971.97%   -
Bognor Regis09/08/201411218:1272.44% +
Bognor Regis09/08/201411218:1272.44%   -
Dartford02/08/20142117:5973.31% +
Dartford02/08/20142117:5973.31%   -
Springburn26/07/201412318:0572.90% +
Springburn26/07/201412318:0572.90%   -
Fountains Abbey19/07/201420118:0373.04% +
Fountains Abbey19/07/201420118:0373.04%   -
Peckham Rye12/07/20144117:4973.99% +
Peckham Rye12/07/20144117:4973.99%   -
Northala Fields05/07/20143218:0672.47% +
Northala Fields05/07/20143218:0672.47%   -
Newbury28/06/2014130418:4270.14% +
Newbury28/06/2014130418:4270.14%   -
Fulham Palace21/06/201436618:0372.67% +
Fulham Palace21/06/201436618:0372.67%   -
Bushy Park07/06/20145211418:2371.35% +
Bushy Park07/06/20145211418:2371.35%   -
Cannon Hill31/05/20141951318:2671.16% +
Cannon Hill31/05/20141951318:2671.16%   -
Southwark24/05/201439418:2271.42% +
Southwark24/05/201439418:2271.42%   -
Upton Court17/05/201475318:2671.16% +
Upton Court17/05/201475318:2671.16%   -
Rushmoor03/05/20141918:2970.96% +
Rushmoor03/05/20141918:2970.96%   -
Royal Tunbridge Wells26/04/20141919:2367.67% +
Royal Tunbridge Wells26/04/20141919:2367.67%   -
Abingdon19/04/2014141518:0372.67% +
Abingdon19/04/2014141518:0372.67%   -
Burgess12/04/201481317:3074.95% +
Burgess12/04/201481317:3074.95%   -
Basildon05/04/20141518:1372.00% +
Basildon05/04/20141518:1372.00%   -
Osterley29/03/201431118:0072.87% +
Osterley29/03/201431118:0072.87%   -
Reigate Priory22/03/20141619:0668.67% +
Reigate Priory22/03/20141619:0668.67%   -
Kingston15/03/2014208117:2475.38% +
Kingston15/03/2014208117:2475.38%   -
Pegwell Bay08/03/201441217:4074.25% +
Pegwell Bay08/03/201441217:4074.25%   -
Leamington01/03/2014151218:5269.52% +
Leamington01/03/2014151218:5269.52%   -
Barking22/02/201484317:5773.07% +
Barking22/02/201484317:5773.07%   -
Bushy Park15/02/2014505818:0272.74% +
Bushy Park15/02/2014505818:0272.74%   -
Brandon Country Park08/02/201448118:3070.90% +
Brandon Country Park08/02/201448118:3070.90%   -
Pontypridd01/02/201417217:5473.28% +
Pontypridd01/02/201417217:5473.28%   -
Grovelands25/01/2014177218:0172.80% +
Grovelands25/01/2014177218:0172.80%   -
Finsbury Park18/01/2014214218:2271.42% +
Finsbury Park18/01/2014214218:2271.42%   -
Fulham Palace11/01/201413318:0172.80% +
Fulham Palace11/01/201413318:0172.80%   -
Dulwich04/01/201492318:0372.67% +
Dulwich04/01/201492318:0372.67%   -
Kingston01/01/2014197719:0568.73% +
Kingston01/01/2014197719:0568.73%   -
Bushy Park01/01/2014498918:4569.96% +
Bushy Park01/01/2014498918:4569.96%   -
Lydiard28/12/2013186818:2571.22% +
Lydiard28/12/2013186818:2571.22%   -
Bushy Park25/12/20134961518:1571.87% +
Bushy Park25/12/20134961518:1571.87%   -
Basingstoke21/12/2013295518:2071.55% +
Basingstoke21/12/2013295518:2071.55%   -
Crane Park14/12/201378117:5273.41% +
Crane Park14/12/201378117:5273.41%   -
Harrogate07/12/2013100318:1172.14% +
Harrogate07/12/2013100318:1172.14%   -
Maldon Prom30/11/201314118:0472.60% +
Maldon Prom30/11/201314118:0472.60%   -
Ashford23/11/20135217:5773.07% +
Ashford23/11/20135217:5773.07%   -
Wimbledon Common16/11/2013358618:1671.81% +
Wimbledon Common16/11/2013358618:1671.81%   -
Tonbridge09/11/20131418:4070.27% +
Tonbridge09/11/20131418:4070.27%   -
Aylesbury02/11/20131117:5173.48% +
Aylesbury02/11/20131117:5173.48%   -
Wormwood Scrubs26/10/2013124118:2471.29% +
Wormwood Scrubs26/10/2013124118:2471.29%   -
Fulham Palace19/10/20131417:4773.76% +
Fulham Palace19/10/20131417:4773.76%   -
Southsea12/10/20132317:5573.21% +
Southsea12/10/20132317:5573.21%   -
Bushy Park05/10/20134841417:5173.48% +
Bushy Park05/10/20134841417:5173.48%   -
Great Lines28/09/20131518:2571.22% +
Great Lines28/09/20131518:2571.22%   -
Bedfont Lakes21/09/2013224317:5873.01% +
Bedfont Lakes21/09/2013224317:5873.01%   -
Margate14/09/201321118:1671.81% +
Margate14/09/201321118:1671.81%   -
Southwark07/09/20131517:2775.17% +
Southwark07/09/20131517:2775.17%   -
Osterley31/08/20131617:5773.07% +
Osterley31/08/20131617:5773.07%   -
Bournemouth24/08/20131417:4374.04% +
Bournemouth24/08/20131417:4374.04%   -
Chelmsford Central17/08/201330417:2875.10% +
Chelmsford Central17/08/201330417:2875.10%   -
Newport10/08/2013124117:2975.02% +
Newport10/08/2013124117:2975.02%   -
Ferry Meadows03/08/20131517:2775.17% +
Ferry Meadows03/08/20131517:2775.17%   -
Mile End27/07/201378417:3374.74% +
Mile End27/07/201378417:3374.74%   -
Clair20/07/20131318:3670.52% +
Clair20/07/20131318:3670.52%   -
Wimbledon Common13/07/2013340617:5673.14% +
Wimbledon Common13/07/2013340617:5673.14%   -
Whitstable06/07/2013140318:1271.70% +
Whitstable06/07/2013140318:1271.70%   -
Bury St Edmunds29/06/20131318:1771.38% +
Bury St Edmunds29/06/20131318:1771.38%   -
Colchester Castle22/06/201312418:0472.23% +
Colchester Castle22/06/201312418:0472.23%   -
Shorne Woods15/06/201312118:1471.57% +
Shorne Woods15/06/201312118:1471.57%   -
Maidstone08/06/20139318:0072.50% +
Maidstone River Park08/06/20139318:0072.50%   -
Conkers01/06/2013113217:4673.45% +
Conkers01/06/2013113217:4673.45%   -
Brockenhurst25/05/20131318:2370.99% +
Brockenhurst25/05/20131318:2370.99%   -
Queen Elizabeth18/05/20131219:0868.21% +
Queen Elizabeth18/05/20131219:0868.21%   -
Cannon Hill11/05/20131401118:0472.23% +
Cannon Hill11/05/20131401118:0472.23%   -
Preston Park04/05/20133217:4073.87% +
Preston Park04/05/20133217:4073.87%   -
Winchester27/04/20131518:2870.67% +
Winchester27/04/20131518:2870.67%   -
Medina I.O.W.30/03/201397117:2075.29% +
Medina I.O.W.30/03/201397117:2075.29%   -
Pymmes23/03/2013101117:0676.32% +
Pymmes23/03/2013101117:0676.32% PB   -
Mulbarton16/03/20131219:5565.52% +
Mulbarton16/03/20131219:5565.52%   -
Oak Hill09/03/201379117:1375.80% +
Oak Hill09/03/201379117:1375.80% PB   -
Lloyd02/03/2013126118:0172.43% +
Lloyd02/03/2013126118:0172.43% PB   -
Gunnersbury23/02/201369116:5177.45% +
Gunnersbury23/02/201369116:5177.45% PB   -
Cheltenham16/02/20131217:2475.00% +
Cheltenham16/02/20131217:2475.00%   -
Bushy Park09/02/2013450417:0076.76% +
Bushy Park09/02/2013450417:0076.76%   -
Chelmsford Central02/02/20133217:2475.00% +
Chelmsford Central02/02/20133217:2475.00%   -
Walthamstow26/01/20131117:4873.31% +
Walthamstow26/01/20131117:4873.31%   -
Malahide19/01/201311116:5477.22% +
Malahide19/01/201311116:5477.22%   -
Harrow Lodge12/01/20131118:4869.41% +
Harrow Lodge12/01/20131118:4869.41%   -
Kingston05/01/2013145116:5177.45% +
Kingston05/01/2013145116:5177.45% PB   -
Kingston01/01/2013144317:2175.22% +
Kingston01/01/2013144317:2175.22%   -
Bushy Park01/01/2013444617:1975.36% +
Bushy Park01/01/2013444617:1975.36%   -
Eastbourne29/12/201250217:2475.00% +
Eastbourne29/12/201250217:2475.00%   -
Bushy Park25/12/2012442717:3074.57% +
Bushy Park25/12/2012442717:3074.57%   -
Milton Country22/12/2012149317:4373.66% +
Milton Country22/12/2012149317:4373.66%   -
Newbury15/12/201246117:2075.29% +
Newbury15/12/201246117:2075.29%   -
Southend08/12/20129116:2879.25% +
Southend08/12/20129116:2879.25%   -
Graves01/12/201233118:1871.31% +
Graves01/12/201233118:1871.31%   -
Upton Court24/11/20121217:2475.00% +
Upton Court24/11/20121217:2475.00%   -
Alice Holt17/11/20121117:5972.57% +
Alice Holt17/11/20121117:5972.57%   -
Ipswich10/11/20129117:3474.29% +
Ipswich10/11/20129117:3474.29%   -
Little Stoke03/11/20121117:0376.54% +
Little Stoke03/11/20121117:0376.54%   -
Pollok27/10/2012195117:0076.76% +
Pollok27/10/2012195117:0076.76%   -
Bryn Bach20/10/201214116:5077.52% +
Bryn Bach20/10/201214116:5077.52%   -
Woodley13/10/20121117:0276.61% +
Woodley13/10/20121117:0276.61%   -
Bushy Park06/10/2012430616:5577.14% +
Bushy Park06/10/2012430616:5577.14%   -
Mansfield29/09/20121117:0976.09% +
Mansfield29/09/20121117:0976.09%   -
Burgess22/09/20121216:4577.91% +
Burgess22/09/20121216:4577.91%   -
Orpington15/09/20121217:2774.79% +
Orpington15/09/20121217:2774.79%   -
Hilly Fields08/09/20121117:5073.18% +
Hilly Fields08/09/20121117:5073.18%   -
Oxford01/09/201244117:1875.43% +
Oxford01/09/201244117:1875.43%   -
Poole25/08/201274416:5776.99% +
Poole25/08/201274416:5776.99%   -
Fritton Lake18/08/201215118:2670.80% +
Fritton Lake18/08/201215118:2670.80%   -
Netley Abbey11/08/201222117:2175.22% +
Netley Abbey11/08/201222117:2175.22%   -
Wycombe Rye04/08/20121217:1775.51% +
Wycombe Rye04/08/20121217:1775.51%   -
Barking28/07/20121216:4577.91% +
Barking28/07/20121216:4577.91%   -
Bushy Park21/07/2012420516:4677.83% +
Bushy Park21/07/2012420516:4677.83%   -
Bedford14/07/201260116:5577.14% +
Bedford14/07/201260116:5577.14%   -
Southampton07/07/20121316:4477.69% +
Southampton07/07/20121316:4477.69%   -
Gladstone30/06/20121117:0975.80% +
Gladstone30/06/20121117:0975.80%   -
Tilgate23/06/20123117:1075.73% +
Tilgate23/06/20123117:1075.73%   -
Havant16/06/20121117:4673.17% +
Havant16/06/20121117:4673.17%   -
Crane Park09/06/20121116:4877.38% +
Crane Park09/06/20121116:4877.38%   -
Nonsuch05/06/201240216:5277.08% +
Nonsuch05/06/201240216:5277.08% PB   -
Riddlesdown04/06/201252217:0176.40% +
Riddlesdown04/06/201252217:0176.40% PB   -
Beckton02/06/20121317:2474.71% +
Beckton02/06/20121317:2474.71%   -
Marple26/05/20121117:1575.36% +
Marple26/05/20121117:1575.36%   -
Andover19/05/201245117:3374.07% +
Andover19/05/201245117:3374.07%   -
Gunpowder12/05/201229217:3474.00% +
Gunpowder12/05/201229217:3474.00%   -
Frimley Lodge07/05/2012118417:3374.07% +
Frimley Lodge07/05/2012118417:3374.07%   -
Northampton05/05/20121116:5676.77% +
Northampton05/05/20121116:5676.77%   -
Greenwich28/04/2012111218:0771.76% +
Greenwich28/04/2012111218:0771.76%   -
Bexley21/04/201212117:4873.03% +
Bexley21/04/201212117:4873.03%   -
Dulwich14/04/20121417:1175.65% +
Dulwich14/04/20121417:1175.65%   -
Grovelands07/04/201284317:2174.93% +
Grovelands07/04/201284317:2174.93%   -
Hackney Marshes31/03/201294216:4677.53% +
Hackney Marshes31/03/201294216:4677.53%   -
Crystal Palace24/03/201286117:2474.71% +
Crystal Palace24/03/201286117:2474.71%   -
Guildford17/03/20122117:1775.22% +
Guildford17/03/20122117:1775.22%   -
Wanstead Flats03/03/201242317:1375.51% +
Wanstead Flats03/03/201242317:1375.51%   -
Hampstead Heath25/02/201241117:4573.24% +
Hampstead Heath25/02/201241117:4573.24%   -
Mile End18/02/20123116:5377.00% +
Mile End18/02/20123116:5377.00%   -
Bushy Park11/02/2012397216:4977.30% +
Bushy Park11/02/2012397216:4977.30%   -
Bushy Park04/02/2012396216:4477.69% +
Bushy Park04/02/2012396216:4477.69%   -
Valentines28/01/201250116:4977.30% +
Valentines28/01/201250116:4977.30%   -
York21/01/20122217:1275.58% +
York21/01/20122217:1275.58%   -
St Albans14/01/20121116:3778.23% +
St Albans14/01/20121116:3778.23%   -
Brockwell07/01/201254116:5676.77% +
Brockwell07/01/201254116:5676.77%   -
Riddlesdown01/01/201229418:1871.04% +
Riddlesdown01/01/201229418:1871.04%   -
Nonsuch01/01/201217117:3573.93% +
Nonsuch01/01/201217117:3573.93%   -
Bushy Park01/01/2012391317:2674.57% +
Bushy Park01/01/2012391317:2674.57%   -
Roundshaw Downs31/12/2011131318:1471.30% +
Roundshaw Downs31/12/2011131318:1471.30%   -
Black Park26/12/2011130317:2574.64% +
Black Park26/12/2011130317:2574.64% PB   -
Bushy Park25/12/20113891017:1075.73% +
Bushy Park25/12/20113891017:1075.73%   -
Nonsuch24/12/201115117:1075.73% +
Nonsuch24/12/201115117:1075.73% PB   -
Bromley17/12/2011119317:1875.14% +
Bromley17/12/2011119317:1875.14%   -
Bushy Park10/12/20113862017:2075.00% +
Bushy Park10/12/20113862017:2075.00%   -
Ally Pally03/12/20111118:0971.63% +
Ally Pally03/12/20111118:0971.63%   -
Wormwood Scrubs26/11/201124218:0072.22% +
Wormwood Scrubs26/11/201124218:0072.22%   -
Highbury Fields19/11/20112117:2574.64% +
Highbury Fields19/11/20112117:2574.64%   -
Milton Keynes12/11/201196317:2674.57% +
Milton Keynes12/11/201196317:2674.57%   -
Gunnersbury05/11/20112217:1275.58% +
Gunnersbury05/11/20112217:1275.58%   -
Banstead Woods22/10/2011228117:3174.22% +
Banstead Woods22/10/2011228117:3174.22%   -
Frimley Lodge15/10/201187117:1175.65% +
Frimley Lodge15/10/201187117:1175.65%   -
Pymmes08/10/201127117:0775.95% +
Pymmes08/10/201127117:0775.95%   -
Bushy Park01/10/2011376517:1675.29% +
Bushy Park01/10/2011376517:1675.29%   -
Lloyd24/09/201147218:1970.97% +
Lloyd24/09/201147218:1970.97%   -
Nonsuch17/09/20111317:1475.44% +
Nonsuch17/09/20111317:1475.44%   -
Bushy Park10/09/2011373517:4473.31% +
Bushy Park10/09/2011373517:4473.31%   -
Old Deer Park03/09/201147117:4173.52% +
Old Deer Park03/09/201147117:4173.52% PB   -
Oak Hill27/08/20111417:4773.10% +
Oak Hill27/08/20111417:4773.10%   -
Bushy Park20/08/2011370917:2174.93% +
Bushy Park20/08/2011370917:2174.93%   -
Richmond Park06/08/2011197418:0072.22% +
Richmond Park06/08/2011197418:0072.22%   -
Bushy Park30/07/2011367417:2474.71% +
Bushy Park30/07/2011367417:2474.71%   -
Bushy Park23/07/20113661017:3374.07% +
Bushy Park23/07/20113661017:3374.07%   -
Bushy Park16/07/2011365617:4273.45% +
Bushy Park16/07/2011365617:4273.45%   -
Bushy Park09/07/20113641017:4772.91% +
Bushy Park09/07/20113641017:4772.91%   -
Bushy Park02/07/2011363717:4173.33% +
Bushy Park02/07/2011363717:4173.33%   -
Bushy Park25/06/2011362917:5972.10% +
Bushy Park25/06/2011362917:5972.10%   -
Bushy Park18/06/2011361717:4273.26% +
Bushy Park18/06/2011361717:4273.26%   -
Bushy Park11/06/2011360717:2974.17% +
Bushy Park11/06/2011360717:2974.17%   -
Bushy Park04/06/2011359617:3373.88% +
Bushy Park04/06/2011359617:3373.88%   -
Bushy Park28/05/2011358617:3074.10% +
Bushy Park28/05/2011358617:3074.10%   -
Bushy Park21/05/2011357517:4073.40% +
Bushy Park21/05/2011357517:4073.40%   -
Bushy Park14/05/20113561017:4273.26% +
Bushy Park14/05/20113561017:4273.26%   -
Bushy Park07/05/2011355517:2174.74% +
Bushy Park07/05/2011355517:2174.74%   -
Bushy Park30/04/2011354417:1874.95% +
Bushy Park30/04/2011354417:1874.95%   -
Black Park29/04/201194117:4173.33% +
Black Park29/04/201194117:4173.33% PB   -
Bushy Park23/04/2011353717:3973.47% +
Bushy Park23/04/2011353717:3973.47%   -
Bushy Park09/04/2011351716:4377.57% +
Bushy Park09/04/2011351716:4377.57%   -
Bushy Park02/04/20113501616:4777.26% +
Bushy Park02/04/20113501616:4777.26%   -
Bushy Park26/03/2011349817:3373.88% +
Bushy Park26/03/2011349817:3373.88%   -
Bushy Park19/03/2011348617:1974.88% +
Bushy Park19/03/2011348617:1974.88%   -
Bushy Park12/03/2011347716:5776.50% +
Bushy Park12/03/2011347716:5776.50%   -
Bushy Park05/03/2011346617:1075.53% +
Bushy Park05/03/2011346617:1075.53%   -
Bushy Park26/02/2011345617:4373.19% +
Bushy Park26/02/2011345617:4373.19%   -
Bushy Park19/02/2011344517:5272.57% +
Bushy Park19/02/2011344517:5272.57%   -
Bushy Park12/02/2011343316:5876.42% +
Bushy Park12/02/2011343316:5876.42%   -
Bushy Park05/02/2011342717:1775.02% +
Bushy Park05/02/2011342717:1775.02%   -
Bushy Park29/01/2011341516:5976.35% +
Bushy Park29/01/2011341516:5976.35%   -
Bushy Park22/01/2011340517:3473.81% +
Bushy Park22/01/2011340517:3473.81%   -
Bushy Park15/01/2011339517:5172.64% +
Bushy Park15/01/2011339517:5172.64%   -
Bushy Park08/01/2011338418:0371.84% +
Bushy Park08/01/2011338418:0371.84%   -
Richmond Park01/01/2011166518:0571.71% +
Richmond Park01/01/2011166518:0571.71%   -
Bushy Park01/01/2011337617:4473.12% +
Bushy Park01/01/2011337617:4473.12%   -
Black Park26/12/201076318:3469.84% +
Black Park26/12/201076318:3469.84%   -
Bushy Park25/12/20103361318:2370.53% +
Bushy Park25/12/20103361318:2370.53%   -
Bushy Park18/12/20103351417:5472.44% +
Bushy Park18/12/20103351417:5472.44%   -
Bushy Park11/12/2010334917:3673.67% +
Bushy Park11/12/2010334917:3673.67%   -
Bushy Park04/12/2010333418:5068.85% +
Bushy Park04/12/2010333418:5068.85%   -
Bushy Park27/11/2010332717:4972.78% +
Bushy Park27/11/2010332717:4972.78%   -
Bushy Park13/11/20103301618:2870.22% +
Bushy Park13/11/20103301618:2870.22%   -
Bushy Park06/11/20103292118:2670.34% +
Bushy Park06/11/20103292118:2670.34%   -
Bushy Park30/10/20103281618:1670.99% +
Bushy Park30/10/20103281618:1670.99%   -
Bushy Park23/10/20103271118:3269.96% +
Bushy Park23/10/20103271118:3269.96%   -
Bushy Park16/10/20103261118:0771.57% +
Bushy Park16/10/20103261118:0771.57%   -
Bushy Park09/10/20103251118:3269.96% +
Bushy Park09/10/20103251118:3269.96%   -
Bushy Park02/10/20103242118:4469.22% +
Bushy Park02/10/20103242118:4469.22%   -
Eastleigh25/09/201021719:1467.42% +
Eastleigh25/09/201021719:1467.42%   -
Old Deer Park18/09/20105619:2766.67% +
Old Deer Park18/09/20105619:2766.67%   -
Kingston17/04/20105117:0975.41% +
Kingston17/04/20105117:0975.41% PB   -
Kingston10/04/20104217:1075.34% +
Kingston10/04/20104217:1075.34%   -
Bushy Park27/03/2010297717:0475.78% +
Bushy Park27/03/2010297717:0475.78%   -
Bushy Park13/03/2010295416:3777.83% +
Bushy Park13/03/2010295416:3777.83%   -
Bushy Park27/02/2010293517:0076.08% +
Bushy Park27/02/2010293517:0076.08%   -
Bushy Park20/02/2010292316:4976.91% +
Bushy Park20/02/2010292316:4976.91%   -
Bushy Park13/02/2010291216:3877.76% +
Bushy Park13/02/2010291216:3877.76%   -
Bushy Park30/01/2010289216:3378.15% +
Bushy Park30/01/2010289216:3378.15%   -
Bushy Park16/01/2010287217:2074.62% +
Bushy Park16/01/2010287217:2074.62%   -
Bushy Park09/01/2010286217:5372.32% +
Bushy Park09/01/2010286217:5372.32%   -
Bushy Park02/01/20102851317:0875.49% +
Bushy Park02/01/20102851317:0875.49%   -
Bushy Park01/01/2010284517:4472.93% +
Bushy Park01/01/2010284517:4472.93%   -
Bushy Park26/12/2009283417:4472.93% +
Bushy Park26/12/2009283417:4472.93%   -
Bushy Park25/12/2009282317:2774.12% +
Bushy Park25/12/2009282317:2774.12%   -
Bushy Park12/12/2009280617:3273.76% +
Bushy Park12/12/2009280617:3273.76%   -
Bushy Park05/12/2009279517:5472.25% +
Bushy Park05/12/2009279517:5472.25%   -
Bushy Park28/11/2009278417:3373.69% +
Bushy Park28/11/2009278417:3373.69%   -
Bushy Park21/11/2009277517:2674.19% +
Bushy Park21/11/2009277517:2674.19%   -
Brighton & Hove14/11/2009109117:1175.27% +
Brighton & Hove14/11/2009109117:1175.27%   -
Bushy Park07/11/2009275417:1574.98% +
Bushy Park07/11/2009275417:1574.98%   -
Finsbury Park31/10/20091217:1574.98% +
Finsbury Park31/10/20091217:1574.98%   -
Edinburgh24/10/20092217:0076.08% +
Edinburgh24/10/20092217:0076.08%   -
Bedfont Lakes17/10/200924117:0475.78% +
Bedfont Lakes17/10/200924117:0475.78% PB   -
Richmond Park10/10/2009104117:1974.69% +
Richmond Park10/10/2009104117:1974.69%   -
Bushy Park03/10/2009270817:0875.49% +
Bushy Park03/10/2009270817:0875.49%   -
Bushy Park26/09/2009269416:5176.76% +
Bushy Park26/09/2009269416:5176.76%   -
Bushy Park19/09/2009268517:0076.08% +
Bushy Park19/09/2009268517:0076.08%   -
Reading12/09/20091217:1874.76% +
Reading12/09/20091217:1874.76%   -
Bushy Park05/09/2009266417:1974.69% +
Bushy Park05/09/2009266417:1974.69%   -
Bushy Park29/08/2009265217:1375.12% +
Bushy Park29/08/2009265217:1375.12%   -
Wimbledon Common22/08/2009138517:2774.12% +
Wimbledon Common22/08/2009138517:2774.12%   -
Bushy Park15/08/20092631017:3973.28% +
Bushy Park15/08/20092631017:3973.28%   -
Bedfont Lakes01/08/200913318:0171.79% +
Bedfont Lakes01/08/200913318:0171.79%   -
Bushy Park25/07/2009260617:5072.52% +
Bushy Park25/07/2009260617:5072.52%   -
Bushy Park18/07/2009259817:2074.62% +
Bushy Park18/07/2009259817:2074.62%   -
Bushy Park11/07/2009258917:3373.69% +
Bushy Park11/07/2009258917:3373.69%   -
Bushy Park04/07/20092571417:5072.43% +
Bushy Park04/07/20092571417:5072.43%   -
Basingstoke27/06/200951517:4872.57% +
Basingstoke27/06/200951517:4872.57%   -
Gorleston Cliffs06/06/20097217:4372.91% +
Gorleston Cliffs06/06/20097217:4372.91%   -
Bushy Park23/05/20092511418:2270.33% +
Bushy Park23/05/20092511418:2270.33%   -
Bushy Park16/05/2009250618:0271.63% +
Bushy Park16/05/2009250618:0271.63%   -
Bedfont Lakes09/05/20091218:0171.69% +
Bedfont Lakes09/05/20091218:0171.69%   -
Bushy Park18/04/2009246717:0575.61% +
Bushy Park18/04/2009246717:0575.61%   -
Bushy Park11/04/2009245617:1375.02% +
Bushy Park11/04/2009245617:1375.02%   -
Bushy Park04/04/2009244417:0675.54% +
Bushy Park04/04/2009244417:0675.54%   -
Richmond Park28/03/200976517:1375.02% +
Richmond Park28/03/200976517:1375.02% PB   -
Bushy Park21/03/2009242616:2578.68% +
Bushy Park21/03/2009242616:2578.68% PB   -
Bushy Park14/03/2009241416:5276.58% +
Bushy Park14/03/2009241416:5276.58%   -
Bushy Park07/03/2009240516:5476.43% +
Bushy Park07/03/2009240516:5476.43%   -
Bushy Park28/02/20092391117:3773.32% +
Bushy Park28/02/20092391117:3773.32%   -
Bushy Park21/02/2009238617:2074.52% +
Bushy Park21/02/2009238617:2074.52%   -
Bushy Park14/02/2009237317:2374.30% +
Bushy Park14/02/2009237317:2374.30%   -
Bushy Park07/02/2009236517:3173.74% +
Bushy Park07/02/2009236517:3173.74%   -
Bushy Park31/01/2009235517:1175.17% +
Bushy Park31/01/2009235517:1175.17%   -
Bushy Park24/01/2009234517:2774.02% +
Bushy Park24/01/2009234517:2774.02%   -
Bushy Park17/01/2009233517:3673.39% +
Bushy Park17/01/2009233517:3673.39%   -
Bushy Park10/01/2009232217:2774.02% +
Bushy Park10/01/2009232217:2774.02%   -
Bushy Park03/01/20092311417:0875.39% +
Bushy Park03/01/20092311417:0875.39%   -
Bushy Park01/01/2009230117:0275.83% +
Bushy Park01/01/2009230117:0275.83%   -
Bushy Park27/12/2008229517:3273.67% +
Bushy Park27/12/2008229517:3273.67%   -
Bushy Park25/12/2008228317:1674.81% +
Bushy Park25/12/2008228317:1674.81%   -
Bushy Park20/12/2008227617:4572.77% +
Bushy Park20/12/2008227617:4572.77%   -
Bushy Park22/11/2008223717:3073.81% +
Bushy Park22/11/2008223717:3073.81%   -
Brighton & Hove15/11/200856117:2374.30% +
Brighton & Hove15/11/200856117:2374.30%   -
Richmond Park11/10/200852217:2474.23% +
Richmond Park11/10/200852217:2474.23% PB   -
Bushy Park04/10/2008216717:3473.53% +
Bushy Park04/10/2008216717:3473.53%   -
Bushy Park27/09/2008215116:5776.20% +
Bushy Park27/09/2008215116:5776.20%   -
Bushy Park06/09/2008212617:2873.95% +
Bushy Park06/09/2008212617:2873.95%   -
Bushy Park30/08/2008211517:0375.76% +
Bushy Park30/08/2008211517:0375.76%   -
Bushy Park23/08/2008210716:4876.88% +
Bushy Park23/08/2008210716:4876.88%   -
Bushy Park16/08/2008209617:2374.30% +
Bushy Park16/08/2008209617:2374.30%   -
Bushy Park09/08/2008208517:1774.73% +
Bushy Park09/08/2008208517:1774.73%   -
Bushy Park02/08/20082071418:1071.10% +
Bushy Park02/08/20082071418:1071.10%   -
Bushy Park26/07/20082061217:5871.89% +
Bushy Park26/07/20082061217:5871.89%   -
Bushy Park19/07/2008205617:1275.10% +
Bushy Park19/07/2008205617:1275.10%   -
Bushy Park12/07/2008204817:1774.73% +
Bushy Park12/07/2008204817:1774.73%   -
Bushy Park05/07/2008203617:0675.44% +
Bushy Park05/07/2008203617:0675.44%   -
Bushy Park21/06/2008201617:2773.93% +
Bushy Park21/06/2008201617:2773.93%   -
Bushy Park07/06/2008199517:0875.29% +
Bushy Park07/06/2008199517:0875.29%   -
Bushy Park31/05/2008198617:2873.85% +
Bushy Park31/05/2008198617:2873.85%   -
Bushy Park24/05/20081971117:2374.21% +
Bushy Park24/05/20081971117:2374.21%   -
Bushy Park17/05/2008196917:2574.07% +
Bushy Park17/05/2008196917:2574.07%   -
Bushy Park19/04/2008192917:4872.47% +
Bushy Park19/04/2008192917:4872.47%   -
Bushy Park22/03/2008188517:2274.28% +
Bushy Park22/03/2008188517:2274.28%   -
Bushy Park15/03/2008187216:4477.09% +
Bushy Park15/03/2008187216:4477.09%   -
Brighton & Hove08/03/200819216:2778.42% +
Brighton & Hove08/03/200819216:2778.42%   -
Bushy Park01/03/2008185317:0875.29% +
Bushy Park01/03/2008185317:0875.29%   -
Bushy Park23/02/2008184416:5576.26% +
Bushy Park23/02/2008184416:5576.26%   -
Bushy Park16/02/2008183516:2978.26% +
Bushy Park16/02/2008183516:2978.26% PB   -
Bushy Park09/02/2008182116:3278.02% +
Bushy Park09/02/2008182116:3278.02% PB   -
Bushy Park02/02/2008181216:4477.09% +
Bushy Park02/02/2008181216:4477.09%   -
Bushy Park26/01/2008180316:5576.26% +
Bushy Park26/01/2008180316:5576.26%   -
Bushy Park19/01/2008179617:2274.28% +
Bushy Park19/01/2008179617:2274.28%   -
Bushy Park12/01/2008178117:0475.59% +
Bushy Park12/01/2008178117:0475.59%   -
Bushy Park05/01/2008177718:0071.67% +
Bushy Park05/01/2008177718:0071.67%   -
Bushy Park01/01/2008176317:0875.29% +
Bushy Park01/01/2008176317:0875.29%   -
Bushy Park29/12/2007175617:3873.16% +
Bushy Park29/12/2007175617:3873.16%   -
Bushy Park25/12/2007174317:1874.57% +
Bushy Park25/12/2007174317:1874.57%   -
Bushy Park22/12/2007173317:2174.35% +
Bushy Park22/12/2007173317:2174.35%   -
Bushy Park15/12/2007172917:2274.28% +
Bushy Park15/12/2007172917:2274.28%   -
Bushy Park08/12/2007171417:2174.35% +
Bushy Park08/12/2007171417:2174.35%   -
Woodhouse Moor01/12/20079117:2274.21% +
Woodhouse Moor01/12/20079117:2274.21%   -
Bushy Park24/11/2007169717:4372.81% +
Bushy Park24/11/2007169717:4372.81%   -
Bushy Park17/11/20071681017:5272.20% +
Bushy Park17/11/20071681017:5272.20%   -
Bushy Park10/11/2007167517:2873.85% +
Bushy Park10/11/2007167517:2873.85%   -
Bushy Park03/11/20071661017:3773.23% +
Bushy Park03/11/20071661017:3773.23%   -
Richmond Park27/10/20072317:5771.87% +
Richmond Park27/10/20072317:5771.87%   -
Bushy Park20/10/20071641017:5771.87% +
Bushy Park20/10/20071641017:5771.87%   -
Bushy Park13/10/2007163517:5272.13% +
Bushy Park13/10/2007163517:5272.13%   -
Bushy Park29/09/2007161517:4872.47% +
Bushy Park29/09/2007161517:4872.47%   -
Bushy Park22/09/2007160617:0575.51% +
Bushy Park22/09/2007160617:0575.51%   -
Bushy Park15/09/2007159416:5776.11% +
Bushy Park15/09/2007159416:5776.11%   -
Bushy Park08/09/2007158517:0775.37% +
Bushy Park08/09/2007158517:0775.37%   -
Bushy Park01/09/2007157416:3777.56% +
Bushy Park01/09/2007157416:3777.56% PB   -
Bushy Park25/08/2007156216:4077.40% +
Bushy Park25/08/2007156216:4077.40%   -
Bushy Park11/08/20071541417:5971.73% +
Bushy Park11/08/20071541417:5971.73%   -
Bushy Park04/08/2007153416:3877.48% +
Bushy Park04/08/2007153416:3877.48%   -
Bushy Park28/07/2007152316:5975.96% +
Bushy Park28/07/2007152316:5975.96%   -
Bushy Park21/07/2007151416:5576.26% +
Bushy Park21/07/2007151416:5576.26%   -
Bushy Park14/07/2007150618:0771.21% +
Bushy Park14/07/2007150618:0771.21%   -
Bushy Park07/07/2007149717:0475.59% +
Bushy Park07/07/2007149717:0475.59%   -
Bushy Park30/06/2007148117:1075.15% +
Bushy Park30/06/2007148117:1075.15%   -
Bushy Park23/06/2007147717:4073.02% +
Bushy Park23/06/2007147717:4073.02%   -
Bushy Park16/06/2007146417:3573.36% +
Bushy Park16/06/2007146417:3573.36%   -
Bushy Park02/06/2007144717:3773.23% +
Bushy Park02/06/2007144717:3773.23%   -
Bushy Park26/05/20071431117:2474.14% +
Bushy Park26/05/20071431117:2474.14%   -
Bushy Park19/05/20071421117:5572.00% +
Bushy Park19/05/20071421117:5572.00%   -
Bushy Park12/05/20071411317:4972.40% +
Bushy Park12/05/20071411317:4972.40%   -
Bushy Park05/05/20071401117:4972.40% +
Bushy Park05/05/20071401117:4972.40%   -
Bushy Park28/04/2007139416:5376.41% +
Bushy Park28/04/2007139416:5376.41%   -
Bushy Park21/04/2007138716:4377.17% +
Bushy Park21/04/2007138716:4377.17%   -
Bushy Park14/04/2007137716:4776.86% +
Bushy Park14/04/2007137716:4776.86%   -
Bushy Park07/04/2007136616:3877.56% +
Bushy Park07/04/2007136616:3877.56% PB   -
Bushy Park31/03/2007135317:0575.51% +
Bushy Park31/03/2007135317:0575.51% PB   -
Bushy Park24/03/2007134617:3473.43% +
Bushy Park24/03/2007134617:3473.43%   -
Bushy Park17/03/2007133817:3773.23% +
Bushy Park17/03/2007133817:3773.23%   -
Bushy Park10/03/2007132517:4172.95% +
Bushy Park10/03/2007132517:4172.95%   -
Bushy Park03/03/20071311018:1670.62% +
Bushy Park03/03/20071311018:1670.62%   -
Bushy Park24/02/20071301218:2270.24% +
Bushy Park24/02/20071301218:2270.24%   -
Bushy Park10/02/2007128918:1071.01% +
Bushy Park10/02/2007128918:1071.01%   -
Bushy Park03/02/20071271417:5272.20% +
Bushy Park03/02/20071271417:5272.20%   -
Bushy Park27/01/2007126817:5472.07% +
Bushy Park27/01/2007126817:5472.07%   -
Bushy Park13/01/20071241118:4968.56% +
Bushy Park13/01/20071241118:4968.56%   -
Bushy Park06/01/20071231818:5768.07% +
Bushy Park06/01/20071231818:5768.07%   -
Bushy Park25/12/2006120717:4972.40% +
Bushy Park25/12/2006120717:4972.40%   -
Bushy Park23/12/20061192017:5472.07% +
Bushy Park23/12/20061192017:5472.07%   -
Bushy Park16/12/2006118917:5272.20% +
Bushy Park16/12/2006118917:5272.20%   -
Bushy Park09/12/20061171017:5771.87% +
Bushy Park09/12/20061171017:5771.87%   -
Bushy Park02/12/2006116818:0471.40% +
Bushy Park02/12/2006116818:0471.40%   -
Bushy Park25/11/2006115418:2070.36% +
Bushy Park25/11/2006115418:2070.36%   -
Bushy Park28/10/2006111617:2474.14% +
Bushy Park28/10/2006111617:2474.14% PB   -
Bushy Park07/10/2006108817:2574.07% +
Bushy Park07/10/2006108817:2574.07% PB   -
Bushy Park05/08/2006991017:2873.85% +
Bushy Park05/08/2006991017:2873.85% PB   -
Bushy Park22/07/200697617:3373.50% +
Bushy Park22/07/200697617:3373.50% PB   -
Bushy Park08/07/2006951418:1270.88% +
Bushy Park08/07/2006951418:1270.88%   -
Bushy Park01/07/200694418:0571.34% +
Bushy Park01/07/200694418:0571.34%   -
Bushy Park24/06/200693817:5871.80% +
Bushy Park24/06/200693817:5871.80%   -
Bushy Park17/06/2006921417:5771.87% +
Bushy Park17/06/2006921417:5771.87%   -
Bushy Park03/06/2006901518:2070.36% +
Bushy Park03/06/2006901518:2070.36%   -
Bushy Park27/05/2006891718:3469.48% +
Bushy Park27/05/2006891718:3469.48%   -
Bushy Park18/02/200675918:0771.21% +
Bushy Park18/02/200675918:0771.21%   -
Bushy Park28/01/2006721217:5572.00% +
Bushy Park28/01/2006721217:5572.00%   -
Bushy Park21/01/200671917:3973.09% +
Bushy Park21/01/200671917:3973.09% PB   -
Bushy Park07/01/200669817:5072.34% +
Bushy Park07/01/200669817:5072.34% PB   -
Bushy Park24/12/2005651318:1170.94% +
Bushy Park24/12/2005651318:1170.94%   -
Bushy Park17/12/2005641418:4768.68% +
Bushy Park17/12/2005641418:4768.68%   -
Bushy Park26/11/2005611119:1467.07% +
Bushy Park26/11/2005611119:1467.07%   -
Bushy Park01/10/2005532318:2370.17% +
Bushy Park01/10/2005532318:2370.17%   -
Bushy Park10/09/200550919:2466.49% +
Bushy Park10/09/200550919:2466.49%   -
Bushy Park03/09/200549418:0871.14% +
Bushy Park03/09/200549418:0871.14% PB   -
Bushy Park27/08/200548718:1170.94% +
Bushy Park27/08/200548718:1170.94%   -
Bushy Park20/08/200547418:0971.07% +
Bushy Park20/08/200547418:0971.07%  

@@ -1798,78 +1951,61 @@

Danny NORMAN (A482)
- Locations: 58 + Locations: 75
- Finishers: 81,482 + Finishers: 124697
- Finishes: 386,576 + Finishes: 636582
- All-time events: 8,777 + All-time events: 13685
- Volunteers: 9,152 + Volunteers: 13160
- PBs: 58,526 + PBs: 93120
- Average finish time: 00:33:35 + Average finish time: 00:34:06
- Average finishes per participant: 4.7 + Groups: 3140
-
- Groups: 2,656 -
- -
- Female record: - Lauren HURLEY – 16:17 - (11 Sep 2021) -
-
- Male record: - Paul MARTELLETTI – 14:57 - ( 5 Aug 2017) -
-
- Age graded record: - Sabra HARVEY - 103.73% 21:28 - ( 4 May 2019) -
+
- Stats last updated: Fri 14 Apr 2023 12:45:50 AM UTC + Stats last updated: Mon 30 Sep 2024 12:46:01 AM UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1903,8 +2049,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/482/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/482/index.html index 2706a3b9..eea35bf1 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/482/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/482/index.html @@ -14,6 +14,8 @@ + results | parkrun USA - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -57,7 +53,7 @@
@@ -69,34 +65,25 @@
@@ -123,878 +110,1004 @@

Danny NORMAN (A482) Member of the Volunteer 250 club -

785 parkruns total

+

867 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM40-44 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Harleston Magpies parkrun08/04/2023293525:1255.42%
Cannock Chase parkrun01/04/2023384425:4954.10%
Kingston parkrun25/03/202312716430:0946.32%
Wolford Wood parkrun18/03/2023212730:2445.94%
Kingston parkrun11/03/202311315027:1851.16%
Stockley Country parkrun04/03/202311917935:3239.31%
Chasewater parkrun25/02/20238210026:1953.07%
Worcester Pitchcroft parkrun18/02/202311814327:0451.60%
Bethlem Royal Hospital parkrun11/02/2023809229:2547.48%
Worcester parkrun04/02/202314418529:3047.34%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2321100:16:25 + Most recent age category was VM45-49 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Seaton parkrun28/09/2024394824:0958.73%
Malling Rec parkrun21/09/2024738526:5952.56%
Dereham parkrun14/09/2024323323:4759.64%
Swansea Bay parkrun07/09/2024748323:4459.76%
The Plens parkrun31/08/2024303124:0458.93%
Kingston parkrun24/08/2024434623:3060.35%
Three Brooks parkrun17/08/2024697223:4659.68%
Malling Rec parkrun10/08/202410013828:1550.21%
Shipley Country parkrun03/08/2024232424:4557.31%
Morden parkrun27/07/202411715526:5852.60%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bushy parkrun2341116:25 + All +
Kingston parkrun471116:51 + All +
Bedfont Lakes parkrun81117:04 + All +
Nonsuch parkrun71116:52 + All +
Richmond parkrun71117:13 + All +
Crane Park parkrun61116:48 + All +
Riddlesdown parkrun42217:01 + All +
Brockwell parkrun, Herne Hill31116:56 + All +
Southwark parkrun34417:27 + All +
Fulham Palace parkrun33317:47 + All +
Cannon Hill parkrun, Birmingham3111118:04 + All +
Gunnersbury parkrun31116:51 + All +
Wimbledon Common parkrun35517:27 + All +
Brighton & Hove parkrun31116:27 + All +
Basingstoke parkrun35517:48 + All +
Black Park parkrun31117:25 + All +
Dulwich parkrun33317:11 + All +
Bexley parkrun31117:48 + All +
Tilgate parkrun31117:10 + All +
Frimley Lodge parkrun31117:11 + All +
Hilly Fields parkrun31117:50 + All +
Old Deer Park parkrun31117:41 + All +
Guildford parkrun31117:17 + All +
Homewood parkrun3151722:21 + All +
Chelmsford Central parkrun22217:24 + All +
Mole Valley parkrun2262622:56 + All +
Durlston Country Park parkrun2355032:45 + All +
Hazelwood parkrun2182222:21 + All +
Southsea parkrun23317:55 + All +
St Albans parkrun21116:37 + All +
Havant parkrun21117:46 + All +
Ashford parkrun22217:57 + All +
Bedford parkrun21116:55 + All +
Margate parkrun21118:16 + All +
Milton Keynes parkrun23317:26 + All +
Preston Park parkrun, Brighton22217:40 + All +
Shorne Woods parkrun21118:14 + All +
Canons Park parkrun27720:50 All - Graph It!
Kingston parkrun351100:16:51 +
Osterley parkrun21117:57 All - Graph It!
Bedfont Lakes parkrun81100:17:04 +
Eastleigh parkrun27719:14 All - Graph It!
Richmond parkrun71100:17:13 +
Brooklands parkrun2394223:22 All - Graph It!
Nonsuch parkrun71100:16:52 +
Great Lines parkrun, Medway25518:25 All - Graph It!
Crane Park parkrun61100:16:48 +
Malling Rec parkrun2738526:59 All - Graph It!
Brighton & Hove parkrun31100:16:27 +
Crystal Palace parkrun21117:24 All - Graph It!
Fulham Palace parkrun33300:17:47 +
Northala Fields parkrun22218:06 All - Graph It!
Frimley Lodge parkrun31100:17:11 +
Northampton parkrun21116:56 All - Graph It!
Gunnersbury parkrun31100:16:51 +
Oak Hill parkrun21117:13 All - Graph It!
Bexley parkrun31100:17:48 +
Lloyd parkrun, Croydon21118:01 All - Graph It!
Tilgate parkrun31100:17:10 +
Newbury parkrun21117:20 All - Graph It!
Brockwell parkrun, Herne Hill31100:16:56 +
Cranleigh parkrun26620:49 All - Graph It!
Southwark parkrun34400:17:27 +
Littlehampton Prom parkrun2384324:22 All - Graph It!
Basingstoke parkrun35500:17:48 +
Whitstable parkrun23318:12 All - Graph It!
Hilly Fields parkrun31100:17:50 +
Bethlem Royal Hospital parkrun2263223:22 All - Graph It!
Black Park parkrun31100:17:25 +
Cyclopark parkrun2353824:01 All - Graph It!
Riddlesdown parkrun32200:17:01 +
Hockley Woods parkrun26621:09 All - Graph It!
Dulwich parkrun33300:17:11 +
South Oxhey parkrun21119:13 All - Graph It!
Guildford parkrun31100:17:17 +
Pymmes parkrun21117:06 All - Graph It!
Old Deer Park parkrun31100:17:41 +
Hastings parkrun291120:41 All - Graph It!
Wimbledon Common parkrun35500:17:27 +
Wycombe Rye parkrun22217:17 All - Graph It!
Homewood parkrun3151700:22:21 +
Hove Promenade parkrun27719:23 All - Graph It!
Cannon Hill parkrun, Birmingham3111100:18:04 +
Banstead Woods parkrun21117:31 All - Graph It!
Pymmes parkrun21100:17:06 +
Wormwood Scrubs parkrun21118:00 All - Graph It!
Hove Promenade parkrun27700:19:23 +
Roundshaw Downs parkrun23318:14 All - Graph It!
Netley Abbey parkrun21100:17:21 +
Mile End parkrun21116:53 All - Graph It!
Mile End parkrun21100:16:53 +
Bevendean Down parkrun28923:21 All - Graph It!
Southampton parkrun23300:16:44 +
Finsbury parkrun22217:15 All - Graph It!
Northala Fields parkrun22200:18:06 +
Tooting Common parkrun2181819:14 All - Graph It!
Hockley Woods parkrun26600:21:09 +
Bedgebury Pinetum parkrun28921:24 All - Graph It!
Ellenbrook Fields parkrun2141500:19:58 +
Harrow parkrun25520:23 All - Graph It!
Upton Court parkrun22200:17:24 +
Netley Abbey parkrun21117:21 All - Graph It!
Alice Holt parkrun21100:17:59 +
Ellenbrook Fields parkrun2141519:58 All - Graph It!
Osterley parkrun21100:17:57 +
Worthing parkrun28918:44 All - Graph It!
Burgess parkrun22200:16:45 +
Grovelands parkrun, Enfield22217:21 All - Graph It!
Gladstone parkrun21100:17:09 +
Beckton parkrun23317:24 All - Graph It!
Havant parkrun21100:17:46 +
Gladstone parkrun21117:09 All - Graph It!
Cranleigh parkrun26600:20:49 +
Hackney Marshes parkrun22216:46 All - Graph It!
Finsbury parkrun22200:17:15 +
Burgess parkrun22216:45 All - Graph It!
Southsea parkrun23300:17:55 +
Orpington parkrun22217:27 All - Graph It!
Margate parkrun21100:18:16 +
Barking parkrun22216:45 All - Graph It!
Northampton parkrun21100:16:56 +
Southampton parkrun23316:44 All - Graph It!
Roundshaw Downs parkrun23300:18:14 +
Alice Holt parkrun21117:59 All - Graph It!
Bethlem Royal Hospital parkrun2263200:23:22 +
Woodley parkrun21117:02 All - Graph It!
Crystal Palace parkrun21100:17:24 +
Upton Court parkrun22217:24 All - Graph It!
Eastleigh parkrun27700:19:14 +
Frogmary Green Farm parkrun1597225:58 All - Graph It!
Hastings parkrun291100:20:41 +
Harrow Lodge parkrun11118:48 All - Graph It!
Banstead Woods parkrun21100:17:31 +
Witney parkrun1202022:34 All - Graph It!
Wormwood Scrubs parkrun21100:18:00 +
Leamington parkrun12218:52 All - Graph It!
Hackney Marshes parkrun22200:16:46 +
Brockenhurst parkrun13318:23 All - Graph It!
Bedgebury Pinetum parkrun28900:21:24 +
Hogmoor Inclosure parkrun1262625:26 All - Graph It!
Woodley parkrun21100:17:02 +
Hastings High School parkrun1637827:33 All - Graph It!
Tooting Common parkrun2181800:19:14 +
Cannock Chase parkrun1384425:49 All - Graph It!
Milton Keynes parkrun23300:17:26 +
Wimpole Estate parkrun1202122:14 All - Graph It!
Grovelands parkrun, Enfield22200:17:21 +
Haverhill parkrun1121323:32 All - Graph It!
Barking parkrun22200:16:45 +
Edenbrook Country parkrun110514828:01 All - Graph It!
Canons Park parkrun27700:20:50 +
Maidstone River Park parkrun13318:00 All - Graph It!
Newbury parkrun21100:17:20 +
Cheltenham parkrun12217:24 All - Graph It!
Shorne Woods parkrun21100:18:14 +
Victoria Dock parkrun1273020:04 All - Graph It!
Lloyd parkrun, Croydon21100:18:01 +
Ekebergsletta parkrun1304325:57 All - Graph It!
Mole Valley parkrun2262600:22:56 +
Oxford parkrun11117:18 All - Graph It!
Oak Hill parkrun21100:17:13 +
Aylesbury parkrun11117:51 All - Graph It!
Cyclopark parkrun2353800:24:01 +
Mote Park parkrun19712231:28 All - Graph It!
Durlston Country Park parkrun2355000:32:45 +
Riverfront parkrun1404622:57 All - Graph It!
South Oxhey parkrun21100:19:13 +
Newent parkrun1182225:27 All - Graph It!
Chelmsford Central parkrun22200:17:24 +
Clapham Common parkrun1404220:22 All - Graph It!
Great Lines parkrun, Medway25500:18:25 +
Llanishen Park parkrun1303323:48 All - Graph It!
Bevendean Down parkrun28900:23:21 +
Heartwood Forest parkrun1252721:41 All - Graph It!
Bedford parkrun21100:16:55 +
Walthamstow parkrun11117:48 All - Graph It!
Whitstable parkrun23300:18:12 +
Malmö Ribersborg parkrun111215128:46 All - Graph It!
Orpington parkrun22200:17:27 +
Chippenham Playing Fields parkrun, Monmouth1161923:05 All - Graph It!
Ashford parkrun22200:17:57 +
Huntingdon parkrun1202121:10 All - Graph It!
Hazelwood parkrun2182200:22:21 +
Felixstowe parkrun1121221:07 All - Graph It!
Brooklands parkrun2394200:23:22 +
Tidworth parkrun110815535:14 All - Graph It!
Wycombe Rye parkrun22200:17:17 +
Brandon Country Park parkrun11118:30 All - Graph It!
Harrow parkrun25500:20:23 +
Prospect parkrun1232322:42 All - Graph It!
Beckton parkrun23300:17:24 +
Mildenhall Hub parkrun1273124:33 All - Graph It!
St Albans parkrun21100:16:37 +
York parkrun12217:12 All - Graph It!
Delaware and Raritan Canal parkrun12200:21:06 +
Thetford parkrun1161721:45 All -  
Buckingham parkrun12200:18:37 +
Great Dunmow parkrun14420:25 All -  
Thomas Mills parkrun1486500:30:19 +
Leavesden Country parkrun1506928:32 All -  
Leamington parkrun12200:18:52 +
Catford parkrun1303322:32 All -  
Church Mead parkrun16610200:32:53 +
Lordship Recreation Ground parkrun19112425:22 All -  
Letchworth parkrun1141400:23:13 +
Rugby parkrun1181822:26 All -  
Mulbarton parkrun12200:19:55 +
Mulbarton parkrun12219:55 All -  
Arrow Valley parkrun13300:18:05 +
Swaffham parkrun191022:19 All -  
Frogmary Green Farm parkrun1597200:25:58 +
Ganger Farm parkrun19811426:34 All -  
Sutton Park parkrun1475500:24:54 +
Beckenham Place parkrun1121220:28 All -  
Reigate Priory parkrun16600:19:06 +
Forest Rec parkrun1677626:35 All -  
Bury St Edmunds parkrun13300:18:17 +
Street parkrun1283525:52 All -  
Pollok parkrun, Glasgow11100:17:00 +
Market Bosworth Country Park parkrun110614435:35 All -  
Kingdom parkrun1222500:24:39 +
Whiteley parkrun1141520:56 All -  
Barclay parkrun15600:23:13 +
Kingsbury Water parkrun1394725:05 All -  
Chippenham parkrun1212100:20:08 +
Springhill parkrun14422:18 All -  
Ipswich parkrun11100:17:34 +
Wolford Wood parkrun1212730:24 All -  
Itchen Valley Country parkrun1476100:27:37 +
Pontypridd parkrun12217:54 All -  
Neckarau parkrun1243000:27:11 +
Pocket parkrun1222321:38 All -  
Brandon Country Park parkrun11100:18:30 +
Stockley Country parkrun111917935:32 All -  
Boston parkrun17700:21:18 +
Braunstone parkrun1262720:41 All -  
University Parks parkrun119032600:31:42 +
Didcot parkrun1101121:28 All -  
Neckarufer parkrun, Esslingen1364400:25:12 +
Littleport parkrun1445125:16 All -  
Lullingstone parkrun17700:21:21 +
Yarborough Leisure Centre parkrun1466125:59 All -  
Coventry parkrun1292900:20:51 +
Roding Valley parkrun1111321:26 All -  
Berkeley Green parkrun1233100:28:31 +
Clair parkrun13318:36 All -  
Mersea Island parkrun1121200:20:59 +
Dinton Pastures parkrun1131321:23 All -  
Aylesbury parkrun11100:17:51 +
Beacon Hill Country Park parkrun1273725:54 All -  
Royal Tunbridge Wells parkrun18900:19:23 +
Severn Bridge parkrun1353921:32 All -  
Southall parkrun1557500:31:38 +
Abbey Park parkrun1779425:21 All -  
Manor Field parkrun, Whittlesey1121300:24:25 +
Dudley parkrun1445626:35 All -  
Pomphrey Hill parkrun1364100:23:02 +
Pegwell Bay parkrun12217:40 All -  
Henley-on-Thames parkrun1111100:22:25 +
Manor Field parkrun, Whittlesey1121324:25 All -  
Aachener Weiher parkrun1101100:24:55 +
Blaise Castle parkrun112816326:20 All -  
Penrose parkrun1151600:19:40 +
Chipping Sodbury parkrun1303221:20 All -  
King’s Lynn parkrun1151500:20:07 +
Foots Cray Meadows parkrun1212323:17 All -  
Fulbourn Hospital parkrun1344700:24:59 +
Thames Path parkrun, Woolwich1789023:42 All -  
Fareham parkrun16600:19:21 +
Bath Skyline parkrun1192021:08 All -  
Brockenhurst parkrun13300:18:23 +
Dishley parkrun, Loughborough110311424:30 All -  
Canterbury parkrun16600:21:56 +
Thornham Walks parkrun1363826:52 All -  
Alton Water parkrun1538300:35:09 +
Moors Valley parkrun19919:40 All -  
Littleport parkrun1445100:25:16 +
East Grinstead parkrun1131423:10 All -  
Newport parkrun11100:17:29 +
Sutton Park parkrun1475524:54 All -  
California Country parkrun1649000:28:49 +
University of Northampton parkrun1192223:24 All -  
Thornbury parkrun1323400:28:19 +
Shipley Country parkrun1232424:45 All -  
Greenwich parkrun12200:18:07 +
Lancing Beach Green parkrun1141421:08 All -  
Seven Fields parkrun1475500:26:28 +
Dover Waterfront parkrun1374525:22 All -  
Highbury Fields parkrun11100:17:25 +
Rickmansworth parkrun1242721:39 All -  
The Great Field parkrun19313500:29:12 +
Queen Elizabeth parkrun12219:08 All -  
Street parkrun1283500:25:52 +
Sizewell parkrun1172023:30 All -  
South Norwood parkrun1121200:21:11 +
Holbrooks parkrun1202223:43 All -  
Dunstable Downs parkrun1374300:24:58 +
Highbury Fields parkrun11117:25 All -  
Melton Mowbray parkrun1192200:22:38 +
Clacton Seafront parkrun19920:35 All -  
Horsham parkrun14500:18:16 +
Delaware and Raritan Canal parkrun12221:06 All -  
Irchester Country parkrun1586200:25:13 +
Wisbech parkrun1111523:03 All -  
Stratford-upon-Avon parkrun1202500:21:14 +
Milton Country parkrun13317:43 All -  
Wotton parkrun1182100:24:45 +
Seaton parkrun1394824:09 All -  
Bath Skyline parkrun1192000:21:08 +
Higginson parkrun, Marlow1272922:17 All -  
Great Dunmow parkrun14400:20:25 +
Quakers Walk parkrun1566825:05 All -  
Corby parkrun18800:23:09 +
Lister Park parkrun, Bradford1313621:55 All -  
Bracknell parkrun18800:20:04 +
Wendover Woods parkrun1262623:51 All -  
Cromhall parkrun1151600:24:20 +
Sence Valley Forest Park parkrun1232526:28 All -  
Perry Hall parkrun1464900:24:58 +
Canterbury parkrun16621:56 All -  
Gunpowder parkrun12200:17:34 +
Henstridge Airfield parkrun18821:41 All -  
Luton Wardown parkrun191000:19:36 +
Five Arches parkrun1455422:58 All -  
Ifield Mill Pond parkrun1373800:24:33 +
Yeovil Montacute parkrun1707525:51 All -  
March parkrun15500:21:11 +
Watermeadows parkrun1283124:57 All -  
Roding Valley parkrun1111300:21:26 +
Tamworth Castle Grounds parkrun1333523:26 All -  
Charlton parkrun18213000:32:05 +
St Helens parkrun1606824:27 All -  
Malmö Ribersborg parkrun111215100:28:46 +
Weymouth parkrun1141420:45 All -  
Worcester parkrun114418500:29:30 +
Walmer and Deal Seafront parkrun18821:38 All -  
Wolford Wood parkrun1212700:30:24 +
Aston Hall parkrun1202225:01 All -  
Fire Service College parkrun1181900:22:12 +
Royal Tunbridge Wells parkrun18919:23 All -  
Panshanger parkrun17700:20:14 +
Corby parkrun18823:09 All -  
Conkers parkrun12200:17:46 +
Marlborough Common parkrun1202122:48 All -  
Banbury parkrun1222300:21:16 +
Battlestead Croft parkrun1111122:53 All -  
King George V Playing Field parkrun, Cheltenham1232800:26:08 +
Shepton Mallet parkrun1121421:50 All -  
Rushmere parkrun1131400:22:39 +
Clare Castle parkrun1252723:04 All -  
Whiteley parkrun1141500:20:56 +
Coldham’s Common parkrun1535923:04 All -  
Sandringham parkrun1466300:30:18 +
Brunswick Park parkrun1212223:58 All -  
Victoria Dock parkrun1283000:20:04 +
Brentwood parkrun17722:28 All -  
Queen Elizabeth parkrun12200:19:08 +
Somerdale Pavilion parkrun1384631:17 All -  
Lordship Recreation Ground parkrun19112400:25:22 +
Wakehurst parkrun18810525:00 All -  
Somerdale Pavilion parkrun1384600:31:17 +
Boston parkrun17721:18 All -  
Dartford parkrun11100:17:59 +
Morden parkrun111715526:58 All -  
Winchester parkrun14500:18:28 +
Pontefract parkrun1718724:10 All -  
Stratford Park parkrun, Stroud1566500:27:51 +
Jersey Farm parkrun1252723:11 All -  
Sherwood Pines parkrun1161800:21:33 +
Bug Hunter Waters parkrun1455022:41 All -  
Grove Fields parkrun1578500:28:03 +
Rosliston parkrun1333624:41 All -  
Witney parkrun1202000:22:34 +
Longrun Meadow parkrun111416532:01 All -  
Preston Park parkrun, Brighton12200:17:40 +
Fire Service College parkrun1181922:12 All -  
Colchester Castle parkrun14400:18:04 +
Woolacombe Dunes parkrun19410931:20 All -  
Tidworth parkrun110815500:35:14 +
The Plens parkrun1303124:04 All -  
Walmer and Deal Seafront parkrun18800:21:38 +
Arrow Valley parkrun13318:05 All -  
Ferry Meadows parkrun15500:17:27 +
Tonbridge parkrun14418:40 All -  
St Mary’s parkrun1587400:29:14 +
East Brighton parkrun1182123:56 All -  
Dartford Heath parkrun1171700:22:06 +
Three Brooks parkrun1697223:46 All -  
Sharpham Road Playing Fields parkrun1253100:24:41 +
Peacehaven parkrun17721:07 All -  
Great Denham parkrun16600:19:27 +
Pontypool parkrun1232323:51 All -  
Hastings High School parkrun1637800:27:33 +
Cromhall parkrun1151624:20 All -  
Wendover Woods parkrun1262600:23:51 +
Dereham parkrun1323323:47 All -  
Peckham Rye parkrun11100:17:49 +
Bournemouth parkrun14417:43 All -  
Upton House parkrun1252700:22:34 +
Pomphrey Hill parkrun1364123:02 All -  
Lee-on-the-Solent parkrun17700:19:40 +
Seaford Beach parkrun1535622:25 All -  
Graves parkrun11100:18:18 +
Mansfield parkrun11117:09 All -  
Maidstone parkrun13300:18:00 +
Fountains Abbey parkrun11118:03 All -  
Woodgate Valley Country Park parkrun16513200:45:50 +
Loch Neaton parkrun, Watton1171725:49 All -  
South Woodham Ferrers parkrun18800:21:14 +
Brueton parkrun1475021:33 All -  
Pontypridd parkrun12200:17:54 +
Great Cornard parkrun1192020:33 All -  
Bournemouth parkrun14400:17:43 +
Dunstable Downs parkrun1374324:58 All -  
Sizewell parkrun1172000:23:30 +
Beeston parkrun1374023:53 All -  
Rushmoor parkrun19900:18:29 +
Feltham parkrun13424:56 All -  
Walsall Arboretum parkrun19810600:25:31 +
Markeaton parkrun1576422:56 All -  
Gorleston Cliffs parkrun12200:17:43 +
Reigate Priory parkrun16619:06 All -  
Uckfield parkrun1404300:24:12 +
Highwoods parkrun1252624:49 All -  
Aldenham parkrun1141400:21:37 +
Valentines parkrun11116:49 All -  
Gadebridge parkrun1141400:22:22 +
Springburn parkrun, Glasgow13318:05 All -  
Horspath parkrun17410600:28:12 +
California Country parkrun1649028:49 All -  
Rogiet parkrun1151600:24:27 +
Rushmoor parkrun19918:29 All -  
Rendlesham Forest parkrun1264600:37:01 +
Mountbatten School parkrun1323424:11 All -  
Dishley parkrun, Loughborough110311400:24:30 +
Colchester Castle parkrun14418:04 All -  
Great Cornard parkrun1192000:20:33 +
Buckingham parkrun12218:37 All -  
Kettering parkrun1232600:22:50 +
Sunny Hill parkrun1202424:39 All -  
Pont y Bala parkrun15700:23:18 +
Bognor Regis parkrun12218:12 All -  
Burnham and Highbridge parkrun17510000:27:51 +
Aachener Weiher parkrun1101124:55 All -  
Stonehouse parkrun1131300:20:09 +
Peckham Rye parkrun11117:49 All -  
Hampstead Heath parkrun11100:17:45 +
Millennium Country parkrun, Forest of Marston Vale1373923:01 All -  
Wickford Memorial parkrun1436600:51:15 +
Great Notley parkrun16620:16 All -  
Castle Park parkrun1394100:22:34 +
Snowden Field parkrun1242624:15 All -  
Huntingdon parkrun1202100:21:10 +
Burnham-on-Crouch parkrun18822:01 All -  
Great Salterns parkrun19212400:30:27 +
Woking parkrun18818:19 All -  
Snowden Field parkrun1242600:24:15 +
Neckarufer parkrun, Esslingen1364425:12 All -  
Southend parkrun11100:16:28 +
Worcester parkrun114418529:30 All -  
Andover parkrun11100:17:33 +
Blandford parkrun18920:11 All -  
parkrun Zalew Żyrardowski16700:24:38 +
Pont y Bala parkrun15723:18 All -  
Marecchia parkrun11100:19:50 +
Chichester parkrun13319:05 All -  
Cheltenham parkrun12200:17:24 +
Kingdom parkrun1222524:39 All -  
St Helens parkrun1606800:24:27 +
Westmill parkrun1101022:55 All -  
Bartley Park parkrun18415100:32:38 +
Dartford parkrun11117:59 All -  
Severn Bridge parkrun1353900:21:32 +
Hanworth parkrun1364024:26 All -  
Pontypool parkrun1232300:23:51 +
Bracknell parkrun18820:04 All -  
Poole parkrun14400:16:57 +
Folkestone parkrun1212521:48 All -  
Bramhall parkrun115924700:35:16 +
Uckfield parkrun1404324:12 All -  
Sunny Hill parkrun1202400:24:39 +
Harrogate parkrun13318:11 All -  
Cassiobury parkrun1111100:20:14 +
Kesgrave parkrun1374021:18 All -  
Hoblingwell parkrun1202400:23:52 +
Thomas Mills parkrun1486530:19 All -  
Colwick parkrun18800:19:46 +
Lymington Woodside parkrun15721:59 All -  
Chipping Norton School parkrun1455100:26:40 +
Hereford parkrun1535323:07 All -  
Worthing parkrun18900:18:44 +
Chasewater parkrun18210026:19 All -  
Harrow Lodge parkrun11100:18:48 +
South Norwood parkrun1121221:11 All -  
Bradford parkrun1313600:21:55 +
Panshanger parkrun17720:14 All -  
Bury Field parkrun1669000:33:07 +
Wolverhampton parkrun1556624:54 All -  
Pocket parkrun1222300:21:38 +
Harcourt Hill parkrun1171721:13 All -  
Longrun Meadow parkrun111416500:32:01 +
Tetbury Goods Shed parkrun1253024:25 All -  
Worcester Pitchcroft parkrun111814300:27:04 +
Gloucester North parkrun1101022:14 All -  
Highwoods parkrun1252600:24:49 +
Harlow parkrun1151523:00 All -  
Maidenhead parkrun17700:18:49 +
Alvaston parkrun1515922:24 All -  
Soham Village College parkrun1253200:28:03 +
Worcester Pitchcroft parkrun111814327:04 All -  
Rickmansworth parkrun1242700:21:39 +
Perry Hall parkrun1464924:58 All -  
Swaffham parkrun191000:22:19 +
Newport parkrun11117:29 All -  
Brentwood parkrun17700:22:28 +
Tring parkrun1171823:38 All -  
Lymington Woodside parkrun15700:21:59 +
Severn Valley Country parkrun1141626:13 All -  
Loch Neaton parkrun, Watton1171700:25:49 +
Wanstead Flats parkrun13317:13 All -  
Daventry parkrun1151500:21:10 +
Daventry parkrun1151521:10 All -  
Hatfield Forest parkrun1181800:20:36 +
St Mary’s parkrun1587429:14 All -  
Kingsway parkrun, Gloucester1192000:21:20 +
Poole parkrun14416:57 All -  
Salcey Forest parkrun1384300:24:53 +
Melton Mowbray parkrun1192222:38 All -  
parkrun des Dougnes, Cubnezais12200:19:42 +
The Old Showfield parkrun1636923:30 All -  
Prospect parkrun1232300:22:42 +
Henley-on-Thames parkrun1111122:25 All -  
Weymouth parkrun1141400:20:45 +
Crissy Field parkrun1101220:40 All -  
Westmill parkrun1101000:22:55 +
Babbs Mill parkrun1405128:00 All -  
East Brighton parkrun1182100:23:56 +
Maidenhead parkrun17718:49 All -  
Harlow parkrun1151500:23:00 +
Ross-on-Wye parkrun1172124:22 All -  
Linford Wood parkrun1222200:21:45 +
Kettering parkrun1232622:50 All -  
Clevedon Salthouse Fields parkrun1384900:25:13 +
Stratford Park parkrun, Stroud1566527:51 All -  
Lydney parkrun1202100:23:19 +
Bury St Edmunds parkrun13318:17 All -  
Braunstone parkrun1262700:20:41 +
Mallards Pike parkrun1324630:57 All -  
Harleston Magpies parkrun1293500:25:12 +
Market Harborough parkrun1303121:17 All -  
Clapham Common parkrun1404200:20:22 +
Cassiobury parkrun1111120:14 All -  
Market Bosworth Country Park parkrun110614400:35:35 +
Squerryes Winery parkrun1323627:45 All -  
Jersey Farm parkrun1252700:23:11 +
Walsall Arboretum parkrun19010625:31 All -  
Kesgrave parkrun1374000:21:18 +
Penrose parkrun1151619:40 All -  
Stevenage parkrun17700:19:32 +
King George V Playing Field parkrun, Cheltenham1232826:08 All -  
Hadleigh parkrun, Essex1252600:24:27 +
Evesham parkrun1111121:39 All -  
Squerryes Winery parkrun1323600:27:45 +
Warwick Racecourse parkrun1486024:55 All -  
Rutland Water parkrun1293000:22:44 +
Huddersfield parkrun1626722:02 All -  
Beckenham Place parkrun1121200:20:28 +
Clevedon Salthouse Fields parkrun1384925:13 All -  
Sutcliffe parkrun113117200:30:34 +
Long Eaton parkrun19912124:06 All -  
Haverhill parkrun1121300:23:32 +
Barry Island parkrun1394223:51 All -  
Leavesden Country parkrun1506900:28:32 +
Ifield Mill Pond parkrun1373824:33 All -  
Coldham’s Common parkrun1535900:23:04 +
Upton House parkrun1252722:34 All -  
Chichester parkrun13300:19:05 +
Lullingstone parkrun17721:21 All -  
Billericay parkrun1121300:21:20 +
The Leas parkrun, Minster1252524:37 All -  
Bromley parkrun13300:17:18 +
Medina I.O.W. parkrun11117:20 All -  
Babbs Mill parkrun1405100:28:00 +
Uditore parkrun13320:28 All -  
Thurrock parkrun, Orsett Heath16600:20:41 +
Hunstanton Promenade parkrun1283523:45 All -  
Bryn Bach parkrun11100:16:50 +
Raphael parkrun13319:35 All -  
York parkrun12200:17:12 +
Burnham and Highbridge parkrun17510027:51 All -  
Storeys Field parkrun115121100:28:49 +
Salcey Forest parkrun1384324:53 All -  
Chipping Sodbury parkrun1303200:21:20 +
Ferry Meadows parkrun15517:27 All -  
Mote Park parkrun19712200:31:28 +
Barclay parkrun15623:13 All -  
Watermeadows parkrun1283100:24:57 +
Irchester Country parkrun1586225:13 All -  
Woking parkrun18800:18:19 +
Maldon Prom parkrun11118:04 All -  
Raphael parkrun13300:19:35 +
Salisbury parkrun1111119:34 All -  
Harwich parkrun191000:21:22 +
Tremorfa parkrun1272923:30 All -  
Fritton Lake parkrun11100:18:26 +
Billericay parkrun1121321:20 All -  
Heartwood Forest parkrun1252700:21:41 +
Gedling parkrun1273224:59 All -  
Henlow Bridge Lakes parkrun17511500:32:34 +
Oaklands parkrun111820336:10 All -  
Bedworth parkrun1171700:22:14 +
Winchester parkrun14518:28 All -  
Clair parkrun13300:18:36 +
Aldenham parkrun1141421:37 All -  
Brueton parkrun1475000:21:33 +
East Park parkrun1121424:18 All -  
Higginson parkrun, Marlow1272900:22:17 +
Soham Village College parkrun1253228:03 All -  
Bognor Regis parkrun12200:18:12 +
Stevenage parkrun17719:32 All -  
Huddersfield parkrun1626700:22:02 +
Tewkesbury parkrun1111422:50 All -  
Heaton parkrun13300:18:08 +
Seven Fields parkrun1475526:28 All -  
Chasewater parkrun18210000:26:19 +
Conkers parkrun12217:46 All -  
Tewkesbury parkrun1111400:22:50 +
Lee-on-the-Solent parkrun17719:40 All -  
Marple parkrun11100:17:15 +
Brixworth Country parkrun1496126:53 All -  
Cannock Chase parkrun1384400:25:49 +
Abingdon parkrun15518:03 All -  
Edgbaston Reservoir parkrun1658600:26:24 +
Lowestoft parkrun1232621:10 All -  
Cirencester parkrun1222400:22:40 +
Chipping Norton School parkrun1455126:40 All -  
Kingsbury Water parkrun1394700:25:05 +
Linford Wood parkrun1222221:45 All -  
Peacehaven parkrun17700:21:07 +
Harwich parkrun191021:22 All -  
Lancing Beach Green parkrun1141400:21:08 +
Fulbourn Hospital parkrun1344724:59 All -  
Springburn parkrun, Glasgow13300:18:05 +
Gunpowder parkrun12217:34 All -  
Market Harborough parkrun1303100:21:17 +
Dartford Heath parkrun1171722:06 All -  
Amager Fælled parkrun1333700:24:23 +
Sandhurst Memorial parkrun1537328:54 All -  
Hanworth parkrun1364000:24:26 +
Woodhouse Moor parkrun11117:22 All -  
Salisbury parkrun1111100:19:34 +
Sandwell Valley parkrun1455930:43 All -  
Houghton Hall parkrun1131300:21:48 +
Wyre Forest parkrun1434825:56 All -  
Chalkwell Beach parkrun1819600:24:40 +
parkrun Zalew Żyrardowski16724:38 All -  
Melksham parkrun1171700:24:31 +
Bramhall parkrun115924735:16 All -  
Thetford parkrun1161700:21:45 +
Hatfield Forest parkrun1181820:36 All -  
Pontefract parkrun1718700:24:10 +
Swansea Bay parkrun1748323:44 All -  
Downham Market Academy parkrun1121300:24:35 +
Wollaton Hall parkrun1889723:51 All -  
Fountains Abbey parkrun11100:18:03 +
Horsham parkrun14518:16 All -  
Cardiff parkrun111011700:22:02 +
Jersey parkrun16619:41 All -  
Littlehampton Prom parkrun1384300:24:22 +
Berkeley Green parkrun1233128:31 All -  
Uditore parkrun13300:20:28 +
Cardiff parkrun111011722:02 All -  
Beacon parkrun1587300:26:41 +
Ally Pally parkrun11118:09 All -  
parkrun de Rouen15500:21:41 +
Thurrock parkrun, Orsett Heath16620:41 All -  
Walthamstow parkrun11100:17:48 +
Beacon parkrun1587326:41 All -  
Shepton Mallet parkrun1121400:21:50 +
Albert parkrun, Middlesbrough1515423:17 All -  
Marine Parade parkrun17711100:29:24 +
Sherwood Pines parkrun1161821:33 All -  
Foots Cray Meadows parkrun1212300:23:17 +
Wickford Memorial parkrun1436651:15 All -  
Millennium Country parkrun, Forest of Marston Vale1373900:23:01 +
Thornbury parkrun1323428:19 All -  
Evesham parkrun1111100:21:39 +
Malling parkrun18314547:25 All -  
Southwick Country parkrun1272900:21:47 +
Itchen Valley Country parkrun1476127:37 All -  
Lydiard parkrun18800:18:25 +
Pollok parkrun, Glasgow11117:00 All -  
Sandhurst Memorial parkrun1537300:28:54 +
Eastville parkrun120525325:12 All -  
Bicester parkrun14400:20:13 +
Rutland Water parkrun1293022:44 All -  
Wimpole Estate parkrun1202100:22:14 +
Chalkwell Beach parkrun1819624:40 All -  
Markshall Estate parkrun110315600:32:26 +
Amager Fælled parkrun1333724:23 All -  
Dinton Pastures parkrun1131300:21:23 +
Hoblingwell parkrun1202423:52 All -  
Tonbridge parkrun14400:18:40 +
Belton House parkrun1141523:48 All -  
Wanstead Flats parkrun13300:17:13 +
Kagerzoom parkrun1435824:39 All -  
Woodhouse Moor parkrun11100:17:22 +
Gorleston Cliffs parkrun12217:43 All -  
Mountbatten School parkrun1323400:24:11 +
King’s Lynn parkrun1151520:07 All -  
Eastville parkrun120525300:25:12 +
Holkham parkrun1506925:37 All -  
Brixworth Country parkrun1496100:26:53 +
Horspath parkrun17410628:12 All -  
Portsmouth Lakeside parkrun19900:19:12 +
Southwick Country parkrun1272921:47 All -  
Milton Country parkrun13300:17:43 +
Rushmere parkrun1131422:39 All -  
Swanley parkrun19712500:31:18 +
Zuiderpark parkrun, Den Haag1738124:07 All -  
Springhill parkrun14400:22:18 +
Heaton parkrun13318:08 All -  
Gloucester North parkrun1101000:22:14 +
Colney Lane parkrun1495524:01 All -  
Feltham parkrun13400:24:56 +
Leicester Victoria parkrun19711626:45 All -  
Crissy Field parkrun1101200:20:40 +
Church Mead parkrun16610232:53 All -  
Ally Pally parkrun11100:18:09 +
Southend parkrun11116:28 All -  
Ashton Court parkrun1859500:22:59 +
Lydney parkrun1202123:19 All -  
Oaklands parkrun111820300:36:10 +
Edgbaston Reservoir parkrun1658626:24 All -  
Sittingbourne parkrun18800:20:56 +
Reading parkrun12217:18 All -  
Moors Valley parkrun19900:19:40 +
March parkrun15521:11 All -  
Catford parkrun1303300:22:32 +
Woodgate Valley Country Park parkrun16513245:50 All -  
Clare Castle parkrun1252700:23:04 +
Maaraue parkrun1232522:34 All -  
Harrogate parkrun13300:18:11 +
Stonehouse parkrun1131320:09 All -  
Seaford Beach parkrun1535600:22:25 +
Rheinpark parkrun1151825:30 All -  
Tring parkrun1171800:23:38 +
Edinburgh parkrun12217:00 All -  
Sandwell Valley parkrun1455900:30:43 +
Chippenham parkrun1212120:08 All -  
Basildon parkrun15500:18:13 +
Stratford-upon-Avon parkrun1202521:14 All -  
The Leas parkrun, Minster1252500:24:37 +
Henlow Bridge Lakes parkrun17511532:34 All -  
Little Stoke parkrun11100:17:03 +
Bromley parkrun13317:18 All -  
Dallas Burston Polo Club parkrun19614700:32:26 +
Houghton Hall parkrun1131321:48 All -  
Felixstowe parkrun1121200:21:07 +
Sittingbourne parkrun18820:56 All -  
Yeovil Montacute parkrun1707500:25:51 +
Sharpham Road Playing Fields parkrun1253124:41 All -  
Stockley Country parkrun111917900:35:32 +
Gadebridge parkrun1141422:22 All -  
Woolacombe Dunes parkrun19410900:31:20 +
Chilton Fields parkrun1405428:26 All -  
Harcourt Hill parkrun1171700:21:13 +
Storeys Field parkrun115121128:49 All -  
Abingdon parkrun15500:18:03 +
Hadleigh parkrun, Essex1252624:27 All -  
Eastbourne parkrun12200:17:24 +
Marple parkrun11117:15 All -  
Warwick Racecourse parkrun1486000:24:55 +
Portsmouth Lakeside parkrun19919:12 All -  
Leicester Victoria parkrun19711600:26:45 +
Grove Fields parkrun1578528:03 All -  
Broadwater parkrun110321300:35:19 +
Banbury parkrun1222321:16 All -  
Clacton Seafront parkrun19900:20:35 +
Graves parkrun11118:18 All -  
Burnham-on-Crouch parkrun18800:22:01 +
Watermead Country Park parkrun110818235:52 All -  
Ganger Farm parkrun19811400:26:34 +
Eastbourne parkrun12217:24 All -  
Folkestone parkrun1212500:21:48 +
Malahide parkrun11116:54 All -  
Mallards Pike parkrun1324600:30:57 +
Fareham parkrun16619:21 All -  
Malling parkrun18314500:47:25 +
Sutcliffe parkrun113117230:34 All -  
Rugby parkrun1181800:22:26 +
Fritton Lake parkrun11118:26 All -  
Watermead Country Park parkrun110818200:35:52 +
Bicester parkrun14420:13 All -  
Hogmoor Inclosure parkrun1262600:25:26 +
Sandringham parkrun1466330:18 All -  
East Grinstead parkrun1131400:23:10 +
Luton Wardown parkrun191019:36 All -  
Mildenhall Hub parkrun1273100:24:33 +
Cwmbran parkrun1171723:29 All -  
Marlborough Common parkrun1202100:22:48 +
Broadwater parkrun110321335:19 All -  
Blandford parkrun18900:20:11 +
Basildon parkrun15518:13 All -  
Maldon Prom parkrun11100:18:04 +
Marecchia parkrun11119:50 All -  
Edinburgh parkrun12200:17:00 +
Harleston Magpies parkrun1293525:12 All -  
The Old Showfield parkrun1636900:23:30 +
Kingsway parkrun, Gloucester1192021:20 All -  
Jersey parkrun16600:19:41 +
Bryn Bach parkrun11116:50 All -  
Chilton Fields parkrun1405400:28:26 +
Mersea Island parkrun1121220:59 All -  
Sixfields Upton parkrun18800:19:58 +
Charlton parkrun18213032:05 All -  
Pegwell Bay parkrun12200:17:40 +
parkrun de Rouen15521:41 All -  
Valentines parkrun11100:16:49 +
Dallas Burston Polo Club parkrun19614732:26 All -  
Edenbrook Country parkrun110514800:28:01 +
Ashton Court parkrun1859522:59 All -  
Henstridge Airfield parkrun18800:21:41 +
Tøyen parkrun1668526:32 All -  
Great Notley parkrun16600:20:16 +
The Great Field parkrun19313529:12 All -  
Medina I.O.W. parkrun11100:17:20 +
Castle Park parkrun1394122:34 All -  
Reading parkrun12200:17:18 +
Swanley parkrun19712531:18 All -  
Tetbury Goods Shed parkrun1253000:24:25 +
Greenwich parkrun12218:07 All -  
Lowestoft parkrun1232600:21:10 +
Neckarau parkrun1243027:11 All -  
Malahide parkrun11100:16:54 +
Bury Field parkrun1669033:07 All -  
Oxford parkrun11100:17:18 +
Clifton parkrun1101025:14 All -  
Rheinpark parkrun1151800:25:30 +
Alton Water parkrun1538335:09 All -  
Gloucester City parkrun1171900:22:35 +
Colwick parkrun18819:46 All -  
Didcot parkrun1101100:21:28 +
Melksham parkrun1171724:31 All -  
Mansfield parkrun11100:17:09 +
Markshall Estate parkrun110315632:26 All -  
7851100:16:25 +
Rogiet parkrun1151624:27 + All +
Bartley Park parkrun18415132:38 + All +
Lydiard parkrun18818:25 + All +
Little Stoke parkrun11117:03 + All +
Letchworth parkrun1141423:13 + All +
Belvoir Castle parkrun1131925:42 + All +
Andover parkrun11117:33 + All +
Rushcliffe parkrun1617323:54 + All +
Cirencester parkrun1222422:40 + All +
Southall parkrun1557531:38 + All +
Forest of Dean parkrun1182224:51 + All +
parkrun des Dougnes, Cubnezais12219:42 + All +
South Woodham Ferrers parkrun18821:14 + All +
Marine Parade parkrun17711129:24 + All +
Coventry parkrun1292920:51 + All +
Wotton parkrun1182124:45 + All +
Gloucester City parkrun1171922:35 + All +
Great Salterns parkrun19212430:27 + All +
Bedworth parkrun1171722:14 + All +
University Parks parkrun119032631:42 + All +
Hampstead Heath parkrun11117:45 + All +
Great Denham parkrun16619:27 + All +
Downham Market Academy parkrun1121324:35 + All +
Ipswich parkrun11117:34 + All +
Sixfields Upton parkrun18819:58 + All +
Rendlesham Forest parkrun1264637:01 + All +
8671116:25 All  


Volunteer Summary

RoleOccasions
- Run Director - 94
- Timekeeper - 59
- Token Sorting - 3
- Results Processor - 87
- Photographer - 6
- Communications Person - 10
- Marshal - 39
- Pre-event Setup - 130
- Equipment Storage and Delivery - 128
- Other - 23
- Barcode Scanning - 55
- Post-event Close Down - 45
- Finish Tokens - 15
- Number Checker - 2
- First Timers Welcome - 68
- Funnel Manager - 15
- Finish Token Support - 9
- Tail Walker - 29
- Volunteer Co-ordinator - 146
- Report Writer - 97
- Backup Timer - 3
- Warm Up Leader - 16
- Car Park Marshal - 1
- Event Day Course Check - 8
- parkwalker - 9
Total Credits396

+ Run Director +

99
+ Timekeeper + 94
+ Token Sorting + 12
+ Results Processor + 87
+ Photographer + 6
+ Communications Person + 10
+ Marshal + 54
+ Pre-event Setup + 148
+ Equipment Storage and Delivery + 130
+ Other + 26
+ Barcode Scanning + 78
+ Post-event Close Down + 51
+ Finish Tokens + 21
+ Number Checker + 2
+ First Timers Welcome + 82
+ Funnel Manager + 15
+ Finish Token Support + 12
+ Tail Walker + 29
+ Volunteer Co-ordinator + 148
+ Report Writer + 100
+ Backup Timer + 3
+ Warm Up Leader + 16
+ Car Park Marshal + 1
+ Event Day Course Check + 14
+ parkwalker + 10
Total Credits499

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. +Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here.



Freedom parkruns

DateTimeLocation
25/09/201200:17:38Woodley
24/06/201200:17:12Bushy Park
03/10/201100:17:37Woodhouse Moor
20/08/201100:17:44Bushy Park
26/06/201100:17:44Bushy Park
05/03/201100:17:40Bushy Park
03/01/201100:18:06Bushy Park


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
5819/07/202125/07/2021100:27:45
5712/07/202118/07/2021200:29:00
5605/07/202111/07/2021400:27:06
5421/06/202127/06/2021100:30:52
5314/06/202120/06/2021200:26:47
5207/06/202113/06/2021100:30:00
4917/05/202123/05/2021100:30:55
4810/05/202116/05/2021200:32:25
4703/05/202109/05/2021100:42:06
4626/04/202102/05/2021100:35:47
4305/04/202111/04/2021100:45:41
3801/03/202107/03/2021100:37:50
3004/01/202110/01/2021100:50:26
2928/12/202003/01/2021200:28:16
2821/12/202027/12/2020300:27:08
2714/12/202020/12/2020200:38:28
2607/12/202013/12/2020100:38:10
2530/11/202006/12/2020100:29:00
2423/11/202029/11/2020200:31:00
2316/11/202022/11/2020200:29:19
2209/11/202015/11/2020200:32:02
2102/11/202008/11/2020100:50:37
2026/10/202001/11/2020300:28:50
1919/10/202025/10/2020200:30:45
1812/10/202018/10/2020200:30:27
1705/10/202011/10/2020400:28:46
1628/09/202004/10/2020200:28:35
1521/09/202027/09/2020300:27:49
1414/09/202020/09/2020200:27:40
1307/09/202013/09/2020400:28:16
1231/08/202006/09/2020300:28:35
1124/08/202030/08/2020300:27:31
1017/08/202023/08/2020200:26:55
910/08/202016/08/2020100:27:59
803/08/202009/08/2020100:28:47
727/07/202002/08/2020100:41:21
620/07/202026/07/2020100:28:12
513/07/202019/07/2020100:35:00
406/07/202012/07/2020100:32:18
329/06/202005/07/2020200:27:25
222/06/202028/06/2020200:27:48
115/06/202021/06/2020100:27:17
@@ -1024,78 +1137,61 @@

Danny NORMAN (A482)
- Locations: 58 + Locations: 75
- Finishers: 81,482 + Finishers: 124697
- Finishes: 386,576 + Finishes: 636582
- All-time events: 8,777 + All-time events: 13685
- Volunteers: 9,152 + Volunteers: 13160
- PBs: 58,526 + PBs: 93120
- Average finish time: 00:33:35 + Average finish time: 00:34:06
- Average finishes per participant: 4.7 + Groups: 3140
-
- Groups: 2,656 -
-

-
- Female record: - Lauren HURLEY – 16:17 - (11 Sep 2021) -
-
- Male record: - Paul MARTELLETTI – 14:57 - ( 5 Aug 2017) -
-
- Age graded record: - Sabra HARVEY - 103.73% 21:28 - ( 4 May 2019) -
+
- Stats last updated: Fri 14 Apr 2023 12:45:50 AM UTC + Stats last updated: Mon 30 Sep 2024 12:46:01 AM UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -1129,8 +1235,8 @@

Danny NORMAN (A482) - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/88720/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/88720/all/index.html index fbe9f4d9..be105334 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/88720/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/88720/all/index.html @@ -14,6 +14,8 @@ + results | parkrun USA - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -57,7 +53,7 @@
@@ -69,34 +65,25 @@
@@ -121,631 +108,729 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club + + Member of the Volunteer 250 club

- 299 parkruns total + 345 parkruns total

View summary stats for this parkrunner
- Most recent age category was VM55-59 + Most recent age category was VM60-64

Summary Stats for All Locations -
FastestAverage
(mean)
Slowest
Time21:4025:2552:00
Age Grading69.71%60.41%29.55%
Overall Position648.88374

+
FastestAverage
(mean)
Slowest
Time21:3625:2654:59
Age Grading72.99%60.80%28.92%
Overall Position648.44374

Best Overall Annual Achievements -
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:22:3769.71%

+
YearBest TimeBest Age Grading
201000:21:4165.87%
201100:21:4065.92%
201200:21:4166.95%
201300:21:4667.07%
201400:21:5467.35%
201500:21:4867.66%
201600:24:4959.91%
201700:23:3264.24%
201800:22:2667.38%
201900:22:5066.72%
202000:24:5561.67%
202100:24:3263.72%
202200:22:5468.85%
202300:21:3672.99%
202400:22:0272.16%

All Results -
EventRun DateRun NumberPosTimeAge
Grade
PB?
Halifax08/04/20233313225:0063.07% +
EventRun DateRun NumberPosTimeAge
Grade
PB?
Fountains Abbey28/09/20244619824:2665.62% +   +
Halifax21/09/20244044524:5864.22% +   +
Thames Path, Woolwich14/09/2024686323:4967.32% +   +
Whinlatter Forest31/08/20242585330:1752.50% +   +
Worsley Woods24/08/20245618824:4664.20% +   +
Dolgellau17/08/20243649954:5928.92% +   +
York10/08/202451313522:5569.38% +   +
Barnsley27/07/20246404325:0563.39% +   +
Halifax20/07/20243956225:0963.22% +   +
Potternewton06/07/20242123625:0463.43% +   +
Carlisle Park22/06/20241363325:4461.79% +   +
Ford08/06/20242202525:0063.60% +   +
University of Stirling25/05/20241683723:5266.62% +   +
Isabel Trail18/05/20241873422:0272.16% +   +
Halifax11/05/20243854524:5763.73% +   +
Halifax04/05/20243842924:2665.08% +   +
Hyndburn27/04/20242593125:5161.51% +   +
Zuiderpark20/04/20241261722:0372.11% +   +
Halifax13/04/20243813524:3764.59% +   +
Conyngham Hall30/03/20241773824:5563.81% +   +
Jubilee09/03/20241421926:4259.55% +   +
Oakwell Hall17/02/20243453626:3359.89% +   +
Dewsbury10/02/202453610128:1556.28% +   +
Halifax03/02/20243716528:5055.14% +   +
Rothwell01/01/20242575724:2065.34% +   +
Cross Flatts30/12/20234753724:1665.52% +   +
Beacon Hill Country Park02/12/2023402325:3662.11% +   +
Centre Vale25/11/20231593626:3759.74% + PB + +   +
Conwy18/11/20233764424:5363.90% +   +
Penistone28/10/20231393724:2065.34%   -
Fulham Palace01/04/202339110924:0965.29% +
Wakefield Thornes23/09/20233745824:2964.94%   -
Halifax25/03/20233291624:4363.79% +
Halifax16/09/20233532123:4367.04%   -
Halifax18/03/20233282326:4758.87% +
Hafan Pwllheli02/09/20231302726:4859.33%   -
Halifax04/03/20233273825:1962.28% +
Clitheroe Castle26/08/20231982525:4161.39%   -
Myrtle25/02/20231593824:5263.40% +
Glossop12/08/20233152824:2564.57% +   +
Halifax05/08/20233473024:4363.79% +   +
Huddersfield29/07/20235456722:4769.20% +   +
Brighouse15/07/20232544223:5366.02% PB   -
Halifax18/02/20233252926:0360.52% +
Stratford Park, Stroud01/07/20231253126:2959.53%   -
Halifax11/02/20233243124:0365.56% +
Wetherby24/06/20233094124:4663.66%   -
Bradford04/02/20235795022:3769.71% +
Halifax10/06/20233402524:0265.60%   -
Bowling Park28/01/202379924:1165.20% +
Halifax03/06/20233392124:1365.11%   -
Bramley21/01/20233004925:3461.67% +
Long Eaton20/05/20233306921:3672.99%   -
Halifax14/01/20233213325:5260.95% +
Halifax06/05/20233352423:4566.39%   -
Halifax07/01/20233203026:2659.65% +
Keswick29/04/20233904121:3672.99% + PB +   -
Chevin Forest01/01/2023703026:4758.87% +
Halifax22/04/20233334725:0262.98%   -
Nostell31/12/20223614325:0063.07% +
Halifax08/04/20233313225:0063.07%   -
Halifax24/12/20223173125:4661.19% +
Fulham Palace01/04/202339110924:0965.29%   -
Rothay Park03/12/2022732724:4863.58% +
Halifax25/03/20233291624:4363.79%   -
Temple Newsam26/11/20224172925:1462.48% +
Halifax18/03/20233282326:4758.87% +   +
Halifax04/03/20233273825:1962.28% +   +
Myrtle25/02/20231593824:5263.40% PB   -
Conkers19/11/20225485624:1465.06% +
Halifax18/02/20233252926:0360.52% +   +
Halifax11/02/20233243124:0365.56% +   +
Lister Park, Bradford04/02/20235795022:3769.71%   -
Brighouse12/11/20222213725:1762.36% +
Bowling Park28/01/202379924:1165.20%   -
Halifax05/11/20223122424:5163.45% +
Bramley21/01/20233004925:3461.67%   -
Oakwell Hall22/10/20222974026:1060.25% +
Halifax14/01/20233213325:5260.95% +   +
Halifax07/01/20233203026:2659.65% +   +
Chevin Forest01/01/2023703026:4758.87% +   +
Nostell31/12/20223614325:0063.07% +   +
Halifax24/12/20223173125:4661.19% +   +
Rothay Park03/12/2022732724:4863.58% +   +
Temple Newsam26/11/20224172925:1462.48% + PB +   -
Halifax15/10/202230910749:5431.60% +
Conkers19/11/20225485624:1465.06%   -
Crosby08/10/20222833525:3861.51% +
Brighouse12/11/20222213725:1762.36%   -
Alness01/10/20221801024:0965.29% +
Halifax05/11/20223122424:5163.45%   -
Victoria24/09/20223736722:5468.85% +
Oakwell Hall22/10/20222974026:1060.25%   -
Halifax17/09/20223052625:0063.07% +
Halifax15/10/202230910749:5431.60%   -
Centre Vale10/09/20221034428:4454.87% +
Crosby08/10/20222833525:3861.51%   -
Halifax03/09/20223033125:3361.71% +
Alness01/10/20221801024:0965.29%   -
Skipton27/08/20224035325:3561.11% +
Victoria24/09/20223736722:5468.85%   -
Halifax20/08/20223012824:5262.87% +
Halifax17/09/20223052625:0063.07%   -
Halifax06/08/20222996426:0360.01% +
Centre Vale10/09/20221034428:4454.87%   -
Armley30/07/20221432724:2863.90% +
Halifax03/09/20223033125:3361.71%   -
Halifax16/07/20222962524:2663.98% +
Skipton27/08/20224035325:3561.11%   -
Halifax02/07/20222942524:4863.04% +
Halifax20/08/20223012824:5262.87%   -
Halifax18/06/20222922424:5462.78% +
Halifax06/08/20222996426:0360.01%   -
The Pastures11/06/2022991826:2159.33% +
Armley30/07/20221432724:2863.90%   -
Halifax04/06/20222913826:4858.33% +
Halifax16/07/20222962524:2663.98%   -
Horton Park28/05/20222942225:1262.04% +
Halifax02/07/20222942524:4863.04%   -
Bushy Park21/05/202287737424:0664.87% +
Halifax18/06/20222922424:5462.78%   -
Halifax07/05/20222877529:3552.85% +
The Pastures11/06/2022991826:2159.33%   -
Harrogate30/04/202246716226:4458.48% +
Halifax04/06/20222913826:4858.33%   -
Halifax23/04/20222854927:0057.90% +
Horton Park28/05/20222942225:1262.04%   -
Halifax09/04/20222834526:3758.74% +
Bushy Park21/05/202287737424:0664.87%   -
Halifax02/04/20222822924:4463.21% +
Halifax07/05/20222877529:3552.85%   -
Pendle26/03/20223443126:1659.52% +
Harrogate30/04/202246716226:4458.48%   -
Queen’s, Glasgow12/03/2022487925:2961.35% +
Halifax23/04/20222854927:0057.90%   -
Halifax05/03/20222784925:3761.03% +
Halifax09/04/20222834526:3758.74%   -
Middleton Woods26/02/20221221424:5562.74% +
Halifax02/04/20222822924:4463.21% +   +
Pendle26/03/20223443126:1659.52% +   +
Queen’s, Glasgow12/03/2022487925:2961.35% +   +
Halifax05/03/20222784925:3761.03% +   +
Middleton Woods26/02/20221221424:5562.74% PB   -
Halifax19/02/20222764426:3458.85% +
Halifax19/02/20222764426:3458.85%   -
Halifax12/02/20222754526:0260.05% +
Halifax12/02/20222754526:0260.05%   -
Warwick Racecourse05/02/2022478224:0664.87% +
Warwick Racecourse05/02/2022478224:0664.87%   -
Roberts Park29/01/2022167524:5462.78% +
Roberts Park29/01/2022167524:5462.78%   -
Halifax22/01/20222722925:3461.15% +
Halifax22/01/20222722925:3461.15%   -
Halifax15/01/20222713924:5562.74% +
Halifax15/01/20222713924:5562.74%   -
Halifax01/01/20222705526:1459.59% +
Halifax01/01/20222705526:1459.59%   -
Halifax25/12/20212694325:3661.07% +
Halifax25/12/20212694325:3661.07%   -
Halifax18/12/20212682324:3463.64% +
Halifax18/12/20212682324:3463.64%   -
Halifax04/12/20212665230:4450.87% +
Halifax04/12/20212665230:4450.87%   -
Halifax13/11/20212646428:0855.57% +
Halifax13/11/20212646428:0855.57%   -
Halifax06/11/20212633225:5960.17% +
Halifax06/11/20212633225:5960.17%   -
Halifax16/10/20212603525:2061.71% +
Halifax16/10/20212603525:2061.71%   -
Halifax09/10/20212592124:3263.72% +
Halifax09/10/20212592124:3263.72%   -
Halifax02/10/20212584626:3358.88% +
Halifax02/10/20212584626:3358.88%   -
Halifax25/09/20212574526:4658.41% +
Halifax25/09/20212574526:4658.41%   -
Flatts Lane18/09/20211351826:5358.15% +
Flatts Lane18/09/20211351826:5358.15%   -
Halifax11/09/20212552724:5862.62% +
Halifax11/09/20212552724:5862.62%   -
Halifax28/08/20212533724:5162.37% +
Halifax28/08/20212533724:5162.37%   -
Halifax07/08/20212503324:5562.21% +
Halifax07/08/20212503324:5562.21%   -
Halifax31/07/20212494225:2261.10% +
Halifax31/07/20212494225:2261.10%   -
Halifax24/07/20212484324:3762.97% +
Halifax24/07/20212484324:3762.97%   -
Halifax14/03/20202475426:2858.06% +
Halifax14/03/20202475426:2858.06%   -
Bradford07/03/202050010125:0061.47% +
Lister Park, Bradford07/03/202050010125:0061.47%   -
Halifax29/02/20202459327:1856.29% +
Halifax29/02/20202459327:1856.29%   -
Halifax22/02/202024416142:3136.14% +
Halifax22/02/202024416142:3136.14%   -
Halifax08/02/202024213741:4636.79% +
Halifax08/02/202024213741:4636.79%   -
Halifax01/02/202024111441:1037.33% +
Halifax01/02/202024111441:1037.33%   -
Halifax25/01/202024013841:4036.88% +
Halifax25/01/202024013841:4036.88%   -
Halifax18/01/202023915647:5232.10% +
Halifax18/01/202023915647:5232.10%   -
Halifax11/01/202023817152:0029.55% +
Halifax11/01/202023817152:0029.55%   -
Halifax04/01/20202372924:5561.67% +
Halifax04/01/20202372924:5561.67%   -
Middleton Woods01/01/2020877225:2960.30% +
Middleton Woods01/01/2020877225:2960.30%   -
Temple Newsam01/01/202035015926:5856.98% +
Temple Newsam01/01/202035015926:5856.98%   -
Halifax28/12/20192362825:2260.58% +
Halifax28/12/20192362825:2260.58%   -
Carlisle21/12/20193577126:0558.91% +
Carlisle21/12/20193577126:0558.91%   -
Halifax14/12/20192332726:3057.99% +
Halifax14/12/20192332726:3057.99%   -
Halifax07/12/20192323925:3959.91% +
Halifax07/12/20192323925:3959.91%   -
Horton Park23/11/20192332423:1566.09% +
Horton Park23/11/20192332423:1566.09%   -
Halifax09/11/20192294525:1360.94% +
Halifax09/11/20192294525:1360.94%   -
Halifax02/11/20192282025:1560.86% +
Halifax02/11/20192282025:1560.86%   -
Halifax12/10/20192263425:1061.06% +
Halifax12/10/20192263425:1061.06%   -
Halifax05/10/20192253325:3560.07% +
Halifax05/10/20192253325:3560.07%   -
Springburn28/09/20192711623:1466.14% +
Springburn28/09/20192711623:1466.14%   -
Halifax14/09/20192224425:1860.74% +
Halifax14/09/20192224425:1860.74%   -
Halifax07/09/20192215926:1558.54% +
Halifax07/09/20192215926:1558.54%   -
Halifax24/08/20192193024:4461.59% +
Halifax24/08/20192193024:4461.59%   -
Halifax17/08/20192184825:5858.66% +
Halifax17/08/20192184825:5858.66%   -
Southport03/08/20191695723:5763.60% +
Southport03/08/20191695723:5763.60%   -
Halifax27/07/20192154726:0858.29% +
Halifax27/07/20192154726:0858.29%   -
Halifax20/07/20192143425:0460.77% +
Halifax20/07/20192143425:0460.77%   -
Halifax13/07/20192133224:5361.22% +
Halifax13/07/20192133224:5361.22%   -
Halifax06/07/20192123324:3462.01% +
Halifax06/07/20192123324:3462.01%   -
Storthes Hall29/06/2019213026:2057.85% +
Storthes Hall29/06/2019213026:2057.85%   -
Halifax22/06/20192103523:5663.65% +
Halifax22/06/20192103523:5663.65%   -
Halifax15/06/20192093424:5361.22% +
Halifax15/06/20192093424:5361.22%   -
Horton Park25/05/20192071523:0865.85% +
Horton Park25/05/20192071523:0865.85%   -
Halifax04/05/20192032525:0060.93% +
Halifax04/05/20192032525:0060.93%   -
Halifax20/04/20192013123:5863.56% +
Halifax20/04/20192013123:5863.56%   -
Halifax06/04/20191992422:5066.72% +
Halifax06/04/20191992422:5066.72%   -
Cliffe Castle30/03/2019301725:1860.21% +
Cliffe Castle30/03/2019301725:1860.21%   -
Pollok23/03/20195257223:5863.56% +
Pollok23/03/20195257223:5863.56%   -
Halifax16/03/20191966030:3749.76% +
Halifax16/03/20191966030:3749.76%   -
Halifax02/03/20191945124:4461.59% +
Halifax02/03/20191945124:4461.59%   -
Halifax16/02/20191924525:5358.85% +
Halifax16/02/20191924525:5358.85%   -
Myrtle02/02/2019164325:0560.73% +
Myrtle02/02/2019164325:0560.73%   -
Halifax26/01/20191914223:2365.15% +
Halifax26/01/20191914223:2365.15%   -
Halifax12/01/20191895125:2260.05% +
Halifax12/01/20191895125:2260.05%   -
Halifax05/01/20191884524:2962.22% +
Halifax05/01/20191884524:2962.22%   -
Horton Park01/01/20191873324:0063.47% +
Horton Park01/01/20191873324:0063.47%   -
Halifax29/12/20181876928:2953.48% +
Halifax29/12/20181876928:2953.48%   -
Halifax08/12/20181839532:2447.02% +
Halifax08/12/20181839532:2447.02%   -
Keswick01/12/20182344323:3964.41% +
Keswick01/12/20182344323:3964.41%   -
Horton Park27/10/20181761424:2162.56% +
Horton Park27/10/20181761424:2162.56%   -
Dishley, Loughborough13/10/2018125724:2562.39% +
Dishley, Loughborough13/10/2018125724:2562.39%   -
Watergrove06/10/20182141227:5754.50% +
Watergrove06/10/20182141227:5754.50%   -
Halifax29/09/20181737129:1152.20% +
Halifax29/09/20181737129:1152.20%   -
Halifax08/09/20181703525:4159.31% +
Halifax08/09/20181703525:4159.31%   -
Dalby Forest01/09/20181253223:0665.95% +
Dalby Forest01/09/20181253223:0665.95%   -
Whinlatter Forest11/08/2018303227:2355.20% +
Whinlatter Forest11/08/2018303227:2355.20%   -
Bramley04/08/20181572524:0662.72% +
Bramley04/08/20181572524:0662.72%   -
Halifax28/07/20181643224:2761.83% +
Halifax28/07/20181643224:2761.83%   -
Bradford21/07/20184184222:2667.38% +
Lister Park, Bradford21/07/20184184222:2667.38%   -
Halifax07/07/20181613824:4261.20% +
Halifax07/07/20181613824:4261.20%   -
Fountains Abbey23/06/20182184822:2667.38% +
Fountains Abbey23/06/20182184822:2667.38%   -
Pontefract26/05/20183646723:3064.33% +
Pontefract26/05/20183646723:3064.33%   -
Halifax19/05/20181554826:1757.51% +
Halifax19/05/20181554826:1757.51%   -
Halifax12/05/20181543724:3061.70% +
Halifax12/05/20181543724:3061.70%   -
Halifax05/05/20181536727:3354.87% +
Halifax05/05/20181536727:3354.87%   -
Halifax21/04/20181513324:2861.78% +
Halifax21/04/20181513324:2861.78%   -
Halifax14/04/20181503724:2461.95% +
Halifax14/04/20181503724:2461.95%   -
Druridge Bay07/04/20181924223:3564.10% +
Druridge Bay07/04/20181924223:3564.10%   -
Halifax31/03/201814813850:3329.90% +
Halifax31/03/201814813850:3329.90%   -
Halifax24/03/20181476027:0355.88% +
Halifax24/03/20181476027:0355.88%   -
Halifax10/03/20181466427:2755.07% +
Halifax10/03/20181466427:2755.07%   -
Halifax24/02/20181452925:1259.99% +
Halifax24/02/20181452925:1259.99%   -
Halifax17/02/20181442223:4763.56% +
Halifax17/02/20181442223:4763.56%   -
Horton Park03/02/20181401624:3761.41% +
Horton Park03/02/20181401624:3761.41%   -
Halifax13/01/20181414025:5158.48% +
Halifax13/01/20181414025:5158.48%   -
Halifax06/01/20181405025:5858.22% +
Halifax06/01/20181405025:5858.22%   -
Halifax23/12/20171383724:1662.29% +
Halifax23/12/20171383724:1662.29%   -
Keswick02/12/20171834023:5463.25% +
Keswick02/12/20171834023:5463.25%   -
Bradford04/11/20173876623:3264.24% +
Lister Park, Bradford04/11/20173876623:3264.24%   -
Halifax28/10/20171334225:1060.07% +
Halifax28/10/20171334225:1060.07%   -
Halifax07/10/201713014034:4343.54% +
Halifax07/10/201713014034:4343.54%   -
Portobello09/09/20171228024:1662.29% +
Portobello09/09/20171228024:1662.29%   -
Halifax02/09/20171253525:0160.43% +
Halifax02/09/20171253525:0160.43%   -
Sewerby26/08/20173009726:0457.48% +
Sewerby26/08/20173009726:0457.48%   -
Halifax19/08/20171235927:0455.36% +
Halifax19/08/20171235927:0455.36%   -
Horton Park05/08/20171161625:3658.53% +
Horton Park05/08/20171161625:3658.53%   -
Halifax01/07/20171165226:2956.58% +
Halifax01/07/20171165226:2956.58%   -
Roundhay24/06/201732215726:5555.67% +
Roundhay24/06/201732215726:5555.67%   -
Halifax17/06/20171156528:0753.29% +
Halifax17/06/20171156528:0753.29%   -
Halifax10/06/20171148546:5831.90% +
Halifax10/06/20171148546:5831.90%   -
Horton Park31/12/2016854033:0945.20% +
Horton Park31/12/2016854033:0945.20%   -
Halifax07/05/20165914750:0529.68% +
Halifax07/05/20165914750:0529.68%   -
Halifax30/04/2016583824:4959.91% +
Halifax30/04/2016583824:4959.91%   -
Halifax09/04/2016553225:3758.04% +
Halifax09/04/2016553225:3758.04%   -
Halifax02/04/2016548846:0532.26% +
Halifax02/04/2016548846:0532.26%   -
Halifax19/03/2016524726:4055.75% +
Halifax19/03/2016524726:4055.75%   -
Halifax05/09/2015262322:4365.44% +
Halifax05/09/2015262322:4365.44%   -
Halifax18/07/2015192223:2463.03% +
Halifax18/07/2015192223:2463.03%   -
Halifax11/07/2015181322:2166.00% +
Halifax11/07/2015181322:2166.00%   -
Halifax27/06/201516822:1366.39% +
Halifax27/06/201516822:1366.39% PB   -
Horton Park20/06/201541322:1866.14% +
Horton Park20/06/201541322:1866.14%   -
Sewerby30/05/20151853323:1863.30% +
Sewerby30/05/20151853323:1863.30%   -
Fell Foot09/05/2015281722:5764.27% +
Fell Foot09/05/2015281722:5764.27%   -
Bradford18/04/20152543521:4867.66% +
Lister Park, Bradford18/04/20152543521:4867.66%   -
Halifax28/03/201542224:0461.29% +
Halifax28/03/201542224:0461.29%   -
Milton Country07/03/20152597522:4065.07% +
Milton Country07/03/20152597522:4065.07%   -
Bradford14/02/20152459424:5059.40% +
Lister Park, Bradford14/02/20152459424:5059.40%   -
Bradford03/01/20152418324:0561.25% +
Lister Park, Bradford03/01/20152418324:0561.25%   -
Bradford25/12/20142402722:2765.70% +
Lister Park, Bradford25/12/20142402722:2765.70%   -
Bradford29/11/20142365423:4062.32% +
Lister Park, Bradford29/11/20142365423:4062.32%   -
Bradford22/11/20142357224:2860.29% +
Lister Park, Bradford22/11/20142357224:2860.29%   -
Edinburgh25/10/20142606721:5467.35% +
Edinburgh25/10/20142606721:5467.35%   -
Woodhouse Moor18/10/20143698222:1866.14% +
Woodhouse Moor18/10/20143698222:1866.14%   -
Bradford27/09/20142277023:1563.44% +
Lister Park, Bradford27/09/20142277023:1563.44%   -
Bradford13/09/20142253822:3865.17% +
Lister Park, Bradford13/09/20142253822:3865.17%   -
Bradford23/08/20142223522:4964.13% +
Lister Park, Bradford23/08/20142223522:4964.13%   -
Pontefract16/08/20141683222:0866.11% +
Pontefract16/08/20141683222:0866.11%   -
Bradford09/08/20142205923:4461.66% +
Lister Park, Bradford09/08/20142205923:4461.66%   -
Keswick02/08/2014183323:3362.14% +
Keswick02/08/2014183323:3362.14%   -
Bradford26/07/20142184323:1762.85% +
Lister Park, Bradford26/07/20142184323:1762.85%   -
Bradford12/07/20142164323:1862.80% +
Lister Park, Bradford12/07/20142164323:1862.80%   -
Bradford05/07/20142153723:2262.62% +
Lister Park, Bradford05/07/20142153723:2262.62%   -
Bradford28/06/20142144823:1562.94% +
Lister Park, Bradford28/06/20142144823:1562.94%   -
Bradford21/06/20142133422:4064.56% +
Lister Park, Bradford21/06/20142133422:4064.56%   -
Bradford14/06/20142124822:4864.18% +
Lister Park, Bradford14/06/20142124822:4864.18%   -
Bradford07/06/20142114622:3664.75% +
Lister Park, Bradford07/06/20142114622:3664.75%   -
Bradford31/05/20142104923:1562.94% +
Lister Park, Bradford31/05/20142104923:1562.94%   -
Bradford24/05/20142094422:2565.28% +
Lister Park, Bradford24/05/20142094422:2565.28%   -
Bradford17/05/20142083822:4264.46% +
Lister Park, Bradford17/05/20142083822:4264.46%   -
Burnley10/05/2014995725:2157.73% +
Burnley10/05/2014995725:2157.73%   -
Bradford03/05/20142066823:0063.62% +
Lister Park, Bradford03/05/20142066823:0063.62%   -
Bradford26/04/20142058325:0858.22% +
Lister Park, Bradford26/04/20142058325:0858.22%   -
Bradford19/04/201420415626:4254.81% +
Lister Park, Bradford19/04/201420415626:4254.81%   -
Bradford12/04/20142034922:3464.84% +
Lister Park, Bradford12/04/20142034922:3464.84%   -
Bradford05/04/20142023822:3864.65% +
Lister Park, Bradford05/04/20142023822:3864.65%   -
Bradford29/03/20142014322:2765.18% +
Lister Park, Bradford29/03/20142014322:2765.18%   -
Bradford22/03/20142007923:0363.49% +
Lister Park, Bradford22/03/20142007923:0363.49%   -
Bradford15/03/20141993222:1965.57% +
Lister Park, Bradford15/03/20141993222:1965.57%   -
Bradford08/03/20141985922:4964.13% +
Lister Park, Bradford08/03/20141985922:4964.13%   -
Bradford01/03/20141976024:0460.80% +
Lister Park, Bradford01/03/20141976024:0460.80%   -
Bradford22/02/20141964322:4764.23% +
Lister Park, Bradford22/02/20141964322:4764.23%   -
Bradford08/02/20141945323:2562.49% +
Lister Park, Bradford08/02/20141945323:2562.49%   -
Bradford01/02/20141934422:5463.90% +
Lister Park, Bradford01/02/20141934422:5463.90%   -
Bradford25/01/20141924522:2465.33% +
Lister Park, Bradford25/01/20141924522:2465.33%   -
Bradford18/01/20141914422:4364.42% +
Lister Park, Bradford18/01/20141914422:4364.42%   -
Bradford11/01/20141905822:5064.09% +
Lister Park, Bradford11/01/20141905822:5064.09%   -
Bradford04/01/20141894222:5263.99% +
Lister Park, Bradford04/01/20141894222:5263.99%   -
Bradford28/12/20131883722:4864.18% +
Lister Park, Bradford28/12/20131883722:4864.18%   -
Bradford21/12/20131877624:4859.01% +
Lister Park, Bradford21/12/20131877624:4859.01%   -
Bradford14/12/20131863122:0366.36% +
Lister Park, Bradford14/12/20131863122:0366.36%   -
Bradford30/11/20131844921:4967.07% +
Lister Park, Bradford30/11/20131844921:4967.07%   -
Bradford23/11/20131833322:1565.77% +
Lister Park, Bradford23/11/20131833322:1565.77%   -
Bradford16/11/20131822221:5866.62% +
Lister Park, Bradford16/11/20131822221:5866.62%   -
Bradford09/11/20131814922:1665.72% +
Lister Park, Bradford09/11/20131814922:1665.72%   -
Bradford02/11/20131804622:3264.94% +
Lister Park, Bradford02/11/20131804622:3264.94%   -
Bradford19/10/20131783822:1265.92% +
Lister Park, Bradford19/10/20131783822:1265.92%   -
Bradford12/10/20131774622:4164.51% +
Lister Park, Bradford12/10/20131774622:4164.51%   -
Bradford28/09/20131753122:1965.57% +
Lister Park, Bradford28/09/20131753122:1965.57%   -
Bradford21/09/20131744122:0266.41% +
Lister Park, Bradford21/09/20131744122:0266.41%   -
Bradford14/09/20131732222:1765.67% +
Lister Park, Bradford14/09/20131732222:1765.67%   -
Bradford07/09/20131723922:2165.47% +
Lister Park, Bradford07/09/20131723922:2165.47%   -
Sewerby31/08/2013941222:0865.59% +
Sewerby31/08/2013941222:0865.59%   -
Bradford24/08/20131703122:2264.90% +
Lister Park, Bradford24/08/20131703122:2264.90%   -
Bradford17/08/20131693221:4866.59% +
Lister Park, Bradford17/08/20131693221:4866.59%   -
Bradford10/08/20131683721:4866.59% +
Lister Park, Bradford10/08/20131683721:4866.59%   -
Clumber Park03/08/201361121:4666.69% +
Clumber Park03/08/201361121:4666.69%   -
Bradford27/07/20131663622:1565.24% +
Lister Park, Bradford27/07/20131663622:1565.24%   -
Bradford20/07/20131653522:2564.76% +
Lister Park, Bradford20/07/20131653522:2564.76%   -
Bradford13/07/20131644022:3464.33% +
Lister Park, Bradford13/07/20131644022:3464.33%   -
Bradford06/07/20131633922:2164.95% +
Lister Park, Bradford06/07/20131633922:2164.95%   -
Bradford29/06/20131625822:4263.95% +
Lister Park, Bradford29/06/20131625822:4263.95%   -
Bradford15/06/20131609725:0957.72% +
Lister Park, Bradford15/06/20131609725:0957.72%   -
Bradford08/06/20131594022:3464.33% +
Lister Park, Bradford08/06/20131594022:3464.33%   -
Bradford01/06/20131585023:0862.75% +
Lister Park, Bradford01/06/20131585023:0862.75%   -
Bradford18/05/20131563123:1662.39% +
Lister Park, Bradford18/05/20131563123:1662.39%   -
Bradford11/05/20131555323:5460.74% +
Lister Park, Bradford11/05/20131555323:5460.74%   -
Bradford27/04/20131534323:0362.98% +
Lister Park, Bradford27/04/20131534323:0362.98%   -
Bradford13/04/20131516424:0360.36% +
Lister Park, Bradford13/04/20131516424:0360.36%   -
Bradford06/04/20131504723:0163.07% +
Lister Park, Bradford06/04/20131504723:0163.07%   -
Bradford30/03/20131494425:2956.97% +
Lister Park, Bradford30/03/20131494425:2956.97%   -
Bradford09/03/20131476124:4558.65% +
Lister Park, Bradford09/03/20131476124:4558.65%   -
Bradford02/03/20131465223:3061.77% +
Lister Park, Bradford02/03/20131465223:3061.77%   -
Bradford23/02/20131455924:3559.05% +
Lister Park, Bradford23/02/20131455924:3559.05%   -
Bradford16/02/20131447423:5360.78% +
Lister Park, Bradford16/02/20131447423:5360.78%   -
Bradford09/02/20131437224:4158.81% +
Lister Park, Bradford09/02/20131437224:4158.81%   -
Bradford02/02/201314211027:2452.98% +
Lister Park, Bradford02/02/201314211027:2452.98%   -
Bradford05/01/20131397724:5358.34% +
Lister Park, Bradford05/01/20131397724:5358.34%   -
Bradford29/12/20121386425:4456.41% +
Lister Park, Bradford29/12/20121386425:4456.41%   -
Bradford24/11/20121335825:1857.38% +
Lister Park, Bradford24/11/20121335825:1857.38%   -
Bradford17/11/20121322723:0962.71% +
Lister Park, Bradford17/11/20121322723:0962.71%   -
Bradford20/10/20121286223:3961.38% +
Lister Park, Bradford20/10/20121286223:3961.38%   -
Bradford13/10/20121274823:1462.48% +
Lister Park, Bradford13/10/20121274823:1462.48%   -
Bradford06/10/20121264022:4663.76% +
Lister Park, Bradford06/10/20121264022:4663.76%   -
Bradford29/09/20121256224:3059.25% +
Lister Park, Bradford29/09/20121256224:3059.25%   -
Bradford08/09/201212216032:5144.19% +
Lister Park, Bradford08/09/201212216032:5144.19%   -
Bradford01/09/20121212921:4166.95% +
Lister Park, Bradford01/09/20121212921:4166.95%   -
Wycombe Rye18/08/201232622:3563.76% +
Wycombe Rye18/08/201232622:3563.76%   -
Bradford11/08/20121183121:5865.55% +
Lister Park, Bradford11/08/20121183121:5865.55%   -
Hanley28/07/201242622:0365.31% +
Hanley28/07/201242622:0365.31%   -
Bradford21/07/20121151521:4266.36% +
Lister Park, Bradford21/07/20121151521:4266.36%   -
Bradford07/07/20121132922:3663.72% +
Lister Park, Bradford07/07/20121132922:3663.72%   -
Bradford30/06/20121122322:3463.81% +
Lister Park, Bradford30/06/20121122322:3463.81%   -
Bradford26/05/20121072722:4863.16% +
Lister Park, Bradford26/05/20121072722:4863.16%   -
Bradford12/05/20121054123:0562.38% +
Lister Park, Bradford12/05/20121054123:0562.38%   -
Bradford21/04/20121022422:0465.26% +
Lister Park, Bradford21/04/20121022422:0465.26%   -
Bradford07/04/20121002622:0165.40% +
Lister Park, Bradford07/04/20121002622:0165.40%   -
Bradford31/03/2012992723:2061.71% +
Lister Park, Bradford31/03/2012992723:2061.71%   -
Bradford18/02/2012933123:2661.45% +
Lister Park, Bradford18/02/2012933123:2661.45%   -
Bradford04/02/2012923023:2361.58% +
Lister Park, Bradford04/02/2012923023:2361.58%   -
Bradford19/11/2011836929:5048.27% +
Lister Park, Bradford19/11/2011836929:5048.27%   -
Bradford05/11/2011816327:0553.17% +
Lister Park, Bradford05/11/2011816327:0553.17%   -
Bradford29/10/2011801421:5965.50% +
Lister Park, Bradford29/10/2011801421:5965.50%   -
Bradford10/09/2011731321:5265.85% +
Lister Park, Bradford10/09/2011731321:5265.85%   -
Bradford27/08/2011717734:4941.02% +
Lister Park, Bradford27/08/2011717734:4941.02%   -
Bradford06/08/2011681321:4065.92% +
Lister Park, Bradford06/08/2011681321:4065.92% PB   -
Bradford16/07/2011656432:0744.47% +
Lister Park, Bradford16/07/2011656432:0744.47%   -
Bradford25/06/2011621621:4965.47% +
Lister Park, Bradford25/06/2011621621:4965.47%   -
Bradford11/06/2011608733:4042.43% +
Lister Park, Bradford11/06/2011608733:4042.43%   -
Bradford23/04/2011532821:4265.82% +
Lister Park, Bradford23/04/2011532821:4265.82%   -
Bradford26/03/2011491521:5365.27% +
Lister Park, Bradford26/03/2011491521:5365.27%   -
Bradford05/03/2011461821:5565.17% +
Lister Park, Bradford05/03/2011461821:5565.17%   -
Bradford12/02/2011431522:2463.76% +
Lister Park, Bradford12/02/2011431522:2463.76%   -
Bradford25/12/2010364635:3540.14% +
Lister Park, Bradford25/12/2010364635:3540.14%   -
Bradford30/10/201029621:4165.87% +
Lister Park, Bradford30/10/201029621:4165.87% PB   -
Bradford16/10/2010271521:4865.52% +
Lister Park, Bradford16/10/2010271521:4865.52% PB   -
Bradford02/10/2010251221:5665.12% +
Lister Park, Bradford02/10/2010251221:5665.12%  

@@ -776,78 +861,61 @@

Phillip WHETTLOCK (A8
- Locations: 59 + Locations: 75
- Finishers: 82,078 + Finishers: 124697
- Finishes: 389,202 + Finishes: 636582
- All-time events: 8,831 + All-time events: 13685
- Volunteers: 9,226 + Volunteers: 13160
- PBs: 58,839 + PBs: 93120
- Average finish time: 00:33:35 + Average finish time: 00:34:06
- Average finishes per participant: 4.7 + Groups: 3140
-
- Groups: 2,672 -
-
-
- Female record: - Lauren HURLEY – 16:17 - (11 Sep 2021) -
-
- Male record: - Paul MARTELLETTI – 14:57 - ( 5 Aug 2017) -
-
- Age graded record: - Sabra HARVEY - 103.73% 21:28 - ( 4 May 2019) -
+
- Stats last updated: Mon 17 Apr 2023 12:46:21 AM UTC + Stats last updated: Mon 30 Sep 2024 12:46:01 AM UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -881,8 +959,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/88720/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/88720/index.html index 9bcd8f85..e30e8637 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/88720/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/88720/index.html @@ -14,6 +14,8 @@ + results | parkrun USA - + + gtag('config', 'G-MG7X4X82TB'); + - + - + - @@ -57,7 +53,7 @@
@@ -69,34 +65,25 @@
@@ -121,185 +108,241 @@

Phillip WHETTLOCK (A88720)

Member of the parkrun 250 Club - - Member of the Volunteer 100 club -

299 parkruns total

+ + Member of the Volunteer 250 club +

345 parkruns total

View stats for all parkruns by this parkrunner
- Most recent age category was VM55-59 -

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Halifax parkrun08/04/2023263225:0063.07%
Fulham Palace parkrun01/04/20238610924:0965.29%
Halifax parkrun25/03/2023151624:4363.79%
Halifax parkrun18/03/2023212326:4758.87%
Halifax parkrun04/03/2023293825:1962.28%
Myrtle parkrun25/02/2023333824:5263.40%
Halifax parkrun18/02/2023232926:0360.52%
Halifax parkrun11/02/2023273124:0365.56%
Bradford parkrun04/02/2023455022:3769.71%
Bowling Park parkrun28/01/20238924:1165.20%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Bradford parkrun1166600:21:40 + Most recent age category was VM60-64 +

Most Recent parkruns

EventRun DateGender
Pos
Overall PositionTimeAge
Grade
Fountains Abbey parkrun28/09/2024839824:2665.62%
Halifax parkrun21/09/2024424524:5864.22%
Thames Path parkrun, Woolwich14/09/2024586323:4967.32%
Whinlatter Forest parkrun31/08/2024395330:1752.50%
Worsley Woods parkrun24/08/2024728824:4664.20%
Dolgellau parkrun17/08/2024459954:5928.92%
York parkrun10/08/202411413522:5569.38%
Barnsley parkrun27/07/2024414325:0563.39%
Halifax parkrun20/07/2024566225:0963.22%
Potternewton parkrun06/07/2024293625:0463.43%


Event Summaries

EventparkrunsBest Gender PositionBest Position OverallBest Time  
Halifax parkrun1268822:13 + All +
Lister Park parkrun, Bradford1166621:40 + All +
Horton Park parkrun9131322:18 + All +
Keswick parkrun4253321:36 + All +
Sewerby parkrun3121222:08 + All +
Pontefract parkrun2273222:08 + All +
Brighouse parkrun2333723:53 + All +
Temple Newsam parkrun2272925:14 + All +
Fountains Abbey parkrun2394822:26 + All +
Oakwell Hall parkrun2293626:10 + All +
Whinlatter Forest parkrun2283227:23 + All +
Bramley parkrun2252524:06 + All +
Middleton Woods parkrun2121424:55 + All +
Myrtle parkrun2333824:52 + All +
Centre Vale parkrun2303626:37 + All +
Bushy parkrun130137424:06 + All +
Woodhouse Moor parkrun1778222:18 + All +
Pollok parkrun, Glasgow1667223:58 + All +
Edinburgh parkrun1646721:54 + All +
Wakefield Thornes parkrun1545824:29 All - Graph It!
Halifax parkrun1148800:22:13 +
Hyndburn parkrun1253125:51 All - Graph It!
Horton Park parkrun9131300:22:18 +
York parkrun111413522:55 All - Graph It!
Sewerby parkrun3121200:22:08 +
Milton Country parkrun1707522:40 All - Graph It!
Keswick parkrun3253300:23:33 +
Carlisle parkrun1567126:05 All - Graph It!
Pontefract parkrun2273200:22:08 +
Harrogate parkrun112316226:44 All - Graph It!
Temple Newsam parkrun2272900:25:14 +
Southport parkrun1545723:57 All - Graph It!
Myrtle parkrun2333800:24:52 +
Barnsley parkrun1414325:05 All - Graph It!
Middleton Woods parkrun2121400:24:55 +
Rothwell parkrun1535724:20 All - Graph It!
Bramley parkrun2252500:24:06 +
Huddersfield parkrun1596722:47 All - Graph It!
Druridge Bay parkrun1354200:23:35 +
Long Eaton parkrun1556921:36 All -  
Fountains Abbey parkrun1394800:22:26 +
Wycombe Rye parkrun1232622:35 All -  
Victoria parkrun, Glasgow1546700:22:54 +
Conkers parkrun1525624:14 All -  
Clumber Park parkrun1101100:21:46 +
Roundhay parkrun112815726:55 All -  
Rothay Park parkrun1202700:24:48 +
Hanley parkrun16622:03 All -  
Warwick Racecourse parkrun1638200:24:06 +
Worsley Woods parkrun1728824:46 All -  
Conkers parkrun1525600:24:14 +
Burnley parkrun1545725:21 All -  
The Pastures parkrun1161800:26:21 +
Dewsbury parkrun18610128:15 All -  
Harrogate parkrun112316200:26:44 +
Cross Flatts parkrun1303724:16 All -  
Dishley parkrun, Loughborough1535700:24:25 +
Clumber Park parkrun1101121:46 All -  
Dalby Forest parkrun1283200:23:06 +
Skipton parkrun1505325:35 All -  
Woodhouse Moor parkrun1778200:22:18 +
Flatts Lane parkrun1171826:53 All -  
Whinlatter Forest parkrun1283200:27:23 +
Victoria parkrun, Glasgow1546722:54 All -  
Watergrove parkrun, Rochdale1111200:27:57 +
Alness parkrun171024:09 All -  
Springburn parkrun, Glasgow1161600:23:14 +
Fulham Palace parkrun18610924:09 All -  
Fulham Palace parkrun18610900:24:09 +
Springburn parkrun, Glasgow1161623:14 All -  
Flatts Lane parkrun1171800:26:53 +
Druridge Bay parkrun1354223:35 All -  
Roberts Park parkrun1657500:24:54 +
Pendle parkrun1263126:16 All -  
Bowling Park parkrun18900:24:11 +
Watergrove parkrun, Rochdale1111227:57 All -  
Hanley parkrun16600:22:03 +
Wetherby parkrun1374124:46 All -  
Centre Vale parkrun1304400:28:44 +
Portobello parkrun, Edinburgh1668024:16 All -  
Wycombe Rye parkrun1232600:22:35 +
Nostell parkrun1374325:00 All -  
Carlisle parkrun1567100:26:05 +
Fell Foot parkrun, Newby Bridge1161722:57 All -  
Armley parkrun1262700:24:28 +
Conwy parkrun1394424:53 All -  
Crosby parkrun1293500:25:38 +
Glossop parkrun1242824:25 All -  
Edinburgh parkrun1646700:21:54 +
Crosby parkrun1293525:38 All -  
Fell Foot parkrun, Newby Bridge1161700:22:57 +
Dolgellau parkrun1459954:59 All -  
Bushy parkrun130137400:24:06 +
Dalby Forest parkrun1283223:06 All -  
Oakwell Hall parkrun1344000:26:10 +
Clitheroe Castle parkrun1192525:41 All -  
Pendle parkrun1263100:26:16 +
Armley parkrun1262724:28 All -  
Alness parkrun171000:24:09 +
Dishley parkrun, Loughborough1535724:25 All -  
Skipton parkrun1505300:25:35 +
Ford parkrun1202525:00 All -  
Chevin Forest parkrun1213000:26:47 +
Cliffe Castle parkrun1151725:18 All -  
Burnley parkrun1545700:25:21 +
Potternewton parkrun1293625:04 All -  
Queen’s parkrun, Glasgow1677900:25:29 +
Isabel Trail parkrun1293422:02 All -  
Roundhay parkrun112815700:26:55 +
The Pastures parkrun1161826:21 All -  
Storthes Hall parkrun1263000:26:20 +
Storthes Hall parkrun1263026:20 All -  
Southport parkrun1545700:23:57 +
Hafan Pwllheli parkrun1212726:48 All -  
Cliffe Castle parkrun1151700:25:18 +
Penistone parkrun1343724:20 All -  
Brighouse parkrun1333700:25:17 +
Conyngham Hall parkrun1363824:55 All -  
Milton Country parkrun1707500:22:40 +
Stratford Park parkrun, Stroud1303126:29 All -  
Pollok parkrun, Glasgow1667200:23:58 +
Warwick Racecourse parkrun1638224:06 All -  
Nostell parkrun1384300:25:00 +
University of Stirling parkrun1343723:52 All -  
Portobello parkrun, Edinburgh1668000:24:16 +
Jubilee parkrun1121926:42 All -  
2996600:21:40 +
Queen’s parkrun, Glasgow1677925:29 + All +
Bowling Park parkrun18924:11 + All +
Rothay Park parkrun1202724:48 + All +
Zuiderpark parkrun, Den Haag1151722:03 + All +
Carlisle Park parkrun, Morpeth1293325:44 + All +
Chevin Forest parkrun1213026:47 + All +
Roberts Park parkrun1657524:54 + All +
Beacon Hill Country Park parkrun1192325:36 + All +
Thames Path parkrun, Woolwich1586323:49 + All +
3456621:36 All  


Volunteer Summary

RoleOccasions
- Run Director - 32
- Timekeeper - 17
- Token Sorting - 5
- Results Processor - 1
- Photographer - 1
- Communications Person - 5
- Marshal - 35
- Pre-event Setup - 28
- Equipment Storage and Delivery - 5
- Other - 1
- Barcode Scanning - 27
- Post-event Close Down - 24
- Finish Tokens - 11
- Number Checker - 1
- First Timers Welcome - 77
- Funnel Manager - 12
- Finish Token Support - 10
- Tail Walker - 5
- Volunteer Co-ordinator - 10
- Report Writer - 1
- Pacer (5k only) - 5
- Backup Timer - 14
- VI Guide - 1
- Warm Up Leader - 5
- Sign Language Support - 1
- Car Park Marshal - 1
- Event Day Course Check - 25
- parkwalker - 1
Total Credits249

+ Run Director +

33
+ Timekeeper + 28
+ Token Sorting + 5
+ Results Processor + 4
+ Photographer + 1
+ Communications Person + 6
+ Marshal + 35
+ Pre-event Setup + 29
+ Equipment Storage and Delivery + 6
+ Other + 2
+ Barcode Scanning + 46
+ Post-event Close Down + 25
+ Finish Tokens + 16
+ Number Checker + 1
+ First Timers Welcome + 82
+ Funnel Manager + 16
+ Finish Token Support + 16
+ Tail Walker + 15
+ Volunteer Co-ordinator + 11
+ Report Writer + 1
+ Pacer (5k only) + 10
+ Backup Timer + 14
+ VI Guide + 1
+ Warm Up Leader + 15
+ Sign Language Support + 1
+ Car Park Marshal + 1
+ Event Day Course Check + 57
+ parkwalker + 1
Total Credits316

This table summarises the number of occasions that each volunteer role has been completed.
-Please note that the total roles may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
-Find out more here. -



Freedom parkruns

DateTimeLocation
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
+Please note that the total may differ from your total volunteer credits; if you have performed multiple tasks on the same day.
+Find out more here. +



Freedom parkruns

DateTimeLocation
13/05/202400:08:31People’s Park juniors, Halifax
27/03/202400:08:39People’s Park juniors, Halifax
03/01/202400:09:36People’s Park juniors, Halifax
04/08/202200:25:15Monsal Trail
27/06/202100:24:34Halifax
06/06/202100:27:02Halifax
27/05/202100:22:58Monsal Trail


(not)parkruns

WeekStart DateEnd Date(not)parkrunsBest Time
13326/12/202201/01/2023200:28:24
13112/12/202218/12/2022300:28:02
12928/11/202204/12/2022100:26:53
12821/11/202227/11/2022100:27:55
12424/10/202230/10/2022200:29:25
11919/09/202225/09/2022100:27:05
11415/08/202221/08/2022100:28:28
11308/08/202214/08/2022100:29:58
8921/02/202227/02/2022100:26:23
8524/01/202230/01/2022100:27:03
8310/01/202216/01/2022100:24:29
7913/12/202119/12/2021100:26:35
7622/11/202128/11/2021100:36:03
7515/11/202121/11/2021100:25:11
7408/11/202114/11/2021100:25:53
7225/10/202131/10/2021200:24:55
7011/10/202117/10/2021100:25:13
6904/10/202110/10/2021100:27:19
6506/09/202112/09/2021100:28:36
6323/08/202129/08/2021100:27:21
6109/08/202115/08/2021100:27:08
5712/07/202118/07/2021100:29:57
5528/06/202104/07/2021100:32:17
5421/06/202127/06/2021100:24:34
5207/06/202113/06/2021200:26:44
5024/05/202130/05/2021100:22:58
4917/05/202123/05/2021100:28:59
4810/05/202116/05/2021100:27:51
4703/05/202109/05/2021200:28:13
4412/04/202118/04/2021100:27:31
3508/02/202114/02/2021100:27:54
3401/02/202107/02/2021100:23:03
2026/10/202001/11/2020100:39:31
1919/10/202025/10/2020100:33:50
1628/09/202004/10/2020100:23:17
1307/09/202013/09/2020100:28:01
1124/08/202030/08/2020100:45:46
1017/08/202023/08/2020100:35:46
910/08/202016/08/2020100:23:05
727/07/202002/08/2020100:37:25
620/07/202026/07/2020100:23:17
406/07/202012/07/2020100:22:40
115/06/202021/06/2020100:44:59
@@ -328,78 +371,61 @@

Phillip WHETTLOCK (A8
- Locations: 59 -
-
- Finishers: 82,078 + Locations: 75
- Finishes: 389,202 + Finishers: 124697
- All-time events: 8,831 + Finishes: 636582
- Volunteers: 9,226 + All-time events: 13685
- PBs: 58,839 + Volunteers: 13160
- Average finish time: 00:33:35 + PBs: 93120
- Average finishes per participant: 4.7 + Average finish time: 00:34:06
- Groups: 2,672 + Groups: 3140
-
-
- Female record: - Lauren HURLEY – 16:17 - (11 Sep 2021) -
-
- Male record: - Paul MARTELLETTI – 14:57 - ( 5 Aug 2017) -
-
- Age graded record: - Sabra HARVEY - 103.73% 21:28 - ( 4 May 2019) -
+

- Stats last updated: Mon 17 Apr 2023 12:46:21 AM UTC + Stats last updated: Mon 30 Sep 2024 12:46:01 AM UTC
-

© parkrun Global Limited (Company number: 09411750)

No part of this site may be reproduced in whole or in part in any manner without the permission of the copyright owner.

Frameworks, 2 Sheen Road, Richmond, TW9 1AE

+ +
- + - - + + @@ -433,8 +469,8 @@

Phillip WHETTLOCK (A8 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/999999/all/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/999999/all/index.html index 476ecc0c..06c60c21 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/999999/all/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/999999/all/index.html @@ -14,6 +14,8 @@ + results | parkrun USA @@ -252,8 +237,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/999999/index.html b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/999999/index.html index b3588270..b3ec8053 100644 --- a/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/999999/index.html +++ b/browser-extensions/common/js/tests/ui-test/supporting-data/sites/parkrun.us/contents/parkrunner/999999/index.html @@ -14,6 +14,8 @@ + results | parkrun USA @@ -248,8 +233,8 @@

Jakub WOLSKI (A999999 - - + + \ No newline at end of file diff --git a/browser-extensions/common/js/tests/ui-test/update.sh b/browser-extensions/common/js/tests/ui-test/update.sh index 9f526f84..a9da7bb8 100644 --- a/browser-extensions/common/js/tests/ui-test/update.sh +++ b/browser-extensions/common/js/tests/ui-test/update.sh @@ -2,10 +2,14 @@ export USER_AGENT='Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, li export TARGET_ROOT_DIR="`pwd`/supporting-data/sites" export NGINX_CONF_D_ROOT_DIR="`pwd`/supporting-data/nginx/conf.d" +# This script will start getting 405 errors when running curl if we get the AWS "Are you human" check, +# so we'll keep track of how far we've got +counter=0 + # Parkrun events in Russia are suspended, add "parkrun.ru" back when they reappear -declare -a PARKRUN_HOSTNAMES=( "parkrun.org.uk" "parkrun.com.de" "parkrun.pl" "parkrun.jp" "parkrun.us" "parkrun.com.au" "parkrun.co.nz" "parkrun.ca" "parkrun.ie" "parkrun.co.za" "parkrun.us" "parkrun.sg" "parkrun.it" "parkrun.dk" "parkrun.se" "parkrun.fi" "parkrun.fr" "parkrun.no" "parkrun.my" "parkrun.co.nl" "parkrun.co.at" ) +declare -a PARKRUN_HOSTNAMES=( "parkrun.org.uk" "parkrun.com.de" "parkrun.pl" "parkrun.jp" "parkrun.us" "parkrun.com.au" "parkrun.co.nz" "parkrun.ca" "parkrun.ie" "parkrun.co.za" "parkrun.us" "parkrun.sg" "parkrun.it" "parkrun.dk" "parkrun.se" "parkrun.fi" "parkrun.fr" "parkrun.lt" "parkrun.no" "parkrun.my" "parkrun.co.nl" "parkrun.co.at" ) # 1309364: Andy Taylor, me -# 482: Danny Normal, has done most things, and at one point, all the running badges +# 482: Danny Norman, has done most things, and at one point, all the running badges # 88720: Phillip Whettlock, who helped out and has done nearly every volunteer role # 2705084: Duncan Booth, who has done lead bike, but hasn't run at all - which causes a bug that will need to be fixed! # 999999: Jakub WOLSKI, as of 2023-06-29, they have done no parkruns, which we want as a testcase. Given this is so old, it's a fair bet that this profile is not active and probably will never get any events associated with it @@ -19,6 +23,9 @@ curl --fail -H "user-agent: ${USER_AGENT}" https://images.parkrun.com/events.jso rm "${TARGET_ROOT_DIR}/images.parkrun.com/contents/events.json.temp" sleep 1 +# Stop on error +set -e + for PARKRUN_HOSTNAME in "${PARKRUN_HOSTNAMES[@]}" do @@ -28,9 +35,13 @@ do mkdir -p "${TARGET_ROOT_DIR}/${PARKRUN_HOSTNAME}/contents/parkrunner/${PARKRUNNER_ID}/all/" # Do the curls, but with a short sleep, so that we don't make a lot of requests to the servers in a short time - curl --fail -H "user-agent: ${USER_AGENT}" https://www.${PARKRUN_HOSTNAME}/parkrunner/${PARKRUNNER_ID}/all/ -o "${TARGET_ROOT_DIR}/${PARKRUN_HOSTNAME}/contents/parkrunner/${PARKRUNNER_ID}/all/index.html" + counter=$((counter+1)) + echo "Fetching page ${counter}" + curl -w "Fetched %{url_effective}\n" --fail -H "user-agent: ${USER_AGENT}" https://www.${PARKRUN_HOSTNAME}/parkrunner/${PARKRUNNER_ID}/all/ -o "${TARGET_ROOT_DIR}/${PARKRUN_HOSTNAME}/contents/parkrunner/${PARKRUNNER_ID}/all/index.html" sleep 1 - curl --fail -H "user-agent: ${USER_AGENT}" https://www.${PARKRUN_HOSTNAME}/parkrunner/${PARKRUNNER_ID}/ -o "${TARGET_ROOT_DIR}/${PARKRUN_HOSTNAME}/contents/parkrunner/${PARKRUNNER_ID}/index.html" + counter=$((counter+1)) + echo "Fetching page ${counter}" + curl -w "Fetched %{url_effective}\n" --fail -H "user-agent: ${USER_AGENT}" https://www.${PARKRUN_HOSTNAME}/parkrunner/${PARKRUNNER_ID}/ -o "${TARGET_ROOT_DIR}/${PARKRUN_HOSTNAME}/contents/parkrunner/${PARKRUNNER_ID}/index.html" sleep 1 done @@ -56,4 +67,7 @@ server { EOL +# Do a bit of an extra sleep between countries +sleep 10 + done diff --git a/browser-extensions/firefox/manifest.json b/browser-extensions/firefox/manifest.json index 0141041e..a42e077d 100644 --- a/browser-extensions/firefox/manifest.json +++ b/browser-extensions/firefox/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Running Challenges", - "description": "Adds challenge progress information to your parkrun athlete results page.", + "description": "Adds challenge progress information to your parkrun results page.", "version": "REPLACE_EXTENSION_BUILD_VERSION.REPLACE_EXTENSION_BUILD_ID", "content_security_policy": "default-src 'self'; connect-src https://www.parkrun.org.uk https://running-challenges.co.uk https://images.parkrun.com", @@ -38,6 +38,7 @@ "*://www.parkrun.se/parkrunner/*/all/", "*://www.parkrun.fi/parkrunner/*/all/", "*://www.parkrun.fr/parkrunner/*/all/", + "*://www.parkrun.lt/parkrunner/*/all/", "*://www.parkrun.no/parkrunner/*/all/", "*://www.parkrun.com.de/parkrunner/*/all/", "*://www.parkrun.ru/parkrunner/*/all/", @@ -70,37 +71,6 @@ ], "run_at": "document_end" }, - { - "matches": [ - "*://www.parkrun.org.uk/results/athleteresultshistory/*", - "*://www.parkrun.com.au/results/athleteresultshistory/*", - "*://www.parkrun.co.nz/results/athleteresultshistory/*", - "*://www.parkrun.ca/results/athleteresultshistory/*", - "*://www.parkrun.ie/results/athleteresultshistory/*", - "*://www.parkrun.co.za/results/athleteresultshistory/*", - "*://www.parkrun.us/results/athleteresultshistory/*", - "*://www.parkrun.sg/results/athleteresultshistory/*", - "*://www.parkrun.pl/results/athleteresultshistory/*", - "*://www.parkrun.it/results/athleteresultshistory/*", - "*://www.parkrun.dk/results/athleteresultshistory/*", - "*://www.parkrun.se/results/athleteresultshistory/*", - "*://www.parkrun.fi/results/athleteresultshistory/*", - "*://www.parkrun.fr/results/athleteresultshistory/*", - "*://www.parkrun.com.de/results/athleteresultshistory/*", - "*://www.parkrun.no/results/athleteresultshistory/*", - "*://www.parkrun.ru/results/athleteresultshistory/*", - "*://www.parkrun.my/results/athleteresultshistory/*", - "*://www.parkrun.jp/results/athleteresultshistory/*", - "*://www.parkrun.co.nl/results/athleteresultshistory/*", - "*://www.parkrun.co.at/results/athleteresultshistory/*" - ], - "js": [ - "js/lib/third-party/jquery/jquery-3.6.0.js", - "js/lib/i18n.js", - "js/content-scripts/content-script-athleteresultshistory.js" - ], - "run_at": "document_end" - }, { "matches": [ "*://www.parkrun.org.uk/parkrunner/*/", @@ -117,6 +87,7 @@ "*://www.parkrun.se/parkrunner/*/", "*://www.parkrun.fi/parkrunner/*/", "*://www.parkrun.fr/parkrunner/*/", + "*://www.parkrun.lt/parkrunner/*/", "*://www.parkrun.no/parkrunner/*/", "*://www.parkrun.com.de/parkrunner/*/", "*://www.parkrun.ru/parkrunner/*/", @@ -139,6 +110,7 @@ "*://www.parkrun.se/parkrunner/*/all/", "*://www.parkrun.fi/parkrunner/*/all/", "*://www.parkrun.fr/parkrunner/*/all/", + "*://www.parkrun.lt/parkrunner/*/all/", "*://www.parkrun.no/parkrunner/*/all/", "*://www.parkrun.com.de/parkrunner/*/all/", "*://www.parkrun.ru/parkrunner/*/all/", @@ -152,37 +124,6 @@ "js/content-scripts/content-script-parkrunner-summary.js" ], "run_at": "document_end" - }, - { - "matches": [ - "*://www.parkrun.org.uk/*/results/athletehistory/*", - "*://www.parkrun.com.au/*/results/athletehistory/*", - "*://www.parkrun.co.nz/*/results/athletehistory/*", - "*://www.parkrun.ca/*/results/athletehistory/*", - "*://www.parkrun.ie/*/results/athletehistory/*", - "*://www.parkrun.co.za/*/results/athletehistory/*", - "*://www.parkrun.us/*/results/athletehistory/*", - "*://www.parkrun.sg/*/results/athletehistory/*", - "*://www.parkrun.pl/*/athletehistory/*", - "*://www.parkrun.it/*/athletehistory/*", - "*://www.parkrun.dk/*/athletehistory/*", - "*://www.parkrun.se/*/athletehistory/*", - "*://www.parkrun.fi/*/athletehistory/*", - "*://www.parkrun.fr/*/athletehistory/*", - "*://www.parkrun.com.de/*/athletehistory/*", - "*://www.parkrun.no/*/athletehistory/*", - "*://www.parkrun.ru/*/athletehistory/*", - "*://www.parkrun.my/*/results/athletehistory/*", - "*://www.parkrun.jp/*/results/athletehistory/*", - "*://www.parkrun.co.nl/*/results/athletehistory/*", - "*://www.parkrun.co.at/*/results/athletehistory/*" - ], - "js": [ - "js/lib/third-party/jquery/jquery-3.6.0.js", - "js/lib/i18n.js", - "js/content-scripts/content-script-athleteeventhistory.js" - ], - "run_at": "document_end" } ], "web_accessible_resources": [ diff --git a/images/flags/twemoji/png/lt.png b/images/flags/twemoji/png/lt.png new file mode 100644 index 00000000..5d43da39 Binary files /dev/null and b/images/flags/twemoji/png/lt.png differ diff --git a/website/_data/flags.yml b/website/_data/flags.yml index 4876a875..12732355 100644 --- a/website/_data/flags.yml +++ b/website/_data/flags.yml @@ -32,6 +32,9 @@ flags: - shortname: jp name: Japan + - shortname: lt + name: Lithuania + - shortname: my name: Malaysia