STG Hall of Records/Database

From Shmups Wiki -- The Digital Library of Shooting Games
Jump to navigation Jump to search

Attention: This page serves as a database and is not meant to be consumed by end users. If you came here for the STG Hall of Records, follow one of these links:

Contents

Introduction

The contents of this page serve as a database and are meant to be put into a generator. The generator converts the raw data, written in YAML, into actual wiki pages for different languages.

Structure

Every section of data is enclosed in <nowiki></nowiki> tags. Everything outside outside of these tags will be ignored by the parser. The first section is named global and contains settings for the whole page, all the remaining sections each contain data about a single game.

Global settings

Values defined in this section apply to all the games in the database or the whole page in general (e.g. description, sorting of games, common translations, ...). For further information, please refer to the actual value, most of the settings are documented.

Game

Each game is defined by the following properties:

name: Name of the game
name-jp: 日本語のタイトル / Japanese title in kanji
name-kana: にほんごのたいとる / Japanese title in hiragana
company: Developer / Publisher
counterstop: Counterstop (optional, see below)

scores: Score entries (see below)

links:
  - url: https://example.org/the-link
    title: Title for the link
  - url: https://example.org/other-link
    title: Second link title

description: "Description containing notes about counterstops and other noteworthy stuff."

layout: Layout information (see below)

translations: Game-specific translations (see below)
Counterstop

If the game contains a counterstop, its type and value can be specified. Score entries reaching the counterstop will be colored automatically.

The type hard means the game itself cannot display a higher score.

counterstop:
    score: 99,999,999
    type: hard

The type soft represents an artificial counterstop for infinite games, usually imposed by a Japanese leaderboard.

counterstop:
    score: 10,000,000
    type: soft
Score

For each score the properties listed below are available. They are heavily game-dependent and usually not all of them are useful. Unnecessary properties can (and should) be omitted.

score: Score (required)
score-real: Real score if different from ''score'' (usually only necessary if the score has been tracked beyond a counterstop)
player: Name of the player (required)
ship: Selected ship / character
mode: Game mode / difficulty
weapon: Weapon / style
loop: Loop type
version: Version (1P, 2P, Japan, World, Old, New, ...)
autofire: Flag whether autofire was used or not
sources: List of information sources
comments: List of additional comments
image-urls: List of URLs pointing to screenshots of the score
added-date: Date the score was added to the HoR (YYYY-MM-DD|YYYY-MM|YYYY) (required)

Additional properties may be specified. In this case the generator will treat their values verbatim.

For every property a property with the same name and a locale suffix can be specified. Its value will be used on the page in the corresponding language instead of the value of the original property. Currently only '-jp' for Japanese is used but this can be extended to support more languages.

Layout

Most properties from the global section can be expanded or overriden.

layout:
    # Overrides the globally defined column order for this game.
    column-order:
      - sources
      - ship
      - mode
      - score
      - auto-fire
      - comments

    # Additional column definitions. They can be used to define new game-specific columns (see
    # `auto-fire`) or to override definitions for existing columns (see `mode`) for this game.
    columns:
        # Change label for existing column `mode`.
        mode:
            label: Loop
            label-jp: 2周種
        # Define new column `auto-fire`.
        - auto-fire:
            label: Auto fire
            label-jp: オート連射
            template: "{{ autofire }}"


    # Sort order can either be a direction (asc = ascending, desc = descending; see `mode`)
    # or a fixed order of values (see `ship`). These sort values will be applied *after* the
    # ones from the global section.
    sort:
        scores:
            ship: [ Type A, Type B ]
            mode: asc
Translations

Each entry takes a property and a value along with its translations. Let's look at some examples:

translations:
  - property: ship
    value: Tiger Schwert
    value-jp: TYPE-A ティーゲルシュベルト
  - property: ship
    value: Panzer Jäger
    value-jp: TYPE-B パンツァーイェーガー

Example 1: Whenever a score contains the value of `Tiger Schwert`, it is translated to `TYPE-A ティーゲルシュベルト` for the Japanese locale and left as `Tiger Schwert` for the others. Same thing for `Panzer Jäger`.

It is possible to use a simplified value for the score entries and then translate it into all the different languages.

translations:
  - property: ship
    value: Type A
    value-en: Tiger Schwert
    value-jp: TYPE-A ティーゲルシュベルト
  - property: ship
    value: Type B
    value-en: Panzer Jäger
    value-jp: TYPE-B パンツァーイェーガー

Example 2: Whenever a score contains the value of `Type A`, it is translated to `Tiger Schwert` for English and `TYPE-A ティーゲルシュベルト` for Japanese. Since there is a translation specified for all the available locales, the value `Type A` is not displayed at all and serves merely as a placeholder. Same thing for `Type B`.

Full example
<pre><nowiki>
name: "Ketsui: Kizuna Jigoku Tachi"
name-jp: ケツイ ~絆地獄たち~
name-kana: けつい ~きずなじごくたち~
company: Cave

scores:
  - score: 507,780,433
    player: SPS    
    ship: Type A
    mode: Omote
    sources:
      - name: Arcadia
        date: "2014-08"
    added-date: "2020-06-14"

  - score: 481,402,383
    player: SPS
    ship: Type B
    mode: Omote
    sources:
      - name: Arcadia
        date: "2014-11"
    comments:
      - 6L 0B remaining
      - 1st loop 276m
    added-date: "2020-06-13"

  - score: 489,893,348
    player: SPS
    ship: Type A
    mode: Omote
    sources:
      - name: Twitter
        date: "2010-04"
        url: https://example.org/twitter
    added-date: "2020-06-07"

  - score: 569,741,232
    player: GAN
    ship: Type B
    mode: Ura
    sources:
      - name: JHA
        date: "2016-03"
    comments:
      - 6L remaining
    added-date: "2020-06-21"

  - score: 583,614,753
    player: SPS
    ship: Type A
    mode: Ura
    sources:
      - name: Twitter
        date: "2014-05-27"
        url: https://example.org/twitter
      - name: Arcadia
        date: "2014-09"
    comments:
      - 6L 0B remaining
      - 1st loop 285m
    added-date: "2020-06-23"

links:
  - url: https://example.org/jha/ketsui
    title: JHA Leaderboard
    title-jp: 日本ハイスコア協会
  - url: https://example.org/farm/ketsui
    title: Shmups Forum Hi-Score Topic

layout:
    column-order:
      - ship
      - mode
      - score
      - player
      - sources
      - comments

    columns:
        mode:
            label: Loop
            label-jp: 2周種

    sort:
        scores:
            ship: [ Type A, Type B ]
            mode: asc

translations:
  - property: ship
    value: Type A
    value-en: Tiger Schwert
    value-jp: TYPE-A ティーゲルシュベルト
  - property: ship
    value: Type B
    value-en: Panzer Jäger
    value-jp: TYPE-B パンツァーイェーガー
  - property: mode
    value: Omote
    value-jp: 表
  - property: mode
    value: Ura
    value-jp: 裏
</nowiki></pre>

HOWTO

This is a series of step-by-step guides for the most common actions.

How to add a new score

Find the game which you want to enter a new score for

All games are listed here. Use Ctrl+f or the ToC to find your game and click on the edit link next to the heading.

Check whether the layout gets generated

You see a bunch of properties and their values enclosed in <pre>/<nowiki> tags. If the game still has a fixed template i.e. if there exists a property named layout.templates.game (see example below), proceed with the next step, otherwise add the new score.

layout:
    templates:
        game: |
            {% verbatim %}
            some wikitable
            {% endverbatim %}

Example: layout.templates.game

Decide whether you want to convert the fixed template

The fixed template has to be converted to be picked up by the generator. This can be done now or later, depending on the time at hand and the amount of data buried within the template.

Refer to this guide if you feel like converting the fixed template for this game right now. Continue with the next step if you converted the template, otherwise add the new score to the fixed template.

Add new score

We use the following example as the current state.

name: "Omega Fighter"
name-jp: "オメガファイター"
name-kana: "おめがふぁいたあ"
company: "UPL"
needs-work: true

scores:
  - score: 17,175,210
    player: Clover-YMN
    sources:
      - name: Arcadia
        date: "2009-07"

links:
  - url: https://shmups.system11.org/viewtopic.php?t=43829
    title: Shmups Forum Hi-Score Topic

Now to add our new score, we just create a new score entry and add it to the scores property. It does not matter where exactly you add it (above, below or somewhere in between the existing scores). Be sure to include the property added-date with the new score.
Important: Do not remove obsolete scores, they will be filtered out automatically as necessary.

name: "Omega Fighter"
name-jp: "オメガファイター"
name-kana: "おめがふぁいたあ"
company: "UPL"
needs-work: true

scores:
  - score: 17,175,210
    player: Clover-YMN
    sources:
      - name: Arcadia
        date: "2009-07"

  - score: 18,348,380
    player: Dare-Ka
    sources:
      - name: Twitter
        date: "2020-11-24"
        url: https://example.org/twitter
    added-date: "2020-11-26"

links:
  - url: https://shmups.system11.org/viewtopic.php?t=43829
    title: Shmups Forum Hi-Score Topic

If the score can be tracked beyond the counterstop, specify the real score as a separate property score-real. Otherwise the sorting might not work as expected.

  - score: 10,000,000
    score-real: 18,348,380

Add new score to fixed template

We use the following example as the current state.

name: "Phelios"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Phelios}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Phelios]] (Namco)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Easy || {{v|a1|867,930}} || TEN || JHA June 2019 || stage 2: 127,280 ||
            |-
            | Hard || {{v|b1|1,445,240}} || TEN || JHA September 2018 || Dupon Double K.O. x4 ||
            |}
            {% endverbatim %}

If the property scores does not exist yet, create it.

name: "Phelios"
name-jp:
name-kana:
company: "Namco"
needs-work: true

scores:

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Phelios}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Phelios]] (Namco)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Easy || {{v|a1|867,930}} || TEN || JHA June 2019 || stage 2: 127,280 ||
            |-
            | Hard || {{v|b1|1,445,240}} || TEN || JHA September 2018 || Dupon Double K.O. x4 ||
            |}
            {% endverbatim %}

Create a score entry for the current record (the one that gets obsolete by the new score) if necessary.
This step is optional. If you skip it, the previous record is not available for score progression statistics.

name: "Phelios"
name-jp:
name-kana:
company: "Namco"
needs-work: true

scores:
  - score: 867,930
    player: TEN
    mode: Easy
    sources:
      - name: JHA
        date: "2009-06"
    comments:
      - "stage 2: 127,280"

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Phelios}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Phelios]] (Namco)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Easy || {{v|a1|867,930}} || TEN || JHA June 2019 || stage 2: 127,280 ||
            |-
            | Hard || {{v|b1|1,445,240}} || TEN || JHA September 2018 || Dupon Double K.O. x4 ||
            |}
            {% endverbatim %}

Create a score entry for the new record.
This step is optional. If you skip it, you have to extract the information from the fixed template at a later date again.

name: "Phelios"
name-jp:
name-kana:
company: "Namco"
needs-work: true

scores:
  - score: 867,930
    player: TEN
    mode: Easy
    sources:
      - name: JHA
        date: "2009-06"
    comments:
      - "stage 2: 127,280"

  - score: 893,820
    player: Dare-Ka
    mode: Easy
    sources:
      - name: JHA
        date: "2020-11"
    added-date: "2020-11-30"

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Phelios}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Phelios]] (Namco)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Easy || {{v|a1|867,930}} || TEN || JHA June 2019 || stage 2: 127,280 ||
            |-
            | Hard || {{v|b1|1,445,240}} || TEN || JHA September 2018 || Dupon Double K.O. x4 ||
            |}
            {% endverbatim %}

Update the fixed template with the new record.

name: "Phelios"
name-jp:
name-kana:
company: "Namco"
needs-work: true

scores:
  - score: 867,930
    player: TEN
    mode: Easy
    sources:
      - name: JHA
        date: "2009-06"
    comments:
      - "stage 2: 127,280"

  - score: 893,820
    player: Dare-Ka
    mode: Easy
    sources:
      - name: JHA
        date: "2020-11"
    added-date: "2020-11-30"

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Phelios}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Phelios]] (Namco)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Easy || {{v|a1|893,820}} || Dare-Ka || JHA November 2020 || ||
            |-
            | Hard || {{v|b1|1,445,240}} || TEN || JHA September 2018 || Dupon Double K.O. x4 ||
            |}
            {% endverbatim %}

How to convert a fixed template

We use the following example to go through the conversion step by step.

name: "Radiant Silvergun"
name-jp:
name-kana:
company: "Treasure"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Radiant Silvergun}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Radiant Silvergun]] (Treasure)
            |-
            ! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Stage 2 || {{v|a1|23,101,650}} || T³-CYR-WIZ || August 26th, 2008 (Arcadia December 2008) || after 3E: 4.80m, after 2E: 10.05m; in 5A: 12.22m || [https://youtu.be/j-AACK9hvgs Youtube]
            |-
            | Stage 4 || {{v|b1|27,550,780}} || T³-CYR-WIZ || November 15th, 2008 (Arcadia February 2009) || after 3E: 4.79m, after 4E: 14.33m; in 5A: 12.28m || [https://youtu.be/gJDCcK-zjWI Youtube]
            |}
            
            Note: There have not been any updates for more than 10 years!
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_024_%E3%83%AC%E3%82%A4%E3%83%87%E3%82%A3%E3%82%A2%E3%83%B3%E3%83%88%E3%82%B7%E3%83%AB%E3%83%90%E3%83%BC%E3%82%AC%E3%83%B3 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=45677 Shmups Forum Hi-Score Topic]
            {% endverbatim %}

Fill in the Japanese name

Set the Japanese name of the game into the properties name-jp and name-kana if they are not translated yet. name-kana is always in Hiragana.

name: "Radiant Silvergun"
name-jp: "レイディアントシルバーガン"
name-kana: "れいでぃあんとしるばーがん"
company: "Treasure"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Radiant Silvergun}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Radiant Silvergun]] (Treasure)
            |-
            ! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Stage 2 || {{v|a1|23,101,650}} || T³-CYR-WIZ || August 26th, 2008 (Arcadia December 2008) || after 3E: 4.80m, after 2E: 10.05m; in 5A: 12.22m || [https://youtu.be/j-AACK9hvgs Youtube]
            |-
            | Stage 4 || {{v|b1|27,550,780}} || T³-CYR-WIZ || November 15th, 2008 (Arcadia February 2009) || after 3E: 4.79m, after 4E: 14.33m; in 5A: 12.28m || [https://youtu.be/gJDCcK-zjWI Youtube]
            |}
            
            Note: There have not been any updates for more than 10 years!
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_024_%E3%83%AC%E3%82%A4%E3%83%87%E3%82%A3%E3%82%A2%E3%83%B3%E3%83%88%E3%82%B7%E3%83%AB%E3%83%90%E3%83%BC%E3%82%AC%E3%83%B3 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=45677 Shmups Forum Hi-Score Topic]
            {% endverbatim %}

Create score entries

Create a score entry for each score buried in the template. If the property scores is not present yet, create it first. The order of the score entries does not matter.

name: "Radiant Silvergun"
name-jp: "レイディアントシルバーガン"
name-kana: "れいでぃあんとしるばーがん"
company: "Treasure"
needs-work: true

scores:
  - score: 23,101,650
    player: T³-CYR-WIZ
    mode: Stage 2
    sources:
      - name: Arcadia
        date: "2008-12"
      - name: Youtube
        date: "2008-08-26"
        url: https://example.org/youtube/1
    comments:
      - "after 3E: 4.80m"
      - "after 2E: 10.05m"
      - "in 5A: 12.22m"
            
  - score: 27,550,780
    player: T³-CYR-WIZ
    mode: Stage 4
    sources:
      - name: Arcadia
        date: "2009-02"
      - name: Youtube
        date: "2008-11-15"
        url: https://example.org/youtube/2
    comments:
      - "after 3E: 4.79m"
      - "after 4E: 14.33m"
      - "in 5A: 12.28m"

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Radiant Silvergun}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Radiant Silvergun]] (Treasure)
            |-
            ! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Stage 2 || {{v|a1|23,101,650}} || T³-CYR-WIZ || August 26th, 2008 (Arcadia December 2008) || after 3E: 4.80m, after 2E: 10.05m; in 5A: 12.22m || [https://example.org/youtube/1 Youtube]
            |-
            | Stage 4 || {{v|b1|27,550,780}} || T³-CYR-WIZ || November 15th, 2008 (Arcadia February 2009) || after 3E: 4.79m, after 4E: 14.33m; in 5A: 12.28m || [https://example.org/youtube/2 Youtube]
            |}
            
            Note: There have not been any updates for more than 10 years!
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_024_%E3%83%AC%E3%82%A4%E3%83%87%E3%82%A3%E3%82%A2%E3%83%B3%E3%83%88%E3%82%B7%E3%83%AB%E3%83%90%E3%83%BC%E3%82%AC%E3%83%B3 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=45677 Shmups Forum Hi-Score Topic]
            {% endverbatim %}

Add game properties

Create properties for game links and description if they are present in the template. If the game contains a counterstop, add that property as well.

name: "Radiant Silvergun"
name-jp: "レイディアントシルバーガン"
name-kana: "れいでぃあんとしるばーがん"
company: "Treasure"
needs-work: true

scores:
  - score: 23,101,650
    player: T³-CYR-WIZ
    mode: Stage 2
    sources:
      - name: Arcadia
        date: "2008-12"
      - name: Youtube
        date: "2008-08-26"
        url: https://example.org/youtube/1
    comments:
      - "after 3E: 4.80m"
      - "after 2E: 10.05m"
      - "in 5A: 12.22m"
            
  - score: 27,550,780
    player: T³-CYR-WIZ
    mode: Stage 4
    sources:
      - name: Arcadia
        date: "2009-02"
      - name: Youtube
        date: "2008-11-15"
        url: https://example.org/youtube/2
    comments:
      - "after 3E: 4.79m"
      - "after 4E: 14.33m"
      - "in 5A: 12.28m"

description: "Note: There have not been any updates for more than 10 years!"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1998_024_%E3%83%AC%E3%82%A4%E3%83%87%E3%82%A3%E3%82%A2%E3%83%B3%E3%83%88%E3%82%B7%E3%83%AB%E3%83%90%E3%83%BC%E3%82%AC%E3%83%B3
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=45677
    title: Shmups Forum Hi-Score Topic

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Radiant Silvergun}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Radiant Silvergun]] (Treasure)
            |-
            ! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Stage 2 || {{v|a1|23,101,650}} || T³-CYR-WIZ || August 26th, 2008 (Arcadia December 2008) || after 3E: 4.80m, after 2E: 10.05m; in 5A: 12.22m || [https://example.org/youtube/1 Youtube]
            |-
            | Stage 4 || {{v|b1|27,550,780}} || T³-CYR-WIZ || November 15th, 2008 (Arcadia February 2009) || after 3E: 4.79m, after 4E: 14.33m; in 5A: 12.28m || [https://example.org/youtube/2 Youtube]
            |}
            
            Note: There have not been any updates for more than 10 years!
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_024_%E3%83%AC%E3%82%A4%E3%83%87%E3%82%A3%E3%82%A2%E3%83%B3%E3%83%88%E3%82%B7%E3%83%AB%E3%83%90%E3%83%BC%E3%82%AC%E3%83%B3 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=45677 Shmups Forum Hi-Score Topic]
            {% endverbatim %}

Add columns and sort

Add the properties layout.sort and layout.columns to define sorting and columns if necessary. This step is necessary only if the scores are divided into different categories (i.e. whenever one of the following properties is set: version, autofire, mode, ship, weapon or loop).

name: "Radiant Silvergun"
name-jp: "レイディアントシルバーガン"
name-kana: "れいでぃあんとしるばーがん"
company: "Treasure"
needs-work: true

scores:
  - score: 23,101,650
    player: T³-CYR-WIZ
    mode: Stage 2
    sources:
      - name: Arcadia
        date: "2008-12"
      - name: Youtube
        date: "2008-08-26"
        url: https://example.org/youtube/1
    comments:
      - "after 3E: 4.80m"
      - "after 2E: 10.05m"
      - "in 5A: 12.22m"
            
  - score: 27,550,780
    player: T³-CYR-WIZ
    mode: Stage 4
    sources:
      - name: Arcadia
        date: "2009-02"
      - name: Youtube
        date: "2008-11-15"
        url: https://example.org/youtube/2
    comments:
      - "after 3E: 4.79m"
      - "after 4E: 14.33m"
      - "in 5A: 12.28m"

description: "Note: There have not been any updates for more than 10 years!"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1998_024_%E3%83%AC%E3%82%A4%E3%83%87%E3%82%A3%E3%82%A2%E3%83%B3%E3%83%88%E3%82%B7%E3%83%AB%E3%83%90%E3%83%BC%E3%82%AC%E3%83%B3
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=45677
    title: Shmups Forum Hi-Score Topic

layout:
    columns:
        mode:
            label: Route
            label-jp: ステージ選択

    sort:
        scores:
            mode: asc

    templates:
        game: |
            {% verbatim %}
            {{Anchor|Radiant Silvergun}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Radiant Silvergun]] (Treasure)
            |-
            ! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Stage 2 || {{v|a1|23,101,650}} || T³-CYR-WIZ || August 26th, 2008 (Arcadia December 2008) || after 3E: 4.80m, after 2E: 10.05m; in 5A: 12.22m || [https://example.org/youtube/1 Youtube]
            |-
            | Stage 4 || {{v|b1|27,550,780}} || T³-CYR-WIZ || November 15th, 2008 (Arcadia February 2009) || after 3E: 4.79m, after 4E: 14.33m; in 5A: 12.28m || [https://example.org/youtube/2 Youtube]
            |}
            
            Note: There have not been any updates for more than 10 years!
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_024_%E3%83%AC%E3%82%A4%E3%83%87%E3%82%A3%E3%82%A2%E3%83%B3%E3%83%88%E3%82%B7%E3%83%AB%E3%83%90%E3%83%BC%E3%82%AC%E3%83%B3 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=45677 Shmups Forum Hi-Score Topic]
            {% endverbatim %}

Remove the fixed template

Remove the fixed template from the property layout.

name: "Radiant Silvergun"
name-jp: "レイディアントシルバーガン"
name-kana: "れいでぃあんとしるばーがん"
company: "Treasure"
needs-work: true

scores:
  - score: 23,101,650
    player: T³-CYR-WIZ
    mode: Stage 2
    sources:
      - name: Arcadia
        date: "2008-12"
      - name: Youtube
        date: "2008-08-26"
        url: https://example.org/youtube/1
    comments:
      - "after 3E: 4.80m"
      - "after 2E: 10.05m"
      - "in 5A: 12.22m"
            
  - score: 27,550,780
    player: T³-CYR-WIZ
    mode: Stage 4
    sources:
      - name: Arcadia
        date: "2009-02"
      - name: Youtube
        date: "2008-11-15"
        url: https://example.org/youtube/2
    comments:
      - "after 3E: 4.79m"
      - "after 4E: 14.33m"
      - "in 5A: 12.28m"

description: "Note: There have not been any updates for more than 10 years!"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1998_024_%E3%83%AC%E3%82%A4%E3%83%87%E3%82%A3%E3%82%A2%E3%83%B3%E3%83%88%E3%82%B7%E3%83%AB%E3%83%90%E3%83%BC%E3%82%AC%E3%83%B3
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=45677
    title: Shmups Forum Hi-Score Topic

layout:
    columns:
        mode:
            label: Route
            label-jp: ステージ選択

    sort:
        scores:
            mode: asc

Congratulations, the conversion is complete! Save your changes if you have not yet.

How to update the HoR pages with the newest data from the database

  1. Go to the generator page.
  2. Load the database page into the input field by pressing the button Load input from database or copy the contents manually.
  3. If you just want to generate a single game, select it from the dropdown and press Filter input. The dropdown appears only after the database has been loaded into the input field.
  4. Press Generate.
  5. Copy the English output (Output for locale `en`) from the textfield.
  6. Go to the English HoR page and hit edit.
  7. Paste the content into the page, replacing the old content.
  8. Use Show preview and Show changes to make sure the output looks as expected.
  9. Save the changes to the HoR page.
  10. Repeat steps 5 - 9 for the Japanese output (Output for locale `jp`) and its HoR page.

Global settings

name: global

# Main description in wiki syntax, available as variable `description` within the templates.
description: |
    [[File:Micomlogo.jpg|800px|center]]
    
    
    Welcome to the STG Hall of Records!
    
    In the following page you will find a list of all world record scores for arcade shmups. The list is a major revision of the [https://shmups.system11.org/viewtopic.php?f=2&t=38524 long-standing topic on the Shmups Forum] under the same name, which was maintained by the user NTSC-J from September 2011 to July 2020. This list takes the Japanese score keeping traditions as a basis, primarily the uninterrupted combined tradition of Gamest magazine (1986 to 1999), Arcadia magazine (1999 to 2015) and the [http://www.jha-arcade.com website] of the Japan Highscore Association a.k.a. JHA (2016 to the present). For the current revision of the STG Hall of Records, several more scores have been retrieved from other sources such as Micom Basic magazine (1984 to 1999) but also private Twitter accounts, forums, and other websites. To read more about the tracking of arcade highscores in Japan, please check [http://electricunderground.io/guest-article-introduction-to-scorekeeping-for-japanese-arcade-games/ this short article].
    [[File:MICB.jpg|400px|right]]
    The STG Hall of Records in its current form would have been an unthinkable project without the meticulous work carried out by Marco “Gemant” Frattino who has been spreading information about Japanese arcade highscores with tireless enthusiasm within the english-speaking community for over a decade. Gemant’s work culminates in the latest publication of his monumental project ARCA (started in 2007), a document providing information on a selection of 600 arcade games (not only shmups), which can be [https://www.mameretroavengers.com/documenti/arca-general-dei-record-arcade/ accessed here]. However, the STG Hall of Records is not merely a copy of Gemant’s document. Whenever possible, the records have been double checked and verified. Furthermore, you will notice two fundamental departures from the ARCA project. First, while non-shmups have been excluded, the STG Hall of Records aims to cover every arcade shmup and is constantly growing, not limited to a specific number of games. Second, games from the so-called “Golden Era” (pre 1985 and therefore prior to the first issue of Gamest) are also considered.
    
    As an additional innovation, the STG Hall of Records also lists scores for various categories that otherwise do not exist within the Japanese tradition, e.g. a more in-depth and specific recordkeeping of subtypes of ships (e.g. including shot and laser types in [[DoDonPachi]]). Scores from particularly accurate ports (e.g. [[Battle Garegga]] on PS4 or [[Crimzon Clover]] on Steam) or scores achieved on emulators (e.g. Mame or GOTVG) can also be found on the list. These scores are not meant to replace the current arcade scores and are but seen as a supplement. Geographically speaking, scores from all over the world are considered.
    
    Mostly limited to a number of older games, Japanese scorekeeping sometimes sets a goal score of 10,000,000 points and closes the game for competition once this threshold is achieved regardless of whether the score counter would continue normally or roll over back to 0. These scores are marked by the notation of "+α", e.g. "10,000,000+α" and are then marked in green color to indicate that the ranking is officially closed under JHA rules. The STG Hall of Records likewise lists these +α-scores and indicates the first player(s) to reach this score (players achieving the same goal score later on are not considered). Moreover, the highest score beyond this arbitrary threshold is also listed. Only when a true counterstop is achieved, the game or category will be closed for competition as long as no special rules apply as is the case with Ultra Mode in [[Mushihimesama Futari]] 1.5. In the case of a counterstop, the ranking will be marked in grey color to indicate that it is closed.
    
    

# Layout information applicable to the whole page or all the games in the database.
layout:

    # Sort order for the games within the page or the scores within each game respectively.
    sort:
        games:
            name: asc
        scores:
            score: desc

    # Properties to group scores by. Every combination of these properties forms a category within a game.
    # Example: If grouped by ship only, all the scores achieved with the same ship are put into the same
    # category no matter the mode, weapon or any property.
    group:
        scores:
          - version
          - autofire
          - platform
          - mode
          - ship
          - weapon
          - loop

    # Default order for the columns (see next property). For each game, only columns that have been set
    # will be displayed.
    column-order:
      - version
      - autofire
      - mode
      - ship
      - weapon
      - loop
      - score
      - player
      - sources
      - comments

    # Available columns. Columns specified here can be used for all games.
    columns:
        player:
            label: Player
            label-jp: プレイヤー
            template: "{{ score.player }}"

        score:
            label: Score
            label-jp: スコア
            template: |
                {{ score.score }}{% if attribute(score, 'score-real') and attribute(score, 'score-real') != score.score %} [{{ attribute(score, 'score-real') }}]{% endif %}

        ship:
            label: Ship
            label-jp: 自機
            template: "{{ score.ship }}"
            attributes:
                is-category: true
                is-mergeable: true

        mode:
            label: Mode
            label-jp: モード
            template: "{{ score.mode }}"
            attributes:
                is-category: true
                is-mergeable: true

        loop:
            label: Loop
            label-jp: 2周種
            template: "{{ score.loop }}"
            attributes:
                is-category: true
                is-mergeable: true

        weapon:
            label: Weapon
            label-jp: ショット
            template: "{{ score.weapon }}"
            attributes:
                is-category: true
                is-mergeable: true

        comments:
            label: Comment
            label-jp: 備考
            template: "{{ score.comments|join(', ') }}"

        version:
            label: Version
            label-jp: バージョン
            template: "{{ score.version }}"
            attributes:
                is-category: true
                is-mergeable: true

        autofire:
            label: Autofire
            label-jp: オート連射
            template: "{{ score.autofire }}"
            attributes:
                is-category: true
                is-mergeable: true

        platform:
            label: Platform
            label-jp: プラットフォーム
            template: "{{ score.platform }}"

        sources:
            label: Source
            label-jp: 情報元
            template: |
                {% for source in score.sources %}{% if source.url %}[{{ source.url }} {{ source.name }}]{% else %}{{ source.name|formatDate }}{% endif %}{% if source.date %} ({{ source.date|formatDate }}){% endif %}{% if not loop.last %}<br>{% endif %}{% endfor %}

    # Wiki templates. The one named `main` is the entry point, everything else gets included from there.
    templates:
        main: |
            {{ description|raw }}
            {{ include('toc') }}
            {{ include('games') }}
        toc: |
            <table class="wikitable">
              <tr>
            {% set numNonEmptyGroups = 0 %}
            {% for group in games.grouped.byInitials %}
            {% if group.games %}
                <th class="{% for game in group.games %}mw-customtoggle-{{ game.properties.id }} {% endfor %}" style="padding-left:10px;padding-right:10px;">{{ group.title }}</th>
            {% set numNonEmptyGroups = numNonEmptyGroups + 1 %}
            {% endif %}
            {% endfor %}
              </tr>
            {% for group in games.grouped.byInitials %}
            {% for game in group.games %}
              <tr id="mw-customcollapsible-{{ game.properties.id }}" class="mw-collapsible mw-collapsed">
                <td colspan="{{ numNonEmptyGroups }}">[[#{{ game.properties.name }}|{{ game.properties.name }}]]</td>
              </tr>
            {% endfor %}
            {% endfor %}
            </table>
            __NOTOC__
        games: |
            {% for game in games.all %}
            {# Use custom game template where available. #}
            {% set customTemplate = "game-#{game.properties.id}" %}
            {{ include([customTemplate, 'game']) }}
            {% endfor %}
        game: |
            {# Always us an array for counterstops #}
            {% set counterstops = [] %}
            {% if game.properties.counterstop.score %}{# Single counterstop defined #}
            {% set counterstops = [game.properties.counterstop] %}
            {% elseif game.properties.counterstop %}{# Multiple counterstops defined #}
            {% set counterstops = game.properties.counterstop %}
            {% endif %}
            {{ '{{' }}Anchor|{{ game.properties.name }}{{ '}}' }}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="{{ game.headers|length }}" | {{ game.properties.name }} ({{ game.properties.company }})
            {# Current records #}
            {% set scores = [] %}
            {% for score in game.scores %}
            {% if score.properties['is-current-record'] %}
            {% set scores = scores|merge([score]) %}
            {% endif %}
            {% endfor %}
            |-
            ! {{ game.headers|join(' !! ') }}
            {% for scoreIndex,score in scores %}
            {{ include('score') }}
            {% endfor %}
            {# Previous records #}
            {% set scores = [] %}
            {% for score in game.scores %}
            {% if not score.properties['is-current-record'] %}
            {% set scores = scores|merge([score]) %}
            {% endif %}
            {% endfor %}
            {# Remove guard when it's ready. #}
            {% if false and scores %}
            |-
            ! {{ game.headers|join(' !! ') }}
            {% for scoreIndex,score in scores %}
            {{ include('score') }}
            {% endfor %}
            {% endif %}
            |}

            {% if game.properties.description %}
            {{ game.properties.description }}

            {% endif %}
            {% if game.properties.links %}
            {% for link in game.properties.links %}
            * [{{ link.url}} {{link.title}}]
            {% endfor %}
            {% endif %}
        score: |
            {% set prevScore = scores[scoreIndex - 1] %}
            {% set nextScore = scores[scoreIndex + 1] %}
            {# Check for counterstops #}
            {% set isCounterstop = false %}
            {% set counterstopType = null %}
            {% for counterstop in counterstops %}
            {% if counterstop.score and score.properties.score == counterstop.score %}
            {% set isCounterstop = true %}
            {% set counterstopType = counterstop.type %}
            {% endif %}
            {% endfor %}
            |-
            | {% for columnIndex,column in score.columns %}
            {% set cellValue = column.value %}
            {% set classes = '' %}
            {% if isCounterstop and not column.attributes['is-category'] %}
            {% set classes = "hor-counterstop-#{counterstopType} #{classes}" %}
            {% endif %}
            {# Merge counterstop score values as well #}
            {% if column.attributes['is-mergeable']
               or column.name == 'score'
               and isCounterstop
               and score.properties.score == score.properties['score-real'] %}
            {% set mergeWithTopCell = true %}
            {% set mergeWithBottomCell = true %}
            {% for i in 0..columnIndex %}
            {% if not prevScore or prevScore.columns[i].value != score.columns[i].value %}
            {% set mergeWithTopCell = false %}
            {% endif %}
            {% if not nextScore or nextScore.columns[i].value != score.columns[i].value %}
            {% set mergeWithBottomCell = false %}
            {% endif %}
            {% endfor %}
            {% if mergeWithTopCell and mergeWithBottomCell %}
            {% set cellValue = '' %}
            {% set classes = "hor-merged-cell #{classes}" %}
            {% elseif mergeWithTopCell %}
            {% set cellValue = '' %}
            {% set classes = "hor-merged-cell-last #{classes}" %}
            {% elseif mergeWithBottomCell %}
            {% set classes = "hor-merged-cell-first #{classes}" %}
            {% endif %}
            {% endif %}
            {% if classes %}class="{{ classes }}" | {% endif %}
            {{ cellValue|raw }}{% if not loop.last %} || {% endif %}
            {% endfor %}

# Common translations applicable to all games in the database.
translations:
  # Translations for companies.
  - property: company
    value: ADK
    value-jp: エーディーケイ
  - property: company
    value: Afega
    value-jp: アフェーガ
  - property: company
    value: A.I.
    value-jp: エーアイ
  - property: company
    value: Aicom / Yumekobo
    value-jp: エイコム / 夢工房
  - property: company
    value: Alfa System
    value-jp: アルファ・システム
  - property: company
    value: Allumer
    value-jp: アルュメ
  - property: company
    value: Athena
    value-jp: アテナ
  - property: company
    value: Atlus
    value-jp: アトラス
  - property: company
    value: Banpresto
    value-jp: バンプレスト
  - property: company
    value: Capcom
    value-jp: カプコン
  - property: company
    value: CAVE
    value-jp: ケイブ
  - property: company
    value: Coreland
    value-jp: コアランド
  - property: company
    value: Crux
    value-jp: クラックス
  - property: company
    value: Data East
    value-jp: データイースト
  - property: company
    value: Face
    value-jp: フェイス
  - property: company
    value: Gazelle
    value-jp: ガゼル
  - property: company
    value: G.Rev
    value-jp: グレフ
  - property: company
    value: IGS
    value-jp: IGS
  - property: company
    value: Irem
    value-jp: アイレム
  - property: company
    value: Jaleco
    value-jp: ジャレコ
  - property: company
    value: Jorudan
    value-jp: ジョルダン
  - property: company
    value: Kaneko
    value-jp: カネコ
  - property: company
    value: Konami
    value-jp: コナミ
  - property: company
    value: Mebius
    value-jp: メビウス
  - property: company
    value: Milestone
    value-jp: マイルストーン
  - property: company
    value: Mitchell
    value-jp: ミッチェル
  - property: company
    value: Namco
    value-jp: ナムコ
  - property: company
    value: Nichibutsu
    value-jp: ニチブツ
  - property: company
    value: Nihon System
    value-jp: 日本システム
  - property: company
    value: NMK
    value-jp: NMK
  - property: company
    value: Psikyo
    value-jp: 彩京
  - property: company
    value: Raizing / 8ing
    value-jp: ライジング / エイティング
  - property: company
    value: Sammy
    value-jp: サミー
  - property: company
    value: Sega
    value-jp: セガ
  - property: company
    value: Seibu Kaihatsu / Moss
    value-jp: セイブ開発 / モス
  - property: company
    value: Seta
    value-jp: セタ
  - property: company
    value: Skonec
    value-jp: スコーネック
  - property: company
    value: SNK
    value-jp: SNK
  - property: company
    value: Studio Siesta
    value-jp: スタジオシエスタ
  - property: company
    value: Success
    value-jp: サクセス
  - property: company
    value: Taito
    value-jp: タイトー
  - property: company
    value: Takumi
    value-jp: タクミ
  - property: company
    value: Tanoshimasu
    value-jp: タノシマス
  - property: company
    value: Tecmo
    value-jp: テクモ
  - property: company
    value: Tecnosoft
    value-jp: テクノソフト
  - property: company
    value: Tehkan
    value-jp: テーカン
  - property: company
    value: Toaplan
    value-jp: 東亜プラン
  - property: company
    value: Treasure
    value-jp: トレジャー
  - property: company
    value: Triangle Service / Oriental Soft
    value-jp: トライアングル・サービス / オリエンタルソフト
  - property: company
    value: UPL
    value-jp: UPL
  - property: company
    value: Video System
    value-jp: ビデオシステム
  - property: company
    value: Visco
    value-jp: ビスコ
  - property: company
    value: Warashi
    value-jp: 童
  - property: company
    value: Yang Chen
    value-jp: ヤンチェン
  - property: company
    value: Yotsubane
    value-jp: 四ツ羽根

  # Translations for magazines.
  - property: sources
    value: Arcadia
    value-jp: アルカディア
    fuzzy-match: true
  - property: sources
    value: Twitter
    value-jp: ツイッター
    fuzzy-match: true
  - property: sources
    value: niconico
    value-jp: ニコニコ
    fuzzy-match: true

  # Translations for links.
  - property: links
    value: JHA Leaderboard
    value-jp: 日本ハイスコア協会
    fuzzy-match: true

Games

1941 Counter Attack

name: "1941 Counter Attack"
name-jp: "1941 Counter Attack"
name-kana: "いちきゅうよんいち - かうんたーあたっく"
company: "Capcom"
needs-work: true

scores:
  - score: 14,805,800
    player: キムラルク
    mode: 1 Player
    sources:
      - name: Arcadia
        date: "2000-12"

  - score: 14,947,800
    player: K.N
    mode: 1 Player
    sources:
      - name: Arcadia
        date: "2001-04"

  - score: 15,070,400
    player: CNT!
    mode: 1 Player
    sources:
      - name: Arcadia
        date: "2012-09"
      - name: Niconico
        date: "2012-06-18"
        url: http://www.nicovideo.jp/watch/sm18127672

  - score: 17,518,600
    player: 超うんこコンビ ミレニアム復活!
    mode: 2 Player
    sources:
      - name: Arcadia
        date: "2003-04"

  - score: 17,525,000
    player: 3ヶ月ぶりの再会(2プレイ目)
    mode: 2 Player
    sources:
      - name: Arcadia
        date: "2003-07"

  - score: 18,418,600
    player: こいずみ & CNT!
    mode: 2 Player
    sources:
      - name: Arcadia
        date: "2012-02"
      - name: Niconico
        date: "2012-04-01"
        url: http://www.nicovideo.jp/watch/sm17421548

links:
  - url: https://shmups.system11.org/viewtopic.php?t=11606
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            mode: asc

1942

name: "1942"
name-jp: "1942"
name-kana: いちきゅうよんに
company: "Capcom"
needs-work: true

scores:
  - score: 14,158,180
    player: Novice
    sources:
      - name: "Played date: 2003-10-18"
      - name: Youtube
        date: "2012-06-18"
        url: https://youtu.be/tshRx2ie65E
    comments:
      - "played on Mame32 0.56"
    attributes:
        is-current-record: true

  - score: 14,171,510
    player: Berserker
    sources:
      - name: Twitter
        date: "2018-12-16"
        url: https://twitter.com/Berserkerzoid/status/1074342993719640064
    comments:
      - "highest score Capcom Classics"

description: "Note: Micom Basic magazine (August 1985) lists an unverified score of 89,706,000 by ガッツマン."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=177
    title: Shmups Forum Hi-Score Topic

1943

name: "1943"
name-jp: "1943"
name-kana: いちきゅうよんさん
company: "Capcom"
needs-work: true

scores:
  - score: 3,701,310
    player: SGP-SV-TNK
    mode: 1 Player
    sources:
      - name: Arcadia
        date: "2002-11"

  - score: 4,402,550
    player: SGP-SV-TNK
    mode: 1 Player
    sources:
      - name: Arcadia
        date: "2009-01"
    comments:
      - "used Dragonfly bonus"

  - score: 4,115,990
    player: DBS
    mode: 1 Player
    sources:
      - name: "Played date: 2005-03-30"
      - name: Twitter
        date: "2016-02-28"
        url: https://twitter.com/dbsqawsedrftgyh/status/703966478467399680
    comments:
      - "no Dragonfly bonus"
    attributes:
        is-current-record: true

  - score: 5,048,820
    player: SGP-SV-TNK & SGP-UAG
    mode: 2 Player
    sources:
      - name: Arcadia
        date: "2009-04"

links:
  - url: https://shmups.system11.org/viewtopic.php?t=177
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            mode: asc

1943 kai

name: "1943 kai"
name-jp: "1943改"
name-kana: "いちきゅうよんさん・かい"
company: "Capcom"
needs-work: true

scores:
  - score: 5,830,520
    player: LAOS-長田仙人
    mode: 1 Player
    sources:
      - name: Gamest
        date: "1994-12"
    comments:
      - "Credit x9"
      - "Mobi x6"
      - "Daihiryu x16"

  - score: 6,533,910
    player: ダブル和也
    mode: 2 Player
    sources:
      - name: Gamest
        date: "1994-11"

links:
  - url: https://shmups.system11.org/viewtopic.php?t=177
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            mode: asc

1944: The Loop Master

name: "1944: The Loop Master"
name-jp: "1944 ザ・ループマスター"
name-kana: "いちきゅうよんよん ざ・るーぷますたー"
company: "Raizing / 8ing"
needs-work: true

scores:
  - score: 24,715,920
    player: LAOS-長田仙人
    sources:
      - name: Arcadia
        date: "2001-01"

  - score: 25,239,240
    player: フセイン
    sources:
      - name: Arcadia
        date: "2001-02"

  - score: 26,355,790
    player: LAOS-長田仙人
    sources:
      - name: Arcadia
        date: "2001-03"

  - score: 26,782,720
    player: LAOS-長田仙人
    sources:
      - name: Arcadia
        date: "2001-04"

  - score: 26,978,080
    player: LAOS-長田仙人
    sources:
      - name: Arcadia
        date: "2001-05"

  - score: 27,041,540
    player: LAOS-長田仙人
    sources:
      - name: Arcadia
        date: "2001-06"

  - score: 27,206,880
    player: 近江からの使者
    sources:
      - name: JHA
        date: "2018-04"
    comments:
      - "autofire"

  - score: 27,239,450
    player: 近江からの使者
    sources:
      - name: JHA
        date: "2018-09"
    comments:
      - "autofire"

  - score: 27,262,080
    player: 近江からの使者
    sources:
      - name: JHA
        date: "2018-10"
    comments:
      - "autofire"

  - score: 27,294,600
    player: 近江からの使者
    sources:
      - name: Twitter
        date: "2018-12-15"
        url: https://twitter.com/OmiKaranoShisya/status/1073840938789683201
      - name: JHA
        date: "2018-12"
    comments:
      - "autofire"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/2000_037_1944_%E3%82%B6%E3%83%BB%E3%83%AB%E3%83%BC%E3%83%97%E3%83%9E%E3%82%B9%E3%82%BF%E3%83%BC
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=37237
    title: Shmups Forum Hi-Score Topic

19XX: The War Against Destiny

name: "19XX: The War Against Destiny"
name-jp: "19XX: The War Against Destiny"
name-kana: "ないんてぃーんだぶるえっくす ざ うぉー あげんすと ですてぃにー"
company: "Capcom"
needs-work: true

scores:
  - score: 20,061,400
    player: RCA-NST
    ship: Lightning
    sources:
      - name: Arcadia
        date: "2000-11"

  - score: 20,173,700
    player: 両替士
    ship: Lightning
    sources:
      - name: Arcadia
        date: "2003-06"

  - score: 20,406,300
    player: 両替士
    ship: Lightning
    sources:
      - name: Arcadia
        date: "2003-07"

  - score: 20,631,700
    player: FCM-K.T
    ship: Lightning
    sources:
      - name: JHA
        date: "2016-03"
    comments:
      - "autofire"

  - score: 19,522,800
    player: HPW-FCM
    ship: Mosquito
    sources:
      - name: Arcadia
        date: "2003-12"

  - score: 19,969,600
    player: ZFC-F°CM
    ship: Mosquito
    sources:
      - name: Arcadia
        date: "2015-03"

  - score: 20,095,600
    player: ZFC-F°CM
    ship: Mosquito
    sources:
      - name: Twitter
        date: "2017-10-07"
        url: https://twitter.com/fcm_roomchief/status/916616113055719424
      - name: JHA
        date: "2017-10"
    comments:
      - "autofire"

  - score: 20,358,300
    player: HPN-恋愛リボンtyu・ten・on
    ship: Shinden
    sources:
      - name: Arcadia
        date: "2003-07"

  - score: 20,464,200
    player: HPW-T.N
    ship: Shinden
    sources:
      - name: Arcadia
        date: "2003-09"

  - score: 20,522,800
    player: HPW-T.N
    ship: Shinden
    sources:
      - name: Arcadia
        date: "2004-01"

  - score: 20,564,200
    player: FCM-K.T
    ship: Shinden
    sources:
      - name: JHA
        date: "2016-03"
    comments:
      - "autofire"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1996_005_19XX
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=62431
    title: Shmups Forum Hi-Score Topic

translations:
  - property: ship
    value: Lightning
    value-jp: ライトニング
  - property: ship
    value: Mosquito
    value-jp: モスキート
  - property: ship
    value: Shinden
    value-jp: 震電

A-Jax

name: "A-Jax"
name-jp: "A-JAX"
name-kana: えー・じゃっくす
company: "Konami"
counterstop:
    score: 2,343,600
    type: soft
needs-work: true

scores:
  - score: 2,343,600
    player: ILG-K.M
    sources:
      - name: Gamest
        date: "1988-04"
    comments:
      - "0L remaining"
      - "suicide x5"
            
description: "Note: Japanese scoreboard closed May 1988 due to the detection of an infinite pattern."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=58238
    title: Shmups Forum Hi-Score Topic

Acrobat Mission

name: "Acrobat Mission"
name-jp: "アクロバットミッション"
name-kana: "あくろばっとみっしょん"
company: "UPL"
needs-work: true

scores:
  - score: 905,800
    player: URX-ODA.Z
    autofire: OFF
    sources:
      - name: Arcadia
        date: "2009-07"

  - score: 996,800
    player: URX-ODA.Z
    autofire: ON
    sources:
      - name: Arcadia
        date: "2009-07"

links:
  - url: https://shmups.system11.org/viewtopic.php?t=52718
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            autofire: asc

Air Buster

name: "Air Buster"
name-jp: "エアバスター"
name-kana: "えあぶすたー"
company: "Kaneko"
needs-work: true

scores:
  - score: 1,937,890
    player: HST-(お)SPT
    sources:
      - name: Gamest
        date: "1990-05"

  - score: 2,324,830
    player: B,Z
    sources:
      - name: Gamest
        date: "1990-06"

links:
  - url: https://shmups.system11.org/viewtopic.php?t=54749
    title: Shmups Forum Hi-Score Topic

Air Duel

name: "Air Duel"
name-jp: "エアデュエル"
name-kana: "えあでゅえる"
company: "Irem"
needs-work: true

scores:
  - score: 1,212,500
    player: ESSAY-NMF-M12
    autofire: OFF
    sources:
      - name: Gamest
        date: "1991-02"

  - score: 1,239,800
    player: 師匠
    autofire: ON
    sources:
      - name: Arcadia
        date: "2002-08"

  - score: 1,305,100
    player: KDK-TAKEYUKI
    autofire: ON
    sources:
      - name: Arcadia
        date: "2008-08"

  - score: 1,321,000
    player: KDK-TAKEYUKI
    autofire: ON
    sources:
      - name: JHA
        date: "2019-03"

  - score: 1,330,900
    player: KDK-TAKEYUKI
    autofire: ON
    sources:
      - name: JHA
        date: "2019-04"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1990_010_%E3%82%A8%E3%82%A2%E3%83%87%E3%83%A5%E3%82%A8%E3%83%AB
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=42877
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            autofire: asc

Air Gallet / Akuu Gallet

name: "Air Gallet / Akuu Gallet"
name-jp: "アクウギャレット"
name-kana: "あくうぎゃれっと"
company: "Gazelle"
needs-work: true

scores:
  - score: 10,953,810
    player: DBS
    sources:
      - name: Arcadia
        date: "2003-02"

  - score: 10,954,930
    player: DBS
    sources:
      - name: Arcadia
        date: "2003-03"

  - score: 11,054,340
    player: DBS
    sources:
      - name: Arcadia
        date: "2003-08"

  - score: 11,316,760
    player: DBS
    sources:
      - name: Arcadia
        date: "2003-09"

  - score: 11,347,840
    player: DBS
    sources:
      - name: "Played date: 2003-07-21"
      - name: Twitter
        date: "2016-02-28"
        url: https://twitter.com/dbsqawsedrftgyh/status/703962987615244289
      - name: Arcadia
        date: "2003-10"

links:
  - url: https://shmups.system11.org/viewtopic.php?f=2&t=66146
    title: Shmups Forum Hi-Score Topic

Aka to Blue Type-R

name: "Aka to Blue Type-R"
name-jp: "アカとブルー TYPE-R"
name-kana: "あかとぶるー たいぷ れぼりゅーしょん"
company: "Tanoshimasu"
needs-work: true

scores:
  - score: 37,175,098,680
    player: かがり
    ship: Blue Owl
    sources:
      - name: JHA
        date: "2020-01"
    comments:
      - "1L remaining"

  - score: 42,710,941,860
    player: かがり
    ship: Blue Owl
    sources:
      - name: JHA
        date: "2020-02"
    comments:
      - "1L remaining"

  - score: 45,048,448,870
    player: かがり
    ship: Blue Owl
    sources:
      - name: JHA
        date: "2020-03"
    comments:
      - "2L remaining"

  - score: 49,748,574,450
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-05-29"
        url: https://twitter.com/kagali314/status/1266250442062704645

  - score: 50,266,169,930
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-06-01"
        url: https://twitter.com/kagali314/status/1267457121072766976

  - score: 51,010,959,330
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-06-17"
        url: https://twitter.com/kagali314/status/1273204472076857350

  - score: 51,122,154,320
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-06-22"
        url: https://twitter.com/kagali314/status/1275027203290353667

  - score: 54,264,082,440
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-06-23"
        url: https://twitter.com/kagali314/status/1275372743056228353

  - score: 55,025,025,730
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-07-18"
        url: https://twitter.com/kagali314/status/1284503244580896768
      - name: JHA
        date: "2020-07"
    comments:
      - "0L remaining"

  - score: 55,256,947,310
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-08-29"
        url: https://twitter.com/kagali314/status/1299725447186407433

  - score: 57,133,730,970
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-09-04"
        url: https://twitter.com/kagali314/status/1301857647658823680

  - score: 58,127,955,280
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-09-21"
        url: https://twitter.com/kagali314/status/1308001191444377600
      - name: JHA
        date: "2020-09"
    comments:
      - "1L remaining"

  - score: 58,438,107,920
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-09-29"
        url: https://twitter.com/kagali314/status/1310916617803423747

  - score: 59,633,549,480
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-10-05"
        url: https://twitter.com/kagali314/status/1313124772599885824

  - score: 60,182,045,400
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-10-20"
        url: https://twitter.com/kagali314/status/1318509928185647104

  - score: 60,254,025,180
    player: かがり
    ship: Blue Owl
    sources:
      - name: Twitter
        date: "2020-11-07"
        url: https://twitter.com/kagali314/status/1325059093581631489
      - name: JHA
        date: "2020-11"
    comments:
      - "1L remaining"

  - score: 32,198,114,940
    player: AFO
    ship: Fire Bird
    sources:
      - name: JHA
        date: "2020-01"
    comments:
      - "0L remaining"

  - score: 33,643,482,490
    player: AFO
    ship: Fire Bird
    sources:
      - name: JHA
        date: "2020-02"
    comments:
      - "1L remaining"

  - score: 37,049,974,150
    player: AFO
    ship: Fire Bird
    sources:
      - name: JHA
        date: "2020-03"
    comments:
      - "1L remaining"

  - score: 40,265,261,520
    player: AFO
    ship: Fire Bird
    sources:
      - name: JHA
        date: "2020-04"
    comments:
      - "1L remaining"

  - score: 41,704,872,790
    player: AFO
    ship: Fire Bird
    sources:
      - name: JHA
        date: "2020-06"
    comments:
      - "1L remaining"

  - score: 45,134,815,560
    player: AFO
    ship: Fire Bird
    sources:
      - name: Twitter
        date: "2020-07-05"
        url: https://twitter.com/highmustang/status/1279755207379783681
      - name: JHA
        date: "2020-07"
    comments:
      - "1L remaining"

  - score: 46,173,081,580
    player: AFO
    ship: Fire Bird
    sources:
      - name: Twitter
        date: "2020-08-16"
        url: https://twitter.com/highmustang/status/1294942045367197696
      - name: JHA
        date: "2020-08"

  - score: 46,392,113,740
    player: AFO
    ship: Fire Bird
    sources:
      - name: JHA
        date: "2020-09"
    comments:
      - "0L remaining"

  - score: 46,628,088,580
    player: AFO
    ship: Fire Bird
    sources:
      - name: JHA
        date: "2020-10"

  - score: 47,821,892,000
    player: AFO
    ship: Fire Bird
    sources:
      - name: Twitter
        date: "2020-10-28"
        url: https://twitter.com/highmustang/status/1321435291127672833
      - name: JHA
        date: "2020-11"
    comments:
      - "1L remaining"
    attributes:
        is-current-record: true

  - score: 49,094,290,690
    player: AFO
    ship: Fire Bird
    sources:
      - name: Twitter
        date: "2020-11-19"
        url: https://twitter.com/highmustang/status/1329372211170349057

  - score: 50,240,412,600
    player: AFO
    ship: Fire Bird
    sources:
      - name: Twitter
        date: "2020-11-26"
        url: https://twitter.com/highmustang/status/1331855244494397441

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/2019_005_%E3%82%A2%E3%82%AB%E3%81%A8%E3%83%96%E3%83%AB%E3%83%BC_TYPE-R
    title: JHA Leaderboard

translations:
  - property: ship
    value: Blue Owl
    value-jp: ブルーアウル
  - property: ship
    value: Fire Bird
    value-jp: ファイアバード

Akai Katana

name: "Akai Katana"
name-jp: "赤い刀"
name-kana: "あかいかたな"
company: "CAVE"
needs-work: true

scores:
  - score: 472,554,090
    player: 太菱
    ship: Type 1 (Sumire & Tsubaki)
    sources:
      - name: Arcadia
        date: "2011-07"

  - score: 454,324,700
    player: LON
    ship: Type 2 (Kikyou & Botan)
    sources:
      - name: Arcadia
        date: "2012-02"

  - score: 540,176,130
    player: AKF
    ship: Type 3 (Suzuran & Shion)
    sources:
      - name: Twitter
        date: "2015-05-14"
        url: https://twitter.com/AKF0403/status/598859181546844160
      - name: Arcadia
        date: "2012-07"

links:
  - url: https://shmups.system11.org/viewtopic.php?f=2&t=45652
    title: Shmups Forum Hi-Score Topic

translations:
  - property: ship
    value: Type 1 (Sumire & Tsubaki)
    value-jp: 壱号機
  - property: ship
    value: Type 2 (Kikyou & Botan)
    value-jp: 弐号機
  - property: ship
    value: Type 3 (Suzuran & Shion)
    value-jp: 参号機

layout:
    sort:
        scores:
            ship: asc

Akai Katana Shin

name: "Akai Katana Shin"
name-jp: "赤い刀 真"
name-kana: "あかいかたな しん"
company: "CAVE"
needs-work: true

scores:
  - score: 6,215,570,537
    player: NTK
    ship: Type 1 (Sumire & Tsubaki)
    platform: arcade
    sources:
      - name: Arcadia
        date: "2013-02"

  - score: 6,226,686,705
    player: コッシー
    ship: Type 1 (Sumire & Tsubaki)
    platform: arcade
    sources:
      - name: Twitter
        date: "2019-09-05"
        url: https://twitter.com/zubrowk777/status/1169547458965229568

  - score: 6,257,379,748
    player: コッシー
    ship: Type 1 (Sumire & Tsubaki)
    platform: arcade
    sources:
      - name: Twitter
        date: "2019-10-26"
        url: https://twitter.com/zubrowk777/status/1188048014784397313
      - name: JHA
        date: "2019-11"
    comments:
      - "3L 3B remaining"
      - "2p side"

  - score: 6,316,148,633
    player: コッシー
    ship: Type 1 (Sumire & Tsubaki)
    platform: arcade
    sources:
      - name: Twitter
        date: "2019-11-23"
        url: https://twitter.com/zubrowk777/status/1198178202876694528
      - name: JHA
        date: "2019-12"
    comments:
      - "highest score Nesica"

  - score: 7,124,620,223
    player: NTK
    ship: Type 1 (Sumire & Tsubaki)
    platform: console
    sources:
      - name: Twitter
        date: "2020-11-28"
        url: https://twitter.com/nitiku08/status/1332668901331668992
    comments:
      - "highest score Xbox 360"

  - score: 8,182,786,108
    player: NAT
    ship: Type 2 (Kikyou & Botan)
    sources:
      - name: Twitter
        date: "2020-06-07"
        url: https://twitter.com/STG44118260/status/1269486546098335746

  - score: 8,303,248,474
    player: NAT
    ship: Type 2 (Kikyou & Botan)
    sources:
      - name: Twitter
        date: "2020-06-15"
        url: https://twitter.com/STG44118260/status/1272475979487703043

  - score: 8,425,684,225
    player: NAT
    ship: Type 2 (Kikyou & Botan)
    sources:
      - name: Twitter
        date: "2020-06-20"
        url: https://twitter.com/STG44118260/status/1274250160424366080

  - score: 8,507,327,782
    player: NAT
    ship: Type 2 (Kikyou & Botan)
    sources:
      - name: Twitter
        date: "2020-06-25"
        url: https://twitter.com/STG44118260/status/1276107408587108352

  - score: 8,743,966,696
    player: NAT
    ship: Type 2 (Kikyou & Botan)
    sources:
      - name: Twitter
        date: "2020-10-01"
        url: https://twitter.com/STG44118260/status/1311601358420631553

  - score: 8,823,570,757
    player: NAT
    ship: Type 2 (Kikyou & Botan)
    sources:
      - name: Twitter
        date: "2020-11-27"
        url: https://twitter.com/STG44118260/status/1332236845992669185

  - score: 8,909,024,661
    player: NAT
    ship: Type 2 (Kikyou & Botan)
    sources:
      - name: Twitter
        date: "2020-12-23"
        url: https://twitter.com/STG44118260/status/1341672831013146624

  - score: 6,417,031,312
    player: NTK
    ship: Type 3 (Suzuran & Shion)
    sources:
      - name: Arcadia
        date: "2013-02"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/2012_008_%E8%B5%A4%E3%81%84%E5%88%80_%E7%9C%9F%EF%BC%88%E3%83%8D%E3%82%B7%E3%82%AB%E7%89%88%EF%BC%89
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?f=2&t=45652
    title: Shmups Forum Hi-Score Topic

translations:
  - property: ship
    value: Type 1 (Sumire & Tsubaki)
    value-jp: 壱号機
  - property: ship
    value: Type 2 (Kikyou & Botan)
    value-jp: 弐号機
  - property: ship
    value: Type 3 (Suzuran & Shion)
    value-jp: 参号機

layout:
    sort:
        scores:
            ship: asc
            platform: asc

Akkanvader / Space Invaders '95

name: "Akkanvader / Space Invaders '95"
name-jp: "あっかんべぇだぁ〜"
name-kana: "あっかんべぇだぁー"
company: "Taito"
needs-work: true

scores:
  - score: 1,181,060
    player: AXIOM-Y.N
    sources:
      - name: Micom Basic
        date: "1995-11"

  - score: 1,191,500
    player: KDK-TAKEYUKI
    sources:
      - name: JHA
        date: "2016-09"
    comments:
      - "autofire"

  - score: 1,302,700
    player: KDK-TAKEYUKI
    sources:
      - name: JHA
        date: "2016-11"
    comments:
      - "autofire"

  - score: 1,381,890
    player: KDK-TAKEYUKI
    sources:
      - name: JHA
        date: "2017-02"
    comments:
      - "autofire"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1995_013_%E3%81%82%E3%81%A3%E3%81%8B%E3%82%93%E3%81%B9%E3%81%87%E3%81%A0%E3%81%81%E3%80%9C
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=33065
    title: Shmups Forum Hi-Score Topic

Andro Dunos

name: "Andro Dunos"
name-jp: "アンドロデュノス"
name-kana: "あんどろでゅのす"
company: "Visco"
counterstop:
    score: 10,000,000+α
    type: soft
needs-work: true

scores:
  - score: 10,000,000+α
    player: SPT
    autofire: OFF
    sources:
      - name: Gamest
        date: "1992-10"
    comments:
      - "stage 9-4"

  - score: 10,000,000+α
    player: SPT
    autofire: ON
    sources:
      - name: Micom Basic
        date: "1992-09"
    comments:
      - "stage 9-4"
    attributes:
        is-current-record: true

  - score: 10,000,000+α
    player: HIR
    autofire: ON
    sources:
      - name: Micom Basic
        date: "1992-09"
    comments:
      - "stage 9-5"
    attributes:
        is-current-record: true

  - score: 10,000,000+α
    player: GOL屋
    autofire: ON
    sources:
      - name: Micom Basic
        date: "1992-09"
    comments:
      - "stage 9-4"
    attributes:
        is-current-record: true

  - score: 10,000,000+α
    player: YUJ
    autofire: ON
    sources:
      - name: Micom Basic
        date: "1992-09"
    comments:
      - "stage 9-4"
    attributes:
        is-current-record: true

description: "Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=19702
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            autofire: asc

Arbalester

name: "Arbalester"
name-jp: "アルバレスタ"
name-kana: "あるばれすた"
company: "Jorudan"
needs-work: true

scores:
  - score: 3,348,000
    player: Comb-Sniper-NOM
    sources:
      - name: Gamest
        date: "1989-08"

Area 88 / U.N. Squadron

name: "Area 88 / U.N. Squadron"
name-jp: "エリア88"
name-kana: "えりあはちじゅうはち"
company: "Capcom"
counterstop:
    score: 9,999,990
    type: hard
needs-work: true

scores:
  - score: 9,999,990
    player: 中野ガイル
    sources:
      - name: Arcadia
        date: "2004-04"
    comments:
      - "Mobi x6"

description: "Note: No official score keeping tradition due to the detection of an infinite pattern (turrets at final boss spawn infinitely, no timeout) right after the release of the game. Scoreboard closed after the achievement of the counterstop at 9,999,990."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=11308
    title: Shmups Forum Hi-Score Topic

Argus

name: "Argus"
name-jp: "アーガス"
name-kana: "あーがす"
company: "NMK"
needs-work: true

scores:
  - score: 25,387,200
    player: BROS(PUMPKIN)
    sources:
      - name: Micom Basic
        date: "1986-05"
    comments:
      - "hard rank"
      - "stage 22"

links:
  - url: https://shmups.system11.org/viewtopic.php?t=61657
    title: Shmups Forum Hi-Score Topic

Armed Police Batrider

name: "Armed Police Batrider"
name-jp: "アームドポリス バトライダー"
name-kana: "あーむどぽりすばとらいだー"
company: "Raizing / 8ing"
needs-work: true

scores:
  - score: 28,866,410
    player: LAOS-長田仙人
    mode: Team Edit
    ship: Mixed Team
    sources:
      - name: Arcadia
        date: "2000-05"

  - score: 28,868,030
    player: LAOS-長田仙人
    mode: Team Edit
    ship: Mixed Team
    sources:
      - name: Arcadia
        date: "2000-11"

  - score: 29,263,970
    player: LAOS-長田仙人
    mode: Team Edit
    ship: Mixed Team
    sources:
      - name: Arcadia
        date: "2002-05"

  - score: 29,317,110
    player: ADS-J.J
    mode: Team Edit
    ship: Mixed Team
    sources:
      - name: Arcadia
        date: "2010-10"
    comments:
      - "used Carpet, Maria, Flying Baron"

  - score: 29,449,270
    player: ADS-J.J
    mode: Team Edit
    ship: Mixed Team
    sources:
      - name: Twitter
        date: "2012-01-09"
        url: https://twitter.com/adfjj_R/status/156270357081362432
    comments:
      - "used Carpet, Flying Baron, Maria"
    image-urls:
      - http://art59.photozou.jp/pub/762/1454762/photo/117168088_624.v1610020882.jpg

  - score: 29,737,030
    player: TTH
    mode: Team Edit
    ship: Mixed Team
    sources:
      - name: Twitter
        date: "2014-04-18"
        url: https://twitter.com/tatehajp/status/457236048028790784
      - name: Arcadia
        date: "2014-07"
    comments:
      - "used Carpet, Flying Baron, Maria"

  - score: 23,053,160
    player: TTH
    mode: Team Edit
    ship: Garegga Team
    sources:
      - name: Twitter
        date: "2011-05-27"
        url: https://twitter.com/tatehajp/status/74144592651493376
    comments:
      - "used Grass Hopper, Flying Baron, Silver Sword"
    image-urls:
      - https://twitpic.com/53895f

  - score: 14,183,520
    player: ADS-J.J
    mode: Team Select
    ship: Police Team
    sources:
      - name: Twitter
        date: "2014-03-29"
        url: https://twitter.com/adfjj_R/status/449843287998746624
    image-urls:
      - http://kura3.photozou.jp/pub/762/1454762/photo/200521688_624.v1610020882.jpg

  - score: 14,178,990
    player: HIS
    mode: Player Select
    ship: Bornnam
    sources:
      - name: Twitter
        date: "2020-07-24"
        url: https://twitter.com/his_stg/status/1286527118310948864

  - score: 22,090,270
    player: SKR
    mode: Player Select
    ship: Carpet
    sources:
      - name: Twitter
        date: "2019-09-09"
        url: https://twitter.com/apb_skr/status/1183265726947188736

  - score: 15,844,040
    player: nekobi
    mode: Player Select
    ship: D.D
    sources:
      - name: Twitter
        date: "2017-07-22"
        url: https://twitter.com/nekobi/status/888762708727808000

  - score: 21,009,450
    player: nekobi
    mode: Player Select
    ship: Flying Baron
    sources:
      - name: Twitter
        date: "2020-06-06"
        url: https://twitter.com/nekobi/status/1269218043948699650

  - score: 16,087,630
    player: nekobi
    mode: Player Select
    ship: Gain
    sources:
      - name: Twitter
        date: "2017-07-12"
        url: https://twitter.com/nekobi/status/885128509286268930

  - score: 14,850,130
    player: nekobi
    mode: Player Select
    ship: Golden
    sources:
      - name: Twitter
        date: "2016-04-30"
        url: https://twitter.com/nekobi/status/726415284580454401

  - score: 14,496,020
    player: fufufu
    mode: Player Select
    ship: Jyuji
    sources:
      - name: Twitter
        date: "2019-10-20"
        url: https://twitter.com/222_fu/status/1185907581610422273
      - name: Youtube
        date: "2019-10-20"
        url: https://youtu.be/DedVMT-nWeo

  - score: 13,761,950
    player: nekobi
    mode: Player Select
    ship: Maria
    sources:
      - name: Twitter
        date: "2018-09-05"
        url: https://twitter.com/nekobi/status/1037301762330320896
    comments:
      - "no option play"

  - score: 21,078,300
    player: nekobi
    mode: Player Select
    ship: Miyamoto
    sources:
      - name: Twitter
        date: "2019-01-30"
        url: https://twitter.com/nekobi/status/1090571369748738048

  - score: 16,094,510
    player: Tein_Gauntlet
    mode: Player Select
    ship: Silver Sword
    sources:
      - name: Twitter
        date: "2020-01-19"
        url: https://twitter.com/HiroThikuro/status/1218844313641046017

  - score: 13,456,940
    player: tmj
    mode: Player Select
    ship: Strawman
    sources:
      - name: Twitter
        date: "2011-07-14"
        url: https://twitter.com/tmj_o/status/91547437902217217
    image-urls:
      - https://twitpic.com/5q2ocm

links:
  - url: https://shmups.system11.org/viewtopic.php?t=35079
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            mode: [ Team Edit, Team Select, Player Select ]
            ship: [ Bornnam, Carpet, D.D, Flying Baron, Gain, Golden, Jyuji, Maria, Miyamoto, Silver Sword, Strawman ]

translations:
  - property: ship
    value: Mixed Team
    value-jp: 雑チーム
  - property: ship
    value: Garegga Team
    value-jp: ガレッガチーム
  - property: ship
    value: Police Team
    value-jp: 元警官チーム
  - property: ship
    value: Bornnam
    value-jp: ボーンナム
  - property: ship
    value: Carpet
    value-jp: カーペット
  - property: ship
    value: Flying Baron
    value-jp: 3号機
  - property: ship
    value: Gain
    value-jp: ガイン
  - property: ship
    value: Golden
    value-jp: ゴールデン
  - property: ship
    value: Jyuji
    value-jp: ジュージ
  - property: ship
    value: Maria
    value-jp: マリア
  - property: ship
    value: Miyamoto
    value-jp: ミヤモト
  - property: ship
    value: Silver Sword
    value-jp: 1号機
  - property: ship
    value: Strawman
    value-jp: ストローマン
  - property: mode
    value: Team Edit
    value-jp: チームエディット
  - property: mode
    value: Team Select
    value-jp: チームセレクト
  - property: mode
    value: Player Select
    value-jp: プレイヤーセレクト

Ashura Blaster

name: "Ashura Blaster"
name-jp: "阿修羅ブラスター"
name-kana: "あしゅらぶらすたー"
company: "Visco"
counterstop:
    score: 9,999,900
    type: hard
needs-work: true

scores:
  - score: 9,999,900
    player: 東亜愛好会 E.T RYUU
    sources:
      - name: Gamest
        date: ?

description: "Note: Scoreboard closed after the achievement of the counterstop at 9,999,900."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=49692
    title: Shmups Forum Hi-Score Topic

ASO II / Alpha Mission II

name: "ASO II / Alpha Mission II"
name-jp: "ASO II"
name-kana: "えー・えす・おー・つー"
company: "SNK"
needs-work: true

scores:
  - score: 3,477,500
    player: XUR
    sources:
      - name: Youtube
        date: "2020-02-19"
        url: https://youtu.be/4o7zBH26g3E
    comments:
      - "played on Wolfmame 170"

  - score: 3,358,300
    player: 山崎正敬
    sources:
      - name: Gamest
        date: "1991-12"
    attributes:
        is-current-record: true

description: "Note: No official score keeping tradition due to the detection of an infinite pattern right after the release of the game."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=62179
    title: Shmups Forum Hi-Score Topic

ASO: Armored Scrum Object / Alpha Mission

name: "ASO: Armored Scrum Object / Alpha Mission"
name-jp: "ASO"
name-kana: "えー・えす・おー"
company: "SNK"
counterstop:
  - score: 6,708,910
    type: soft
  - score: 9,999,990
    type: hard
needs-work: true

scores:
  - score: 6,708,910
    player: REOGANAIZE TO・副会長
    sources:
      - name: Micom Basic
        date: "1986-09"
    attributes:
        is-current-record: true

  - score: 9,999,990
    player: 木之本まい'ん
    sources:
      - name: Arcadia
        date: "2004-05"

description: "Note: Japanese scoreboard closed September 1986 due to the detection of an infinite pattern. Shmups Wiki scoreboard closed after the achievement of the counterstop at 9,999,900."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=62179
    title: Shmups Forum Hi-Score Topic


Asuka & Asuka

name: "Asuka & Asuka"
name-jp: "飛鳥&飛鳥"
name-kana: "あすかあんどあすか"
company: "Visco"
needs-work: true

scores:
  - score: 924,700
    player: BAD-北大和のILM
    sources:
      - name: Gamest
        date: "1989-06"

Atomic Robo-Kid

name: "Atomic Robo-Kid"
name-jp: "アトミックロボキッド"
name-kana: "あとみっくろぼきっど"
company: "UPL"
counterstop:
    score: 552,800
    type: soft
needs-work: true

scores:
  - score: 1,158,100
    player: P
    sources:
      - name: Youtube
        date: "2018-03-10"
        url: https://youtu.be/MsMTKplu9ps

  - score: 552,800
    player: GMC-HIMU
    sources:
      - name: Gamest
        date: "1989?"
    comments:
      - "stage 17"
    attributes:
        is-current-record: true

description: "Note: Japanese scoreboard closed due to the detection of an infinite pattern."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=59890
    title: Shmups Forum Hi-Score Topic

B-Wings

name: "B-Wings"
name-jp: "B-Wings"
name-kana: "びー・うぃんぐず"
company: "Data East"
counterstop:
    score: 9,999,999
    type: hard
needs-work: true

scores:
  - score: 9,999,999
    player: EXCHANGER
    sources:
      - name: Micom Basic
        date: "1985-01"
    attributes:
        is-current-record: true

  - score: 9,999,999
    player: FUL
    sources:
      - name: Micom Basic
        date: "1985-01"
    comments:
      - "stage 45 clear"
    attributes:
        is-current-record: true

  - score: 9,999,999
    player: IKE
    sources:
      - name: Micom Basic
        date: "1985-01"
    attributes:
        is-current-record: true

  - score: 9,999,999
    player: SPE
    sources:
      - name: Micom Basic
        date: "1985-01"
    attributes:
        is-current-record: true

  - score: 9,999,999
    player: 池田くん
    sources:
      - name: Micom Basic
        date: "1985-01"
    attributes:
        is-current-record: true

  - score: 9,999,999
    player: 大塚聡
    sources:
      - name: Micom Basic
        date: "1985-01"
    attributes:
        is-current-record: true

  - score: 9,999,999
    player: 近藤秀人
    sources:
      - name: Micom Basic
        date: "1985-01"
    comments:
      - "stage 45 clear"
    attributes:
        is-current-record: true

  - score: 9,999,999
    player: BLUE MAX
    sources:
      - name: Micom Basic
        date: "1985-01"
    attributes:
        is-current-record: true

  - score: 9,999,999
    player: GMC
    sources:
      - name: Micom Basic
        date: "1985-01"
    attributes:
        is-current-record: true

  - score: 9,999,999
    player: MATSUO
    sources:
      - name: Micom Basic
        date: "1985-01"
    attributes:
        is-current-record: true

description: "Note: Scoreboard closed after the achievement of the counterstop at 9,999,999."

Bakuretsu Breaker / Explosive Breaker

name: "Bakuretsu Breaker / Explosive Breaker"
name-jp: "爆烈ブレイカー"
name-kana: "ばくれつぶれいかー"
company: "Kaneko"
needs-work: true

scores:
  - score: 953,620
    player: HKR
    autofire: OFF
    sources:
      - name: Gamest
        date: "?"

  - score: 1,386,430
    player: FGM-UKA
    autofire: ON
    sources:
      - name: Gamest
        date: "1997-03"
    comments:
      - "used Mifune"

  - score: 1,455,050
    player: hamami
    autofire: ON
    sources:
      - name: Twitter
        date: "2017-06-09"
        url: https://twitter.com/hamami999/status/873192964347928576
      - name: JHA
        date: "2017-06"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1992_011_%E7%88%86%E7%83%88%E3%83%96%E3%83%AC%E3%82%A4%E3%82%AB%E3%83%BC
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=61632
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            autofire: asc

Batsugun

name: "Batsugun"
name-jp: "バツグン"
name-kana: "ばつぐん"
company: "Toaplan"
needs-work: true

scores:
  - score: 20,568,180
    player: お師匠
    autofire: OFF
    ship: Type A
    sources:
      - name: Gamest
        date: "1995-10"

  - score: 24,498,500
    player: KEN
    autofire: OFF
    ship: Type B
    sources:
      - name: Gamest
        date: "1995-06"

  - score: 23,167,960
    player: 近江からの使者
    autofire: OFF
    ship: Type C
    sources:
      - name: Gamest
        date: "1994-07"
    comments:
      - "3B remaining"

  - score: 23,141,730
    player: KDK-TAKEYUKI
    autofire: ON
    ship: Type A
    sources:
      - name: Arcadia
        date: "2004-02"

  - score: 24,027,280
    player: KDK-TAKEYUKI
    autofire: ON
    ship: Type A
    sources:
      - name: Arcadia
        date: "2004-04"

  - score: 25,323,130
    player: KDK-TAKEYUKI
    autofire: ON
    ship: Type A
    sources:
      - name: Arcadia
        date: "2004-07"

  - score: 26,384,910
    player: KDK-TAKEYUKI
    autofire: ON
    ship: Type A
    sources:
      - name: Arcadia
        date: "2012-08"

  - score: 27,116,820
    player: KDK-TAKEYUKI
    autofire: ON
    ship: Type B
    sources:
      - name: Arcadia
        date: "2009-10"

  - score: 24,435,930
    player: DISCOVERY
    autofire: ON
    ship: Type C
    sources:
      - name: Arcadia
        date: "2001-06"

  - score: 24,547,290
    player: DISCOVERY
    autofire: ON
    ship: Type C
    sources:
      - name: Arcadia
        date: "2001-07"

  - score: 26,486,810
    player: KDK-TAKEYUKI
    autofire: ON
    ship: Type C
    sources:
      - name: Arcadia
        date: "2005-01"

links:
  - url: https://shmups.system11.org/viewtopic.php?t=49323
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            autofire: asc
            ship: [ Type A, Type B, Type C ]

Batsugun Special Version

name: "Batsugun Special Version"
name-jp: "バツグン スペシャルバージョン"
name-kana: "ばつぐん すぺしゃるばーじょん"
company: "Toaplan"
counterstop:
    score: 99,999,990
    type: hard
needs-work: true

scores:
  - score: 99,999,990
    player: "[various players]"
    ship: Type A
    attributes:
        is-current-record: true

  - score: 99,999,990
    player: "[various players]"
    ship: Type B
    attributes:
        is-current-record: true

  - score: 99,999,990
    player: "[various players]"
    ship: Type C
    attributes:
        is-current-record: true

description: "Note: Scoreboard closed after the achievement of the counterstop at 99,999,990."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=49323
    title: Shmups Forum Hi-Score Topic

Battlantis

name: "Battlantis"
name-jp: "バトランティス"
name-kana: "ばとらんてぃす"
company: "Konami"
needs-work: true

scores:
  - score: 2,107,880
    player: 穴を埋める事しか興味がない男
    sources:
      - name: Micom Basic
        date: "1998-06"

links:
  - url: https://shmups.system11.org/viewtopic.php?t=59610
    title: Shmups Forum Hi-Score Topic

Battle Bakraid

name: "Battle Bakraid"
name-jp: "バトルバクレイド"
name-kana: "ばとるばくれいど"
company: "Raizing / 8ing"
counterstop:
    score: 63,999,990
    type: hard
needs-work: true

scores:
  - score: 63,999,990
    player: LAOS-長田仙人
    sources:
      - name: Gamest
        date: "1999-07"
    attributes:
        is-current-record: true

  - score: 63,999,990
    player: GSK
    sources:
      - name: Gamest
        date: "1999-07"
    attributes:
        is-current-record: true

  - score: 63,999,990
    player: ガレッガマンNAS
    sources:
      - name: Gamest
        date: "1999-07"
    attributes:
        is-current-record: true

  - score: 63,999,990
    player: れっさー
    sources:
      - name: Gamest
        date: "1999-07"
    attributes:
        is-current-record: true

description: "Note: Scoreboard closed after the achievement of the counterstop at 63,999,990. Competition moved over to Battle Bakraid Unlimited Version."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=16137
    title: Shmups Forum Hi-Score Topic

Battle Bakraid Unlimited Version

name: "Battle Bakraid Unlimited Version"
name-jp: "バトルバクレイド アンリミテッドバージョン"
name-kana: "ばとるばくれいど あんりみてっどばーじょん"
company: "Raizing / 8ing"
needs-work: true

scores:
  - score: 120,392,170
    player: LAOS-長田仙人
    sources:
      - name: Arcadia
        date: "1999-12"
    attributes:
        is-current-record: false

  - score: 122,071,850
    player: ISO / Niboshi
    sources:
      - name: Arcadia
        date: "2002-05"
    attributes:
        is-current-record: false

  - score: 132,590,070
    player: ISO / Niboshi
    sources:
      - name: Arcadia
        date: "2013-07"
    attributes:
        is-current-record: false

  - score: 136,131,530
    player: ISO / Niboshi
    ship: Blade Owl
    sources:
      - name: JHA
        date: "2019-05"
    comments:
      - "autofire"

  - score: 138,113,920
    player: ISO / Niboshi
    ship: Blade Owl
    sources:
      - name: Twitter
        date: "2019-05-22"
        url: https://twitter.com/nibooji/status/1131180676265332736

  - score: 143,976,590
    player: ISO / Niboshi
    ship: Blade Owl
    sources:
      - name: Twitter
        date: "2019-06-04"
        url: https://twitter.com/niboooji/status/1135848799711051776
      - name: JHA
        date: "2019-06"
    comments:
      - "autofire"

  - score: 109,604,330
    player: ciox
    ship: Buster Lizard
    sources:
      - name: Youtube
        date: "2017-07-11"
        url: https://youtu.be/T57hT0yc0tI
    comments:
      - "no clear"
      - "played on Shmupmame 4.2"

  - score: 102,822,780
    player: G
    ship: Buster Lizard
    sources:
      - name: Twitter
        date: "2020-02-02"
        url: https://twitter.com/G_WS1945/status/1223938082178600961
    comments:
      - "clear"
    attributes:
        is-current-record: true

  - score: 115,140,180
    player: G
    ship: Flame Viper
    sources:
      - name: Twitter
        date: "2019-11-18"
        url: https://twitter.com/G_WS1945/status/1196441773641367552

  - score: 99,423,790
    player: ciox
    ship: Saber Tiger
    sources:
      - name: Shmups Forum
        date: "2016-12-09"
        url: https://shmups.system11.org/viewtopic.php?p=1228332#p1228332
    comments:
      - "played on Shmupmame 4.2"

  - score: 112,844,300
    player: ciox
    ship: Sky Dragon
    sources:
      - name: Shmups Forum
        date: "2018-03-16"
        url: https://shmups.system11.org/viewtopic.php?p=1307030#p1307030
      - name: Youtube
        date: "2018-03-16"
        url: https://youtu.be/biRAomqr83o
    comments:
      - "played on Shmupmame 4.2"

  - score: 102,187,020
    player: G
    ship: Steel Bat
    sources:
      - name: Twitter
        date: "2019-11-26"
        url: https://twitter.com/G_WS1945/status/1199224027144785921

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1999_026_%E3%83%90%E3%83%88%E3%83%AB%E3%83%90%E3%82%AF%E3%83%AC%E3%82%A4%E3%83%89_%E3%82%A2%E3%83%B3%E3%83%AA%E3%83%9F%E3%83%86%E3%83%83%E3%83%89Ver.
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=16137
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            ship: asc

Battle Garegga

name: "Battle Garegga"
name-jp: "バトルガレッガ"
name-kana: "ばとるがれっが"
company: "Raizing / 8ing"
counterstop:
  - score: 17,791,750
    type: soft
  - score: 16,790,350
    type: soft
  - score: 16,105,190
    type: soft
  - score: 20,812,270
    type: soft
  - score: 15,981,940
    type: soft
  - score: 18,546,440
    type: soft
  - score: 16,751,930
    type: soft
  - score: 17,413,590
    type: soft
needs-work: true

scores:
  - score: 17,791,750
    player: Yamanaka
    mode: Normal
    ship: Bornnam
    platform: arcade
    sources:
      - name: Arcadia
        date: "2013-06"
    comments:
      - "after birds 2.20m"
      - "highest score Arcade"

  - score: 17,810,890
    player: Y.S.333
    mode: Normal
    ship: Bornnam
    platform: console
    sources:
      - name: Twitter
        date: "2020-04-19"
        url: https://twitter.com/ys333pin/status/1251777580623032320
    comments:
      - "highest score PS4 (gadget display ON)"

  - score: 17,860,850
    player: Y.S.333
    mode: Normal
    ship: Bornnam
    platform: console
    sources:
      - name: Twitter
        date: "2020-06-02"
        url: https://twitter.com/ys333pin/status/1267689987148926978
    comments:
      - "highest score PS4 (gadget display OFF)"

  - score: 17,947,720
    player: Y.S.333
    mode: Normal
    ship: Bornnam
    platform: console
    sources:
      - name: Twitter
        date: "2020-07-13"
        url: https://twitter.com/ys333pin/status/1282502695492845568
    comments:
      - "highest score PS4 (gadget display OFF)"

  - score: 17,968,650
    player: Y.S.333
    mode: Normal
    ship: Bornnam
    platform: console
    sources:
      - name: Twitter
        date: "2020-12-14"
        url: https://twitter.com/ys333pin/status/1338264118050971648
    comments:
      - "highest score PS4 (gadget display OFF)"

  - score: 16,790,350
    player: ツィ~まる。
    mode: Normal
    ship: Chitta
    platform: arcade
    sources:
      - name: Arcadia
        date: "2011-03"
    comments:
      - "after stage 5 11.50m"
      - "highest score Arcade"

  - score: 16,920,870
    player: KET
    mode: Normal
    ship: Chitta
    platform: console
    sources:
      - name: Twitter
        date: "2020-05-09"
        url: https://twitter.com/ket_garelove/status/1259133074094190592
      - name: Youtube
        date: "2020-05-09; starts 4:24"
        url: https://youtu.be/H5WsfDkq2RI
    comments:
      - "highest score PS4 (gadget display OFF)"

  - score: 16,105,190
    player: Yamanaka
    mode: Normal
    ship: Flying Baron
    platform: arcade
    sources:
      - name: Arcadia
        date: "2011-09"
    comments:
      - "after birds 2.02m"

  - score: 20,812,270
    player: T³-Kamui
    mode: Normal
    ship: Gain
    platform: arcade
    sources:
      - name: Twitter
        date: "2012-12-29"
        url: https://twitter.com/kamuneko/status/285031667410808832
      - name: Arcadia
        date: "2013-04"
    comments:
      - "after birds 3.55m"
      - "after stage 5 14.11m"
    attributes:
        is-current-record: true

  - score: 20,959,490
    player: T³-Kamui
    mode: Normal
    ship: Gain
    platform: arcade
    sources:
      - name: Twitter
        date: "2019-09-30"
        url: https://twitter.com/kamuneko/status/1178663081842315265
      - name: Youtube
        date: "2020-03-12"
        url: https://youtu.be/M4fnxn4xeBE
    comments:
      - "after birds 3.71m"
      - "after stage 5 14.13m"

  - score: 15,981,940
    player: DBS
    mode: Normal
    ship: Grass Hopper
    platform: arcade
    sources:
      - name: "Played date: 2013-04-15"
      - name: Twitter
        date: "2016-03-09"
        url: https://twitter.com/dbsqawsedrftgyh/status/707606080725983232
      - name: Arcadia
        date: "2013-07"
    comments:
      - "after stage 5 10.21m"

  - score: 18,546,440
    player: SDD-Kaede
    mode: Normal
    ship: Miyamoto
    platform: arcade
    sources:
      - name: Arcadia
        date: "2011-10"
    attributes:
        is-current-record: true

  - score: 18,604,540
    player: SDD-Kaede
    mode: Normal
    ship: Miyamoto
    platform: arcade
    sources:
      - name: Twitter
        date: "2019-10-21"
        url: https://twitter.com/sddkaede/status/1186293989051207680
      - name: Youtube
        date: "2019-10-22"
        url: https://youtu.be/62kUnrbzBII

  - score: 16,751,930
    player: みぐ
    mode: Normal
    ship: Silver Sword
    platform: arcade
    sources:
      - name: Arcadia
        date: "2012-07"
    comments:
      - "after stage 5 10.99m"
    attributes:
        is-current-record: true

  - score: 16,925,130
    player: みぐ
    mode: Normal
    ship: Silver Sword
    platform: arcade
    sources:
      - name: Twitter
        date: "2019-02-24"
        url: https://twitter.com/Migu_K/status/1099536510783709184
      - name: Youtube
        date: "2019-02-24"
        url: https://youtu.be/DB5NarRmbxo

  - score: 17,413,590
    player: Yamanaka
    mode: Normal
    ship: Wild Snail
    platform: arcade
    sources:
      - name: Arcadia
        date: "2013-07"
    comments:
      - "after birds 2.69m"
      - "after stage 5 11.45m"
      - "highest score Arcade"

  - score: 17,521,570
    player: Yamanaka
    mode: Normal
    ship: Wild Snail
    platform: console
    sources:
      - name: "Played date: 2020-02-14"
      - name: Youtube
        date: "2020-05-11"
        url: https://youtu.be/OpdCVN6CHUM
    comments:
      - "highest score PS4 (gadget display OFF)	"

  - score: 17,638,260
    player: あんにん
    mode: Normal
    ship: "[Doubleplay]"
    sources:
      - name: Twitter
        date: "2020-11-09"
        url: https://twitter.com/7COLO_R/status/1325759470106935297
    comments:
      - "used Bornnam & Wild Snail"
      - "after birds 3.5m"
      - "after stage 5 12.5m"

  - score: 14,120,000
    player: SDD-Kaede
    mode: Harder
    ship: Miyamoto
    sources:
      - name: Twitter
        date: "2020-08-09"
        url: https://twitter.com/sddkaede/status/1292533916356587520
      - name: Youtube
        date: "2020-08-10"
        url: https://youtu.be/FfYKh4aicZU

  - score: 28,374,170
    player: 栗鼠
    mode: Extended
    ship: Bornnam
    sources:
      - name: Youtube
        date: "2017-10-16"
        url: https://youtu.be/d5__v8nFydA

  - score: 35,726,550
    player: T³-Kamui
    mode: Extended
    ship: Gain
    sources:
      - name: "Played date: 2011-01-23"
      - name: Youtube
        date: "2020-03-12"
        url: https://youtu.be/bctCOzqAGkw

  - score: 29,062,670
    player: ZBL-JAC
    mode: Extended
    ship: Miyamoto
    sources:
      - name: Youtube
        date: "2012-11-12"
        url: https://youtu.be/IsCEI_ZWoCc

  - score: 25,454,320
    player: T³-Kamui
    mode: Extended
    ship: Wild Snail
    sources:
      - name: Twitter
        date: "2020-12-12"
        url: https://twitter.com/kamuneko/status/1338120899472490497
      - name: Youtube
        date: "2020-12-12"
        url: https://youtu.be/zshaAuUIp9M
    comments:
      - "played on PS4 (gadget display ON)"

  - score: 19,440,880
    player: T³-Kamui
    mode: Special
    ship: Gain
    sources:
      - name: Twitter
        date: "2019-05-13"
        url: https://twitter.com/kamuneko/status/1127889229730553858
    comments:
      - "All Clear"

description: "Note: Japanese scoreboard closed March 2014 due to the detection of an infinite pattern."

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1996_001_%E3%83%90%E3%83%88%E3%83%AB%E3%82%AC%E3%83%AC%E3%83%83%E3%82%AC
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=28714
    title: Shmups Forum Hi-Score Topic

translations:
  - property: ship
    value: Bornnam
    value-jp: ボーンナム
  - property: ship
    value: Chitta
    value-jp: チッタ
  - property: ship
    value: Flying Baron
    value-jp: 3号機
  - property: ship
    value: Gain
    value-jp: ガイン
  - property: ship
    value: Grass Hopper
    value-jp: 2号機
  - property: ship
    value: Miyamoto
    value-jp: ミヤモト
  - property: ship
    value: Silver Sword
    value-jp: 1号機
  - property: ship
    value: Wild Snail
    value-jp: 4号機
  - property: ship
    value: "[Doubleplay]"
    value-jp: "[ダブルプレイ]"
  - property: mode
    value: Normal
    value-jp: アーケード
  - property: mode
    value: Harder
    value-jp: ハーダー
  - property: mode
    value: Extended
    value-jp: エクステンド
  - property: mode
    value: Special
    value-jp: スペシャル

layout:
    sort:
        scores:
            mode: [ Normal, Harder, Extended, Special ]
            ship: [ Bornnam, Chitta, Flying Baron, Gain, Grass Hopper, Miyamoto, Silver Sword, Wild Snail, "[Doubleplay]" ]
            platform: asc

Black Heart

name: "Black Heart"
name-jp: "ブラックハート"
name-kana: "ぶらっくはーと"
company: "NMK"
needs-work: true

scores:
  - score: 2,447,900
    player: NAA
    autofire: OFF
    sources:
      - name: Gamest
        date: "1991-09"
    comments:
      - "stage 3-3"

  - score: 3,713,700
    player: AKA
    autofire: ON
    sources:
      - name: Arcadia
        date: "2011-04"
    comments:
      - "stage 4-8"

links:
  - url: https://shmups.system11.org/viewtopic.php?t=42548
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            autofire: asc

BlaZeon

name: "BlaZeon"
name-jp: "ブレイゾン"
name-kana: "ぶれいぞん"
company: "A.I."
needs-work: true

scores:
  - score: 4,646,100
    player: J.G.K-ALL(副)
    autofire: OFF
    sources:
      - name: Arcadia
        date: "1999-11"

  - score: 4,761,300
    player: J.G.K-ALL(副)
    autofire: ON
    sources:
      - name: Arcadia
        date: "1999-11"

links:
  - url: https://shmups.system11.org/viewtopic.php?t=53219
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            autofire: asc

Blazing Star

name: "Blazing Star"
name-jp: "ブレイジングスター"
name-kana: "ぶれいじんぐすたー"
company: "Aicom / Yumekobo"
needs-work: true

scores:
  - score: 68,301,730
    player: SOF-WTN
    ship: Aryustailm
    sources:
      - name: Arcadia
        date: "2003-05"

  - score: 72,013,240
    player: SOF-WTN
    ship: Aryustailm
    sources:
      - name: Arcadia
        date: "2003-06"

  - score: 74,276,240
    player: SOF-WTN
    ship: Aryustailm
    sources:
      - name: Arcadia
        date: "2003-07"
    comments:
      - "before 6th boss: 40.65m"

  - score: 67,696,150
    player: ISO / Niboshi
    ship: Dino 135
    sources:
      - name: Arcadia
        date: "2003-06"
    comments:
      - "after stage 5 38.00m"

  - score: 60,198,180
    player: HYAKU-さめじま会長(TTJ)
    ship: Dino 246
    sources:
      - name: Arcadia
        date: "2000-08"

  - score: 60,743,150
    player: HYAKU-さめじま会長(TTJ)
    ship: Dino 246
    sources:
      - name: Arcadia
        date: "2000-09"

  - score: 61,790,040
    player: HYAKU-さめじま会長(TTJ)
    ship: Dino 246
    sources:
      - name: Arcadia
        date: "2000-10"

  - score: 62,366,140
    player: HYAKU-さめじま会長(TTJ)
    ship: Dino 246
    sources:
      - name: Arcadia
        date: "2000-12"

  - score: 63,073,500
    player: G.M.C..Z.
    ship: Dino 246
    sources:
      - name: Arcadia
        date: "2002-06"

  - score: 63,549,600
    player: G.M.C..Z.
    ship: Dino 246
    sources:
      - name: Arcadia
        date: "2002-10"

  - score: 63,864,620
    player: G.M.C..Z.
    ship: Dino 246
    sources:
      - name: Arcadia
        date: "2003-07"

  - score: 64,612,330
    player: G.M.C..Z.
    ship: Dino 246
    sources:
      - name: Arcadia
        date: "2003-08"

  - score: 64,635,250
    player: G.M.C..Z.
    ship: Dino 246
    sources:
      - name: Arcadia
        date: "2003-12"

  - score: 64,762,580
    player: G.M.C..Z.
    ship: Dino 246
    sources:
      - name: Arcadia
        date: "2004-02"

  - score: 65,347,450
    player: G.M.C. .Z.
    ship: Dino 246
    sources:
      - name: Arcadia
        date: "2004-08"

  - score: 62,419,620
    player: AHO-BAN-◯な
    ship: Hellhound
    sources:
      - name: Arcadia
        date: "2000-06"

  - score: 63,605,040
    player: G.M.C..Z.
    ship: Hellhound
    sources:
      - name: Arcadia
        date: "2002-12"

  - score: 64,089,480
    player: G.M.C..Z.
    ship: Hellhound
    sources:
      - name: Arcadia
        date: "2003-06"

  - score: 67,709,960
    player: ISO / Niboshi
    ship: Hellhound
    sources:
      - name: Bilibili
        date: "2019-11-01"
        url: https://www.bilibili.com/video/av74036881
      - name: Arcadia
        date: "2003-07"
    comments:
      - "before 6th boss 37.95m"

  - score: 66,585,310
    player: いたくら
    ship: Windina
    sources:
      - name: Arcadia
        date: "2001-02"

  - score: 67,042,790
    player: いたくら
    ship: Windina
    sources:
      - name: Arcadia
        date: "2002-06"

  - score: 67,357,900
    player: ハッツミー
    ship: Windina
    sources:
      - name: Arcadia
        date: "2002-10"

  - score: 67,802,750
    player: ○斉
    ship: Windina
    sources:
      - name: Arcadia
        date: "2003-06"

  - score: 68,327,160
    player: ○斉
    ship: Windina
    sources:
      - name: Bilibili
        date: "2019-11-01"
        url: https://www.bilibili.com/video/BV1TE41187jK?p=2
      - name: Arcadia
        date: "2003-07"

  - score: 68,909,030
    player: 仄かな焦燥感を噛みしめつつ自堕落な人生
    ship: Windina
    sources:
      - name: Arcadia
        date: "2003-09"

  - score: 69,425,510
    player: HYAKU-F31/2-69XSti
    ship: Windina
    sources:
      - name: Arcadia
        date: "2004-05"

  - score: 70,366,110
    player: いたくら
    ship: Windina
    sources:
      - name: Arcadia
        date: "2007-10"
    comments:
      - "before 6th boss 39.30m"

description: "Note: Japanese scoreboard for Peplos closed May 1998 due to the detection of an infinite pattern on the final phase of the last boss."

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1998_022_%E3%83%96%E3%83%AC%E3%82%A4%E3%82%B8%E3%83%B3%E3%82%B0%E3%82%B9%E3%82%BF%E3%83%BC
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=34730
    title: Shmups Forum Hi-Score Topic

translations:
  - property: ship
    value: Aryustailm
    value-jp: アリュステイルム
  - property: ship
    value: Hellhound
    value-jp: ヘルハウンド
  - property: ship
    value: Windina
    value-jp: ウィンディナ

layout:
    sort:
        scores:
            ship: [ Aryustailm, Dino 135, Dino 246, Hellhound, Windina ]

Border Down

name: "Border Down"
name-jp:
name-kana:
company: "G.Rev"
needs-work: true

scores:
  - score: 360,356,870
    player: YOH
    mode: 6A
    sources:
      - name: Arcadia
        date: "2005-08"

  - score: 327,419,320
    player: YOH
    mode: 6B
    sources:
      - name: Arcadia
        date: "2005-06"

  - score: 385,816,160
    player: YOH
    mode: 6C
    sources:
      - name: Arcadia
        date: "2009-06"

  - score: 390,261,940
    player: YOH
    mode: 6D
    sources:
      - name: Arcadia
        date: "2006-12"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/2003_025_%E3%83%9C%E3%83%BC%E3%83%80%E3%83%BC%E3%83%80%E3%82%A6%E3%83%B3
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=22953
    title: Shmups Forum Hi-Score Topic

layout:
    columns:
        mode:
            label: Route
            label-jp: ルート

    sort:
        scores:
            mode: asc

Bosconian

name: "Bosconian"
name-jp: "ボスコニアン"
name-kana: "ぼすこにあん"
company: "Namco"
counterstop:
    score: 9,999,995
    type: hard
needs-work: true

scores:
  - score: 9,999,995
    player: sikraiken
    version: New
    sources:
      - name: MARP
        date: "2020-11-19"
        url: http://replay.marpirc.net/r/bosco
    comments:
      - "round 587 (256+256+75)"
      - "playtime 8h 24m"
      - "played on WolfMAME .226"

  - score: 6,202,090
    player: フジマサ
    version: Old
    sources:
      - name: Twitter
        date: "2020-07-18"
        url: https://twitter.com/f8qiHibT5S1FZTf/status/1284420414110744576
    comments:
      - "round 237"

  - score: 6,341,240
    player: フジマサ
    version: Old
    sources:
      - name: Twitter
        date: "2021-01-04"
        url: https://twitter.com/f8qiHibT5S1FZTf/status/1346034819885461504
    comments:
      - "round 243"
      - "playtime 7h 46m"

description: "Note: Scoreboard for New Version closed after the achievement of the counterstop at 9,999,995."

Brave Blade

name: "Brave Blade"
name-jp: "ブレイブブレイド"
name-kana: "ぶれいぶぶれいど"
company: "Raizing / 8ing"
needs-work: true

scores:
  - score: 72,416,130
    player: LAOS-長田仙人
    sources:
      - name: Arcadia
        date: "2000-09"

  - score: 72,608,130
    player: T³-CYR-WIZ
    sources:
      - name: Arcadia
        date: "2000-10"

  - score: 74,258,340
    player: T³-CYR-WIZ
    sources:
      - name: Arcadia
        date: "2000-11"

  - score: 74,692,070
    player: T³-CYR-WIZ
    sources:
      - name: Arcadia
        date: "2000-12"

  - score: 75,066,010
    player: T³-CYR-K.K
    sources:
      - name: Arcadia
        date: "2001-03"
    comments:
      - "used Rem"

  - score: 75,160,720
    player: T³-CYR-K.K
    sources:
      - name: Arcadia
        date: "2001-06"

  - score: 75,269,280
    player: カミーユビンタ
    sources:
      - name: Arcadia
        date: "2002-06"

  - score: 76,052,920
    player: R.
    sources:
      - name: JHA
        date: "2019-01"
    comments:
      - "ABC autofire"

  - score: 76,233,000
    player: R.
    sources:
      - name: JHA
        date: "2019-02"
      - name: Youtube
        date: "2020-08-09"
        url: https://youtu.be/wxSx4vbAmU8
    comments:
      - "used Rem"
      - "autofire"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/2000_066_%E3%83%96%E3%83%AC%E3%82%A4%E3%83%96%E3%83%96%E3%83%AC%E3%82%A4%E3%83%89
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=3664
    title: Shmups Forum Hi-Score Topic

Caladrius Blaze AC

name: "Caladrius Blaze AC"
name-jp: "カラドリウスAC"
name-kana: "からどりうす えいしー"
company: "Seibu Kaihatsu / Moss"
needs-work: true

scores:
  - score: 94,733,480
    player: AFO
    mode: Arcade
    ship: Alex
    weapon: Custom
    sources:
      - name: Arcadia
        date: "2015-04"

  - score: 93,033,599
    player: AKF
    mode: Arcade
    ship: Alex
    weapon: Default
    sources:
      - name: Arcadia
        date: "2015-04"

  - score: 94,818,320
    player: AFO
    mode: Arcade
    ship: Caladrius
    weapon: Custom
    sources:
      - name: Arcadia
        date: "2015-04"

  - score: 91,643,558
    player: TEN
    mode: Arcade
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2016-03"

  - score: 91,925,108
    player: KTN-HOM
    mode: Arcade
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2016-09"

  - score: 92,179,028
    player: KTN-HOM
    mode: Arcade
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2016-10"

  - score: 92,192,107
    player: KTN-HOM
    mode: Arcade
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2016-11"

  - score: 92,263,118
    player: KTN-HOM
    mode: Arcade
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2016-12"

  - score: 92,273,068
    player: KTN-HOM
    mode: Arcade
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-01"

  - score: 92,356,657
    player: KTN-HOM
    mode: Arcade
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-02"

  - score: 92,542,199
    player: KTN-HOM
    mode: Arcade
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-03"

  - score: 92,548,478
    player: KTN-HOM
    mode: Arcade
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-04"

  - score: 92,561,438
    player: KTN-HOM
    mode: Arcade
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-05"

  - score: 92,640,418
    player: KTN-HOM
    mode: Arcade
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-06"

  - score: 94,872,720
    player: AFO
    mode: Arcade
    ship: Kei
    weapon: Custom
    sources:
      - name: JHA
        date: "2016-03"

  - score: 93,607,949
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-06"

  - score: 93,612,039
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-07"

  - score: 93,654,448
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-08"

  - score: 93,726,899
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-09"

  - score: 93,812,880
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-10"

  - score: 93,835,209
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-11"

  - score: 93,849,370
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-12"

  - score: 93,973,160
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-01"

  - score: 94,000,139
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-02"

  - score: 94,014,340
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-03"

  - score: 94,015,040
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-04"

  - score: 94,021,030
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-05"

  - score: 94,021,370
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-06"

  - score: 94,041,430
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-07"

  - score: 94,056,870
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-08"

  - score: 94,065,240
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-09"

  - score: 94,070,170
    player: KTN-HOM
    mode: Arcade
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2018-05"

  - score: 94,609,680
    player: AFO
    mode: Arcade
    ship: Lilith
    weapon: Custom
    sources:
      - name: Arcadia
        date: "2015-04"

  - score: 92,428,909
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-03"

  - score: 92,765,310
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-04"

  - score: 92,842,297
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-05"

  - score: 92,859,289
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-07"

  - score: 92,937,759
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-08"

  - score: 92,955,640
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-09"

  - score: 93,018,219
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-10"

  - score: 93,052,120
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-11"

  - score: 93,063,220
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-12"

  - score: 93,153,880
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-01"

  - score: 93,248,720
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-02"

  - score: 93,250,550
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-03"

  - score: 93,301,129
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-04"

  - score: 93,325,190
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-05"

  - score: 93,404,659
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-06"

  - score: 93,428,758
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-07"

  - score: 93,457,100
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-08"

  - score: 93,469,379
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-09"

  - score: 93,512,399
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-10"

  - score: 93,562,350
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-11"

  - score: 93,595,880
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2018-01"

  - score: 93,660,140
    player: KTN-HOM
    mode: Arcade
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2018-06"

  - score: 95,087,130
    player: AFO
    mode: Arcade
    ship: Maria
    weapon: Custom
    sources:
      - name: Arcadia
        date: "2015-04"

  - score: 92,888,420
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-03"

  - score: 92,972,710
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-04"

  - score: 93,057,329
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-07"

  - score: 93,133,699
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-08"

  - score: 93,143,699
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-09"

  - score: 93,169,270
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-10"

  - score: 93,203,138
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-11"

  - score: 93,213,248
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-12"

  - score: 93,415,610
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-01"

  - score: 93,439,070
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-02"

  - score: 93,444,400
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-03"

  - score: 93,460,548
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-04"

  - score: 93,492,699
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-05"

  - score: 93,537,578
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-06"

  - score: 93,546,028
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-07"

  - score: 93,552,139
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-08"

  - score: 93,570,199
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-09"

  - score: 93,599,999
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-10"

  - score: 93,626,009
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-11"

  - score: 93,650,610
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-12"

  - score: 93,698,210
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2018-01"

  - score: 93,726,549
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2018-02"

  - score: 93,780,740
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2018-03"

  - score: 93,810,339
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2018-04"

  - score: 93,857,300
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2018-05"

  - score: 93,876,940
    player: KTN-HOM
    mode: Arcade
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2018-06"

  - score: 94,939,800
    player: AFO
    mode: Arcade
    ship: Sophia
    weapon: Custom
    sources:
      - name: Arcadia
        date: "2015-04"

  - score: 92,877,219
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-04"

  - score: 92,949,167
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-06"

  - score: 92,988,480
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-07"

  - score: 93,076,468
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-08"

  - score: 93,183,560
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-09"

  - score: 93,264,579
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-10"

  - score: 93,307,270
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-11"

  - score: 93,351,049
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-12"

  - score: 93,479,720
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-01"

  - score: 93,499,458
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-02"

  - score: 93,530,199
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-03"

  - score: 93,549,907
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-04"

  - score: 93,583,269
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-05"

  - score: 93,626,788
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-06"

  - score: 93,700,090
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-07"

  - score: 93,700,380
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-08"

  - score: 93,771,029
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2018-05"

  - score: 93,806,599
    player: KTN-HOM
    mode: Arcade
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2018-06"

  - score: 61,522,560
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-09"

  - score: 61,531,720
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-10"

  - score: 61,541,419
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-11"

  - score: 61,557,310
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-12"

  - score: 61,557,990
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-01"

  - score: 61,576,580
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-02"

  - score: 61,579,070
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-03"

  - score: 61,580,210
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-04"

  - score: 61,584,010
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-05"

  - score: 61,587,390
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-06"

  - score: 61,591,100
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-07"

  - score: 61,594,700
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-08"

  - score: 61,596,840
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-09"

  - score: 61,603,259
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-10"

  - score: 61,607,529
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-12"

  - score: 61,613,330
    player: KTN-HOM
    mode: Original
    ship: Alex
    weapon: Custom
    sources:
      - name: JHA
        date: "2019-02"

  - score: 58,079,898
    player: AKF
    mode: Original
    ship: Alex
    weapon: Default
    sources:
      - name: Arcadia
        date: "2015-04"

  - score: 61,464,209
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-07"

  - score: 61,472,479
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-08"

  - score: 61,476,990
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-09"

  - score: 61,478,550
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-10"

  - score: 61,479,299
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-11"

  - score: 61,488,630
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-12"

  - score: 61,488,980
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-01"

  - score: 61,492,120
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-02"

  - score: 61,498,270
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-03"

  - score: 61,499,090
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-04"

  - score: 61,499,569
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-05"

  - score: 61,499,930
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-06"

  - score: 61,507,950
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-07"

  - score: 61,509,369
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-08"

  - score: 61,515,690
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-09"

  - score: 61,517,960
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-10"

  - score: 61,519,710
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-12"

  - score: 61,529,110
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Custom
    sources:
      - name: JHA
        date: "2019-02"

  - score: 52,618,839
    player: TEN
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2016-03"

  - score: 53,018,010
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2016-09"

  - score: 53,492,929
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2016-10"

  - score: 53,523,267
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2016-11"

  - score: 53,553,448
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2016-12"

  - score: 53,624,357
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-01"

  - score: 53,689,309
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-02"

  - score: 54,082,478
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-03"

  - score: 54,367,919
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-04"

  - score: 54,415,527
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-05"

  - score: 54,540,469
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-06"

  - score: 54,648,299
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-07"

  - score: 54,726,808
    player: KTN-HOM
    mode: Original
    ship: Caladrius
    weapon: Default
    sources:
      - name: JHA
        date: "2017-08"

  - score: 61,495,650
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-09"

  - score: 61,502,730
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-10"

  - score: 61,516,910
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-11"

  - score: 61,522,670
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-12"

  - score: 61,529,110
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-01"

  - score: 61,537,190
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-02"

  - score: 61,538,360
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-03"

  - score: 61,553,950
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-04"

  - score: 61,560,370
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-05"

  - score: 61,578,050
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-06"

  - score: 61,105,360
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-06"

  - score: 61,111,370
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-07"

  - score: 61,126,610
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-08"

  - score: 61,134,050
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-09"

  - score: 61,137,650
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-10"

  - score: 61,141,890
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-11"

  - score: 61,166,510
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2016-12"

  - score: 61,175,330
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-01"

  - score: 61,188,220
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-02"

  - score: 61,205,300
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-03"

  - score: 61,251,019
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-04"

  - score: 61,252,580
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-05"

  - score: 61,267,970
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-06"

  - score: 61,276,450
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-07"

  - score: 61,282,060
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-08"

  - score: 61,289,869
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-09"

  - score: 61,290,369
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-10"

  - score: 61,294,369
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-11"

  - score: 61,299,699
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2017-12"

  - score: 61,306,990
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2018-01"

  - score: 61,313,899
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2018-02"

  - score: 61,314,580
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2018-03"

  - score: 61,340,250
    player: KTN-HOM
    mode: Original
    ship: Kei
    weapon: Default
    sources:
      - name: JHA
        date: "2018-04"

  - score: 61,346,929
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-09"

  - score: 61,360,329
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-10"

  - score: 61,370,788
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-11"

  - score: 61,379,849
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-12"

  - score: 61,401,939
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-01"

  - score: 61,434,649
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-02"

  - score: 61,434,879
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-03"

  - score: 61,443,150
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-04"

  - score: 61,443,220
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-05"

  - score: 61,445,509
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-06"

  - score: 61,447,290
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-07"

  - score: 61,448,119
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-08"

  - score: 61,455,018
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-09"

  - score: 61,456,899
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-10"

  - score: 61,457,929
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-12"

  - score: 61,498,950
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Custom
    sources:
      - name: JHA
        date: "2019-02"

  - score: 58,734,909
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-03"

  - score: 59,415,539
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-04"

  - score: 59,986,399
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-05"

  - score: 60,001,249
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-06"

  - score: 60,096,320
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-07"

  - score: 60,130,538
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-08"

  - score: 60,194,440
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-09"

  - score: 60,294,719
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-10"

  - score: 60,307,920
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-11"

  - score: 60,329,979
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2016-12"

  - score: 60,417,800
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-01"

  - score: 60,428,018
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-02"

  - score: 60,457,219
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-03"

  - score: 60,508,940
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-04"

  - score: 60,522,360
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-05"

  - score: 60,595,609
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-06"

  - score: 60,609,278
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-07"

  - score: 60,611,020
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-08"

  - score: 60,642,889
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2017-09"

  - score: 60,692,269
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2018-02"

  - score: 60,712,340
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2018-03"

  - score: 60,724,069
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2018-04"

  - score: 60,731,560
    player: KTN-HOM
    mode: Original
    ship: Lilith
    weapon: Default
    sources:
      - name: JHA
        date: "2018-06"

  - score: 61,771,809
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-10"

  - score: 61,773,879
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-11"

  - score: 61,777,510
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-12"

  - score: 61,785,059
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-01"

  - score: 61,788,569
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-02"

  - score: 61,789,020
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-03"

  - score: 61,795,230
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-04"

  - score: 61,798,699
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-05"

  - score: 61,800,259
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-06"

  - score: 58,346,100
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-03"

  - score: 58,465,849
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-04"

  - score: 58,734,247
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-08"

  - score: 58,930,918
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-09"

  - score: 58,983,989
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-10"

  - score: 59,021,319
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-11"

  - score: 59,037,759
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2016-12"

  - score: 59,246,988
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-01"

  - score: 59,295,907
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-02"

  - score: 59,386,648
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-03"

  - score: 59,386,839
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-04"

  - score: 59,521,127
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-06"

  - score: 59,539,498
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-07"

  - score: 59,707,819
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-08"

  - score: 59,711,560
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-09"

  - score: 59,789,078
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-10"

  - score: 59,820,558
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-11"

  - score: 59,831,308
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2017-12"

  - score: 59,831,547
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2018-01"

  - score: 60,042,188
    player: KTN-HOM
    mode: Original
    ship: Maria
    weapon: Default
    sources:
      - name: JHA
        date: "2018-05"

  - score: 61,642,449
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-10"

  - score: 61,644,860
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Custom
    sources:
      - name: JHA
        date: "2017-11"

  - score: 61,657,250
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-01"

  - score: 61,659,859
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-02"

  - score: 61,661,340
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-03"

  - score: 61,661,580
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-04"

  - score: 61,662,090
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-05"

  - score: 61,667,150
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Custom
    sources:
      - name: JHA
        date: "2018-06"

  - score: 58,903,369
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-03"

  - score: 59,391,389
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-04"

  - score: 60,168,229
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-05"

  - score: 60,173,419
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-06"

  - score: 60,203,399
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-07"

  - score: 60,251,689
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-08"

  - score: 60,306,679
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-09"

  - score: 60,318,389
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-10"

  - score: 60,322,579
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-11"

  - score: 60,362,130
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2016-12"

  - score: 60,389,670
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-01"

  - score: 60,394,439
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-02"

  - score: 60,395,800
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-03"

  - score: 60,463,710
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-04"

  - score: 60,543,960
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-05"

  - score: 60,545,480
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-06"

  - score: 60,568,789
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-07"

  - score: 60,607,800
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-08"

  - score: 60,631,360
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2017-12"

  - score: 60,642,559
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2018-02"

  - score: 60,650,359
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2018-03"

  - score: 60,677,020
    player: KTN-HOM
    mode: Original
    ship: Sophia
    weapon: Default
    sources:
      - name: JHA
        date: "2018-04"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/2013_002_%E3%82%AB%E3%83%A9%E3%83%89%E3%83%AA%E3%82%A6%E3%82%B9AC
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=45659
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            mode: asc
            ship: asc
            element shot: asc

    columns:
        weapon:
            label: Element Shot
            label-jp: エレメントシュート

Captain Tomaday

name: "Captain Tomaday"
name-jp: "キャプテントマディ"
name-kana: "きゃぷてんとまでぃ"
company: "Visco"
counterstop:
    score: 99,999.99
    type: hard
needs-work: true

scores:
  - score: 99,999.99
    player: さゆりさん
    sources:
      - name: Gamest
        date: "1999-08"

description: "Note: Scoreboard closed after the achievement of the counterstop at 99,999.99."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=42666
    title: Shmups Forum Hi-Score Topic

Change Air Blade

name: "Change Air Blade"
name-jp: "チェンジエアブレード"
name-kana: "ちぇんじえあぶれーど"
company: "Sammy"
needs-work: true

scores:
  - score: 21,513,110
    player: ママー!!「愛が足りません」
    sources:
      - name: Arcadia
        date: "2000-04"

  - score: 26,278,890
    player: カンダタ子分E
    sources:
      - name: Arcadia
        date: "2000-06"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1999_042_%E3%83%81%E3%82%A7%E3%83%B3%E3%82%B8%E3%82%A8%E3%82%A2%E3%83%96%E3%83%AC%E3%83%BC%E3%83%89
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=28896
    title: Shmups Forum Hi-Score Topic

Chaos Field

name: "Chaos Field"
name-jp: "カオスフィールド"
name-kana: "かおすふぃーるど"
company: "Milestone"
needs-work: true

scores:
  - score: 244,308,250
    player: いの
    ship: Hal
    sources:
      - name: Arcadia
        date: "2005-02"

  - score: 255,572,220
    player: コッシー
    ship: Hal
    sources:
      - name: Twitter
        date: "2018-11-03"
        url: https://twitter.com/zubrowk777/status/1058632207781089281
      - name: JHA
        date: "2018-11"

  - score: 362,218,630
    player: Q.Z
    ship: Ifumi
    sources:
      - name: Arcadia
        date: "2005-01"

  - score: 174,621,800
    player: hamami
    ship: Jin
    sources:
      - name: Arcadia
        date: "2013-07"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/2004_011_%E3%82%AB%E3%82%AA%E3%82%B9%E3%83%95%E3%82%A3%E3%83%BC%E3%83%AB%E3%83%89
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=42140
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            ship: asc

Chariot (Wonder 3)

name: "Chariot (Wonder 3)"
name-jp: "チャリオット(ワンダー3)"
name-kana: "ちゃりおっと(わんだーすりー)"
company: "Capcom"
needs-work: true

scores:
  - score: 4,644,800
    player: Mr.CHARIOT-A.BOY
    autofire: OFF
    sources:
      - name: JHA
        date: "2018-10"
    comments:
      - "big coin x1"

  - score: 4,671,200
    player: Mr.CHARIOT-A.BOY
    autofire: OFF
    sources:
      - name: Twitter
        date: "2018-11-04"
        url: https://twitter.com/hiropom_76/status/1059109572659470342
      - name: JHA
        date: "2018-11"
    comments:
      - "big coin x1"

  - score: 4,889,800
    player: Mr.CHARIOT-A.BOY
    autofire: ON
    sources:
      - name: Arcadia
        date: "2010-12"
    comments:
      - "6L remaining"
      - "big coin x2"
      - "lever right autofire"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1991_052_%E3%83%81%E3%83%A3%E3%83%AA%E3%82%AA%E3%83%83%E3%83%88%EF%BC%88%E3%83%AF%E3%83%B3%E3%83%80%E3%83%BC3%EF%BC%89
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=17553
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            autofire: asc

Choujikuu Yousai Macross

name: "Choujikuu Yousai Macross"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Choujikuu Yousai Macross}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Choujikuu Yousai Macross]] (NMK)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|9,389,100}} || KDK-Takeyuki || Arcadia May 2011 || ||
            |-
            | ON || {{v|b1|9,812,300}} || KDK-Takeyuki || Arcadia June 2011 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?f=2&t=65803 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Choujikuu Yousai Macross II

name: "Choujikuu Yousai Macross II"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Choujikuu Yousai Macross II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Choujikuu Yousai Macross II]] (NMK)
            |-
            ! Course !! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Beginner
            | OFF || {{v|a1|3,681,920}} || CYCLONE-HURRICANE || Gamest November 1993 || ||
            |-
            | ON || {{v|b1|3,903,600}} || KDK-Takeyuki || Arcadia December 2014 || ||
            |-
            | rowspan="2" | Medium
            | OFF || {{v|c1|3,942,010}} || 京城屋 || Gamest January 1994 || ||
            |-
            | ON || {{v|d1|4,107,490}} || CYCLONE-R.T || Gamest September 1994 || ||
            |-
            | rowspan="2" | Expert
            | OFF || {{v|e1|4,499,640}} || CYCLONE-R.T || Gamest January 1994 || ||
            |-
            | ON || {{v|f1|4,741,180}} || hamami || September 21st, 2014 (Arcadia December 2014) / [https://twitter.com/hamami999/status/513606458043162625 Twitter] || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?f=2&t=65803 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Chuka Taisen

name: "Chuka Taisen"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Chuka Taisen}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Chuka Taisen]] (Taito)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|947,500}} || MDX-あきにゃ || Arcadia December 2013 || 0L remaining, suicide x7 ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=57818 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Cosmo Gang: The Video

name: "Cosmo Gang: The Video"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Cosmo Gang: The Video}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Cosmo Gang: The Video]] (Namco)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | [1 Player] || {{v|a1|27,005,010}} || KDK-Takeyuki || Arcadia January 2013 || 1mil x4, no miss ||
            |-
            | [2 Player] || {{v|b1|35,412,280}} || KUMA & FUM || Micom Basic September 1992 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=58080 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Cotton

name: "Cotton"
name-jp:
name-kana:
company: "Success"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Cotton}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Cotton]] (Success)
            |-
            ! Mode !! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | 1 loop
            | OFF || {{v|a1|1,640,020}} || CYR-イエティ(F) || Gamest November 1992 || ||
            |-
            | ON || {{v|b1|1,832,870}} || CYR-イエティ(F) || Micom Basic September 1992 (Gamest March 1994) || ||
            |-
            | rowspan="2" | 2 loops
            | OFF || {{v|c1|3,475,250}} || IML-UUU(た) || Gamest September 1991 || ||
            |-
            | ON || {{v|d1|4,045,110}} || CYR-イエティ(F) || Micom Basic September 1992 (Gamest March 1994) || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=51321 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Cotton 2

name: "Cotton 2"
name-jp:
name-kana:
company: "Success"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Cotton 2}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Cotton 2]] (Success)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|36,640,000}} || G.M.C..Z. || Arcadia March 2011 || 2p side ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=53296 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Cotton Boomerang

name: "Cotton Boomerang"
name-jp:
name-kana:
company: "Success"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Cotton Boomerang}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Cotton Boomerang]] (Success)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|31,798,800}} || あぶそぅぶ(べ) || Gamest January 1999 || highest score Arcade ||
            |-
            | {{v|b1|33,021,500}} || Kino || March 31st, 2017 / [https://shmups.system11.org/viewtopic.php?p=1247823#p1247823 Shmups Forum] || highest score Sega Saturn, rapid XYZ used || [https://youtu.be/nAnidA9USH0 Youtube]
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=54167 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Crimzon Clover

name: "Crimzon Clover"
name-jp:
name-kana:
company: "Yotsubane"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Crimzon Clover}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Crimzon Clover]] (Yotsubane)
            |-
            ! Mode !! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="4" | Boost
            | Type I || 8,706,016,670 || Tesu || June 23rd, 2020 / [https://twitter.com/drdlll/status/1275434770499899392 Twitter] || || [https://youtu.be/VodqIc5tA_A Youtube]
            |-
            | Type II || 7,874,853,700 || fufufu || January 18th, 2015 (Arcadia April 2015) / [https://twitter.com/222_fu/status/556716660078280704 Twitter] || || [https://youtu.be/wiksMOaPt90 Youtube]
            |-
            | Type III || 7,325,476,140 || SOGO@KW462TR || January 17th, 2015 (Arcadia April 2015) / [https://twitter.com/SOGO_Omiya/status/556372423625699328 Twitter] || ||
            |-
            | Type Z || 7,089,675,850 || CAT@OOD || July 18th, 2015 (JHA March 2016) / [https://twitter.com/Cat_ood/status/622317956102385664 Twitter] || 1 miss, 48:35:38 ||
            |-
            | rowspan="6" | Original
            | Type I || 9,893,684,258,250 || しゅみっと || July 25th, 2020 (JHA August 2020) / [https://twitter.com/schmitt1943/status/1287040842247467011 Twitter] || 2 deaths ||
            |-
            | Type II || 9,634,583,540,790 || RET || JHA March 2016 || 2L remaining ||
            |-
            | Type III || 8,802,783,938,290 || 旅タコ-STZ- || JHA March 2016 || no miss ||
            |-
            | rowspan="3" | Type Z
            | 8,376,530,405,130 || GEJIGEJI || Nesica rankings || highest score Arcade ||
            |-
            | 8,273,332,603,020 || ネーブルちゃん カムバーック!! || Arcadia August 2014 || ||
            |-
            | 8,409,593,201,890 || Dubai || January 2nd, 2016 || highest score Steam ||
            |-
            | rowspan="8" | Unlimited
            | rowspan="3" | Type I
            | 16,094,433,474,610 || GEJIGEJI || Nesica rankings || ||
            |-
            | 15,456,983,418,070 || SELDIA || May 5th, 2017 (JHA May 2017) / [https://twitter.com/Seldia_K/status/860409244209692673 Twitter] || highest score Arcade, <br>4L remaining ||
            |-
            | 16,303,872,368,330 || Dubai || April 24th, 2018 || highest score Steam ||
            |-
            | rowspan="2" | Type II
            | 13,190,345,401,270 || KISARAGI || Nesica rankings || ||
            |-
            | 13,004,207,245,640 || SELDIA || November 3rd, 2014 (Arcadia February 2015) / [https://twitter.com/Seldia_K/status/529195888363573249 Twitter] || ||
            |-
            | rowspan="2" | Type III
            | 12,322,488,776,590 || rowspan="2" | SELDIA
            | September 24, 2016 (JHA December 2016) / [https://twitter.com/Seldia_K/status/779615062449197056 Twitter] || highest score Arcade ||
            |-
            | 12,530,462,006,560 || October 13th, 2016 / [https://twitter.com/Seldia_K/status/786584156285186049 Twitter] || highest score Steam, <br>3L remaining ||
            |-
            | Type Z || 15,655,943,400,000 || GEJIGEJI || JHA October 2019 || no miss ||
            |-
            | rowspan="8" | Time Attack
            | rowspan="2" | Type I
            | 98,297,460 || rowspan="2" | ISO / Niboshi
            | Arcadia November 2014 || highest score Arcade ||
            |-
            | 98,834,530 || August 5th, 2014 || highest score Steam ||
            |-
            | Type II || 103,196,030 || KDK-Takeyuki || Arcadia November 2014 || ||
            |-
            | rowspan="3" | Type III
            | 104,866,690 || rowspan="3" | ACR
            | Nesica rankings || highest score Arcade ||
            |-
            | 104,656,370 || April 18th, 2015 (JHA March 2016) / [https://twitter.com/Archer_3601/status/589383138129760257 Twitter] || ||
            |-
            | 106,216,780 || June 19th, 2015 / [https://twitter.com/Archer_3601/status/611920557802520576 Twitter] || highest score Steam || [https://youtu.be/7fw0iXgFvbo Youtube]
            |-
            | rowspan="2" | Type Z
            | 114,769,210 || rowspan="2" | Gowasu
            | JHA March 2016 || highest score Arcade ||
            |-
            | 114,820,290 || May 5th, 2015 || highest score Steam ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2013_004_%E3%82%AF%E3%83%AA%E3%83%A0%E3%82%BE%E3%83%B3%E3%82%AF%E3%83%AD%E3%83%BC%E3%83%90%E3%83%BC%EF%BC%88%E3%83%8D%E3%82%B7%E3%82%AB%E7%89%88%EF%BC%89 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=50554 Shmups Forum Hi-Score Topic]
            
            
            
            <big>'''Template (Please copy this to create a new entry)'''</big>
            {% endverbatim %}


Cybattler

name: "Cybattler"
name-jp:
name-kana:
company: "Jaleco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Cybattler}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Cybattler]] (Jaleco)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|2,520,050}} || J.G.K.-ALL (副) || Gamest March 1994 || ||
            |-
            | ON || {{v|b1|2,550,900}} || J.G.K.-ALL (副) || Gamest March 1994 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=37705 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Cyvern Plus

name: "Cyvern Plus"
name-jp:
name-kana:
company: "Kaneko"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Cyvern Plus}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Cyvern Plus]] (Kaneko)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|41,104,500}} || CFK-NRK ||2000|| Altair (1p side) || [https://youtu.be/ZyQlTFSJ1qY Youtube]
            |}
            {% endverbatim %}


Cyvern: The Dragon Weapons

name: "Cyvern: The Dragon Weapons"
name-jp:
name-kana:
company: "Kaneko"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Cyvern: The Dragon Weapons}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Cyvern: The Dragon Weapons]] (Kaneko)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|29,837,260}} || G.M.C.機械T・H || Arcadia February 2000 || Ferious (2p side) ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=45820 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Daioh

name: "Daioh"
name-jp:
name-kana:
company: "Athena"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Daioh}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Daioh]] (Athena)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|22,061,540}} || 超高速弾覇者わかさん || Arcadia January 2013 || ||
            |}
            
            Note: Japanese scoreboard closed March 2013 due to the detection of an infinite pattern. For details, see [https://youtu.be/jAnnRsPU0Xc this video].
            
            * [https://wiki.denfaminicogamer.jp/highscore/1993_001_%E5%A4%A7%E7%8E%8B JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=35513 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Daisenpuu

name: "Daisenpuu"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Daisenpuu}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Daisenpuu]] (Toaplan)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 10,000,000+α || SSC-VAP || Gamest September 1989 || loop 17, 8L remaining ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=35471 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dangerous Seed

name: "Dangerous Seed"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dangerous Seed}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Dangerous Seed]] (Namco)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|4,230,300}} || CYR-WAR || Arcadia May 2011 || full-auto ||
            |-
            | ON || {{v|b1|4,242,050}} || EXCEL-KUMAMOTO || Arcadia May 2006 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=42760 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dangun Feveron

name: "Dangun Feveron"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dangun Feveron}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Dangun Feveron]] (CAVE)
            |-
            ! Mode !! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="4" | Normal
            | Type A || {{v|a1|13,145,532}} || yc532724 || May 3rd, 2018 / PS4 rankings || Bomb, Speed 4, 5,416 discomen; highest score PS4 || [https://youtu.be/QoVuLx-viTQ Youtube]
            |-
            | Type B || {{v|b1|15,302,103}} || HTL-PAL (509) || March 7th, 2020 (JHA March 2020) / [https://twitter.com/pal_collect/status/1236242130676248577 Twitter] || Bomb, Speed 3, 6,223 discomen ||
            |-
            | Type C || {{v|c1|12,403,924}} || iconoclast || July 6th, 2017 / [https://twitter.com/iconoclast575/status/883173930843766784 Twitter] || Roll, Speed 4, 5,220 discomen; highest score PS4 ||
            |-
            | Uo Poko || {{v|d1|14,873,339}} || BAKADY || JHA April 2016 || ||
            |-
            | rowspan="4" | Time Attack
            | Type A || {{v|e1|2,074,032}} || A.BOY || JHA May 2020 || Bomb, Speed 4 ||
            |-
            | Type B || {{v|f1|2,311,876}} || HTL-PAL (509) || June 13th, 2020 (JHA June 2020) / [https://twitter.com/pal_collect/status/1271816498663706625 Twitter] || Bomb, Speed 4, 1,892 discomen ||
            |-
            | Type C || {{v|g1|2,233,130}} || イズル || June 12th, 2020 (JHA June 2020) / [https://twitter.com/umitatetamago_i/status/1271471115626409984 Twitter] || Bomb, Speed 4, 1,834 discomen || [https://youtu.be/1ShvI8yh3sw Youtube]
            |-
            | Uo Poko || {{v|h1|2,519,461}} || KDK-Takeyuki || Arcadia June 2004 || 2 miss, 2,046 discomen || [https://youtu.be/Kq5cSbn02ZU Youtube]
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_019_%E5%BC%BE%E9%8A%83%E3%83%95%E3%82%A3%E3%83%BC%E3%83%90%E3%83%AD%E3%83%B3 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=37015 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Darius

name: "Darius"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Darius}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Darius]] (Taito)
            |-
            ! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | V zone || {{v|a1|6,516,700}} || 二代目ダライアス神-KZS || July 15th, 2020 (JHA July 2020) / [https://twitter.com/kzsdarius/status/1294992380228034567 Twitter #1] [https://twitter.com/kzsdarius/status/1283259417178148864 #2] || ACEHLQV, before final boss: 4.86m ||
            |-
            | W zone || {{v|b1|6,037,560}} || 二代目ダライアス神-KZS || JHA November 2018 / [https://twitter.com/kzsdarius/status/1074237463034355712 Twitter] || ACEIMRW, 51.2k bonus x10 ||
            |-
            | X zone || {{v|c1|7,044,550}} || 二代目ダライアス神-KZS || JHA January 2019 / [https://twitter.com/kzsdarius/status/1097142807947427842 Twitter] || ACEIMRX, before final boss: 5.22m ||
            |-
            | Y zone || {{v|d1|7,537,400}} || 二代目ダライアス神-KZS || JHA February 2019 / [https://twitter.com/kzsdarius/status/1107253589016080384 Twitter] || ACEINTY, before final boss 5.42m ||
            |-
            | Z zone || {{v|e1|10,298,290}} || 二代目ダライアス神-KZS || JHA March 2019 / [https://twitter.com/kzsdarius/status/1120066437765189632 Twitter] || ACEINTZ, before final boss 5.22m, 51.2k bonus x5 ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1987_007_%E3%83%80%E3%83%A9%E3%82%A4%E3%82%A2%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=37042 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Darius Extra

name: "Darius Extra"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Darius Extra}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Darius Extra]] (Taito)
            |-
            ! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | upper V zone || {{v|a1|10,813,900}} || 二代目ダライアス神-KZS || March 2018 || played on Arcade Archives || [https://youtu.be/ALBvZ0fnd5c Youtube]
            |-
            | W zone || {{v|b1|10,568,160}} || 二代目ダライアス神-KZS || March 2018 || played on Arcade Archives || [https://youtu.be/GKVUiqyUQVs Youtube]
            |-
            | X zone || {{v|c1|10,500,640}} || 二代目ダライアス神-KZS || March 2018 || played on Arcade Archives || [https://youtu.be/TMEH07eiOpI Youtube]
            |-
            | rowspan="2" | lower Z zone
            | {{v|d1|11,097,300}} || YST 金髪の師匠 || before 2012 / [https://web.archive.org/web/20140718174024/http://www9.plala.or.jp/nakanoryuzo/HS/RANK/0/1/DARIUS-EX.html 全国ハイスコア集計+α] || ACFJOTZ, autofire ||
            |-
            | {{v|e1|11,039,650}} || 佐藤友美 || before 2007 || ACFJOTZ, 51.2k bonus x3, played on Mame || [https://youtu.be/cMRMAwqVkjI Youtube]
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=37042 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Darius Gaiden

name: "Darius Gaiden"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Darius Gaiden}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Darius Gaiden]] (Taito)
            |-
            ! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Z' zone
            | 15,018,020 || DBS || May 22nd, 2016 / [https://twitter.com/dbsqawsedrftgyh/status/734404994581946368 Twitter]|| ||
            |-
            | style="background: #B9D9B9;" | 14,060,350 || style="background: #B9D9B9;" | GAUT-Y.T || style="background: #B9D9B9;" | Gamest April 1995 || style="background: #B9D9B9;" | before final boss: 4.01m || style="background: #B9D9B9;" |
            |-
            | rowspan="2" | V zone
            | 13,101,220 || もっくん || January 2014 || || [https://www.nicovideo.jp/watch/sm22775966 Niconico]
            |-
            | style="background: #B9D9B9;" | 13,054,110 || style="background: #B9D9B9;" | TYR-ひむ || style="background: #B9D9B9;" | Gamest March 1995 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | rowspan="2" | W zone
            | 12,942,290 || もっくん || January 3rd, 2016 / [https://twitter.com/takeomokkun1/status/683639630030213120 Twitter] || || [https://www.nicovideo.jp/watch/sm27937894 Niconico]
            |-
            | style="background: #B9D9B9;" | 12,694,220 || style="background: #B9D9B9;" | HOGEよーじ || style="background: #B9D9B9;" | Micom Basic May 1995 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | rowspan="2" | X zone
            | 13,143,930 || もっくん || January 15th, 2016 / [https://twitter.com/takeomokkun1/status/688006099492995072 Twitter] || || [https://www.nicovideo.jp/watch/sm28014879 Niconico]
            |-
            | style="background: #B9D9B9;" | 12,851,810 || style="background: #B9D9B9;" | CYCLONE-R.T || style="background: #B9D9B9;" | Micom Basic May 1995 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | rowspan="2" | Y zone
            | 13,520,420 || もっくん || September 23rd, 2014 / [https://twitter.com/takeomokkun1/status/514437871776718848 Twitter] || 51.2k x1, 25.6k x3 || [http://www.nicovideo.jp/watch/sm24538587 Niconico]
            |-
            | style="background: #B9D9B9;" | 13,222,100 || style="background: #B9D9B9;" | サークルYU-J || style="background: #B9D9B9;" | Micom Basic May 1995 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | rowspan="2" | Z zone
            | 12,811,310 || もっくん || September 17th, 2014 / [https://twitter.com/takeomokkun1/status/512183981601587202 Twitter] || 51.2k x4, 25.6k x1 || [http://www.nicovideo.jp/watch/sm24495400 Niconico]
            |-
            | style="background: #B9D9B9;" | 12,798,470 || style="background: #B9D9B9;" | K.N || style="background: #B9D9B9;" | Gamest April 1995 (Micom Basic May 1995) || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | rowspan="2" | V' zone
            | 11,998,660 || G.M.C.IMO || ca. 2004~2005 / [https://twitter.com/imochan512/status/1265620412039233542 Twitter] || || [https://youtu.be/CRg_2xClDHU Youtube]
            |-
            | style="background: #B9D9B9;" | 11,949,320 || style="background: #B9D9B9;" | K.N || style="background: #B9D9B9;" | Gamest April 1995 (Micom Basic April 1994) || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            |}
            
            Note: Japanese scoreboard closed May 1995 due to the detection of an invincibility glitch. For details, see [https://youtu.be/CR-k61OP-Ag this video].
            
            * [https://shmups.system11.org/viewtopic.php?t=173 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Darius Gaiden Extra

name: "Darius Gaiden Extra"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Darius Gaiden Extra}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Darius Gaiden Extra]] (Taito)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|43,044,430}} || もっくん || August 13th, 2016 / [https://twitter.com/takeomokkun1/status/764468728108986368 Twitter] || 9L 10B remaining, 2p side, autofire ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=37052 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Darius II

name: "Darius II"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Darius II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Darius II]] (Taito)
            |-
            ! Screen !! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="7" | Dual Screen
            | style="background: #B9D9B9;" | upper Z' zone || style="background: #B9D9B9;" | 3,856,700 || style="background: #B9D9B9;" | 闘龍-MATSU || style="background: #B9D9B9;" | Gamest November 1990 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            |  style="background: #B9D9B9;" | upper V zone || style="background: #B9D9B9;" | 4,022,700 || style="background: #B9D9B9;" | 闘龍-MATSU || style="background: #B9D9B9;" | Gamest January 1991 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | W zone || style="background: #B9D9B9;" | 4,130,590 || style="background: #B9D9B9;" | 闘龍-MATSU || style="background: #B9D9B9;" | Gamest January 1991 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | X zone || style="background: #B9D9B9;" | 3,932,320 || style="background: #B9D9B9;" | 闘龍-MATSU || style="background: #B9D9B9;" | Gamest December 1990 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | Y zone || style="background: #B9D9B9;" | 3,931,490 || style="background: #B9D9B9;" | 闘龍-MATSU || style="background: #B9D9B9;" | Gamest December 1990 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | lower Z zone || style="background: #B9D9B9;" | 3,586,550 || style="background: #B9D9B9;" | KOH || style="background: #B9D9B9;" | Gamest November 1990 (corrected in Gamest December 1990) || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | lower V' zone || {{v|g1|3,193,810}} || CVM-MID涼 || Gamest May 1991 || ||
            |-
            | rowspan="7" | Triple Screen
            | style="background: #B9D9B9;" | upper Z' zone || style="background: #B9D9B9;" | 3,730,810 || style="background: #B9D9B9;" | CVM-MID涼 || style="background: #B9D9B9;" | Gamest January 1991 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | upper V zone || style="background: #B9D9B9;" | 3,836,110 || style="background: #B9D9B9;" | CVM-MID涼 || style="background: #B9D9B9;" | Gamest January 1991 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | W zone || style="background: #B9D9B9;" | 3,941,580 || style="background: #B9D9B9;" | CVM-MID涼 || style="background: #B9D9B9;" | Gamest January 1991 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | X zone || style="background: #B9D9B9;" | 3,769,280 || style="background: #B9D9B9;" | ZZG-PUL || style="background: #B9D9B9;" | Gamest January 1991 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | Y zone || style="background: #B9D9B9;" | 3,697,350 || style="background: #B9D9B9;" | CVM-MID涼 || style="background: #B9D9B9;" | Gamest January 1991 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | lower Z zone || style="background: #B9D9B9;" | 3,573,020 || style="background: #B9D9B9;" | CVM-MID涼 || style="background: #B9D9B9;" | Gamest January 1991 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | lower V' zone || 3,141,220 || ZZG-PUL || Gamest March 1991 || ||
            |}
            
            Note: Japanese scoreboard for all routes except lower V' closed January 1991 due to the detection of an infinite pattern in zones K, M, and N.
            
            * [https://shmups.system11.org/viewtopic.php?t=52848 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Darwin 4078

name: "Darwin 4078"
name-jp:
name-kana:
company: "Data East"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Darwin 4078}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="6" | [[Darwin 4078]] (Data East)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 10,000,000+α || FUL || Micom Basic June 1986 || stage 108 ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            {% endverbatim %}


Deathsmiles

name: "Deathsmiles"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Deathsmiles}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Deathsmiles]] (CAVE)
            |-
            ! Character !! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="3" | Casper
            | No Canyon || {{v|a1|496,091,187}} || SPE || JHA September 2020 || ||
            |-
            | rowspan="2" | Canyon
            | {{v|b1|607,878,422}} || Yusemi SWY || 2008 / superplay DVD || ||
            |-
            | {{v|c1|578,624,125}} || Yusemi SWY || Arcadia September 2008 || ||
            |-
            | rowspan="3" | Follett
            | rowspan="2" | No Canyon
            | {{v|d1|592,807,590}} || SPE || JHA August 2017 || highest score Arcade ||
            |-
            | {{v|e1|600,897,900}} || SPE || July 28th, 2016 / [https://twitter.com/SPE2500/status/758649529570701313 Twitter] || highest score Xbox 360 || [http://www.nicovideo.jp/watch/sm29336898 Niconico]
            |-
            | Canyon || {{v|f1|703,979,983}} || SPE || January 8th, 2019 (JHA January 2019) / [https://twitter.com/SPE2500/status/1082554324641665025 Twitter] ||  ||
            |-
            | rowspan="2" | Rosa
            | No Canyon || {{v|g1|564,261,938}} || SPE || January 28th, 2020 (JHA February 2020) / [https://twitter.com/SPE2500/status/1222123530566848513 Twitter] || ||
            |-
            | Canyon || {{v|h1|670,737,982}} || SPE || February 16th, 2020 (JHA February 2020) / [https://twitter.com/SPE2500/status/1228931795053207552 Twitter] ||  ||
            |-
            | rowspan="2" | Windia
            | No Canyon || {{v|i1|516,662,987}} || SPE || July 11th, 2019 (JHA July 2019) / [https://twitter.com/SPE2500/status/1149266161151856641 Twitter] || ||
            |-
            | Canyon || {{v|j1|621,363,428}} || SPE || October 9th, 2019 (JHA October 2019) / [https://twitter.com/SPE2500/status/1181863902151237632 Twitter] || || [https://youtu.be/ZFc_K3-RaNo Youtube]
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2007_012_%E3%83%87%E3%82%B9%E3%82%B9%E3%83%9E%E3%82%A4%E3%83%AB%E3%82%BA JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=58071 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Deathsmiles II

name: "Deathsmiles II"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Deathsmiles II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Deathsmiles II]] (CAVE)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Casper
            | {{v|a1|1,452,223,256}} || WSM-MKZ || Arcadia November 2010 || highest score Arcade ||
            |-
            | {{v|b1|1,505,186,210}} || sinmoon || February 17th, 2011 / [http://sinmoon.blog.shinobi.jp/Date/20110217/ Blog] || highest score Xbox 360 || [https://youtu.be/C8qThOS3XXY Youtube]
            |-
            | Lei || {{v|c1|2,000,664,785}} || 太菱 || Arcadia August 2010 || ||
            |-
            | Supe || {{v|d1|1,304,932,505}} || MCR || Arcadia November 2010 || ||
            |-
            | Windia || {{v|e1|1,316,034,157}} || ましこ || Arcadia September 2012 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2009_010_%E3%83%87%E3%82%B9%E3%82%B9%E3%83%9E%E3%82%A4%E3%83%AB%E3%82%BAII_Ver.4.00 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=32044 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Deathsmiles Mega Black Label

name: "Deathsmiles Mega Black Label"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Deathsmiles Mega Black Label}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Deathsmiles]] Mega Black Label (CAVE)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Casper || {{v|a1|13,087,233,862}} || Dame K.K || JHA July 2020 || 3.0L 2B remaining, no TLB ||
            |-
            | Follett || {{v|b1|13,184,132,935}} || SPE || November 8th, 2018 (JHA November 2018) / [https://twitter.com/SPE2500/status/1060458410531991552 Twitter] || ||
            |-
            | Rosa || {{v|c1|12,105,630,469}} || たけのこぶくろ@MOA || Arcadia October 2014 || ||
            |-
            | rowspan="3" | Sakura
            | {{v|d1|13,821,010,602}} || 颪 || 2010 / superplay DVD || highest score Arcade ||
            |-
            | {{v|e1|13,749,327,417}} || 颪 || Arcadia October 2014 || ||
            |-
            | {{v|f1|13,862,173,825}} || owata0401 || July 2nd, 2014 / [https://twitter.com/owata_0401/status/484284684579254274 Twitter] || highest score Xbox 360 || [https://www.nicovideo.jp/watch/sm23914133 Niconico]
            |-
            | Windia || {{v|g1|16,117,383,678}} || 白胡麻 || April 19th, 2014 (Arcadia November 2014) / [https://twitter.com/Kernel_in/status/457466873412452352 Twitter] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2008_012_%E3%83%87%E3%82%B9%E3%82%B9%E3%83%9E%E3%82%A4%E3%83%AB%E3%82%BA_%E3%83%A1%E3%82%AC%E3%83%96%E3%83%A9%E3%83%83%E3%82%AF%E3%83%AC%E3%83%BC%E3%83%99%E3%83%AB JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=58071 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Detana!! TwinBee

name: "Detana!! TwinBee"
name-jp: 出たな!!ツインビー
name-kana: でたな!!ついんびー
company: "Konami"
needs-work: true

scores:
  - score: 4,649,100
    player: にされた男
    autofire: OFF
    sources:
      - name: Gamest
        date: "1998-05"

  - score: 4,716,150
    player: ヘルニアM.B
    autofire: ON
    sources:
      - name: Arcadia
        date: "2014-02"

  - score: 4,717,800
    player: こいずみ
    autofire: ON
    sources:
      - name: Twitter
        date: "2020-03-05"
        url: https://twitter.com/kyoizumin/status/1235580422546841600
      - name: JHA
        date: "2020-03"
      - name: Youtube
        date: "2020-08-22"
        url: https://youtu.be/a_J5fBs2Or8
    attributes:
        is-current-record: true

  - score: 4,720,900
    player: こいずみ
    autofire: ON
    sources:
      - name: Twitter
        date: "2020-11-29"
        url: https://twitter.com/kyoizumin/status/1333045069767606273
      - name: Youtube
        date: "2020-12-11"
        url: https://youtu.be/fov17kjikSg

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1991_055_%E5%87%BA%E3%81%9F%E3%81%AA!!%E3%83%84%E3%82%A4%E3%83%B3%E3%83%93%E3%83%BC
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=58416
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            autofire: asc

Dodonpachi

name: "Dodonpachi"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dodonpachi}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Dodonpachi]] (CAVE)
            |-
            ! colspan="2" | Ship
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="4" | Type A
            | Shot || 630,443,710 || SIN || September 9th, 2012 / [http://web.archive.org/web/20160706064602/http://hpcgi2.nifty.com/hokekyo/score.cgi Hokekyo] || ||
            |-
            | rowspan="3" | Laser
            | 862,976,450 || rowspan="3" | SOF-WTN
            | August 29th, 2015 (JHA March 2016) / [https://twitter.com/sof_wtn/status/637586677540655104 Twitter] || 1p side, glitch ||
            |-
            | {{v|c1|754,937,640}} || March 22nd, 2015 / [https://twitter.com/sof_wtn/status/579614542889512960 Twitter] || 1p side, 5L remaining, max hit 949, 1st loop 224.3m, no glitch ||
            |-
            | 748,414,350 || Arcadia November 2002 || 5L remaining, max hit 926, 1st loop 217.9m, no glitch ||
            |-
            | rowspan="3" | Type B
            | Shot ||  694,352,270 || hatty || Arcadia June 2000 || 3L remaining, 1st loop 212m ||
            |-
            | rowspan="2" | Laser
            | 730,186,030 || rowspan="2" | KTL-NAL
            | August 29th, 2015 (JHA March 2016) / [https://twitter.com/Homestay_Akira/status/637460144243146752 Twitter] || 1p side, 4L remaining, max hit 865, glitch ||
            |-
            | 704,638,650 || Arcadia August 2008 || 3L remaining, no glitch ||
            |-
            | rowspan="4" | Type C
            | rowspan="3"| Shot
            | 800,885,810 || rowspan="3" | Hituji
            | January 25th, 2020 / [https://twitter.com/mgaHituji/status/1220948560985767936 Twitter] || 2p side, max hit 943, glitch, played at home ||
            |-
            | 763,513,750 || September 13th, 2015 / [https://imgur.com/JOxgq7B Image] || 2p side, No Miss, max hit 929, no glitch, played at home || 
            |-
            | 722,157,820 || Arcadia April 2003 || 4L remaining, no glitch ||
            |-
            | Laser || 790,813,760 || Clover-TAC || JHA March 2016 || 2p side, glitch ||
            |}
            
            Note: Due to a major scoring glitch, the highest scores with and without exploiting said glitch will be listed. For details on this glitch, see [http://electricunderground.io/the-secret-dodonpachi-scoring-glitch-revealed/ this article].
            
            * [[STG_Hall_of_Records/World_Record_Progression_Dodonpachi|World Record Progression]]
            * [https://wiki.denfaminicogamer.jp/highscore/1997_007_%E6%80%92%E9%A6%96%E9%A0%98%E8%9C%82 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=56826 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dodonpachi Campaign Version

name: "Dodonpachi Campaign Version"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dodonpachi Campaign Version}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Dodonpachi]] Campaign Version (CAVE)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|5,448,702,440}} || SOF-WTN || 2003 / superplay VHS || A-Laser, 2L remaining, max hit 4754, 1st loop 1.836b || [https://youtu.be/rv1JK2Ezk9U Youtube]
            |}
            {% endverbatim %}


Dodonpachi Daifukkatsu

name: "Dodonpachi Daifukkatsu"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dodonpachi Daifukkatsu}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="6" |  [[Dodonpachi Daifukkatsu]] (CAVE)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Type A || rowspan="2" | 99,999,999,999
            | rowspan="2" | [various players] || || ||
            |-
            | Type B || || ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 99,999,999,999. Competition moved over to Dodonpachi Daifukkatsu 1.5.
            
            * [https://wiki.denfaminicogamer.jp/highscore/2008_009_%E6%80%92%E9%A6%96%E9%A0%98%E8%9C%82%E5%A4%A7%E5%BE%A9%E6%B4%BB JHA Leaderboard]
            {% endverbatim %}


Dodonpachi Daifukkatsu 1.5

name: "Dodonpachi Daifukkatsu 1.5"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dodonpachi Daifukkatsu 1.5}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="8" | [[Dodonpachi Daifukkatsu]] 1.5 (CAVE)
            |-
            ! colspan="2" | Ship
            !  Loop !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="6" | Type A
            | rowspan="2" | Bomb
            | Omote || {{v|a1|569,307,942,932}} || 2-5ビット抜け後 ボフーン || Arcadia March 2011 || ||
            |-
            | Ura || {{v|b1|848,533,471,861}} || D助 || June 12th, 2019 (JHA July 2019) / [https://twitter.com/tateanasan/status/1138762163617533952 Twitter] || ||
            |-
            | rowspan="2" | Power
            | Omote || {{v|c1|870,960,548,855}} || T.U || Arcadia November 2012 || ||
            |-
            | Ura || {{v|d1|1,008,819,447,117}} || Dame K.K || Arcadia May 2010 || ||
            |-
            | rowspan="2" | Strong
            | Omote || {{v|e1|831,861,592,165}} || t2 || September 4th, 2016 (JHA September 2016) / [https://twitter.com/snnmay/status/772436166104588288 Twitter] || ||
            |-
            | Ura || {{v|f1|912,197,138,948}} || PAGTRI || October 24th, 2019 (JHA October 2019) / [https://twitter.com/pagtri/status/1187205857710202880 Twitter] || ||
            |-
            | rowspan="6" | Type B
            | rowspan="2" | Bomb
            | Omote || {{v|g1|705,319,736,247}} || OAM-屠死郎 || Arcadia January 2013 || ||
            |-
            | Ura || {{v|h1|855,065,015,797}} || D助 || Arcadia October 2013 || ||
            |-
            | rowspan="2" | Power
            | Omote || {{v|i1|837,035,830,419}} || Dame K.K || Arcadia February 2010 || ||
            |-
            | Ura || {{v|j1|1,110,937,033,835}} || Yusemi SWY || Arcadia February 2012 || ||
            |-
            | rowspan="2" | Strong
            | Omote || {{v|k1|890,946,838,476}} || t2 || Arcadia March 2013 || ||
            |-
            | Ura || {{v|l1|971,466,061,965}} || t2 || Arcadia March 2013 || ||
            |-
            | rowspan="6" | Type C
            | rowspan="2" | Bomb
            | Omote || {{v|m1|706,333,510,685}} || t2 || Arcadia February 2012 || ||
            |-
            | Ura || {{v|n1|774,570,169,194}} || じょにー || Arcadia November 2010 || ||
            |-
            | rowspan="2" | Power
            | Omote || {{v|o1|984,442,244,981}} || MYS || Arcadia June 2012 || ||
            |-
            | Ura || {{v|p1|1,098,612,177,034}} || MYS || Arcadia January 2012 || ||
            |-
            | rowspan="2" | Strong
            | Omote || {{v|q1|843,115,669,766}} || t2 || Arcadia February 2013 || ||
            |-
            | Ura || {{v|r1|905,237,809,035}} || t2 || JHA March 2016 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2008_010_%E6%80%92%E9%A6%96%E9%A0%98%E8%9C%82%E5%A4%A7%E5%BE%A9%E6%B4%BB_ver1.5 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=45588 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dodonpachi Daifukkatsu Black Label

name: "Dodonpachi Daifukkatsu Black Label"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dodonpachi Daifukkatsu Black Label}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Dodonpachi Daifukkatsu]] Black Label (CAVE)
            |-
            ! colspan="2" | Ship
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="4" | Type A
            | rowspan="2" | Bomb
            | {{v|a1|1,185,358,576,084}} || ISO / Niboshi || JHA January 2019 || highest score Arcade ||
            |-
            | {{v|b1|1,314,251,598,100}} || DVL || January 29th, 2014 / [https://twitter.com/dodonpach/status/428563189802868736 Twitter] || highest score Xbox 360 ||
            |-
            | Power || {{v|c1|1,789,275,540,569}} || TAB-T.N || JHA May 2016 || ||
            |-
            | Strong || {{v|d1|1,445,787,147,436}} || <small>特別になりたいOSS新参トランペット奏者</small> || JHA May 2017 || ||
            |-
            | rowspan="3" | Type B
            | Bomb || {{v|e1|1,308,260,652,809}} || ISO / Niboshi|| January 18th, 2019 (JHA January 2019) / [https://twitter.com/niboooji/status/1086219512519680001 Twitter] || ||
            |-
            | Power || {{v|f1|2,142,753,885,648}} || KAKSTR || JHA April 2016 / [https://twitter.com/kakstr/status/996598224361209856 Twitter] || ||
            |-
            | Strong || {{v|g1|1,693,561,873,728}} || TAB-T.N || JHA May 2016 || ||
            |-
            | rowspan="3" | Type C
            | Bomb || {{v|h1|1,168,899,830,773}} || ISO / Niboshi || September 22nd, 2018 (JHA October 2018) / [https://twitter.com/niboooji/status/1043479055985606657 Twitter] || ||
            |-
            | Power || {{v|i1|1,463,084,966,072}} || TAB-T.N || JHA March 2016 || ||
            |-
            | Strong || {{v|j1|1,475,929,038,947}} || <small>いんぺろが隣で居眠りしてたら出た</small> || JHA November 2016 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2010_012_%E6%80%92%E9%A6%96%E9%A0%98%E8%9C%82%E5%A4%A7%E5%BE%A9%E6%B4%BB%E3%83%96%E3%83%A9%E3%83%83%E3%82%AF%E3%83%AC%E3%83%BC%E3%83%99%E3%83%AB JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=45588 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dodonpachi Daioujou

name: "Dodonpachi Daioujou"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dodonpachi Daioujou}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Dodonpachi Daioujou]] (CAVE)
            |-
            ! colspan="2" | Ship
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="6" | Type A
            | rowspan="2" | Shot
            | 1,947,053,730 || Yusemi SWY || March 11th, 2017 / [https://twitter.com/hty_RA/status/840503918740168704 Twitter] || 1L 1B remaining, max hit 3,349 ||
            |-
            | 254,706,050 || ISO / Niboshi || JHA January 2020 || 0L 0B remaining ||
            |-
            | rowspan="2" | Laser
            | 921,983,790 || Maxpeed || March 22nd, 2012 / [https://twitter.com/maxpeeds/status/182837540271820801 Twitter] [http://cafe.daum.net/shooting/810/18037 OCC Official Cafe] || highest score Arcade, max hit 2,749 ||
            |-
            | 1,535,183,830 || HachimituKinkan || July 29th, 2011 / Xbox rankings || highest score Xbox 360 ||
            |-
            | rowspan="2" | Expert
            | 2,183,862,020 || WY. || October 12th, 2018 / [https://twitter.com/Plasmo_STG/status/1050766993702424576 Twitter] [http://ranking.niyaozao.com/#/rank/7?_k=4eco5n Chinese Leaderboard] || 1st loop 862m, 3L remaining ||
            |-
            | 2,171,137,550	|| HFD || Arcadia July 2012 || ||
            |-
            | rowspan="9" | Type B
            | rowspan="3" | Shot
            | 922,019,840 || MON || January 9th, 2009 / [https://moon.ap.teacup.com/qwertyuiop/1027.html Blog] || highest score Arcade, All Clear, max hit 2,562 ||
            |-
            | 283,272,240 || ISO / Niboshi || October 8th, 2019 (JHA October 2019) / [https://twitter.com/niboooji/status/1181522791616483329 Twitter] || All Clear, max hit 775 ||
            |-
            | 1,074,115,170 || MON || November 17th, 2008 / [https://moon.ap.teacup.com/qwertyuiop/1005.html Blog] || highest score PS2, died in 2-5, max hit 2,782, 2p side ||
            |-
            | rowspan="4" | Laser
            | 542,906,160 || rowspan="2" | Maxpeed
            | rowspan="2" | October 19th, 2012 / [http://cafe.daum.net/shooting/810/18152 OCC Official Cafe]
            | highest score Arcade, died in 2-5, max hit 2,511 ||
            |-
            | 478,508,500 || All Clear, max hit 1,470 ||
            |-
            | 329,287,970 || 参代目ISO@ゑ&て || JHA March 2020 || All Clear, 0L 0B remaining ||
            |-
            | 1,549,815,880 || hinanaihentai || April 19th, 2014 / Xbox rankings || highest score Xbox 360 ||
            |-
            | rowspan="2" | Expert
            | 2,229,390,350 || fufufu || July 11th, 2016 / [https://twitter.com/222_fu/status/752429227085950976 Twitter] || || [https://youtu.be/0vSFuWaTQZ0 Youtube]
            |-
            | 2,170,809,750 || SPS || March 20th, 2016 (JHA March 2016) / [https://twitter.com/SPSPUYO/status/711555644986359808 Twitter] || || [https://youtu.be/WBplM4jrpiw Youtube]
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2002_007_%E6%80%92%E9%A6%96%E9%A0%98%E8%9C%82%E5%A4%A7%E5%BE%80%E7%94%9F JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=10147 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dodonpachi Daioujou Black Label

name: "Dodonpachi Daioujou Black Label"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dodonpachi Daioujou Black Label}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Dodonpachi Daioujou]] Black Label (CAVE)
            |-
            ! colspan="2" | Ship
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="8" | Type A
            | rowspan="2" | Shot
            | 2,095,984,550 || rowspan="2" | ISO / Niboshi
            | February 2nd, 2020 / [https://twitter.com/niboooji/status/1223905431417831424 Twitter] || max hit 2,850 ||
            |-
            | 1,962,269,990 || JHA March 2020 || 2L 0B remaining ||
            |-
            | rowspan="2" | Laser
            | 2,054,664,880 || RKB || September 15th, 2019 / [https://twitter.com/rkb49/status/1173164311931305986 Twitter] || max hit 2,880 ||
            |-
            | 561,742,210 || 千石撫子 || JHA September 2020 || ||
            |-
            | rowspan="4" | Expert
            | 3,723,313,050 || WY. || September 8th, 2018 / [https://twitter.com/Plasmo_STG/status/1038448495399714816 Twitter] || played on GOTVG || [https://youtu.be/fOWhD8mViks Youtube]
            |-
            | 3,618,047,010 || LYX || February 20th, 2020 / [https://twitter.com/LYX_TEST/status/1230432822537535488 Twitter] || played on ShmupMAME 4.2 || [https://www.bilibili.com/video/av90407140 Bilibili]
            |-
            | 3,545,274,390 || HFD || 2007 / superplay DVD || ||
            |-
            | 3,511,462,970 || HFD || Arcadia December 2006 || ||
            |-
            | rowspan="5" | Type B
            | rowspan="2" | Shot
            | 2,348,299,000 || RKB || November 24th, 2019 / [https://twitter.com/rkb49/status/1198522997675450368 Twitter] || max hit 2,690 ||
            |-
            | 450,881,950 || 三井アウトレットパーク志木 || JHA September 2020 || ||
            |-
            | rowspan="2" | Laser
            | 2,050,334,100 || RKB || January 11th, 2020 / [https://twitter.com/rkb49/status/1215854958295207936 Twitter] ||  ||
            |-
            | 221,742,710 || 佐々木寿人 || JHA September 2020 || ||
            |-
            | Expert || 3,681,252,160 || ろくきち || January 15th, 2020 (JHA January 2020) / [https://twitter.com/rokukichi/status/1217441941870137345 Twitter] || || [https://youtu.be/-QXobCPVMV8 Youtube]
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2002_006_%E6%80%92%E9%A6%96%E9%A0%98%E8%9C%82%E5%A4%A7%E5%BE%80%E7%94%9F%E3%83%96%E3%83%A9%E3%83%83%E3%82%AF%E3%83%AC%E3%83%BC%E3%83%99%E3%83%AB JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=17432 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dodonpachi II: Bee Storm

name: "Dodonpachi II: Bee Storm"
name-jp:
name-kana:
company: "IGS"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dodonpachi II: Bee Storm}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Dodonpachi II: Bee Storm]] (IGS)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Combat
            | {{v|a1|8,572,185,870}} || CYS-SAK || September 1st, 2018 / [https://twitter.com/1ka2no394285ki/status/1035892371429310465 Twitter] || played at home || [https://youtu.be/aRVC-ISiRIQ Youtube]
            |-
            | {{v|b1|8,365,068,300}} || 5GL || Arcadia May 2004 || ||
            |-
            | Internet Ranking || {{v|c1|8,270,722,080}} || SRA-はっしー || Arcadia March 2003|| ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=56704 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dodonpachi Saidaioujou

name: "Dodonpachi Saidaioujou"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dodonpachi Saidaioujou}}
            {{Anchor|Saidaioujou}}
            {{Anchor|SDOJ}}
            {{Anchor|DDP SDOJ}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="8" | [[Dodonpachi Saidaioujou]] (CAVE)
            |-
            ! colspan="2" | Ship
            ! TLB !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="6" | Type A
            | rowspan="2" | Shot
            | Hibachi || {{v|a1|1,442,551,208,920}} || ECM-SSI-S.I || JHA October 2016 || ||
            |-
            | Inbachi || {{v|b1|1,395,122,986,981}} || KSG || JHA March 2016 || ||
            |-
            | rowspan="2" | Laser
            | Hibachi || {{v|c1|1,305,392,775,160}} || TAB-T.N || Arcadia May 2014 || ||
            |-
            | Inbachi || {{v|d1|1,224,537,165,005}} || KSG || Arcadia April 2015 || ||
            |-
            | rowspan="2" | Expert
            | Hibachi || {{v|e1|5,100,253,895,431}} || ZAP || JHA May 2016 || || [https://www.nicovideo.jp/watch/sm26631667 Niconico]
            |-
            | Inbachi || {{v|f1|1,993,764,187,443}} || Yusemi SWY || Arcadia May 2013 || ||
            |-
            | rowspan="8" | Type B
            | rowspan="2" | Shot
            | Hibachi || {{v|g1|1,454,006,441,161}} || KSG || JHA March 2016 || ||
            |-
            | Inbachi || {{v|h1|1,446,679,741,723}} || KSG || JHA March 2016 || ||
            |-
            | rowspan="2" | Laser
            | Hibachi || {{v|i1|1,305,973,868,514}} || KSG || JHA April 2018 || ||
            |-
            | Inbachi || {{v|j1|1,233,582,650,927}} || KSG || JHA March 2016 || ||
            |-
            | rowspan="4" | Expert
            | rowspan="2" | Hibachi
            | {{v|k1|4,106,670,320,551}} || PEK || September 21st, 2019 / [https://twitter.com/peketti/status/1175400617956667392 Twitter] || ||
            |-
            | {{v|l1|3,526,617,565,337}} || PEK || Arcadia October 2013 || ||
            |-
            | Inbachi || {{v|m1|1,968,414,228,525}} || roki || Arcadia September 2014 || ||
            |-
            | - || {{v|n1|4,722,419,817,926}} || PEK || December 28th, 2014 / [https://twitter.com/peketti/status/549177110820962306 Twitter] || no TLB clear ||
            |-
            | rowspan="6" | Type C
            | rowspan="2" | Shot
            | Hibachi || {{v|o1|1,455,172,665,270}} || SUG || JHA March 2016 || ||
            |-
            | Inbachi || {{v|p1|1,314,310,910,618}} || KFI-SKY || Arcadia June 2014 || ||
            |-
            | rowspan="2" | Laser
            | Hibachi || {{v|q1|1,286,956,448,706}} || TAB-T.N || Arcadia April 2014 || ||
            |-
            | Inbachi || {{v|r1|1,294,037,629,835}} || TAB-T.N || Arcadia April 2014 || ||
            |-
            | rowspan="2" | Expert
            | Hibachi || {{v|s1|4,702,156,592,905}} || ZAP || JHA May 2016 || || [http://www.nicovideo.jp/watch/sm28888306 Niconico]
            |-
            | Inbachi || {{v|t1|1,007,733,640,245}} || roki || Arcadia May 2014 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2012_012_%E6%80%92%E9%A6%96%E9%A0%98%E8%9C%82%E6%9C%80%E5%A4%A7%E5%BE%80%E7%94%9F JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=47668 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dogyuun!

name: "Dogyuun!"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dogyuun!}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Dogyuun!]] (Toaplan)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | style="background: #B9D9B9;" | 60,790,950 || style="background: #B9D9B9;" | Laos-長田仙人 || style="background: #B9D9B9;" | Gamest April 1994 || style="background: #B9D9B9;" | stage 5-1 (kill screen) || style="background: #B9D9B9;" |
            |-
            | style="background: #DFDFDF;" | 99,999,990 || style="background: #DFDFDF;" | A.K上越 || style="background: #DFDFDF;" | October 21st, 2011 / [https://twitter.com/AK6735/status/127337621948084224 Twitter] || style="background: #DFDFDF;" | played on ThunderMAME32UI+ || style="background: #DFDFDF;" |
            |}
            
            Note: Japanese scoreboard closed May 1994 due to the detection of an infinite pattern. Shmups Wiki scoreboard closed after the achievement of the counterstop at 99,999,990.
            
            * [https://shmups.system11.org/viewtopic.php?t=58959 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Donpachi

name: "Donpachi"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Donpachi}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Donpachi]] (CAVE)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Type A || {{v|a1|92,079,420}} || SOF-WTN || May 1st, 2018 (JHA May 2018) / [https://twitter.com/sof_wtn/status/991263542459289601 Twitter] || max chain 287 ||
            |-
            | Type B || {{v|b1|67,051,880}} || HK || October 6th, 2017 (JHA October 2017) / [https://twitter.com/oss055055oss398/status/916277884448210945 Twitter] || 1st loop 30.30m, max chain 196 ||
            |-
            | Type C || {{v|c1|66,226,570}} || Plasmo || October 4th, 2017 (JHA October 2017) / [https://shmups.system11.org/viewtopic.php?p=1278763#p1278763 Shmups Forum] || max chain 206 ||
            |}
            
            * [[STG_Hall_of_Records/World_Record_Progression_Donpachi|World Record Progression]]
            * [https://wiki.denfaminicogamer.jp/highscore/1995_008_%E9%A6%96%E9%A0%98%E8%9C%82 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?f=2&t=60135 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Double Wings

name: "Double Wings"
name-jp:
name-kana:
company: "Mitchell"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Double Wings}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Double Wings]] (Mitchell)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|4,204,500}} || hamami || Arcadia August 2014 || ||
            |}
            {% endverbatim %}


Dragon Blaze

name: "Dragon Blaze"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dragon Blaze}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Dragon Blaze]] (Psikyo)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Ian || {{v|a1|4,217,300}} || 三茶鮫 || January 9th, 2015 (Arcadia April 2015) / [https://twitter.com/PaperWeight/status/553532187094441984 Twitter] || 3L 9B remaining ||
            |-
            | Quaid || {{v|b1|4,286,700}} || CYS-SAK || November 3rd, 2019 (JHA November 2019) / [https://twitter.com/1ka2no394285ki/status/1206211120446312448 Twitter] || 3L 9B remaining ||
            |-
            | Rob || 4,022,900 || 三茶鮫 ||| September 19th, 2020 (JHA September 2020) / [https://twitter.com/PaperWeight/status/1307333853971791872 Twitter] || used 1 bomb, autofire ||
            |-
            | Sonia || {{v|d1|4,013,500}} || 三茶鮫 || Arcadia April 2013 || 3L 9B remaining ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2000_031_%E3%83%89%E3%83%A9%E3%82%B4%E3%83%B3%E3%83%96%E3%83%AC%E3%82%A4%E3%82%BA JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=51579 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dragon Breed

name: "Dragon Breed"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dragon Breed}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Dragon Breed]] (Irem)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|9,999,900}} || 猫YMA-TIT-経 || Arcadia August 2003 || 4+1L remaining, no miss ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,900.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1989_004_%E3%83%89%E3%83%A9%E3%82%B4%E3%83%B3%E3%83%96%E3%83%AA%E3%83%BC%E3%83%89 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=38613 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dragon Saber

name: "Dragon Saber"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dragon Saber}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Dragon Saber]] (Namco)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|2,363,030}} || あぶそうぶ(べ) || Gamest April 1991 || 9+1L remaining, 1-Up x4 ||
            |-
            | ON || {{v|b1|2,373,020}} || HYAKU-DSK-京城(み) || Gamest June 1991 || 9+1L remaining, 1-Up x4 ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=43455 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Dragon Spirit

name: "Dragon Spirit"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Dragon Spirit}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Dragon Spirit]] (Namco)
            |-
            ! Version !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | New || 1,873,800 || のんのんセイバー || JHA February 2018 || autofire button 15hz ||
            |-
            | style="background: #B9D9B9;" | Old || style="background: #B9D9B9;" | 1,564,260 || style="background: #B9D9B9;" | VIEGLE-HARUKA || style="background: #B9D9B9;" | Gamest November 1987 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" | 
            |}
            
            Note: Japanese scoreboard for Old Version closed November 1987 due to the detection of an infinite pattern.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1987_001_%E3%83%89%E3%83%A9%E3%82%B4%E3%83%B3%E3%82%B9%E3%83%94%E3%83%AA%E3%83%83%E3%83%88 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=43455 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


E.D.F. Earth Defense Force

name: "E.D.F. Earth Defense Force"
name-jp:
name-kana:
company: "Jaleco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|E.D.F. Earth Defense Force}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[E.D.F. Earth Defense Force]] (Jaleco)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,541,500}} || PPR-KTL-IZK || Arcadia April 2013 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=52717 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Earth Joker: UN Defense Force

name: "Earth Joker: UN Defense Force"
name-jp:
name-kana:
company: "Visco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Earth Joker: UN Defense Force}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Earth Joker: UN Defense Force]] (Visco)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,264,300}} || hamami || Arcadia December 2013 || ||
            |}
            {% endverbatim %}


Eight Forces

name: "Eight Forces"
name-jp:
name-kana:
company: "Tecmo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Eight Forces}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Eight Forces]] (Tecmo)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|52,605,550}} || YU38 || Gamest April 1995 || used Geki Tsubasa ||
            |-
            | ON || {{v|b1|64,387,150}} || PMC-SIN || Gamest November 1994 || used Geki Tsubasa, max medal x64 ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=24116 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


ESP Galuda

name: "ESP Galuda"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|ESP Galuda}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[ESP Galuda]] (CAVE)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Ageha || {{v|a1|72,074,190}} || ISO / Niboshi || Arcadia November 2004 || 6L 100% barrier remaining; 929 gold ||
            |-
            | Tateha || {{v|b1|72,581,190}} || WSM-F.K || Arcadia February 2006 || 6L 100% barrier remaining ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2003_012_%E3%82%A8%E3%82%B9%E3%83%97%E3%82%AC%E3%83%AB%E3%83%BC%E3%83%80 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=151 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


ESP Galuda II

name: "ESP Galuda II"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|ESP Galuda II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[ESP Galuda II]] (CAVE)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Ageha || {{v|a1|1,038,000,258}} || よず  || September 9th, 2018 (JHA September 2018) / [https://twitter.com/Yora_/status/1038692041683697664 Twitter] || 6L 6 Waku 0% barrier remaining ||
            |-
            | Asagi|| {{v|b1|935,904,774}} || ASA  || September 16th, 2019 (JHA September 2019) / [https://twitter.com/asa_1945/status/1173579123945435137 Twitter] || 6L 6 Waku 0% barrier remaining ||
            |-
            | Tateha || {{v|c1|1,006,663,918}} || NIG || Arcadia May 2014 || 6L 6 Waku 75% barrier remaining ||
            |}
            
            * [[STG_Hall_of_Records/World_Record_Progression_Espgaluda_II|World Record Progression]]
            * [https://wiki.denfaminicogamer.jp/highscore/2005_012_%E3%82%A8%E3%82%B9%E3%83%97%E3%82%AC%E3%83%AB%E3%83%BC%E3%83%80II JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=6270 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


ESP Ra.De.

name: "ESP Ra.De."
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|ESP Ra.De.}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[ESP Ra.De.]] (CAVE)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Irori || {{v|a1|44,645,250}} || Clover-TAC || JHA February 2020 || 2p side, 6L remaining, 497 gold, barrier 74% ||
            |-
            | J-B 5th || {{v|b1|42,137,190}} || Clover-TAC || JHA September 2020 || 2p side, no miss, 870 gold, barrier 0% ||
            |-
            | Yusuke || {{v|c1|41,898,630}} || WSM-MKZ || January 22nd, 2019 (JHA February 2019) / [https://twitter.com/wsmmkz/status/1087576687062134787 Twitter] || 2p side, 6L remaining, 480 gold, barrier 70% ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_032_%E3%82%A8%E3%82%B9%E3%83%97%E3%83%AC%E3%82%A4%E3%83%89 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=50469 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Exed Exes

name: "Exed Exes"
name-jp:
name-kana:
company: "Capcom"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Exed Exes}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Exed Exes]] (Capcom)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|10,000,000}} || VERTEX-FANCY-ALI || Micom Basic May 1985 || level 31 ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=42461 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Exzisus

name: "Exzisus"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Exzisus}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Exzisus]] (Taito)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="6" | 9,999,990+α
            | DBS || October 15th, 2014 (Arcadia March 2015) / [https://twitter.com/dbsqawsedrftgyh/status/707616106714824704 Twitter] || stage 5-3, 57L remaining ||
            |-
            | 木之本 まい'ん || November 1st, 2014 (Arcadia March 2015) / [https://twitter.com/Main_Kinomoto/status/528537650861334528 Twitter] || stage 5-3, 26L remaining ||
            |-
            | ちゃんたけ || November 3rd, 2014 (Arcadia March 2015) / [https://twitter.com/SN_TAK/status/529211533486612483 Twitter] || stage 5-3, 55L remaining ||
            |-
            | TZW-ART? || November 6th, 2014 (Arcadia March 2015) / [https://twitter.com/TZW_guile/status/530308883516887040 Twitter] || stage 5-3 ||
            |-
            | JAG-AXI || November 15th, 2014 (Arcadia March 2015) / [https://twitter.com/Main_Kinomoto/status/533597219572547585 Twitter] || stage 5-3, 90L remaining ||
            |-
            | 微妙Z || Arcadia March 2015 || stage 5-3 ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 9,999,990.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1987_006_%E3%82%A4%E3%82%B0%E3%82%B8%E3%83%BC%E3%82%B6%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=31706 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


F/A / Fighter & Attacker

name: "F/A / Fighter & Attacker"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|F/A / Fighter & Attacker}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[F/A]] / Fighter & Attacker (Namco)
            |-
            ! Autofire !! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="5" | OFF
            | 6-Way || {{v|a1|2,066,500}} || マラつき || Gamest July 1993 || ||
            |-
            | 5-Wave || {{v|b1|2,032,850}} || DBS || Arcadia February 2004 || ||
            |-
            | Straight || {{v|c1|2,063,100}} || Mr.まらさし君 || Gamest June 1993 || ||
            |-
            | Semi-Auto || {{v|d1|2,060,500}} || Mr.まらさし君 || Gamest April 1993 || used ACM ||
            |-
            | Auto || {{v|e1|1,996,350}} || EPISTEMER || August 1994 || ||
            |-
            | rowspan="6" | ON
            | 6-Way || {{v|f1|2,090,500}} || DBS || August 2nd, 2015 (JHA March 2016) / [https://twitter.com/dbsqawsedrftgyh/status/707611390509383680 Twitter] || used JA-37 ||
            |-
            | rowspan="2" | 5-Wave
            | {{v|g1|2,099,000}} || DBS || October 17th, 2015 (JHA March 2016) / [https://twitter.com/dbsqawsedrftgyh/status/707612943290990593 Twitter] || used F-16 ||
            |-
            | {{v|h1|2,088,050}} || DBS || September 19th, 2015 / [https://twitter.com/dbsqawsedrftgyh/status/707612632392437760 Twitter] || used F-14 ||
            |-
            | Straight || {{v|i1|2,101,100}} || DBS || September 2nd, 2015 (JHA March 2016) / [https://twitter.com/dbsqawsedrftgyh/status/707612113590554625 Twitter] || used GR.5 ||
            |-
            | Semi-Auto || {{v|j1|2,087,600}} || DBS || July 12th, 2015 (JHA March 2016) / [https://twitter.com/dbsqawsedrftgyh/status/707611059289329664 Twitter] || used ACM ||
            |-
            | Auto || {{v|k1|2,077,000}} || DBS || May 6th, 2015 (JHA March 2016) / [https://twitter.com/dbsqawsedrftgyh/status/707610026291036160 Twitter] || used Mir 2000 ||
            |-
            | - || Full-Auto || {{v|l1|2,064,250}} || DBS || May 31st, 2015 (JHA March 2016) / [https://twitter.com/dbsqawsedrftgyh/status/707610592282935296 Twitter] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1992_004_F_A JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=59867 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Fantasy Zone

name: "Fantasy Zone"
name-jp:
name-kana:
company: "Sega"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Fantasy Zone}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="6" | [[Fantasy Zone]] (Sega)
            |-
            ! Version !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Japan (Old) || {{v|a1|99,999,990}} || 神奈備(星)久遠 || Arcadia October 2008 || stage 21-8, autofire, no miss ||
            |-
            | World (New) || {{v|b1|99,999,990}} || フジマサ || August 16th, 2018 / [https://twitter.com/CueRetog/status/1029970434916143104 Twitter] || loop 22 ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 99,999,990.
            
            * [https://shmups.system11.org/viewtopic.php?t=55601 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Fighting Hawk

name: "Fighting Hawk"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Fighting Hawk}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Fighting Hawk]] (Taito)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,069,250}} || ERO || JHA October 2017 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1989_010_%E3%83%95%E3%82%A1%E3%82%A4%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0%E3%83%9B%E3%83%BC%E3%82%AF JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=30307 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Fire Barrel / Air Assault

name: "Fire Barrel / Air Assault"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Fire Barrel / Air Assault}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Fire Barrel]] / Air Assault (Irem)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|11,970,300}} || 山本 || Arcadia December 2004 || 2p side ||
            |-
            | ON || {{v|b1|12,005,200}} || hamami || Arcadia April 2014 || 2p side ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=58401 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Fixeight

name: "Fixeight"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Fixeight}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="6" | [[Fixeight]] (Toaplan)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | A. Bordeaux
            | rowspan="15" | 10,000,000+α
            | AXIOM-ZZZ || rowspan="2" | Gamest June 1993
            | stage 7-6 ||
            |-
            | VMT-RED || stage 7-3 ||
            |-
            | C. Horn || CYCLONE-R.T || Gamest November 1992 || stage 6-7, area 592 ||
            |-
            | rowspan="2" | GX-026
            | VMT-ABU || rowspan="2" | Gamest May 1993
            | stage 7-4 ||
            |-
            | AXIOM-ZZZ || stage 7-5 ||
            |-
            | rowspan="2" | H. Young
            | CYCLONE-R.T || rowspan="2" | Gamest December 1992
            | stage 7-3, area 628 ||
            |-
            | FREEZIN' || stage 7-2 ||
            |-
            | rowspan="3" | H. Zigraghi
            | CYCLONE-R.T || rowspan="3" | Gamest December 1992
            | stage 7-2, area 617 ||
            |-
            | IML-YUJとひむ || stage 7-2 ||
            |-
            | GACHAPIN 凸 || stage 7-5, area 656 ||
            |-
            | rowspan="3" | L. Pamela
            | CYCLONE-R.T || rowspan="3" | Gamest December 1992
            | stage 7-3 ||
            |-
            | 市井無頼の徒眠水 || stage 7-6 ||
            |-
            | CYR-WIN || stage 7-1 ||
            |-
            | R. L'Angelo || FREEZIN' || Gamest December 1992 || stage 7-5 ||
            |-
            | Vistario || 星白金-HIR(性) || Gamest December 1992 || stage 9-7 ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=35180 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Flak Attack

name: "Flak Attack"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Flak Attack}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Flak Attack]] (Konami)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|3,456,100}} || さくやまああーん師匠 || Gamest October 1998 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=59585 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


G Stream 2020

name: "G Stream 2020"
name-jp:
name-kana:
company: "Triangle Service / Oriental Soft"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|G Stream 2020}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[G Stream 2020]] (Triangle Service / Oriental Soft)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 14,046,030 || rowspan="2" | R.
            |2013|| played on emulator || [https://www.nicovideo.jp/watch/sm22342915 Niconico]
            |-
            | 13,221,330 || Arcadia May 2014 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=44717 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


G-Darius

name: "G-Darius"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|G-Darius}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[G-Darius]] (Taito)
            |-
            ! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | λ (Lambda) zone || {{v|a1|32,390,090}} || F.F.J.-FFJ. || Arcadia January 2007 || ||
            |-
            | μ (Mu) zone || {{v|b1|38,600,260}} || L2A-大明神 || Arcadia January 2010 || Turtle Reverse x3 ||
            |-
            | ν (Nu) zone || {{v|c1|39,398,860}} || L2A-大明神 || Arcadia July 2009 || 51.2k x2, before final boss: 22.05m ||
            |-
            | ξ (Xi) zone || {{v|d1|34,711,820}} || L2A-大明神 || Arcadia February 2001 || 51.2k x3 ||
            |-
            | ο (Omicron) zone || {{v|e1|56,069,500}} || L2A-大明神 || Arcadia November 2014 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1997_004_G%E3%83%80%E3%83%A9%E3%82%A4%E3%82%A2%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=178 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Galaga

name: "Galaga"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Galaga}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Galaga]] (Namco)
            |-
            ! Setting !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Marathon || {{v|a1|20,980,450}} || Jordan Dorrington || January 30th, 2020 / [https://www.twingalaxies.com/game/galaga/arcade Twin Galaxies] || ||
            |-
            | Tournament || {{v|b1|10,904,570}} || Armando Gonzalez || August 14th, 2020 || || [https://youtu.be/BO-G8j8D-ZI Youtube]
            |}
            
            Note: Due to a display issue of scores with 7+ digits, scores can only be tracked on 2p side.
            
            * [https://shmups.system11.org/viewtopic.php?t=39648 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Galaga '88

name: "Galaga '88"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Galaga '88}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Galaga '88]] (Namco)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,174,760}} || SPREAD-KDD || Gamest May 1988 || ||
            |}
            
            Note: Japanese scoreboard closed June 1988 due to the detection of an infinite pattern.
            
            * [https://shmups.system11.org/viewtopic.php?t=39648 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gallop: Armed Police Unit / Cosmic Cop

name: "Gallop: Armed Police Unit / Cosmic Cop"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gallop: Armed Police Unit / Cosmic Cop}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="6" | [[Gallop: Armed Police Unit]] / Cosmic Cop (Irem)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="5" | OFF
            | rowspan="11" | 999,999
            | EXCEL-CYR-CBY || rowspan="11" | Gamest January 1992
            | 3L remaining ||
            |-
            | EXTEND II - 帝龍 || 4:37 ||
            |-
            | KGP-N∙H(ま)(ど) || 9:43 ||
            |-
            | USG-OME-K.N(ど) || 0L remaining ||
            |-
            | (ベ)(KMG) || 9:30 ||
            |-
            | rowspan="6" | ON
            | ESSAY-GRF-SER || 0L remaining ||
            |-
            | TYR-星白金(H) || 7:33 ||
            |-
            | B.J || 0L remaining ||
            |-
            | G.M.C. KKK || ||
            |-
            | PIA-CNT! || 0L remaining ||
            |-
            | IML-PET || 4:42 ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 999,999.
            
            * [https://shmups.system11.org/viewtopic.php?t=59563 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Game Tengoku / The Game Paradise

name: "Game Tengoku / The Game Paradise"
name-jp:
name-kana:
company: "Jaleco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Game Tengoku / The Game Paradise}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Game Tengoku]] / The Game Paradise (Jaleco)
            |-
            ! Mode !! Character/Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="5" | Normal
            | Jeynus / Fighter-EX || {{v|a1|47,149,260}} || 木村正日 || Arcadia June 2003 || ||
            |-
            | Momoko || {{v|b1|36,746,180}} || QQQ || Micom Basic May 1996 || ||
            |-
            | Pig || {{v|c1|36,894,750}} || ZXZ || Micom Basic March 1996 || ||
            |-
            | Selia / Poopera || {{v|d1|36,179,600}} || ZAC-Ristar || Micom Basic January 1997 || ||
            |-
            | Z-DYNE Mk II || {{v|e1|28,854,620}} || DMK-10M2 || Micom Basic May 1996 || ||
            |-
            | rowspan="5" | Time Attack
            | Jeynus / Fighter-EX || {{v|f1|14,065,940}} || まつお(I.O) || JHA January 2017 || ||
            |-
            | Momoko || {{v|g1|14,089,320}} || MMK-KTL-IZK || JHA October 2017 / [https://twitter.com/DeepBlueNoiz/status/932664037157900288 Twitter] || ||
            |-
            | Pig || {{v|h1|13,659,310}} || まつお(I.O) || JHA May 2017 || ||
            |-
            | Selia / Poopera || {{v|i1|14,177,920}} || PPR-KTL-IZK || JHA December 2017 || ||
            |-
            | Z-DYNE Mk II || {{v|j1|13,075,120}} || まつお(I.O) || JHA August 2017 || ||
            |}
            
            Note: For Normal Mode, the Japanese scoreboard of Gamest/Arcadia/JHA does not keep track of different characters but only has one combined ranking. Individual character rankings were only carried through in Micom Basic magazine.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1995_012_%E3%82%B2%E3%83%BC%E3%83%A0%E5%A4%A9%E5%9B%BD JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?f=2&t=65720 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Game Title

name: "Game Title"
name-jp:
name-kana:
company: "Yotsubane"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Game Title}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | Game Title
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | || || || || ||
            |}
            
            * [ JHA Leaderboard]
            * [ Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gaplus

name: "Gaplus"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gaplus}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Gaplus]] (Namco)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 100,000,000+α || ACU山崎拓 || Micom Basic October 1984 || collaborative play by a total of 5 players; playtime 3 days ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 100,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=39648 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gekirindan

name: "Gekirindan"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gekirindan}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Gekirindan]] (Taito)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Type A || {{v|a1|2,413,520}} || WGFC-DUE || Arcadia March 2013 || ||
            |-
            | Type B || {{v|b1|2,391,920}} || WGFC-DUE || Arcadia February 2013 || ||
            |-
            | Type C || {{v|c1|2,402,940}} || WGFC-DUE || Arcadia February 2013 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=39915 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gemini Wing

name: "Gemini Wing"
name-jp:
name-kana:
company: "Tecmo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gemini Wing}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Gemini Wing]] (Tecmo)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,419,530}} || KTL-ぷーぺら || Arcadia August 2008 || 7+1L remaining ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=37797 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Ghost Pilots

name: "Ghost Pilots"
name-jp:
name-kana:
company: "SNK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Ghost Pilots}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Ghost Pilots]] (SNK)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|13,666,900}} || KHD-KGR || March 2020 || highest score Arcade Archives ||
            |}
            
            Note: No official score keeping tradition due to the detection of an infinite pattern right after the release of the game.
            {% endverbatim %}


Giga Wing

name: "Giga Wing"
name-jp:
name-kana:
company: "Takumi"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Giga Wing}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Giga Wing]] (Takumi)
            |-
            ! Character/Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Isha/Porchka || {{v|a1|261,654,650,671,350}} || 両替士 || Arcadia April 2003 || after st4: 61.6t, st6: 124sec ||
            |-
            | Ruby/Carmine || {{v|b1|275,462,529,940,830}} || 両替士 || Arcadia May 2003 || 6B remaining, no miss ||
            |-
            | Shinnosuke/Raijin || {{v|c1|252,537,976,078,410}} || 両替士 || Arcadia June 2001 || ||
            |-
            | Stuck/Widerstand || {{v|d1|294,631,625,840,450}} || 両替士 || Arcadia July 2002 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1999_030_%E3%82%AE%E3%82%AC%E3%82%A6%E3%82%A4%E3%83%B3%E3%82%B0 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=36587 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Giga Wing 2

name: "Giga Wing 2"
name-jp:
name-kana:
company: "Takumi"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Giga Wing 2}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Giga Wing 2]] (Takumi)
            |-
            ! Character/Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Cherry/Stork || {{v|a1|88,381,465,169,394,500}} || ISO / Niboshi || Arcadia November 2002 || ||
            |-
            | Kurt/Kingfisher || {{v|b1|85,721,505,047,745,380}} || ISO / Niboshi || Arcadia January 2003 || ||
            |-
            | Largo/Albatross || {{v|c1|85,998,650,467,872,480}} || Dame K.K || Arcadia August 2004 || ||
            |-
            | Limi/Raven || {{v|d1|90,052,006,999,371,580}} || Enabler-T.S || Arcadia April 2003 || ||
            |-
            | Romi/Sparrow || {{v|e1|81,333,888,564,019,590}} || ISO / Niboshi || Arcadia January 2003 || ||
            |-
            | [Doubleplay] || {{v|f1|385,257,470,400,199,950}} || 服部 || Arcadia November 2004 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2001_048_%E3%82%AE%E3%82%AC%E3%82%A6%E3%82%A4%E3%83%B3%E3%82%B02 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=61898 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gokujyou Parodius

name: "Gokujyou Parodius"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gokujyou Parodius}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Gokujyou Parodius]] (Konami)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Hikaru || {{v|a1|5,253,600}} || みっしー || Arcadia May 2014 || ||
            |-
            | Koitsu || {{v|b1|6,020,700}} || みっしー || September 24th, 2017 (JHA October 2017) / [https://twitter.com/tekitougge/status/911913048956223489 Twitter] || ||
            |-
            | Mambo || {{v|c1|5,065,200}} || CB@てんぷら || JHA March 2016 || 1st loop 2.26m ||
            |-
            | Michael || {{v|d1|5,311,100}} || CB@てんぷら || JHA June 2018 || 1st loop 2.48m ||
            |-
            | Octopus || {{v|e1|4,910,100}} || みっしー || December 29th, 2019 (JHA January 2020) / [https://twitter.com/tekitougge/status/1211261613296111616 Twitter] || 1st loop 2.14m ||
            |-
            | Pentarou || {{v|f1|5,301,100}} || みっしー || February 24th, 2019 (JHA March 2019) / [https://twitter.com/tekitougge/status/1099543058557763584 Twitter] || 1st loop 2.28m ||
            |-
            | rowspan="2" | Twinbee
            | {{v|g1|5,014,000}} || みっしー || May 14th, 2018 / [https://twitter.com/tekitougge/status/996015544712052736 Twitter] || ||
            |-
            | {{v|h1|4,921,100}} || みっしー || May 3rd, 2018 (JHA May 2018) / [https://twitter.com/tekitougge/status/992044883757023235 Twitter] || ||
            |-
            | Vic Viper || {{v|i1|5,064,600}} || SPK (お) || Arcadia October 2004 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1994_005_%E6%A5%B5%E4%B8%8A%E3%83%91%E3%83%AD%E3%83%87%E3%82%A3%E3%82%A6%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=36785 Shmups Forum Hi-Score Topic]
            
            
            {| class="wikitable"  style="text-align: center"
            |-
            ! colspan="6" | [[Gradius]]
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | style="background: #B9D9B9;" rowspan="2" | 10,000,000+α
            | style="background: #B9D9B9;" | ACU-Y.N || style="background: #B9D9B9;" rowspan="2" | Gamest September 1986 (Micom Basic January 1986)
            | style="background: #B9D9B9;" | stage 23-3, playtime 6h 25m || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | NFC.ZEUS || style="background: #B9D9B9;" | stage 22-3 || style="background: #B9D9B9;" |
            |-
            | {{v|a1|99,999,300}} || めぞん一刻 || before 2002 / [https://igcc.jp/%e3%82%b0%e3%83%a9%e3%83%87%e3%82%a3%e3%82%a6%e3%82%b9/ info] || stage 210-6, 201L remaining, playtime 67h 28m ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=58157 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gradius II

name: "Gradius II"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gradius II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Gradius II]] (Konami)
            |-
            ! Power Meter !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Type 1
            | style="background: #B9D9B9;" rowspan="6" | 10,000,000+α
            | style="background: #B9D9B9;" | 暴力王(よ) || style="background: #B9D9B9;" rowspan="2" | Gamest December 1988
            | style="background: #B9D9B9;" | Force Field || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | AZUKI-CRS ありがたや内藤 || style="background: #B9D9B9;" | Force Field || style="background: #B9D9B9;" |
            |-
            | Type 2 ||  style="background: #B9D9B9;" | KUZ改めVMT-RED || style="background: #B9D9B9;" | Gamest March 1989 || style="background: #B9D9B9;" | Force Field || style="background: #B9D9B9;" |
            |-
            | Type 3 || style="background: #B9D9B9;" | あずき貸切内藤あきら || style="background: #B9D9B9;" | Micom Basic September 1988 || style="background: #B9D9B9;" | stage 15-8, Force Field || style="background: #B9D9B9;" |
            |-
            | rowspan="3" | Type 4
            | style="background: #B9D9B9;" | 変態内藤 || style="background: #B9D9B9;" rowspan="2" | Micom Basic August 1988
            | style="background: #B9D9B9;" | stage 17-4, Force Field || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | GMC-KOM(た) || style="background: #B9D9B9;" | stage 15-1, Force Field || style="background: #B9D9B9;" |
            |-
            | {{v|a1|28,820,000}} || GSI-TUS || July 19th, 2020 / [https://twitter.com/GIII_DEBU/status/1284874247857254400 Twitter] || stage 33-4, Force Field, playtime ~16h 30m, overflow bug game over || [https://youtu.be/rTNOnWjXeRU Youtube]
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=58157 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gradius III

name: "Gradius III"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gradius III}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="8" | [[Gradius III]] (Konami)
            |-
            ! Mode !! Autofire !! Weapon !! Score <br>[stage reached] !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Beginner
            | OFF || - || {{v|a1|1,279,370}} || SGP-IMPUL-AOI || Gamest June 1990 || ||
            |-
            | ON || - || {{v|b1|2,800,440}} || わかさん || Arcadia July 2011 || ||
            |-
            | rowspan="12" | Normal
            | rowspan="2" | -
            | rowspan="2" | Type A
            | {{v|c1|3,538,070}} || ZER-ぜろ☆すた || May 2013 / <br>[https://web.archive.org/web/20140718164104/http://www9.plala.or.jp/nakanoryuzo/HS/RANK/0/1/GURA3.html 全国ハイスコア集計+α] || stage 6-10 ||
            |-
            | style="background: #B9D9B9;" | [stage 3-1] || style="background: #B9D9B9;" | EXCEL-星白金HIR || style="background: #B9D9B9;" | Gamest July 1990 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" | 
            |-
            | rowspan="3" | -
            | rowspan="3" | Type B
            | {{v|d1|10,052,910}} || GSI-TUS || September 9th, 2018 / [https://twitter.com/GIII_DEBU/status/1038785840091029504 Twitter] || stage 11-10, playtime ~15h, Old Version ||
            |-
            | {{v|e1|10,004,030}} || YDA || June 2nd, 2013 / [https://web.archive.org/web/20140813115405/http://www.nakanoryuzo.sakura.ne.jp/SK/1306020053q01.jpg Image] || New Version ||
            |-
            | style="background: #B9D9B9;" | [stage 3-2] || style="background: #B9D9B9;" | Extreme-WKP-ベジータ || style="background: #B9D9B9;" | Gamest July 1990 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" | 
            |-
            | rowspan="2" | -
            | rowspan="2" | Type C
            | {{v|f1|2,345,720}} || YDA || August 26th, 2012 || stage 5-2, New Version || [https://youtu.be/ew_u2uoNszI Youtube]
            |-
            | style="background: #B9D9B9;" | [stage 2-9] || style="background: #B9D9B9;" | CVM雷霊XAV || style="background: #B9D9B9;" | Gamest July 1990 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" | 
            |-
            | rowspan="2" | -
            | rowspan="2" | Type D
            | {{v|g1|5,632,630}} || erogeSTG ZER || January 7th, 2019 || stage 10-3 || [https://youtu.be/jHHOgBIglqM Youtube]
            |-
            | style="background: #B9D9B9;" | [stage 3-2] || style="background: #B9D9B9;" | Extreme-WKP-ベジータ || style="background: #B9D9B9;" | Gamest July 1990 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" | 
            |-
            | OFF || rowspan="3" | Edit
            | style="background: #B9D9B9;" | [stage 3-1] || style="background: #B9D9B9;" | HCM-POTSU || style="background: #B9D9B9;" | Gamest June 1990 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" | 
            |-
            | rowspan="2" | ON
            | {{v|h1|5,914,040}} || LOWTER3 || January 7th, 2018 / [https://twitter.com/LOWTER3/status/950022933681852418 Twitter] || stage 11-1, <br><small>Upper M./Spread G./Twin/Snake/FF/S.Down ||
            |-
            | style="background: #B9D9B9;" | [stage 3-5] || style="background: #B9D9B9;" | EXCEL-星白金HIR || style="background: #B9D9B9;" | Gamest June 1990 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" | 
            |}
            
            Note: Japanese scoreboard for Normal Mode only kept track of the highest stage reached, not highest score. The board was closed July 1990 due to the detection of an invincibility glitch (for details, see [https://youtu.be/ppOJkFtCD2M this video]). Therefore, only the ranking for Beginner Mode stayed open. Even though the glitch was fixed in the New Version, this did not spark a re-opening of the scoreboard for Normal Mode.
            
            * [https://shmups.system11.org/viewtopic.php?t=58160 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gradius IV

name: "Gradius IV"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gradius IV}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Gradius IV]] (Konami)
            |-
            ! Power Meter !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | style="background: #DFDFDF;" | Type 1 || style="background: #DFDFDF;" | 9,999,900 || style="background: #DFDFDF;" | ZBL-NAI || style="background: #DFDFDF;" | Arcadia November 2000 || style="background: #DFDFDF;" | stage 16-5 || style="background: #DFDFDF;" | 
            |-
            | style="background: #B9D9B9;" | Type 2 || style="background: #B9D9B9;" | 8,841,900 || style="background: #B9D9B9;" | Yusemi SWY || style="background: #B9D9B9;" | Arcadia May 2001 || style="background: #B9D9B9;" | stage 15-6 || style="background: #B9D9B9;" | 
            |-
            | style="background: #B9D9B9;" | Type 3 || style="background: #B9D9B9;" | 4,679,300 || style="background: #B9D9B9;" | 天馬屋 || style="background: #B9D9B9;" | Arcadia April 2002 || style="background: #B9D9B9;" | stage 8-6 || style="background: #B9D9B9;" | 
            |-
            | style="background: #DFDFDF;" | Type 4 || style="background: #DFDFDF;" | 9,999,900 || style="background: #DFDFDF;" | Yusemi SWY || style="background: #DFDFDF;" | Arcadia November 2000 || style="background: #DFDFDF;" | stage 16-5 || style="background: #DFDFDF;" | 
            |-
            | style="background: #DFDFDF;" | Type 5 || style="background: #DFDFDF;" | 9,999,900 || style="background: #DFDFDF;" | ZBL-NAI || style="background: #DFDFDF;" | Arcadia August 2000 || style="background: #DFDFDF;" | stage 14-5 || style="background: #DFDFDF;" | 
            |-
            | style="background: #DFDFDF;" rowspan="2" | Type 6
            | style="background: #DFDFDF;" | 9,999,900 || style="background: #DFDFDF;" | gradiuser4649 || style="background: #DFDFDF;" | December 28th, 2013 / [https://twitter.com/GRADIUSER4649/status/416936114574741506 Twitter] || style="background: #DFDFDF;" | stage 15-6 || style="background: #DFDFDF;" | [https://youtu.be/IWnRtWNCeEo Youtube]
            |-
            | style="background: #B9D9B9;" | 9,321,000 || style="background: #B9D9B9;" | ZBL-NAI || style="background: #B9D9B9;" | Arcadia March 2000 || style="background: #B9D9B9;" | stage 17-5 || style="background: #B9D9B9;" | 
            |}
            
            Note: Japanese scoreboard for all types closed due to the detection of an infinite pattern. Shmups Wiki scoreboard closed after the achievement of the counterstop at 9,999,900.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1999_058_%E3%82%B0%E3%83%A9%E3%83%87%E3%82%A3%E3%82%A6%E3%82%B9IV JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=9078 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Great Mahou Daisakusen

name: "Great Mahou Daisakusen"
name-jp: グレート魔法大作戦
name-kana: ぐれーとまほうだいさくせん
company: "Raizing / 8ing"
counterstop:
    score: 99,999,999
    type: hard
needs-work: true

scores:
  - score: 87,818,460
    player: Miku
    ship: Birthday
    sources:
      - name: Twitter
        date: "2020-09-07"
        url: https://twitter.com/4Yt7z/status/1302907156925087746
      - name: JHA
        date: "2020-09"
    comments:
      - "108 items"
      - "missed 3 secret items"
    attributes:
        is-current-record: true

  - score: 89,074,210
    player: Miku
    ship: Birthday
    sources:
      - name: Twitter
        date: "2020-11-29"
        url: https://twitter.com/4Yt7z/status/1332926125501153282
    comments:
      - "108 items"

  - score: 94,447,870
    player: SOF-WTN
    ship: Chitta
    sources:
      - name: Twitter
        date: "2020-08-23"
        url: https://twitter.com/sof_wtn/status/1297481522979590145
      - name: JHA
        date: "2020-09"
    comments:
      - "108 items"

  - score: 95,592,960
    player: SOF-WTN
    ship: Chitta
    sources:
      - name: Twitter
        date: "2020-10-04"
        url: https://twitter.com/sof_wtn/status/1312754249026080768
      - name: JHA
        date: "2020-10"
    comments:
      - "107 items"

  - score: 98,992,400
    player: SOF-WTN
    ship: Chitta
    sources:
      - name: Twitter
        date: "2020-11-08"
        url: https://twitter.com/sof_wtn/status/1325362349071507457
      - name: JHA
        date: "2020-11"
    comments:
      - "108 items"
    attributes:
        is-current-record: true

  - score: 99,999,999
    player: SOF-WTN
    score-real: 101,070,230
    ship: Chitta
    sources:
      - name: Twitter
        date: "2021-01-04"
        url: https://twitter.com/sof_wtn/status/1346086017321684992
      - name: Youtube
        date: "2021-01-06"
        url: https://youtu.be/19fC59Qv1cw
    comments:
      - "108 items"

  - score: 45,812,150
    player: JMB-りゅう
    ship: Gain
    sources:
      - name: JHA
        date: "2020-09"

  - score: 50,326,410
    player: JMB-りゅう
    ship: Gain
    sources:
      - name: Twitter
        date: "2020-10-16"
        url: https://twitter.com/bloomedquietly/status/1317064459400081416
      - name: JHA
        date: "2020-10"
    comments:
      - "104 items"
    attributes:
        is-current-record: true

  - score: 80,528,610
    player: Boredom
    ship: Gain
    sources:
      - name: Twitter
        date: "2020-07-01"
        url: https://twitter.com/boredom_79/status/1278389636155367424
      - name: Youtube
        date: "2020-07-01"
        url: https://youtu.be/DCEM2fnGBPU
    comments:
      - "108 items"

  - score: 86,744,010
    player: Boredom
    ship: Gain
    sources:
      - name: Twitter
        date: "2020-11-04"
        url: https://twitter.com/boredom_79/status/1324021677802491907
    comments:
      - "107 items"

  - score: 28,881,820
    player: JAP
    ship: Golden
    sources:
      - name: Twitter
        date: "2020-09-14"
        url: https://twitter.com/JAP_prpr/status/1305507730547851265
      - name: JHA
        date: "2020-09"
    comments:
      - "100 items"
    attributes:
        is-current-record: true

  - score: 99,999,999
    player: Boredom
    score-real: 101,033,460
    ship: Golden
    sources:
      - name: Twitter
        date: "2020-02-13"
        url: https://twitter.com/boredom_79/status/1228024526904029184
    comments:
      - "108 items"

  - score: 99,999,999
    player: KDK-Takeyuki
    ship: Grimlen
    sources:
      - name: Arcadia
        date: "2002-07"
    comments:
      - "108 items"

  - score: 99,999,999
    score-real: 100,571,630
    player: ACR Archer
    ship: Karte
    sources:
      - name: Twitter
        date: "2014-11-17"
        url: https://twitter.com/Archer_3601/status/534232656523710465
      - name: Arcadia
        date: "2015-02"
      - name: Youtube
        date: "2017-01-04"
        url: https://youtu.be/4DpSQf6MEfY
    comments:
      - "108 items"

  - score: 99,643,050
    player: SOF-WTN
    ship: Miyamoto
    sources:
      - name: Arcadia
        date: "2014-04"

  - score: 99,999,999
    player: Clover-TAC
    ship: Miyamoto
    sources:
      - name: JHA
        date: "2016-03"
    comments:
      - "108 items"
    attributes:
        is-current-record: true

  - score: 99,999,999
    score-real: 102,596,210
    player: SOF-WTN
    ship: Miyamoto
    sources:
      - name: Twitter
        date: "2016-02-03"
        url: https://twitter.com/sof_wtn/status/694883966092849152
      - name: JHA
        date: "2016-03"
    comments:
      - "108 items"

  - score: 98,088,360
    player: Clover-TAC
    ship: Solo Bang
    sources:
      - name: Arcadia
        date: "2014-01"

  - score: 99,999,999
    player: Clover-TAC
    ship: Solo Bang
    sources:
      - name: JHA
        date: "2020-07"
    comments:
      - "108 items"
      - "2p side"

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/2000_053_%E3%82%B0%E3%83%AC%E3%83%BC%E3%83%88%E9%AD%94%E6%B3%95%E5%A4%A7%E4%BD%9C%E6%88%A6
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=38055
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            ship: asc

Grid Seeker

name: "Grid Seeker"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Grid Seeker}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Grid Seeker]] (Taito)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|2,616,650}} || M.ZEST-H.M || Gamest May 1994 (Micom Basic March 1994) || used F-14X, before final boss: 1.94m ||
            |-
            | rowspan="2" | ON
            | {{v|b1|2,771,380}} || みっしー || July 11th, 2020 (JHA July 2020) / [https://twitter.com/tekitougge/status/1281940694781722624 Twitter] || used F-14X ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1992_010_%E3%82%B0%E3%83%AA%E3%83%83%E3%83%89%E3%82%B7%E3%83%BC%E3%82%AB%E3%83%BC JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=44183 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Guardian Force

name: "Guardian Force"
name-jp:
name-kana:
company: "Success"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Guardian Force}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Guardian Force]] (Success)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|14,988,110}} || KDK-Takeyuki || Arcadia August 2003 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=58573 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gun Frontier

name: "Gun Frontier"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gun Frontier}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Gun Frontier]] (Taito)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|1,863,770}} || B.J || Gamest April 1992 || ||
            |-
            | ON || {{v|b1|2,797,100}} || DBS || May 27th, 2010 (Arcadia October 2010) / [https://twitter.com/dbsqawsedrftgyh/status/707605289881587712 Twitter] || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=43693 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gunbird

name: "Gunbird"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gunbird}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Gunbird]] (Psikyo)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Ash || {{v|a1|2,211,400}} || 戦国人 || Arcadia March 2000 || Robot x2 ||
            |-
            | Marion || {{v|b1|2,227,900}} || ホルモン・ビビンバ || Arcadia December 2010 || ||
            |-
            | Tetsu || {{v|c1|2,205,100}} || 三茶鮫 || December 17th, 2018 (JHA January 2019) / [https://twitter.com/PaperWeight/status/1074602431235842049 Twitter] || ||
            |-
            | Valnus || {{v|d1|2,342,600}} || J.G.K.-ALL (副) || Arcadia May 2005 || ||
            |-
            | Yuan-Nang || {{v|e1|2,316,600}} || SYO || Arcadia September 2003 || Golem x2, no train stage ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1994_004_%E3%82%AC%E3%83%B3%E3%83%90%E3%83%BC%E3%83%89 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=51577 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gunbird 2

name: "Gunbird 2"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gunbird 2}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Gunbird 2]] (Psikyo)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Aine
            | {{v|a1|5,322,600}} || ゴッドハンド || 2002 / superplay VHS || NMNB, max chain 168, 1st loop 1.70m || [https://youtu.be/0W3kMUM_tKY Youtube]
            |-
            | {{v|b1|5,227,900}} || ゴッドハンド || Arcadia September 2002 || ||
            |-
            | Alucard || {{v|c1|5,190,200}} || カミーユ・ビンタ || Arcadia August 2011 || NMNB ||
            |-
            | Hei-Cob || {{v|d1|4,742,300}} || HLK(見) || Arcadia June 2001 || NMNB ||
            |-
            | Marion || {{v|e1|5,126,400}} || H.K || Arcadia October 2001 || NMNB, max chain 191 ||
            |-
            | Tavia || {{v|f1|5,134,000}} || GAL || Arcadia August 2003 || NMNB, max chain 136, 1st loop 1.66m ||
            |-
            | Valpiro || {{v|g1|5,076,800}} || 三茶鮫 || Arcadia May 2009 || NMNB ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_016_%E3%82%AC%E3%83%B3%E3%83%90%E3%83%BC%E3%83%892 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=37146 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gunnail

name: "Gunnail"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gunnail}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Gunnail]] (NMK)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|34,488,500}} || CYCLONE-R.T || Gamest August 1993 || ||
            |-
            | ON || {{v|b1|34,741,900}} || hamami || October 15th, 2017 (JHA October 2017) / [https://twitter.com/hamami999/status/919580824432812032 Twitter] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1993_005_%E3%82%AC%E3%83%B3%E3%83%8D%E3%82%A4%E3%83%AB JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=49747 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Guwange

name: "Guwange"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Guwange}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="6" | [[Guwange]] (CAVE)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Gensuke || rowspan="3" | 99,999,999
            | はまれしお || Arcadia September 2005 || after stage 3: 33.5m, down x0, 5B remaining ||
            |-
            | Kosame || Yusemi SWY || Arcadia June 2000 || after stage 3: 34m, down x0, 5B remaining || [https://youtu.be/Pdec4vruWyY Youtube]
            |-
            | Shishin || ミルみで || Arcadia June 2005 || after stage 3: 40m, down x0, 3B remaining ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 99,999,999.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1999_003_%E3%81%90%E3%82%8F%E3%82%93%E3%81%92 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=34853 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Gyrodine

name: "Gyrodine"
name-jp:
name-kana:
company: "Crux"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Gyrodine}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Gyrodine]] (Crux)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|7,062,600}} || 山本博孝 || Micom Basic November 1984|| ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=35792 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Hacha Mecha Fighter

name: "Hacha Mecha Fighter"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Hacha Mecha Fighter}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Hacha Mecha Fighter]] (NMK)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || 39,880,530 || ZBL-SOF-NAI || Gamest November 1993 || stage 3-7 ||
            |-
            | style="background: #DFDFDF;" | ON || style="background: #DFDFDF;" | 99,999,999 || style="background: #DFDFDF;" | ZBL-SOF-NAI || style="background: #DFDFDF;" | Arcadia January 2004 || style="background: #DFDFDF;" | stage 4-6 || style="background: #DFDFDF;" | 
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 99,999,999.
            
            * [https://shmups.system11.org/viewtopic.php?t=48933 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Halley's Comet

name: "Halley's Comet"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Halley's Comet}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Halley's Comet]] (Taito)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | 9,999,990
            | 藤村 || rowspan="2" | Micom Basic June 1986
            | stage 58 ||
            |-
            | E・EYE-RAN || stage 73 ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,990.
            
            * [https://shmups.system11.org/viewtopic.php?t=34729 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Heavy Unit

name: "Heavy Unit"
name-jp:
name-kana:
company: "Kaneko"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Heavy Unit}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Heavy Unit]] (Kaneko)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 10,000,000+α || URX-TEC || Micom Basic February 1989 (Gamest March 1989) || stage 13-4 ||
            |}
            
            Note: Japanese scoreboard closed due to the achievment of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=52541 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Hellfire

name: "Hellfire"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Hellfire}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="6" | [[Hellfire]] (Toaplan)
            |-
            ! Version !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 1P Ver || rowspan="2" | 10,000,000+α
            | SSC-MYR || Gamest August 1989 (Micom Basic July 1989) || stage 8-2 ||
            |-
            | 2P Ver || Y.Y.Y || March 17th, 2010 / [https://blog.goo.ne.jp/yoshitaka818181/e/4f63e0e25f09cddee5d6b84c58b665b9 Blog] || stage 8-3, no autofire ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=17247 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Hishouzame / Flying Shark

name: "Hishouzame / Flying Shark"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Hishouzame / Flying Shark}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Hishouzame]] / Flying Shark (Toaplan)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="11" | 10,000,000+α
            | SPREAM-I.Z || rowspan="11" | Gamest June 1987
            | loop 18 ||
            |-
            | BOMB (SFC) || loop 18 ||
            |-
            | Lucky 7 Now Win! || loop 19 ||
            |-
            | STAC-うる星BABPLE || loop 23 ||
            |-
            | DRU || loop 19 ||
            |-
            | ああるじいぶう || loop 20 ||
            |-
            | KCH-MAC·TAG || ||
            |-
            | WONDER-OMOMO || ||
            |-
            | ILG-K·M || ||
            |-
            | CRS·AOI美琴 || ||
            |-
            | プロジェクトA子 || ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=43885 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Homura

name: "Homura"
name-jp:
name-kana:
company: "Skonec"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Homura}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Homura]] (Skonec)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,801,422,000}} || YOH || Arcadia September 2013 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2005_007_%E3%83%9B%E3%83%A0%E3%83%A9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=11378 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Hyper Duel

name: "Hyper Duel"
name-jp:
name-kana:
company: "Tecnosoft"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Hyper Duel}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Hyper Duel]] (Tecnosoft)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,913,144}} || AFO || Arcadia March 2015 || used Lisa ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=36797 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Ibara

name: "Ibara"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Ibara}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Ibara]] (CAVE)
            |-
            ! Mode !! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan=2" | Normal
            | Bond || {{v|a1|36,010,010}} || ACR Archer || January 24th, 2010 (Arcadia May 2010) / [http://home.r00.itscom.net/archer/kimagure/ Blog] || after stage 3: 11.45m (0L 2,5B remaining), before final boss: 19.85m (4L 6B remaining) ||
            |-
            | Dyne || {{v|b1|31,388,410}} || WSM-いのうえ || Arcadia June 2013 || before final boss 18.48m || [https://www.youtube.com/watch?v=n3pTS_IROMU Youtube]
            |-
            | Harder || Bond || 19,370,080 || お茶まにあ-KMT || 2006 / superplay DVD || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2005_029_%E9%8B%B3%E8%96%94%E8%96%87 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=18254 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Ibara Black Label

name: "Ibara Black Label"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Ibara Black Label}}
            {{Anchor|Ibara Kuro}}
            {{Anchor|Ibara Kuro: Black Label}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Ibara]] Black Label (CAVE)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|234,756,810}} || おにはそと || Arcadia August 2014 || Silister Similis ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2006_030_%E9%8B%B3%E8%96%94%E8%96%87%E9%BB%92_%E3%83%96%E3%83%A9%E3%83%83%E3%82%AF%E3%83%AC%E3%83%BC%E3%83%99%E3%83%AB JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=41469 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Ikaruga

name: "Ikaruga"
name-jp:
name-kana:
company: "Treasure"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Ikaruga}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Ikaruga]] (Treasure)
            |-
            ! Mode !! Difficulty !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="3" | Arcade
            | Easy || {{v|a1|32,804,260}} || ゆる || April 22nd, 2006 (Arcadia August 2006) || 3.99m (130c), 6.09m (202c), 6.93m (231c), 6.72m (203c), 4.89m (90c) <br>8L remaining || [http://www.nicovideo.jp/watch/sm5995283 Niconico]
            |-
            | Normal || {{v|b1|36,289,710}} || トモキソ || Arcadia July 2013 || ||
            |-
            | Hard || {{v|c1|35,445,270}} || がっきー || Arcadia February 2009 || 4.06m (126c), 6.09m (196c), 7.32m (239c), 7.52m (225c), 6.33m (118c) <br>8L remaining ||
            |-
            | rowspan="5" | Prototype
            | rowspan="2" | Easy
            | {{v|d1|28,470,440}} || fufufu || Arcadia October 2014 || highest score Nesica ||
            |-
            | {{v|e1|32,120,760}} || E.G.I. || September 18th, 2020 / [https://twitter.com/e3g6i1/status/1306867368669245445 Twitter] || highest score Steam || [https://youtu.be/p7Pitjbu8VY Youtube]
            |-
            | rowspan="2" | Normal
            | {{v|f1|37,602,550}} || ゆる || November 17th, 2016 (JHA November 2016) / [https://twitter.com/yuru2525/status/799137501726158848 Twitter] || highest score Nesica, 9L remaining ||
            |-
            | {{v|g1|37,985,220}} || E.G.I. || July 19th, 2020 / [https://twitter.com/e3g6i1/status/1284858273204539395 Twitter] || highest score Steam <br>4.43m (137c), 6.38m (203c), 8.66m (287c), 7.69m (124c), 6.22m (126c) || [https://youtu.be/5O5JxHoi9pg Youtube]
            |-
            | Hard || {{v|h1|35,078,170}} || E.G.I. || September 1st, 2020 / [https://twitter.com/e3g6i1/status/1300801297877139456 Twitter] || highest score Steam || [https://youtu.be/qH-8v7pOpO4 Youtube]
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2001_005_%E6%96%91%E9%B3%A9 JHA Leaderboard (Naomi)] [https://wiki.denfaminicogamer.jp/highscore/2013_006_%E6%96%91%E9%B3%A9%EF%BC%88%E3%83%8D%E3%82%B7%E3%82%AB%E7%89%88%EF%BC%89 (Nesica)]
            * [https://shmups.system11.org/viewtopic.php?t=48471 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Illvelo

name: "Illvelo"
name-jp:
name-kana:
company: "Milestone"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Illvelo}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Illvelo]] (Milestone)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 10,1xx,xxx,xxx || TZW-ART? || INH Superplay DVD (limited 100 pieces) sold February 25th, 2011 || ||
            |-
            | {{v|a1|10,022,471,520}} || TZW-ART? || Arcadia February 2010 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2008_023_%E3%82%A4%E3%83%AB%E3%83%99%E3%83%AD JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=32456 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Image Fight

name: "Image Fight"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Image Fight}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Image Fight]] (Irem)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|1,908,800}} || WGFC-DUE || Arcadia April 2015 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=51576 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Insector X

name: "Insector X"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Insector X}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Insector X]] (Taito)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|867,000}} || IML-UUU || Arcadia October 2000 || ||
            |}
            
            Note: Scoreboard closed after the achievement of the theoretical max score 867,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=37328 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Kaitei Daisensou / In the Hunt

name: "Kaitei Daisensou / In the Hunt"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Kaitei Daisensou / In the Hunt}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Kaitei Daisensou]] / In the Hunt (Irem)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,584,400}} || KDK-Takeyuki || Arcadia July 2014 || suicide x5 in volcano stage ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=38612 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Karous

name: "Karous"
name-jp:
name-kana:
company: "Milestone"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Karous}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Karous]] (Milestone)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|11,800,947,190}} || GOTYO || June 14th, 2020 / [https://twitter.com/ProjectNO39/status/1272122537850269697 Twitter] || Hard mode || [https://youtu.be/WVUzzN-8NW8 Youtube]
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2006_006_%E3%82%AB%E3%83%A9%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=13085 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Ketsui

name: "Ketsui"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Ketsui}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Ketsui]] (CAVE)
            |-
            ! Ship !! Loop !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Type A <br>Tiger Schwert
            | Omote || {{v|a1|507,780,433}} || SPS || Arcadia August 2014 || ||
            |-
            | Ura || {{v|b1|583,614,753}} || SPS || May 27th, 2014 (Arcadia September 2014) / [https://twitter.com/SPSPUYO/status/471312775843561472 Twitter] || 6L 0B remaining; 1st loop 285m ||
            |-
            | rowspan="2" | Type B <br>Panzer Jager
            | Omote || {{v|c1|481,402,383}} || SPS || Arcadia November 2014 || 6L 0B remaining; 1st loop 276m ||
            |-
            | Ura || {{v|d1|569,741,232}} || GAN || JHA March 2016 || 6L remaining ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2003_034_%E3%82%B1%E3%83%84%E3%82%A4 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=65086 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Kiki Kaikai

name: "Kiki Kaikai"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Kiki Kaikai}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Kiki Kaikai]] (Taito)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | 9,999,990
            | ACU-Y.N || rowspan="2" | Micom Basic February 1987
            | stage 24-1, duration 6 hours ||
            |-
            | CRAMP-BOY || stage 22-8, 21L remaining ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,990.
            
            * [https://shmups.system11.org/viewtopic.php?t=53292 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


KOF Sky Stage

name: "KOF Sky Stage"
name-jp:
name-kana:
company: "SNK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|KOF Sky Stage}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[KOF Sky Stage]] (SNK)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Athena || {{v|a1|30,202,070}} || 宇宙全一おめたーす!へいへーい || Arcadia April 2012 || ||
            |-
            | Iori || {{v|b1|28,454,970}} || 三茶鮫 || Arcadia April 2012 || ||
            |-
            | Kula || {{v|c1|32,303,130}} || 三茶鮫 || Arcadia December 2012 || ||
            |-
            | Kyo || {{v|d1|29,559,910}} || ISO / Niboshi || Arcadia November 2011 || ||
            |-
            | Mai || {{v|e1|28,499,220}} || ISO / Niboshi || Arcadia December 2011 || ||
            |-
            | Terry || {{v|f1|28,728,530}} || oki || Arcadia July 2012 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=46724 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Koutetsu Yousai Strahl

name: "Koutetsu Yousai Strahl"
name-jp:
name-kana:
company: "UPL"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Koutetsu Yousai Strahl}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Koutetsu Yousai Strahl]] (UPL)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|999,999}} || [various players] || Gamest 1992 || ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 999,999.
            
            * [https://shmups.system11.org/viewtopic.php?t=36260 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Kuuga - Operation Code Vapor Trail

name: "Kuuga - Operation Code Vapor Trail"
name-jp:
name-kana:
company: "Data East"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Kuuga - Operation Code Vapor Trail}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Kuuga - Operation Code Vapor Trail]] (Data East)
            |-
            ! Autofire !! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="3" | OFF
            | Seylen || {{v|a1|4,663,030}} || PIA-ろん(ぱ) || Gamest May 1991 || ||
            |-
            | Silph || {{v|b1|4,730,180}} || PIA-ろん(ぱ) || Gamest May 1991 || ||
            |-
            | Valkyrie || {{v|c1|4,410,300}} || びびる立原 || Gamest September 1991 || ||
            |-
            | rowspan="3" | ON
            | Seylen || {{v|d1|4,823,560}} || シエンタ@UGF || Arcadia January 2015 || no miss ||
            |-
            | Silph || {{v|e1|5,094,470}} || シエンタ@UGF || JHA June 2016 || 1L remaining, Heli suicide x 2  ||
            |-
            | Valkyrie || {{v|f1|4,500,240}} || シエンタ@UGF  || Arcadia February 2015 || no miss; 1st life 2,233,000 ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1990_001_%E7%A9%BA%E7%89%99 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=49918 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Kyuukyoku Tiger / Twin Cobra

name: "Kyuukyoku Tiger / Twin Cobra"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Kyuukyoku Tiger / Twin Cobra}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Kyuukyoku Tiger]] / Twin Cobra (Toaplan)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | style="background: #B9D9B9;" rowspan="2" | 10,000,000+α
            | style="background: #B9D9B9;" | HTL-Y.N || style="background: #B9D9B9;" rowspan="2" | Gamest March 1988
            | style="background: #B9D9B9;" | stage 4-10, area 988 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | SPREAM-I.Z || style="background: #B9D9B9;" | stage 4-10 || style="background: #B9D9B9;" |
            |-
            | style="background: #DFDFDF;" | 99,999,990 || style="background: #DFDFDF;" | めぞん一刻 & ? || style="background: #DFDFDF;" | - || style="background: #DFDFDF;" | collaborative play by 2 players, non-default settings (extend every 150k) || style="background: #DFDFDF;" |
            |-
            | 46,210,270 || 今さら究極タイガーの会会長 || June 20th, 2020 / [https://twitter.com/imkkk1970/status/1274349171680505857 Twitter] || stage 17-10, playtime ~13h ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=34664 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Kyuukyoku Tiger II

name: "Kyuukyoku Tiger II"
name-jp:
name-kana:
company: "Takumi"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Kyuukyoku Tiger II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Kyuukyoku Tiger II]] (Takumi)
            |-
            ! Player Side !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 1P || {{v|a1|12,102,840}} || 戦国人 || Arcadia July 2007 || no miss, no bomb ||
            |-
            | rowspan="2" | 2P
            | {{v|b1|11,692,950}} || PEP || April 21st, 2015 || played on Mame32 0.133, autofire || [https://youtu.be/nFvxzxHZ28A Youtube]
            |-
            | {{v|c1|11,672,330}} || グラディウサー同盟DKT-GER || Gamest October 1996 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=34762 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Last Duel

name: "Last Duel"
name-jp:
name-kana:
company: "Capcom"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Last Duel}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Last Duel]] (Capcom)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|829,600}} || hamami || Arcadia December 2014 || 9L remaining ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=29454 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Last Resort

name: "Last Resort"
name-jp:
name-kana:
company: "SNK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Last Resort}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Last Resort]] (SNK)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|838,700}} || 山本 || Arcadia October 2004 || ||
            |-
            | ON || {{v|b1|912,300}} || CBてんぷら || JHA December 2018 || suicide x4, 1st loop 328k ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1992_014_%E3%83%A9%E3%82%B9%E3%83%88%E3%83%AA%E3%82%BE%E3%83%BC%E3%83%88 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=59541 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Life Force

name: "Life Force"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Life Force}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="6" | [[Life Force]] (Konami)
            |-
            ! Player Side !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | 1P
            | rowspan="11" | 10,000,000+α
            | ペガサスの常連H・H || rowspan="2" | Micom Basic November 1987
            | stage 17-2 ||
            |- 
            | X.Y.Z.つかつか || stage 25-6 ||
            |-
            | rowspan="9" | 2P
            | ILG-K.M || rowspan="9" | Gamest October 1987
            | ||
            |-
            | BROS-今枝だ! || ||
            |-
            | LUCKY 7½ TM NOW WIN! || stage 19-2 ||
            |-
            | 大森 || loop 19 ||
            |-
            | GMC-HTL-SCR || stage 17-4 ||
            |-
            | GMC-ZEUS || stage 17-1 ||
            |-
            | BROS-今枝だ || stage 18-2 ||
            |-
            | HTL-AE-SPY || stage 17-4, 42L remaining ||
            |-
            | HTL-謎のボケ老人(め) || stage 18-1, 9L remaining ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=5877 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Lost Worlds / Forgotten Worlds

name: "Lost Worlds / Forgotten Worlds"
name-jp:
name-kana:
company: "Capcom"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Lost Worlds / Forgotten Worlds}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Lost Worlds]] / Forgotten Worlds (Capcom)
            |-
            ! Version !! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | New
            | [1 Player] || {{v|a1|8,749,400}} || KOH || Gamest October 1998 || ||
            |-
            | [2 Player] || {{v|b1|12,393,100}} || ATM・NMTL(地)難野 KSTL-Buchi || Gamest August 1989 || ||
            |-
            | rowspan="2" | Old
            | [1 Player] || {{v|c1|9,264,300}} || SOF-QUE || January 2005 / private DVD recording || Score 1.5m Zenny x 27 40k x 3 ||
            |-
            | [2 Player] || {{v|d1|13,036,500}} || SWP-OC-X&POW || Gamest January 1989 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=21630 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Mad Shark

name: "Mad Shark"
name-jp:
name-kana:
company: "Allumer"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Mad Shark}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Mad Shark]] (Allumer)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="3" | 10,000,000+α
            | SCHMEISER ROBOCOP || rowspan="3" | Gamest March 1994
            | 1p side, stage 2-6 ||
            |-
            | 近エからの使者 || 1p side, stage 2-6 ||
            |-
            | FLAP-ANP || stage 2-6 (10,883,370) ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=57570 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Mahou Daisakusen

name: "Mahou Daisakusen"
name-jp:
name-kana:
company: "Raizing / 8ing"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Mahou Daisakusen}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Mahou Daisakusen]] (Raizing / 8ing)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Bornnam || {{v|a1|3,943,550}} || こいずみ || August 26th, 2018 (JHA September 2018) / [https://twitter.com/kyoizumin/status/1033732603839270913 Twitter] || 1st loop 1.95m ||
            |-
            | Chitta || {{v|b1|4,036,760}} || MOL=CKDF=ふるえんも || June 7th, 2018 (JHA June 2018) / [https://twitter.com/fluenmo/status/1004752064172339200 Twitter] || 1st loop 2m ||
            |-
            | Gain || {{v|c1|3,894,090}} || MOL=CKDF=ふるえんも || August 3rd, 2018 (JHA August 2018) / [https://twitter.com/fluenmo/status/1025377447162740736 Twitter] || 1st loop 1.93m ||
            |-
            | Miyamoto || {{v|d1|3,987,520}} || 戦国人 || Arcadia October 2006 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1993_011_%E9%AD%94%E6%B3%95%E5%A4%A7%E4%BD%9C%E6%88%A6 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=39776 Shmups Forum Hi-Score Topic]
            
            
            <span id="Shippu_Mahou_Daisakusen"></span><section begin=shippumd/>
            {% endverbatim %}


Mahou Keibitai Gun Hohki / Mystic Riders

name: "Mahou Keibitai Gun Hohki / Mystic Riders"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Mahou Keibitai Gun Hohki / Mystic Riders}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Mahou Keibitai Gun Hohki]] / Mystic Riders (Irem)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|2,140,100}} || CYR-MSK || Gamest October 1992 || ||
            |-
            | ON || {{v|b1|2,145,700}} || IML-UUU || Gamest October 1992 (Micom Basic October 1992) || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=56908 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Mamoru-kun wa Norowarete Shimatta / Mamorukun Curse!

name: "Mamoru-kun wa Norowarete Shimatta / Mamorukun Curse!"
name-jp:
name-kana:
company: "G.Rev"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Mamoru-kun wa Norowarete Shimatta / Mamorukun Curse!}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Mamoru-kun wa Norowarete Shimatta]] / Mamorukun Curse! (G.Rev)
            |-
            ! Mode !! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="5" | Normal
            | Beniko || {{v|a1|507,940,950}} || どんぐりす☆早ずらし || Arcadia February 2009 || ||
            |-
            | Fululu || {{v|b1|906,613,640}} || G.M.C..Z. || Arcadia January 2013 || ||
            |-
            | Kinya || {{v|c1|560,058,030}} || 死神不使用 || Arcadia April 2009 || ||
            |-
            | Mamoru || {{v|d1|626,418,760}} || SST || Arcadia April 2009 || ||
            |-
            | Mayuno || {{v|e1|715,391,410}} || 兄貴 || Arcadia April 2009 || ||
            |-
            | colspan="2" | Remaining Time
            | 9'38 || AMT-そけっと || JHA March 2020 / [https://twitter.com/AMT_SOKET/status/1247540356284952576 Twitter] || used Fululu ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2008_008_%E3%81%BE%E3%82%82%E3%82%8B%E3%82%AF%E3%83%B3%E3%81%AF%E5%91%AA%E3%82%8F%E3%82%8C%E3%81%A6%E3%81%97%E3%81%BE%E3%81%A3%E3%81%9F%EF%BC%81 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=33257 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Mars Matrix

name: "Mars Matrix"
name-jp:
name-kana:
company: "Takumi"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Mars Matrix}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="6" | [[Mars Matrix]] (Takumi)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="4" | Mosquito 01
            | rowspan="19" | 999,999,999,990
            | NST-AOM(こなす) || rowspan="19" | Arcadia October 2000
            | ||
            |-
            | どん || ||
            |-
            | ISO || ||
            |-
            | ダメシューターK·K || ||
            |-
            | rowspan="15" | Mosquito 02
            | OKU祝ALL || ||
            |-
            | RPM-FKD (つくばSKS?) || ||
            |-
            | SPREAM-KCL || ||
            |-
            | F· || ||
            |-
            | REF || ||
            |-
            | 恐い人代表G·F○員by店 || ||
            |-
            | てきとーここの店員 || ||
            |-
            | J-K-MRN-HDS || ||
            |-
            | OAM-MOCKEY || ||
            |-
            | O.Z || ||
            |-
            | K.S || ||
            |-
            | KZK || ||
            |-
            | SND-F.O || ||
            |-
            | Clover-02号機 || ||
            |-
            | TJK || ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 999,999,999,990.
            
            * [https://wiki.denfaminicogamer.jp/highscore/2000_083_%E3%83%9E%E3%83%BC%E3%82%BA%E3%83%9E%E3%83%88%E3%83%AA%E3%83%83%E3%82%AF%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=61629 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Master of Weapon

name: "Master of Weapon"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Master of Weapon}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Master of Weapon]] (Taito)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|3,922,260}} || PIA-R-I || Gamest December 1989 || Wo x1 ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=53291 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Mazinger Z

name: "Mazinger Z"
name-jp:
name-kana:
company: "Banpresto"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Mazinger Z}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="6" | [[Mazinger Z]] (Banpresto)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Great Mazinger || rowspan="18" | 9,999,999
            | DGM || rowspan="18" | Gamest September 1994
            | ||
            |-
            | rowspan="15" | Grendizer
            | B-SATSUMA || autofire ||
            |-
            | AJSP-たま夫 || stage 2-8, no autofire ||
            |-
            | DMP || no autofire ||
            |-
            | DAB.S || no autofire ||
            |-
            | GOLD SWEAT || autofire ||
            |-
            | か改めだ || ||
            |-
            | Mr. カネコ || autofire ||
            |-
            | はむはむ || ||
            |-
            | K. scope-LIT(み) || stage 2-4 ||
            |-
            | TRM-2代目音無響子(DOM) || autofire ||
            |-
            | DECO愛好会AMI-EX E.T! || stage 2-4, no autofire ||
            |-
            | K.N || ||
            |-
            | G.M.C.-R.I || autofire ||
            |-
            | WGFC-JKR || autofire ||
            |-
            | MILL || no autofire ||
            |-
            | rowspan="2" | Mazinger-Z
            | ハポ様 || stage 2-4, noautofire ||
            |-
            | DECO愛好会AMI-EX E.T! || stage 2-5, noautofire ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,999.
            {% endverbatim %}


Mega Blast

name: "Mega Blast"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Mega Blast}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Mega Blast]] (Taito)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|822,900}} || ねこりぃ || Arcadia September 2002 || ||
            |}
            {% endverbatim %}


Meta Fox

name: "Meta Fox"
name-jp:
name-kana:
company: "Seta"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Meta Fox}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Meta Fox]] (Seta)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|3,255,000}} || JAG-WOP || Gamest May 1990 || 1p side, after stage 5: 1.89m ||
            |-
            | ON || {{v|b1|3,911,000}} || ERO ||JHA March 2020 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1989_114_%E3%83%A1%E3%82%BF%E3%83%95%E3%82%A9%E3%83%83%E3%82%AF%E3%82%B9 JHA Leaderboard]
            {% endverbatim %}


Metal Black

name: "Metal Black"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Metal Black}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Metal Black]] (Taito)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|648,730}} || Notase-IKA || Gamest August 1995 || ||
            |-
            | ON || {{v|b1|742,850}} || RVS-R.Y || Arcadia May 2011 || 2nd bonus 42sec ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=48626 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Metal Hawk

name: "Metal Hawk"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Metal Hawk}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Metal Hawk]] (Namco)
            |-
            ! Version !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | New || {{v|a1|14,001}} || BBR-出た-BYE || Gamest March 1991 || ||
            |-
            | Old || {{v|b1|13,120}} || G.M.C.えるす || Micom Basic January 1989 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=58076 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Mr. Heli no Daibouken / Battle Chopper

name: "Mr. Heli no Daibouken / Battle Chopper"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Mr. Heli no Daibouken / Battle Chopper}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Mr. Heli no Daibouken]] / Battle Chopper (Irem)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Money || {{v|a1|35,740}} || JAG-ドラ博士 H.S || Gamest April 1996 || ||
            |-
            | Points || {{v|b1|1,182,670}} || JAG-ドラ博士 H.S || Arcadia May 2003 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=53359 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Muchi Muchi Pork

name: "Muchi Muchi Pork"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Muchi Muchi Pork}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="8" | [[Muchi Muchi Pork]] (CAVE)
            |-
            ! Mode !! Character !! Loop !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="7" | Normal
            | rowspan="3" | Ikuo (blue)
            | 1 loop || {{v|a1|250,999,330}} || 栗鼠 || Arcadia May 2008 || ||
            |-
            | rowspan="2" | 2 loops
            | {{v|b1|255,912,370}} || NTSC-J || June 13th, 2020 (JHA June 2020) / [https://twitter.com/julianjalapeno/status/1271753601812066304 Twitter] || clear ||
            |-
            | {{v|c1|281,940,480}} || NTSC-J || August 1st, 2020 / [https://twitter.com/julianjalapeno/status/1289547615411953669 Twitter] || died in 2-5 ||
            |-
            | rowspan="2" | Momo (pink)
            | 1 loop || {{v|d1|260,217,560}} || T.B || Arcadia May 2013 || ||
            |-
            | 2 loops || {{v|e1|308,994,230}} || イマサラT.O || Arcadia December 2007 || 1st loop 170m || [https://www.nicovideo.jp/watch/sm26566269 Niconico]
            |-
            | rowspan="2" | Rafute (yellow)
            | 1 loop || {{v|f1|233,570,190}} || WSM-MKZ || Arcadia December 2008 || ||
            |-
            | 2 loops || {{v|g1|298,150,380}} || お茶まにあKMT || Arcadia July 2008 || 1st loop 169m ||
            |-
            | Manpuku || Momo (pink) || - || {{v|h1|171,813,720}} || raisonnable || October 2nd, 2020 / [https://hiscores.shmup.com/game/11 French Leaderboard] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2007_021_%E3%82%80%E3%81%A1%E3%82%80%E3%81%A1%E3%83%9D%E3%83%BC%E3%82%AF JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?f=2&t=54254 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Mushihimesama

name: "Mushihimesama"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Mushihimesama}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Mushihimesama]] (CAVE)
            |-
            ! Autofire !! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="4" | OFF
            | Original || {{v|a1|68,163,655}} || CYR-AST-せたろ~ || Arcadia March 2006 || 5L 0B remaining ||
            |-
            | rowspan="2" | Maniac
            | {{v|b1|1,061,006,564}} || Kiwi || August 12th, 2020 / [https://twitter.com/KiwiSTG/status/1293502952200531969 Twitter] || start with S-Power; W-Power on stage 3; 0L 0B remaining ||
            |-
            | 1,054,452,242 || Enabler-T.S || Arcadia March 2006 || 2L 4B remaining; superplay DVD ||
            |-
            | Ultra || {{v|c1|690,762,983}} || Dame K.K || Arcadia December 2005 || ||
            |-
            | rowspan="3" | ON
            | Original || {{v|d1|68,805,718}} || KDK-Takeyuki || Arcadia April 2006 || 5L 0B remaining ||
            |-
            | Maniac || {{v|e1|2,693,609,794}} || Yusemi SWY || Arcadia February 2006 || ||
            |-
            | Ultra || {{v|f1|1,455,634,353}} || Dame K.K || Arcadia May 2006 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2004_003_%E8%99%AB%E5%A7%AB%E3%81%95%E3%81%BE JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=38179 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Mushihimesama Futari

name: "Mushihimesama Futari"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Mushihimesama Futari}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="7" | [[Mushihimesama Futari]] (CAVE)
            |-
            ! Mode !! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Original
            | Palm || {{v|a1|214,328,028}} || 黒猫D.S || Arcadia March 2007 || ||
            |-
            | Reco || {{v|b1|221,219,288}} || ISO / Niboshi || Arcadia March 2007 || ||
            |-
            | rowspan="2" | Maniac
            | Palm || {{v|c1|370,293,035}} || 矢永 || Arcadia March 2007 || ||
            |-
            | Reco || {{v|d1|415,086,395}} || Clover-TAC || Arcadia March 2007 || ||
            |}
            
            Note: Note: Japanese scoreboard closed because competition moved over to Mushihimesama Futari 1.5.
            
            * [https://wiki.denfaminicogamer.jp/highscore/2006_009_%E8%99%AB%E5%A7%AB%E3%81%95%E3%81%BE%E3%81%B5%E3%81%9F%E3%82%8A JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=11672 Shmups Forum Hi-Score Topic]
            
            
            {| class="wikitable"  style="text-align: center"
            |-
            ! colspan="8" | [[Mushihimesama Futari]] 1.5
            |-
            ! Mode !! colspan="2" | Character
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="5" | Original
            | rowspan="2" | Palm
            | Normal || 530,358,660 || ABI || Arcadia January 2008 || ||
            |-
            | Abnormal || 518,902,716 || ISO / Niboshi || 2007 / superplay DVD || ||
            |-
            | rowspan="3" | Reco
            | rowspan="2" | Normal
            | 550,705,999 || ABI || February 2010 / Blog || 5L 0B remaining, after stage 4: 273.7m ||
            |-
            | 538,378,364 || ISO / Niboshi || Arcadia October 2007 || ||
            |-
            | Abnormal || 454,386,226 || yasu0219 || December 12th, 2009 / Xbox rankings || highest score Xbox360 ||
            |-
            | rowspan="4" | Maniac
            | rowspan="3" | Palm
            | Normal || 835,183,728 || I.O || 2007 / [http://ranking.niyaozao.com/#/rank/8?_k=uz9r8s Chinese Leaderboard] || ||
            |-
            | rowspan="2" | Abnormal
            | 981,872,827 || rowspan="2" | KTL-NAL
            | September 2007 / superplay DVD || 5L 2B remaining, after stage 4: 693.8m ||
            |-
            | 973,020,065 || Arcadia November 2007 || ||
            |-
            | Reco || Normal || 1,047,258,714 || Clover-TAC || Arcadia March 2015 || 5L 2B remaining, after stage 4: 745.1m ||
            |-
            | rowspan="6" | Ultra
            | rowspan="4" | Palm
            | Normal || 2,956,728,306 || rescue_STG || April 8th, 2017 / Xbox rankings || highest score Xbox360 || [https://youtu.be/jXus8svt7ds Youtube]
            |-
            | rowspan="3" | Abnormal
            | style="background: #DFDFDF;" | 3,999,999,999 || style="background: #DFDFDF;" | Dame K.K || style="background: #DFDFDF;" | Arcadia March 2008 || style="background: #DFDFDF;" | 1L 0B remaining, highest score Arcade || style="background: #DFDFDF;" | 
            |-
            | 3,999,999,999 [4,589,730,045] || Gusto || October 7th, 2020 / [https://twitter.com/gusyphus/status/1313665827737006080 Twitter] || no clear, highest score Xbox360 || [https://youtu.be/thHP1nV7p9o Youtube]
            |-
            | 3,999,999,999 [4,263,416,356] || KGM || July 24th, 2013 / Xbox rankings || clear || [https://youtu.be/EeLzh7VNujQ Youtube]
            |-
            | rowspan="2" | Reco
            | Normal || style="background: #DFDFDF;" | 3,999,999,999 || style="background: #DFDFDF;" | fufufu || style="background: #DFDFDF;" | May 27th, 2009 (Arcadia August 2009) || style="background: #DFDFDF;" | 0L 0B remaining, after stage 4: 2.205b || style="background: #DFDFDF;" | [https://youtu.be/XwSFHPhp9gc Youtube]
            |-
            | Abnormal || 3,266,405,598 || lstze || 2014? || || [https://www.youtube.com/playlist?list=PL6mhbpnepUippXLrlpnyx5bfZsm0rihHc Youtube]
            |}
            
            Note: Scoreboard for Ultra closed after the achievement of the counterstop at 3,999,999,999. After this, only scores done on the Xbox 360 port are accepted because they can be tracked beyond the counterstop. For details see [https://youtu.be/XqhtJQm9brI this video].
            
            * [https://wiki.denfaminicogamer.jp/highscore/2006_002_%E8%99%AB%E5%A7%AB%E3%81%95%E3%81%BE%E3%81%B5%E3%81%9F%E3%82%8A_Ver1.5 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=60592 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Mushihimesama Futari Black Label

name: "Mushihimesama Futari Black Label"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Mushihimesama Futari Black Label}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Mushihimesama Futari]] Black Label (CAVE)
            |-
            ! Mode !! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Original
            | Palm || {{v|a1|4,509,498,833}} || だるお || JHA July 2017 || after stage 4 2.14b || [https://www.twitch.tv/videos/156050572 Twitch]
            |-
            | Reco || {{v|b1|3,931,896,448}} || SSM || JHA August 2020 || after stage 3 700m, 4L 4B remaining ||
            |-
            | rowspan="3" | Maniac
            | Palm || {{v|c1|1,595,276,130}} || DGN || JHA August 2019 || 5L 6B remaining ||
            |-
            | rowspan="2" | Reco
            | {{v|d1|1,505,330,485}} || WC. || March 20th, 2009 / [http://ranking.niyaozao.com/#/rank/6?_k=mzdfp6 Chinese Leaderboard] || ||
            |-
            | {{v|e1|1,423,134,870}} || sinmoon || September 13th, 2008 (Arcadia December 2008) / [http://sinmoon.blog.shinobi.jp/Date/20080913/ Blog] || s1: 70m, s2: 425m, s3: 656m, s4: 880m, before end bonus 1.173m <br>5L 5B remaining ||
            |-
            | rowspan="2" | God
            | Palm || {{v|f1|7,065,606,585}} || ZAP || Arcadia January 2012 || || [https://youtu.be/q6QGh-K71dA Youtube]
            |-
            | Reco || {{v|g1|7,196,096,330}} || NAK || Arcadia April 2013 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2007_010_%E8%99%AB%E5%A7%AB%E3%81%95%E3%81%BE%E3%81%B5%E3%81%9F%E3%82%8A%E3%83%96%E3%83%A9%E3%83%83%E3%82%AF%E3%83%AC%E3%83%BC%E3%83%99%E3%83%AB JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=60592 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Namco Classic Collection Vol. 1

name: "Namco Classic Collection Vol. 1"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Namco Classic Collection Vol. 1}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Namco Classic Collection Vol. 1]] (Namco)
            |-
            ! Game !! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="3" | Galaga
            | rowspan="2" | Original
            | 565,420 || Jacob Upland || September 7th, 2020 / [https://imgur.com/u6BQKwH Image] || played on Mame || [https://youtu.be/Eu7QEECD13Q Youtube]
            |-
            | 564,670 || GEKI || Gamest April 1996 || ||
            |-
            | Arrangement || {{v|b1|1,421,290}} || CYR-WAR || Arcadia January 2011 || ||
            |-
            | Super Xevious || Original || {{v|c1|4,312,290}} || K.N尊師 || JHA October 2016 || ||
            |-
            | rowspan="2" | Xevious
            | Original || {{v|d1|1,713,080}} || K.N尊師 || JHA November 2016 || ||
            |-
            | Arrangement || {{v|e1|7,754,380}} || RR || Arcadia May 2012 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1995_014_%E3%83%8A%E3%83%A0%E3%82%B3%E3%82%AF%E3%83%A9%E3%82%B7%E3%83%83%E3%82%AF%E3%82%B3%E3%83%AC%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3Vol.1 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=39648 Shmups Forum Hi-Score Topic (Galaga)] [https://shmups.system11.org/viewtopic.php?t=39729 (Xevious)]
            {% endverbatim %}


Nebulas Ray

name: "Nebulas Ray"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Nebulas Ray}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Nebulas Ray]] (Namco)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|2,690,530}} || A-10 || Gamest November 1994 || ||
            |-
            | ON || {{v|b1|2,981,790}} || hamami || February 5th, 2015 (JHA March 2016) / [https://twitter.com/hamami999/status/563284194336333825 Twitter] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1994_005_%E3%83%8D%E3%83%93%E3%83%A5%E3%83%A9%E3%82%B9%E3%83%AC%E3%82%A4 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=42761 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Night Raid

name: "Night Raid"
name-jp:
name-kana:
company: "Takumi"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Night Raid}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Night Raid]] (Takumi)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Highest Score || {{v|a1|6,428,538,520}} || KMB || Arcadia May 2011 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2001_034_%E3%83%8A%E3%82%A4%E3%83%88%E3%83%AC%E3%82%A4%E3%83%89 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=22165 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Ninja Commando

name: "Ninja Commando"
name-jp:
name-kana:
company: "ADK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Ninja Commando}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Ninja Commando]] (ADK)
            |-
            ! Character !! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Joe
            | OFF || {{v|a1|11,310,340}} || ぱるとりっ君(ぱ) || Gamest November 1992 || 0L remaining Suicide x 3 ||
            |-
            | ON || {{v|b1|12,653,620}} || 高沢一成 || Gamest March 1994 || 1st life 2.63m, 0L remaining Suicide x 3  ||
            |-
            | rowspan="2" | Rayar
            | OFF || {{v|c1|4,249,480}} || CYCLONE-KIW || Gamest December 1992 || 0L remaining Suicide x 3 ||
            |-
            | ON || {{v|d1|4,512,940}} || よどさん  || Arcadia December 2007 || 0L remaining Suicide x 3 ||
            |-
            | rowspan="2" | Ryu
            | OFF || {{v|e1|11,501,900}} || Mr.岡野君 || Gamest November 1992 || 0L remaining Suicide x 3 ||
            |-
            | ON || {{v|f1|11,579,200}} || IML-YUJ || Gamest October 1994 || 0L remaining Suicide x 3 ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=33806 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Nostradamus

name: "Nostradamus"
name-jp:
name-kana:
company: "Face"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Nostradamus}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="6" | [[Nostradamus]] (Face)
            |-
            ! Player Side !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 1P || rowspan="2" | 9,999,990
            | REO-SP || rowspan="2" | Gamest December 1993
            | ||
            |-
            | 2P || G.M.C.R-I || ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,990.
            
            * [https://shmups.system11.org/viewtopic.php?t=57781 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Omega Fighter

name: "Omega Fighter"
name-jp: "オメガファイター"
name-kana: "おめがふぁいたあ"
company: "UPL"
needs-work: true

scores:
  - score: 17,175,210
    player: Clover-YMN
    sources:
      - name: Arcadia
        date: "2009-07"
    comments:
      - 1st loop 9m
      - autofire
    comments-jp:
      - 1周目900万
      - オート連射

links:
  - url: https://shmups.system11.org/viewtopic.php?t=43829
    title: Shmups Forum Hi-Score Topic

Operation Ragnarok / Zed Blade

name: "Operation Ragnarok / Zed Blade"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Operation Ragnarok / Zed Blade}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Operation Ragnarok]] / Zed Blade (NMK)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|7,340,950}} || CLAW-やまもそ || Arcadia February 2013 || Type 1, W->AS->W, 0B remaining ||
            |-
            | ON || {{v|b1|8,353,000}} || ツィ~まる。 || October 17th, 2012 (Arcadia January 2013) / [https://twitter.com/wsm_tuii3/status/258420795368423424 Twitter] || Type 1, W->AS->W ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=29484 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Ordyne

name: "Ordyne"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Ordyne}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Ordyne]] (Namco)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Remaining Crystals || {{v|a1|779,900}} || TEN || Arcadia November 2013 || score: 1,374,710 ||
            |}
            
            Note: Japanese scoreboard for regular score closed due to the detection of an infinite pattern.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1988_002_%E3%82%AA%E3%83%BC%E3%83%80%E3%82%A4%E3%83%B3 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=32980 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Out Zone

name: "Out Zone"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Out Zone}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Out Zone]] (Toaplan)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="10" | 9,999,999
            | Rin-Russell-OAC || rowspan="10" | Gamest October 1990
            | stage 7-5 ||
            |-
            | 会不毛 || stage 8-1 ||
            |-
            | SSC-VAP || stage 7-5 ||
            |-
            | TYRANT- ひむ || stage 7-5, 656% ||
            |-
            | G塔 || stage 7-6, 666%  ||
            |-
            | STAC-NAA ど || stage 8-2 ||
            |-
            | SGP-K.N ど || stage 7-5 ||
            |-
            | MIROK || stage 7-5 ||
            |-
            | TOA 愛好会 E.T. || stage 8-1 ||
            |-
            | ZEREXCG-かみら || stage 7-4 ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,999.
            
            * [https://shmups.system11.org/viewtopic.php?t=34506 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


P-47 Aces

name: "P-47 Aces"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|P-47 Aces}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[P-47 Aces]] (NMK)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Blackwidow || {{v|a1|5,216,590}} || KDK-Takeyuki || JHA November 2019 || ||
            |-
            | Spitfire || {{v|b1|5,249,040}} || KDK-Takeyuki || JHA September 2019 || ||
            |-
            | Swordfish || {{v|c1|4,757,860}} || KDK-Takeyuki || JHA March 2020 || ||
            |-
            | Thunderbolt || {{v|d1|5,063,820}} || CHAT-ああるじいぶう || Micom Basic January 1996 || ||
            |}
            
            {| role="presentation" class="wikitable mw-collapsible mw-collapsed" style="text-align: center";"
            | <strong>Community Records</strong>
            |-
            ! colspan="6" | P-47 Aces
            |-
            ! Ship !! Score !! Player !! % of World Record !! Replay
            |-
            | Blackwidow || {{v|a2|3,682,850}} || ShadowWraith || {{Percentage|a1|a2}} || 
            |-
            | Spitfire || {{v|b2|3,362,310}} || trap15 || {{Percentage|b1|b2}} ||
            |-
            | Swordfish || {{v|c2|2,994,310}} || trap15 || {{Percentage|c1|c2}} ||
            |-
            | Thunderbolt || {{v|d2|1,690,250}} || Hibou || {{Percentage|d1|d2}} ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1995_018_P-47ACES JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?f=2&t=65906 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


P-47: The Freedom Fighter

name: "P-47: The Freedom Fighter"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|P-47: The Freedom Fighter}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[P-47: The Freedom Fighter]] (NMK)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="3" | 10,000,000+α
            | SPREAM-P.V || rowspan="3" | Micom Basic August 1988
            | stage 10-3 ||
            |-
            | SPREAM-I.Z || stage 10-2 ||
            |-
            | G.M.C.N.K || stage 10-2 ||
            |-
            | style="background: #DFDFDF;" | 99,999,999 || style="background: #DFDFDF;" | Y.Y.Y || style="background: #DFDFDF;" | August 2nd, 2017 / [https://twitter.com/yyy830527/status/892801829137915904 Twitter] || style="background: #DFDFDF;" | stage 85-6, playtime 34h, superplay DVD || style="background: #DFDFDF;" | 
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 99,999,999.
            
            * [https://shmups.system11.org/viewtopic.php?t=57594 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Parodius Da!

name: "Parodius Da!"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Parodius Da!}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Parodius Da!]] (Konami)
            |-
            ! Autofire !! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="4" | OFF
            | Octopus || {{v|a1|3,061,000}} || G.M.C.VENOM || Arcadia May 2007 || 1st loop 1.78m ||
            |-
            | Pentarou || {{v|b1|2,768,700}} || SDI-(和) BOSTON || Gamest August 1991 || ||
            |-
            | Twinbee || {{v|c1|3,031,900}} || 熱血野郎DDT || JHA July 2019 || 1st loop 1.76m ||
            |-
            | Vic Viper || {{v|d1|2,934,100}} || へのへのもへじ || Arcadia September 2001 || ||
            |-
            | rowspan="4" | ON
            | Octopus || {{v|e1|3,308,600}} || Axiom-ZZZ || Arcadia May 2007 || 1st loop 1.85m ||
            |-
            | Pentarou || {{v|f1|3,004,700}} || SDI-(和) BOSTON || September 25th, 1991 / superplay VHS || 1st loop 1.76m || [https://youtu.be/x45452GiCtQ Youtube]
            |-
            | Twinbee || {{v|g1|3,200,300}} || はちゅ || April 28th, 2019 (JHA May 2019) / [https://twitter.com/hachu012/status/1122534914778226688 Twitter] || 1st loop 1.83m ||
            |-
            | Vic Viper || {{v|h1|3,139,000}} || みっしー || October 26th, 2019 (JHA November 2019) / [https://twitter.com/tekitougge/status/1188045173843845125 Twitter] || 1st loop 1.86m ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1990_006_%E3%83%91%E3%83%AD%E3%83%87%E3%82%A3%E3%82%A6%E3%82%B9%E3%81%A0%EF%BC%81 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=36785 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Phelios

name: "Phelios"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Phelios}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Phelios]] (Namco)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Easy || {{v|a1|867,930}} || TEN || JHA June 2019 || stage 2: 127,280 ||
            |-
            | Hard || {{v|b1|1,445,240}} || TEN || JHA September 2018 || Dupon Double K.O. x4 ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1989_008_%E3%83%95%E3%82%A7%E3%83%AA%E3%82%AA%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=57981 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Pilot Kids

name: "Pilot Kids"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Pilot Kids}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Pilot Kids]] (Psikyo)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|12,771,200}} || hamami || April 4th, 2014 (Arcadia July 2014) / [https://twitter.com/hamami999/status/452089199097704448 Twitter] || 0L remaining ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=14815 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Pink Sweets: Ibara Sorekara

name: "Pink Sweets: Ibara Sorekara"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Pink Sweets: Ibara Sorekara}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Pink Sweets: Ibara Sorekara]] (CAVE)
            |-
            ! Mode !! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="5" | Normal
            | Kasumi || {{v|a1|16,538,810}} || しょこたん || Arcadia July 2007 || ||
            |-
            | rowspan="2" | Lace
            | {{v|b1|26,441,790}} || Plasmo || August 24th, 2020 / [https://twitter.com/Plasmo_STG/status/1297918129763426304 Twitter] || ||
            |-
            | {{v|c1|20,614,480}} || YOS.K || Arcadia November 2006 || ||
            |-
            | Meidi&Midi || {{v|d1|14,499,610}} || ポン酢シャワー || Arcadia January 2007 || ||
            |-
            | Shasta || {{v|e1|19,816,910}} || Galford || Arcadia April 2007 || Shasta (A), auto B ||
            |-
            | colspan="2" | Harder
            | {{v|f1|21,168,020}} || AFO || Arcadia April 2008 || ||
            |-
            | colspan="2" | Extended
            | {{v|g1|34,069,890}} || しょこたん || Arcadia July 2007 || ||
            |-
            | colspan="2" | Score Attack
            | {{v|h1|10,251,870}} || DGN || Arcadia January 2008 || ||
            |}
            
            * [[STG_Hall_of_Records/World_Record_Progression_Pink_Sweets|World Record Progression]]
            * [https://shmups.system11.org/viewtopic.php?t=54091 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Pistol Daimyou no Bouken

name: "Pistol Daimyou no Bouken"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Pistol Daimyou no Bouken}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Pistol Daimyou no Bouken]] (Namco)
            |-
            ! Version !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | New || 1,049,900 || TPN-短パン || JHA August 2020 || ||
            |-
            | style="background: #B9D9B9;" | Old || style="background: #B9D9B9;" | 995,500 || style="background: #B9D9B9;" | Yuuji Sensei || style="background: #B9D9B9;" | ? || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |}
            
            Note: Japanese scoreboard for Old Version closed due to the detection of an infinite pattern.
            {% endverbatim %}


Plus Alpha

name: "Plus Alpha"
name-jp:
name-kana:
company: "Jaleco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Plus Alpha}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Plus Alpha]] (Jaleco)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="7" | 10,000,000+α
            | 10時がライバル NRO || rowspan="7" | Gamest August 1989
            | stage 7-7 ||
            |-
            | HST-(お)SPT || stage 7-7 ||
            |-
            | URX-SUM || stage 8-7 ||
            |-
            | IML- のリピーた || stage 7-5, 10L remaining ||
            |-
            | IML-PET || ||
            |-
            | IML-UUU || ||
            |-
            | HCM-CCV & BEE || ||
            |-
            | style="background: #DFDFDF;" | 99,999,990 || style="background: #DFDFDF;" | Y.Y.Y || style="background: #DFDFDF;" | August 18th, 2017 / [https://twitter.com/yyy830527/status/898537402863570946 Twitter] || style="background: #DFDFDF;" | stage 81-5, playtime 27h 57m, superplay DVD || style="background: #DFDFDF;" | 
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 99,999,990.
            
            * [https://shmups.system11.org/viewtopic.php?t=8363 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Prehistoric Isle 2

name: "Prehistoric Isle 2"
name-jp: 原始島2
name-kana: げんしとう2
company: "Aicom / Yumekobo"
needs-work: true

scores:
  - score: 95,683,500
    player: イマサラT.O
    sources:
      - name: Arcadia
        date: "2013-02"
    comments:
      - highest score Arcade
    attributes:
        is-current-record: true

  - score: 100,866,700
    player: うどんの日
    sources:
      - name: Twitter
        date: "2020-05-10"
        url: https://twitter.com/RU1OkFBRP5KYdHs/status/1259318914309165057
    comments:
      - highest score Arcade Archives

  - score: 100,962,000
    player: うどんの日
    sources:
      - name: Twitter
        date: "2020-06-17"
        url: https://twitter.com/RU1OkFBRP5KYdHs/status/1273274183833665536
    comments:
      - highest score Arcade Archives

  - score: 101,779,700
    player: うどんの日
    sources:
      - name: Twitter
        date: "2020-07-16"
        url: https://twitter.com/RU1OkFBRP5KYdHs/status/1283804095036309506
    comments:
      - highest score Arcade Archives

  - score: 102,454,200
    player: うどんの日
    sources:
      - name: Twitter
        date: "2020-07-26"
        url: https://twitter.com/RU1OkFBRP5KYdHs/status/1287357674963628032
    comments:
      - highest score Arcade Archives

  - score: 103,004,200
    player: うどんの日
    sources:
      - name: Twitter
        date: "2020-08-09"
        url: https://twitter.com/RU1OkFBRP5KYdHs/status/1292509420694339587
    comments:
      - highest score Arcade Archives

  - score: 103,300,100
    player: うどんの日
    sources:
      - name: Twitter
        date: "2020-08-23"
        url: https://twitter.com/RU1OkFBRP5KYdHs/status/1297507291923529728
    comments:
      - highest score Arcade Archives

  - score: 103,452,400
    player: うどんの日
    sources:
      - name: Twitter
        date: "2020-09-24"
        url: https://twitter.com/RU1OkFBRP5KYdHs/status/1309133167979360265
    comments:
      - highest score Arcade Archives

  - score: 104,294,100
    player: うどんの日
    sources:
      - name: Twitter
        date: "2020-10-29"
        url: https://twitter.com/RU1OkFBRP5KYdHs/status/1321825585774014464
      - name: Youtube
        date: "2020-10-29"
        url: https://youtu.be/C0HmXIK3ObM
    comments:
      - highest score Arcade Archives

  - score: 104,646,900
    player: うどんの日
    sources:
      - name: Twitter
        date: "2020-12-01"
        url: https://twitter.com/RU1OkFBRP5KYdHs/status/1333791031091814402
    comments:
      - highest score Arcade Archives

  - score: 105,214,300
    player: うどんの日
    sources:
      - name: Twitter
        date: "2021-01-01"
        url: https://twitter.com/RU1OkFBRP5KYdHs/status/1344905868043722752
      - name: Youtube
        date: "2021-01-01"
        url: https://youtu.be/_qTFwtAPuU0
    comments:
      - highest score Arcade Archives

  - score: 105,361,800
    player: t8c
    sources:
      - name: Twitter
        date: "2021-01-06"
        url: https://twitter.com/bonniexenon/status/1346814468425097216
    comments:
      - highest score Arcade Archives

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1999_048_%E5%8E%9F%E5%A7%8B%E5%B3%B62
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=34777
    title: Shmups Forum Hi-Score Topic

Prehistoric Isle in 1930

name: "Prehistoric Isle in 1930"
name-jp:
name-kana:
company: "SNK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Prehistoric Isle in 1930}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Prehistoric Isle in 1930]] (SNK)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|1,663,000}} || G.M.C.Z. || Arcadia June 2008 || ||
            |}
            {% endverbatim %}


Progear no Arashi

name: "Progear no Arashi"
name-jp:
name-kana:
company: "CAVE"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Progear no Arashi}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Progear no Arashi]] (CAVE)
            |-
            ! colspan="2" | Ship
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="5" | Gambler (Ring)
            | rowspan="2" | α (Chain)
            | {{v|a1|221,540,840}} || Arrogant Bastard || November 5th, 2009 / [https://shmups.system11.org/viewtopic.php?p=525804#p525804 Shmups Forum] || 3L 2B remaining ||
            |-
            | {{v|b1|197,256,860}} || Clover-TAC || Arcadia January 2002 || 5L 3B remaining, 1st loop 45.68m / 262k jewel, superplay VHS || [https://youtu.be/sVq_ka5av3I Youtube]
            |-
            | β (Nail) || {{v|c1|363,986,110}} || R. || Arcadia March 2012 || 9L 3B remaining, 1st loop 350k jewel ||
            |-
            | rowspan="2" | γ (Rivet)
            | 216,289,290 || rowspan="2" | AAB!
            | February 12th, 2011 / [https://twitter.com/aab_ex/status/36367507510001664 Twitter] || ||
            |-
            | {{v|e1|181,103,090}} || September 22nd, 2020 (JHA September 2020) / [https://twitter.com/aab_ex/status/1308386056316710912 Twitter] || 6L remaining ||
            |-
            | rowspan="5" | Militant (Bolt)
            | α (Chain) || {{v|f1|244,775,610}} || R. || JHA September 2020 || 8L 0B remaining, 1st loop 131m, death in 2-3, no bomb 2-4 boss ||
            |-
            | rowspan="2" | β (Nail)
            | {{v|g1|294,470,740}} || ミルみで || September 14th, 2019 || 9L 0B remaining, 1st loop 66.64m / 359k jewel || [https://youtu.be/duC-C0i_glM Youtube]
            |-
            | {{v|h1|274,752,230}} || R. || Arcadia July 2005 || 8L 0B remaining, 1st loop 62.80m / 334k jewel ||
            |-
            | rowspan="2" | γ (Rivet)
            | {{v|i1|104,284,330}} || mist || June 29th, 2019 / [https://twitter.com/mistrein/status/1144855005028966400 Twitter] || All Clear, 6L 0B remaining ||
            |-
            | {{v|j1|36,191,720}} || JAP || JHA December 2019 || died in 2-5 ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2001_029_%E3%83%97%E3%83%AD%E3%82%AE%E3%82%A2%E3%81%AE%E5%B5%90 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=18674 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Psyvariar

name: "Psyvariar"
name-jp:
name-kana:
company: "Success"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Psyvariar}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Psyvariar]] (Success)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|46,381,450}} || Yusemi SWY || Arcadia June 2001 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2000_073_%E3%82%B5%E3%82%A4%E3%83%B4%E3%82%A1%E3%83%AA%E3%82%A2 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?f=2&t=66695 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Psyvariar 2

name: "Psyvariar 2"
name-jp:
name-kana:
company: "Skonec"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Psyvariar 2}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Psyvariar 2]] (Skonec)
            |-
            ! Type !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Buzz || {{v|a1|212,236,700}} || ENST || Arcadia October 2009 || ||
            |-
            | Shooting || {{v|b1|123,397,000}} || KACHIKUの家畜(68K) || Arcadia October 2005 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2003_011_%E3%82%B5%E3%82%A4%E3%83%B4%E3%82%A1%E3%83%AA%E3%82%A22 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=21612 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Psyvariar Revision

name: "Psyvariar Revision"
name-jp:
name-kana:
company: "Success"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Psyvariar Revision}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Psyvariar Revision]] (Success)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|211,339,700}} || Yusemi SWY || Arcadia August 2005 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2000_062_%E3%82%B5%E3%82%A4%E3%83%B4%E3%82%A1%E3%83%AA%E3%82%A2%E3%83%AA%E3%83%93%E3%82%B8%E3%83%A7%E3%83%B3 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?f=2&t=66695 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Pulstar

name: "Pulstar"
name-jp:
name-kana:
company: "Aicom / Yumekobo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Pulstar}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Pulstar]] (Aicom / Yumekobo)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|6,694,510}} || ELH-ぱち先生 || Gamest February 1996 || before final boss 1.24m; double K.O. x34 ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=38384 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Purikura Daisakusen

name: "Purikura Daisakusen"
name-jp:
name-kana:
company: "Atlus"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Purikura Daisakusen}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Purikura Daisakusen]] (Atlus)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Grey || {{v|a1|51,311,700}} || LKR || Arcadia October 2007 || ||
            |-
            | Kirara || {{v|b1|63,346,100}} || LKR || Arcadia November 2001 || 1L remaining, 1-Up x2, Box Clown x23 ||
            |-
            | Kurara || {{v|c1|63,146,100}} || LKR || Arcadia January 2008 || 1L remaining, 1-Up x2, Box Clown x23 ||
            |}
            {% endverbatim %}


R-Type

name: "R-Type"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|R-Type}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[R-Type]] (Irem)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,494,600}} || かっつん || Arcadia December 2013 || suicide x7, 1st loop 1.76m || [https://youtu.be/JfwyrV_oSB8 Youtube]
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=2047 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


R-Type II

name: "R-Type II"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|R-Type II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[R-Type II]] (Irem)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|1,701,900}} || SOF-WTN || May 6th, 2017 (JHA May 2017) / [https://twitter.com/sof_wtn/status/860767807687884800 Twitter] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1989_003_R%E3%83%BB%E3%82%BF%E3%82%A4%E3%83%97II JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=39202 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


R-Type Leo

name: "R-Type Leo"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|R-Type Leo}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[R-Type Leo]] (Irem)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|5,753,690}} || A.BOY || March 17th, 2019 (JHA March 2019) / [https://twitter.com/hiropom_76/status/1107195003695071235 Twitter] || No Miss ||
            |-
            | ON || {{v|b1|5,933,550}} || KDK-Takeyuki || JHA October 2018 || No Miss ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=39150 Shmups Forum Hi-Score Topic]
            * [https://wiki.denfaminicogamer.jp/highscore/1991_007_R%E3%83%BB%E3%82%BF%E3%82%A4%E3%83%97_%E3%83%AC%E3%82%AA JHA Leaderboard]
            {% endverbatim %}


Rabio Lepus

name: "Rabio Lepus"
name-jp:
name-kana:
company: "Video System"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Rabio Lepus}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Rabio Lepus]] (Video System)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Normal || 8,897,200 || みここ旧ver || rowspan="2" | Arcadia January 2010 || ||
            |-
            | Expert || 18,572,600 || KTL-ぷーぺら || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=33288 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Radiant Silvergun

name: "Radiant Silvergun"
name-jp:
name-kana:
company: "Treasure"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Radiant Silvergun}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Radiant Silvergun]] (Treasure)
            |-
            ! Route !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Stage 2 || {{v|a1|23,101,650}} || T³-CYR-WIZ || August 26th, 2008 (Arcadia December 2008) || after 3E: 4.80m, after 2E: 10.05m; in 5A: 12.22m || [https://youtu.be/j-AACK9hvgs Youtube]
            |-
            | Stage 4 || {{v|b1|27,550,780}} || T³-CYR-WIZ || November 15th, 2008 (Arcadia February 2009) || after 3E: 4.79m, after 4E: 14.33m; in 5A: 12.28m || [https://youtu.be/gJDCcK-zjWI Youtube]
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_024_%E3%83%AC%E3%82%A4%E3%83%87%E3%82%A3%E3%82%A2%E3%83%B3%E3%83%88%E3%82%B7%E3%83%AB%E3%83%90%E3%83%BC%E3%82%AC%E3%83%B3 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=45677 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Radirgy

name: "Radirgy"
name-jp:
name-kana:
company: "Milestone"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Radirgy}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Radirgy]] (Milestone)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|259,178,900}} || TZW-ART? || June 14th, 2014 / [https://twitter.com/TZW_guile/status/477819223398313984 Twitter] || 123 Laser ||
            |-
            | {{v|b1|250,246,910}} || TZW-ART? || Arcadia October 2014 || 123 Laser ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2005_008_%E3%83%A9%E3%82%B8%E3%83%AB%E3%82%AE JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=15847 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Radirgy Noa

name: "Radirgy Noa"
name-jp:
name-kana:
company: "Milestone"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Radirgy Noa}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Radirgy Noa]] (Milestone)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|523,994,870}} || SIZ || Arcadia July 2010 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2009_007_%E3%83%A9%E3%82%B8%E3%83%AB%E3%82%AE%E3%83%8E%E3%82%A2 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=35098 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Rafflesia

name: "Rafflesia"
name-jp:
name-kana:
company: "Coreland"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Rafflesia}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Rafflesia]] (Coreland)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|4,495,700}} || Retro-B || ? || played on Mame32 0.60 || [https://youtu.be/s8ZpPWMKssg Youtube]
            |}
            {% endverbatim %}


Raiden

name: "Raiden"
name-jp:
name-kana:
company: "Seibu Kaihatsu / Moss"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Raiden}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="6" | [[Raiden]] (Seibu Kaihatsu / Moss)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || rowspan="3" | 10,000,000+α
            | ベジータ(ま) || rowspan="2" | Gamest January 1991 (Micom Basic December 1990)
            | 2p side, stage 3-7 ||
            |-
            | rowspan="2" | ON
            | EXCEL-星白金HIR || 2p side, stage 3-4 ||
            |-
            | KSGな人(魔) || Gamest January 1991 || ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=42751 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Raiden DX

name: "Raiden DX"
name-jp:
name-kana:
company: "Seibu Kaihatsu / Moss"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Raiden DX}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="8" | [[Raiden DX]] (Seibu Kaihatsu / Moss)
            |-
            ! Autofire !! colspan="2" | Mode
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="5" | OFF
            | rowspan="2" | Training
            | proceed after 1-5 || {{v|a1|14,346,460}} || NMT8.2i || Gamest February 1999 || stage 2-3 ||
            |-
            | end after 1-5 || {{v|b1|13,783,610}} || JR. || Gamest October 1996 || ||
            |-
            | colspan="2" | Novice
            | {{v|c1|7,565,400}} || 地獄龍-ちょく || Arcadia January 2002 || ||
            |-
            | style="background: #B9D9B9;" colspan="2" rowspan="2" | Expert
            | style="background: #B9D9B9;" rowspan="2" | 10,000,000+α
            | style="background: #B9D9B9;" | ヤキソバンDX || style="background: #B9D9B9;" rowspan="2" | Gamest January 1995
            | style="background: #B9D9B9;" | stage 4-1 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | グラディウサー同盟DKT-GER || style="background: #B9D9B9;" | stage 3-4, 1st loop 5.48m || style="background: #B9D9B9;" |
            |-
            | rowspan="6" | ON
            | rowspan="2" | Training
            | proceed after 1-5 || {{v|d1|29,937,580}} || EXCHANGER || Arcadia February 2009 || stage 7-8 ||
            |-
            | end after 1-5 || {{v|e1|14,792,870}} || はむはむ || Arcadia November 2012 || after 1-0: 7.04m ||
            |-
            | colspan="2" | Novice
            | {{v|f1|7,659,600}} || はむはむ || Arcadia November 2009 || ||
            |-
            | style="background: #B9D9B9;" colspan="2" rowspan="4" | Expert
            | style="background: #B9D9B9;" rowspan="3" | 10,000,000+α
            | style="background: #B9D9B9;" | ベジータ(ま) || style="background: #B9D9B9;" rowspan="3" | Gamest October 1994
            | style="background: #B9D9B9;" | stage 3-6 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | DBL-GAUT-NAI || style="background: #B9D9B9;" | stage 4-1 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | グラディウサー同盟DKT-GER || style="background: #B9D9B9;" | stage 3-7 || style="background: #B9D9B9;" |
            |-
            |}
            
            Note: Japanese scoreboard for Expert Course closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=15936 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Raiden Fighters

name: "Raiden Fighters"
name-jp:
name-kana:
company: "Seibu Kaihatsu / Moss"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Raiden Fighters}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Raiden Fighters]] (Seibu Kaihatsu / Moss)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Aegis || {{v|a1|54,241,190}} || グラディウサー同盟DKT-GER (ま) || Gamest June 1997 || ||
            |-
            | Beast Arrow || {{v|b1|54,550,210}} || IML-PSI(甘) || Gamest April 1998 || ||
            |-
            | Chaser || {{v|c1|54,940,680}} || グラディウサー同盟DKT-GER (ま) || Gamest September 1997 || ||
            |-
            | Devastator || {{v|d1|55,318,230}} || グラディウサー同盟DKT-GER (ま) || Gamest August 1997 || ||
            |-
            | Endeavor || {{v|e1|54,012,980}} || グラディウサー同盟DKT-GER (ま) || Gamest October 1997 || ||
            |-
            | Judge Spear || {{v|f1|56,508,290}} || DAB.S || Arcadia February 2005 || ||
            |-
            | Raiden Mk 2 || {{v|g1|53,641,510}} || ALZ-S || Arcadia December 2003 || ||
            |-
            | Slave || {{v|h1|56,192,730}} || SOF-WTN|| December 13th, 2015 (JHA March 2016) / [https://twitter.com/sof_wtn/status/675986616758968321 Twitter] || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=34720 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Raiden Fighters 2

name: "Raiden Fighters 2"
name-jp:
name-kana:
company: "Seibu Kaihatsu / Moss"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Raiden Fighters 2}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Raiden Fighters 2]] (Seibu Kaihatsu / Moss)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Aegis IV || 112,008,090 || XRX-いしはらくん || Gamest March 1999 || ||
            |-
            | rowspan="2" | Beast Wing
            | 115,420,500 || rowspan="2" | 元団長
            | October 28th, 2017 || || [https://youtu.be/dVReXF3r0Dc Youtube]
            |-
            | 113,753,690 || JHA August 2016 || ||
            |-
            | Chaser 2000 || 120,804,600 || SOF-WTN || Arcadia December 2007 || ||
            |-
            | Death Header || 111,399,040 || XRX-いしはらくん || Arcadia March 2000 || ||
            |-
            | Eraser || 109,877,790 || ALZ-H.M || Arcadia October 2004 || ||
            |-
            | Flying Ray || 116,579,930 || SOF-WTN || Arcadia August 2006 || ||
            |-
            | Griffin || 109,067,200 || XRX-いしはらくん || Gamest July 1999 || ||
            |-
            | Hell Diver || 118,934,020 || SOF-WTN || Arcadia May 2005 || ||
            |-
            | Judge Spear || 120,076,000 || SOF-WTN || Arcadia June 2011 || ||
            |-
            | Raiden Mk 2 || 124,157,830 || DBS || August 18th, 2011 (Arcadia November 2011) / [https://twitter.com/dbsqawsedrftgyh/status/1135878623938744326 Twitter] || 2p side ||
            |-
            | Slave (Miclus) || 130,781,130 || SOF-WTN || Arcadia October 2013 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1997_010_%E3%83%A9%E3%82%A4%E3%83%87%E3%83%B3%E3%83%95%E3%82%A1%E3%82%A4%E3%82%BF%E3%83%BC%E3%82%BA2 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=34721 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Raiden Fighters Jet

name: "Raiden Fighters Jet"
name-jp:
name-kana:
company: "Seibu Kaihatsu / Moss"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Raiden Fighters Jet}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Raiden Fighters Jet]] (Seibu Kaihatsu / Moss)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|203,476,074}} || NER || Arcadia March 2006 || used Slave of Judge Spear ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_005_%E3%83%A9%E3%82%A4%E3%83%87%E3%83%B3%E3%83%95%E3%82%A1%E3%82%A4%E3%82%BF%E3%83%BC%E3%82%BAJET JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=10150 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Raiden II

name: "Raiden II"
name-jp:
name-kana:
company: "Seibu Kaihatsu / Moss"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Raiden II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Raiden II]] (Seibu Kaihatsu / Moss)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || style="background: #B9D9B9;" rowspan="5" | 10,000,000+α
            | style="background: #B9D9B9;" rowspan="2" | ベジータ(ま)
            |  style="background: #B9D9B9;" | Gamest May 1994 || style="background: #B9D9B9;" | 1st loop 4.42m, stage 3-3 || style="background: #B9D9B9;" |
            |-
            | rowspan="5" | ON
            | style="background: #B9D9B9;" rowspan="3" | Gamest April 1994 || style="background: #B9D9B9;" | 1st loop 4.35m, stage 3-3 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | MPS-まい'ん || style="background: #B9D9B9;" | stage 3-4 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | 星白金-HIR || style="background: #B9D9B9;" | stage 3-3 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | ああるじーぶー || style="background: #B9D9B9;" | Micom Basic April 1994 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | {{v|a1|136,188,940}} || Boredom || November 16th, 2017 / [https://twitter.com/boredom_79/status/931272230390046720 Twitter] || stage 44-1, playtime ~26h ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=38782 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Raiden III

name: "Raiden III"
name-jp:
name-kana:
company: "Seibu Kaihatsu / Moss"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Raiden III}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Raiden III]] (Seibu Kaihatsu / Moss)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Solo || {{v|a1|19,021,220}} || CYS-SAK || Arcadia March 2007 || ||
            |-
            | Doubleplay || {{v|b1|21,060,980}} || 服部 || Arcadia December 2006 || superplay DVD ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2005_035_%E9%9B%B7%E9%9B%BBIII JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=56616 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Raiden IV

name: "Raiden IV"
name-jp:
name-kana:
company: "Seibu Kaihatsu / Moss"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Raiden IV}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Raiden IV]] (Seibu Kaihatsu / Moss)
            |-
            ! colspan="2" | Mode
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="3" | Light
            | rowspan="2" | Solo
            | {{v|a1|34,744,360}} || ISO / Niboshi || JHA May 2016 || highest score Nesica ||
            |-
            | {{v|b1|34,522,860}} || CYS-SAK || Arcadia May 2010 || highest score Taito Type X, superplay DVD ||
            |-
            | Doubleplay || {{v|c1|42,067,230}} || 服部 || Arcadia November 2008 || ||
            |-
            | rowspan="2" | Original
            | Solo || {{v|d1|78,961,440}} || CYS-SAK || Arcadia April 2010 || superplay DVD ||
            |-
            | Doubleplay || {{v|e1|92,793,920}} || 服部 || Arcadia May 2010 || superplay DVD ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2007_020_%E9%9B%B7%E9%9B%BBIV JHA Leaderboard (Taito Type X)] [https://wiki.denfaminicogamer.jp/highscore/2012_006_%E9%9B%B7%E9%9B%BBIV%EF%BC%88%E3%83%8D%E3%82%B7%E3%82%AB%E7%89%88%EF%BC%89 (Nesica)]
            * [https://shmups.system11.org/viewtopic.php?t=56617 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Raiga: Strato Fighter

name: "Raiga: Strato Fighter"
name-jp:
name-kana:
company: "Tecmo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Raiga: Strato Fighter}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Raiga: Strato Fighter]] (Tecmo)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|2,690,810}} || みここ旧Ver. || Arcadia September 2008 || 12L remaining ||
            |-
            | ON || {{v|b1|2,833,940}} || KDK-Takeyuki || Arcadia August 2013 || 12L remaining ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1991_001_%E9%9B%B7%E7%89%99 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=61667 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Rapid Hero

name: "Rapid Hero"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Rapid Hero}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Rapid Hero]] (NMK)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | - || - || - || - || -
            |}
            
            Note: No official score keeping tradition due to the detection of an infinite pattern right after the release of the game.
            
            * [https://shmups.system11.org/viewtopic.php?t=61684 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Raycrisis

name: "Raycrisis"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Raycrisis}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Raycrisis]] (Taito)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | WR-01R || {{v|a1|26,060,730}} || SHS-CDE || Arcadia September 2002 || ||
            |-
            | WR-02R || {{v|b1|25,189,210}} || SEE 106 S16 (ITO) || Arcadia March 2000 || ||
            |-
            | WR-03 || {{v|c1|28,406,210}} || R-GRAY1 || June 30th, 2019 (JHA July 2019) [https://twitter.com/R_GRAY1/status/1145251934628020224 Twitter] || AB autofire, MAP 33, Water -> Desert -> Night || [https://youtu.be/xtyfpHWKGOY Youtube]
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_007_%E3%83%AC%E3%82%A4%E3%82%AF%E3%83%A9%E3%82%A4%E3%82%B7%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=9079 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Rayforce / Layer Section

name: "Rayforce / Layer Section"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Rayforce / Layer Section}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Rayforce]] / Layer Section (Taito)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|9,206,000}} || KTZ || JHA April 2019 || ||
            |-
            | ON || {{v|b1|9,513,500}} || KTZ || JHA April 2018 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1994_008_%E3%83%AC%E3%82%A4%E3%83%95%E3%82%A9%E3%83%BC%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=35037 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Raystorm

name: "Raystorm"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Raystorm}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Raystorm]] (Taito)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | R-Gray 1 || {{v|a1|18,123,250}} || KDK-Takeyuki || Arcadia August 2010 || ||
            |-
            | R-Gray 2 || {{v|b1|29,916,650}} || T³-CYR-WIZ || Arcadia December 2009 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=45782 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Rezon

name: "Rezon"
name-jp:
name-kana:
company: "Allumer"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Rezon}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Rezon]] (Allumer)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|716,600}} || Bad Shooter || Arcadia October 2014 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=29021 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Rolling Gunner

name: "Rolling Gunner"
name-jp:
name-kana:
company: "Mebius"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Rolling Gunner}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="8" | [[Rolling Gunner]] (Mebius)
            |-
            ! colspan="2" | Mode !! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="11" | Story
            | rowspan="5" | Casual
            | RA || 354,755,790 || コッシー || September 12th, 2020 (JHA September 2020) / [https://twitter.com/zubrowk777/status/1304730410014748673 Twitter] || ||
            |-
            | rowspan="2" | RS
            | 357,925,250 || R || [https://rollinggunner.am-all.net/players/ranking/2 Official Ranking] || ||
            |-
            | 347,071,100 || コッシー || JHA September 2020 || ||
            |-
            | rowspan="2" | RX
            | 361,622,730 || R || [https://rollinggunner.am-all.net/players/ranking/3 Official Ranking] || ||
            |-
            | 313,345,430 || HAM || JHA August 2020 || 5L 5B remaining ||
            |-
            | rowspan="3" | Original
            | RA || 2,288,201,250 || 白木凪 || [https://rollinggunner.am-all.net/players/ranking/8 Official Ranking] || died against TLB ||
            |-
            | RS || 5,473,233,930 || KMB-きめら || JHA August 2020 || 2L remaining ||
            |-
            | RX || 5,991,716,840 || グーニャファイターやれ || JHA September 2020 || 0L 1B remaining ||
            |-
            | rowspan="3" | Expert
            | RA || 1,679,736,990 || Hey民 || [https://rollinggunner.am-all.net/players/ranking/12 Official Ranking] || died stage 5 midboss ||
            |-
            | RS || 1,809,781,670 || Gou161 || [https://rollinggunner.am-all.net/players/ranking/10 Official Ranking] || died stage 5 boss ||
            |-
            | RX || 4,043,406,710 || - || [https://rollinggunner.am-all.net/players/ranking/11 Official Ranking] || died against TLB ||
            |-
            | rowspan="7" | Score Attack
            | rowspan="2" | Stage 1
            | rowspan="7" | -
            | 566,675,560 || 田口さんSPレベラッ! || [https://rollinggunner.am-all.net/players/ranking/13 Official Ranking] || used RA ||
            |-
            | 101,409,490 || Okyan || JHA August 2020 || used RA ||
            |-
            | Stage 2 || 534,748,660 || 田口さんSPレベラッ! || [https://rollinggunner.am-all.net/players/ranking/17 Official Ranking] || used RS ||
            |-
            | Stage 3 || 2,219,872,450 || 田口さんSPレベラッ! || [https://rollinggunner.am-all.net/players/ranking/21 Official Ranking] || used RS ||
            |-
            | Stage 4 || 2,047,988,390 || 田口さんSPレベラッ! || [https://rollinggunner.am-all.net/players/ranking/25 Official Ranking] || used RS ||
            |-
            | Stage 5 || 2,550,923,450 || 田口さんSPレベラッ! || [https://rollinggunner.am-all.net/players/ranking/29 Official Ranking] || used RS ||
            |-
            | Stage 6 || 5,123,874,870 || 田口さんSPレベラッ! || [https://rollinggunner.am-all.net/players/ranking/33 Official Ranking] || used RS ||
            |}
            
            * [https://rollinggunner.am-all.net/players/ranking Official Ranking]
            * [https://shmups.system11.org/viewtopic.php?f=2&t=65836 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Ryu Jin

name: "Ryu Jin"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Ryu Jin}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Ryu Jin]] (Taito)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|2,266,890}} || みここ旧Ver. || Arcadia November 2008 || ||
            |-
            | ON || {{v|b1|2,296,800}} || みここ旧Ver. || Arcadia December 2008 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=39867 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Salamander

name: "Salamander"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Salamander}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Salamander]] (Konami)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 10,000,000+α || KCH-TAG || Gamest April 1987 || ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=5877 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Salamander 2

name: "Salamander 2"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Salamander 2}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Salamander 2]] (Konami)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,243,000}} || KTL-NAL || Arcadia July 2008 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=5877 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Same! Same! Same! / Fire Shark

name: "Same! Same! Same! / Fire Shark"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Same! Same! Same! / Fire Shark}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Same! Same! Same!]] / Fire Shark (Toaplan)
            |-
            ! Version !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | style="background: #DFDFDF;" rowspan="3" | Japan (1P)
            | style="background: #B9D9B9;" rowspan="2" | 10,000,000+α
            | style="background: #B9D9B9;" | JAG-WOP || style="background: #B9D9B9;" rowspan="2" | Gamest May 1990
            | style="background: #B9D9B9;" | 31-00, autofire || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | EMK.DA || style="background: #B9D9B9;" | 32-2, no autofire || style="background: #B9D9B9;" |
            |-
            | style="background: #DFDFDF;" | 100,000,000 || style="background: #DFDFDF;" | J.O || style="background: #DFDFDF;" | Arcadia August 2001 || style="background: #DFDFDF;" | stage 12-10, playtime ~8h || style="background: #DFDFDF;" |
            |-
            | style="background: #DFDFDF;" rowspan="6" | World (2P)
            | style="background: #B9D9B9;" rowspan="5" | 10,000,000+α
            | style="background: #B9D9B9;" | INDICK-CANLTD-G.M.C. Q.. || style="background: #B9D9B9;" rowspan="5" | Gamest February 1990
            | style="background: #B9D9B9;" | stage 3-08 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | N. ARC-S.S || style="background: #B9D9B9;" | 56-08, no autofire || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | N. ARC-TEL || style="background: #B9D9B9;" | 32-10 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | INFINITE-FLY || style="background: #B9D9B9;" | 28-10 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | POKEN, DAI, KUMA, SPT || style="background: #B9D9B9;" | stage 3-08 ~ stage 4-01 || style="background: #B9D9B9;" |
            |-
            | style="background: #DFDFDF;" | 100,000,000 || style="background: #DFDFDF;" | Hoge Hoge || style="background: #DFDFDF;" | 2014? || style="background: #DFDFDF;" | stage 11-1, playtime 6h 17m || style="background: #DFDFDF;" | [https://youtu.be/IYtYGf0-EqE Youtube]
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 100,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=35418 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sand Scorpion

name: "Sand Scorpion"
name-jp:
name-kana:
company: "Face"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sand Scorpion}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Sand Scorpion]] (Face)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|6,443,700}} || YOSHIO(ま) || Gamest February 1994 || 1st loop 2.16m, no miss ||
            |-
            | ON || {{v|b1|6,338,800}} || HKR || Gamest December 1992 || 1st loop 2.11m, no miss ||
            |}
            {% endverbatim %}


Scramble Formation / Tokio

name: "Scramble Formation / Tokio"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Scramble Formation / Tokio}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Scramble Formation]] / Tokio (Taito)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 50,000,000+α || AKIKO || Micom Basic August 1986 || playtime 11 hours, hard diff ||
            |}
            
            Note: Micom Basic magazine (October 1986) lists an unverified score of 422,028,000 by 中村優 (loop 28).
            {% endverbatim %}


Scramble Spirits

name: "Scramble Spirits"
name-jp:
name-kana:
company: "Sega"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Scramble Spirits}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="6" | [[Scramble Spirits]] (Sega)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="3" | 10,000,000+α
            | Extreme-S.S || rowspan="3" | Gamest January 1989 || ||
            |-
            | Sniper-MIU || stage 4-4 ||
            |-
            | G.M.C.N.K || 28L remaining ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            {% endverbatim %}


Sengeki Striker

name: "Sengeki Striker"
name-jp:
name-kana:
company: "Warashi"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sengeki Striker}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Sengeki Striker]] (Warashi)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|1,488,027,060}} || G.M.C. R-I || Gamest October 1997 || ||
            |}
            
            Note: Japanese scoreboard closed due to the detection of an infinite pattern.
            
            * [https://shmups.system11.org/viewtopic.php?t=34188 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sengoku Ace

name: "Sengoku Ace"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sengoku Ace}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Sengoku Ace]] (Psikyo)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Aine || {{v|a1|1,964,700}} || シエンタ@UGF || JHA March 2019 || ||
            |-
            | Gennai || {{v|b1|1,915,700}} || hamami || December 9th, 2018 (JHA December 2018) / [https://twitter.com/hamami999/status/1071753749532569600 Twitter] || ||
            |-
            | Jane || {{v|c1|1,997,200}} || Clover-TAC || JHA January 2019 || ||
            |-
            | Ken'oumaru || {{v|d1|1,876,700}} || D.I || Arcadia October 2010 || Raijin x2 ||
            |-
            | Koyori || {{v|e1|1,937,900}} || ZFC-F°CM || December 29th, 2018 (JHA January 2019) / [https://twitter.com/fcm_roomchief/status/1078937474397687809 Twitter] || Raijin x2 ||
            |-
            | Tengai || {{v|f1|1,981,200}} || 戦国人 || Arcadia June 2006 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1993_012_%E6%88%A6%E5%9B%BD%E3%82%A8%E3%83%BC%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=56034 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sengoku Blade

name: "Sengoku Blade"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sengoku Blade}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Sengoku Blade]] (Psikyo)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Aine || {{v|a1|2,488,900}} || J.G.K-ALL(副) || Arcadia May 2014 || 0L remaining ||
            |-
            | Hagane || {{v|b1|2,500,200}} || J.G.K-ALL(副) || Arcadia December 2013 || 0L remaining ||
            |-
            | Junis || {{v|c1|2,363,100}} || PPR-KTL-IZK || May 17th, 2020 (JHA May 2020) / [https://twitter.com/DeepBlueNoiz/status/1262031550964588544 Twitter] || ||
            |-
            | Koyori || {{v|d1|2,305,600}} || SYO || Arcadia December 2012 || 0L 0B remaining ||
            |-
            | Shoumaru || {{v|e1|2,325,200}} || J.G.K-ALL(副) || Arcadia November 2012 || ||
            |-
            | Tengai || {{v|f1|2,214,600}} || 戦国人 || Arcadia August 2008 || 0L 0B remaining, 1st loop 1.179m ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1996_014_%E6%88%A6%E5%9B%BD%E3%83%96%E3%83%AC%E3%83%BC%E3%83%89 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=56034 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sexy Parodius

name: "Sexy Parodius"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sexy Parodius}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Sexy Parodius]] (Konami)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Hikaru || {{v|a1|7,017,300}} || みっしー || Arcadia March 2014 || after stage 1: 600k ||
            |-
            | Ivan || {{v|b1|7,034,400}} || AXIOM-H.Y (奈) || Arcadia September 2013 || after stage 1: 580k; before special stage: 2.26m ||
            |-
            | Koitsu || {{v|c1|7,219,900}} || ZKB-RIT8 DAN || Gamest October 1996 || ||
            |-
            | Mambo || {{v|d1|6,988,200}} || みっしー || Arcadia March 2014 || after stage 1: 600k ||
            |-
            | Michael || {{v|e1|7,215,800}} || みっしー || Arcadia April 2013 || ||
            |-
            | Option || {{v|f1|7,186,600}} || SUR-DXP-天馬(犯)(ま) || Gamest October 1998 || ||
            |-
            | Shooting Star || {{v|g1|7,056,000}} || みっしー || Arcadia April 2013 || ||
            |-
            | Vic Viper || {{v|h1|7,063,900}} || みっしー || Arcadia July 2013 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=36785 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Shienryu

name: "Shienryu"
name-jp:
name-kana:
company: "Warashi"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Shienryu}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Shienryu]] (Warashi)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|69,858,260}} || との仕様-(T) || Arcadia February 2006 || ||
            |}
            
            Note: Japanese scoreboard closed February 2019 due to the detection of an infinite pattern.
            
            * [https://shmups.system11.org/viewtopic.php?t=176 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Shikigami no Shiro

name: "Shikigami no Shiro"
name-jp:
name-kana:
company: "Alfa System"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Shikigami no Shiro}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Shikigami no Shiro]] (Alfa System)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | ??? || {{v|a1|5,999,970,630}} || 二番の男 || January 27th, 2014 (Arcadia May 2014) / [https://twitter.com/cb235/status/427819988586483712 Twitter] || || [http://www.nicovideo.jp/watch/sm22779253 Niconico]
            |-
            | Fumiko O.V. || {{v|b1|5,612,215,820}} || 二番の男 || Arcadia July 2005 || || [http://www.nicovideo.jp/watch/sm9204136 Niconico]
            |-
            | Hyuga Gennojo || {{v|c1|5,153,877,600}} || ACF || Arcadia March 2007 || ||
            |-
            | Kim Dae-jeong || {{v|d1|6,082,674,010}} || 二番の男 || Arcadia July 2005 || || [http://www.nicovideo.jp/watch/sm9348221 Niconico]
            |-
            | Kuga Kotaro || {{v|e1|4,921,100,370}} || ERT || Arcadia March 2007 || ||
            |-
            | Yuuki Sayo || {{v|f1|6,658,167,510}} || ON! || Arcadia June 2008 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2001_017_%E5%BC%8F%E7%A5%9E%E3%81%AE%E5%9F%8E JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=17924 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Shikigami no Shiro II

name: "Shikigami no Shiro II"
name-jp:
name-kana:
company: "Alfa System"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Shikigami no Shiro II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Shikigami no Shiro II]] (Alfa System)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Chibi Fumiko || {{v|a1|5,683,519,890}} || BBA || JHA May 2018 || ||
            |-
            | Fumiko O.V. || {{v|b1|5,460,319,890}} || 松木 || Arcadia January 2005 || ||
            |-
            | Hyuga Gennojo || {{v|c1|6,252,394,990}} || Hige-SADAM || Arcadia April 2004 || superplay DVD ||
            |-
            | Kim Dae-jeong || {{v|d1|6,891,249,320}} || T.Y || Arcadia February 2005 || ||
            |-
            | rowspan="2" | Kuga Kotaro
            | {{v|e1|6,529,866,050}} || 颪 || Arcadia April 2004 || highest score Arcade, superplay DVD ||
            |-
            | 6.605.831.440 || 旗本たいくつ	 || June 24, 2015 / Replay || highest score Gamecube || [http://www.nicovideo.jp/watch/sm26558823 Niconico]
            |-
            | Niigi G.B. || {{v|f1|6,667,763,600}} || T³-CYR-WIZ || Arcadia April 2004 || superplay DVD ||
            |-
            | Roger Sasuke || {{v|g1|6,558,937,500}} || Dame K.K || Arcadia April 2004 || superplay DVD ||
            |-
            | Yuuki Sayo || {{v|h1|7,103,884,810}} || Yusemi SWY || Arcadia April 2004 || superplay DVD ||
            |-
            | [2 Player]|| {{v|i1|6,818,608,670}} || WSM-Y.S.333 & DGR || Arcadia June 2004 || used Kuga Kotaro & Roger Sasuke ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2003_026_%E5%BC%8F%E7%A5%9E%E3%81%AE%E5%9F%8EII JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=135 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Shikigami no Shiro III

name: "Shikigami no Shiro III"
name-jp:
name-kana:
company: "Alfa System"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Shikigami no Shiro III}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Shikigami no Shiro III]] (Alfa System)
            |-
            ! Character !! Type !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Batu Harai || Type II || {{v|a1|11,637,117,760}} || KDK-Takeyuki || Arcadia January 2007 || ||
            |-
            | Emilio Stanburke || Type II || {{v|b1|10,067,979,710}} || EOT || Arcadia November 2006 || superplay DVD ||
            |-
            | Fumiko O.V. || Type II || {{v|c1|9,850,534,640}} || コーハン北尾 || Arcadia November 2006 || superplay DVD ||
            |-
            | rowspan="2" | Hyuga Gennojo
            | Type I || {{v|d1|9,206,345,010}} || XIQLO || October 13th, 2013 / Replay || || [https://youtu.be/rdCWa9HECqU Youtube]
            |-
            | Type II || {{v|e1|9,862,512,570}} || Hige-SADAM || Arcadia October 2006 || superplay DVD ||
            |-
            | Ise Nagino || Type II || {{v|f1|11,415,626,810}} || T³-CYR-WIZ || Arcadia November 2006 || superplay DVD ||
            |-
            | rowspan="2" | Kim Mihee
            | Type I || {{v|g1|10,547,590,060}} || TZW-ART? || October/November 2006 || superplay DVD ||
            |-
            | Type II || {{v|h1|11,407,026,000}} || IML-星白金-YUJ || Arcadia November 2006 || superplay DVD ||
            |-
            | Kirishima Reika || Type II || {{v|i1|11,104,038,960}} || Yusemi SWY || Arcadia November 2006 || superplay DVD ||
            |-
            | Kuga Kotaro || Type I || {{v|j1|10,091,260,570}} || 颪 || Arcadia October 2006 || superplay DVD ||
            |-
            | Munchausen || Type II || {{v|k1|9,521,164,850}} || 三茶鮫 || JHA April 2018 / [https://twitter.com/PaperWeight/status/998214487625760769 Twitter] || ||
            |-
            | Roger Sasuke || Type II || {{v|l1|10,800,693,810}} || Dame K.K || Arcadia December 2006 || ||
            |-
            | [2 Player] || - || {{v|m1|12,101,705,530}} || IML-星白金-YUJ & T³-CYR-WIZ || Arcadia November 2006 || used Batu Harai & Nagino Ise ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2006_032_%E5%BC%8F%E7%A5%9E%E3%81%AE%E5%9F%8EIII JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=18288 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Shippu Mahou Daisakusen

name: "Shippu Mahou Daisakusen"
name-jp:
name-kana:
company: "Raizing / 8ing"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Shippu Mahou Daisakusen}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Shippu Mahou Daisakusen]] (Raizing / 8ing)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-<section begin=shippumd-bornnam/>
            | Bornnam || {{v|a1|2,249,007}} || G.M.C.説教T.H(的) || Arcadia October 2000 || ||<section end=shippumd-bornnam/>
            |-<section begin=shippumd-bulgin/>
            | Bul-Gin || {{v|b1|2,044,117}} || G.M.C.説教T.H(的) || Arcadia September 2000 || ||<section end=shippumd-bulgin/>
            |-<section begin=shippumd-chitta/>
            | Chitta || {{v|c1|2,090,177}} || G.M.C.説教T.H(的) || Arcadia September 2000 || ||<section end=shippumd-chitta/>
            |-
            |<section begin=shippumd-gain/> Gain || {{v|d1|2,134,237}} || 説教MLK || Arcadia September 2000 || ||<section end=shippumd-gain/>
            |-<section begin=shippumd-honestjohn/>
            | Honest John || {{v|e1|2,253,077}} || G.M.C.説教T.H(的) || Arcadia November 2000 || ||<section end=shippumd-honestjohn/>
            |-<section begin=shippumd-kickle/>
            | Kickle & Laycle || {{v|f1|2,195,127}} || 説教MLK || Arcadia September 2000 || ||<section end=shippumd-kickle/>
            |-<section begin=shippumd-miyamoto/>
            | rowspan="2" | Miyamoto
            | {{v|g1|2,265,006}} || Project A-Ko ||  June 18th, 2016 / [https://twitter.com/BKo_han_/status/744307952840998912 Twitter] [https://shmups.system11.org/viewtopic.php?p=1193501#p1193501 Shmups Forum] || played on Wolfmame 161 || [https://youtu.be/J7AMjtvKSW8 Youtube]
            |-
            | {{v|h1|2,262,137}} || 説教MLK || Arcadia September 2000 || ||<section end=shippumd-miyamoto/>
            |-<section begin=shippumd-nirvana/>
            | Nirvana || {{v|i1|2,121,287}} || G.M.C.説教T.H(的) || Arcadia December 2000 || ||<section end=shippumd-nirvana/>
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=56902 Shmups Forum Hi-Score Topic]
            <section end=shippumd/>
            {% endverbatim %}


Shooting Love 2007

name: "Shooting Love 2007"
name-jp:
name-kana:
company: "Triangle Service / Oriental Soft"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Shooting Love 2007}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Shooting Love 2007]] (Triangle Service / Oriental Soft)
            |-
            ! Game !! Ship / Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="4" | Exzeal
            | Unit-1 || {{v|a1|34,740,390}} || TEN || Arcadia April 2011 || || [http://www.nicovideo.jp/watch/sm21917802 Niconico]
            |-
            | Unit-2 || {{v|b1|35,402,030}} || TEN || Arcadia August 2013 || || [http://www.nicovideo.jp/watch/sm22616697 Niconico]
            |-
            | Unit-3 || {{v|c1|24,362,980}} || JMB-CYR-せたろ~ || Arcadia February 2012 || ||
            |-
            | Unit-4 || {{v|d1|45,000,230}} || UMC || Arcadia December 2012 || ||
            |-
            | rowspan="3" | Shmups Skill Test
            | Mix Score Attack || {{v|e1|592,790}} || TEN || JHA January 2019 || Level 99 x3, autofire, Tank A: 256,080, Tank B: 149,930, 8bit: 186,780 ||
            |-
            | Single Player Trial || {{v|f1|795,160}} || PPR-KTL-IZK || JHA June 2019 || Rate 9.90, alternating autofire ||
            |-
            | Tank A Score Attack || {{v|g1|268,160}} || まつお || JHA January 2020 || Level 99, autofire ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2007_002_%E3%82%B7%E3%83%A5%E3%83%BC%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0%E3%83%A9%E3%83%96%E3%80%822007 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=50137 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Skull Fang

name: "Skull Fang"
name-jp:
name-kana:
company: "Data East"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Skull Fang}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Skull Fang]] (Data East)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | style="background: #B9D9B9 | Auto || style="background: #B9D9B9 | 20,222,600 || style="background: #B9D9B9 | S.N || style="background: #B9D9B9 | Arcadia July 1999 || style="background: #B9D9B9 | Sif || style="background: #B9D9B9 |
            |-
            | Chase || 31,425,400 || KDK-Takeyuki || Arcadia February 2009 || ||
            |}
            
            Note: Japanese scoreboard for Auto Mode closed September 2019 due to the detection of an infinite pattern.
            
            * [https://shmups.system11.org/viewtopic.php?t=56869 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sky Adventure

name: "Sky Adventure"
name-jp:
name-kana:
company: "SNK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sky Adventure}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Sky Adventure]] (SNK)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|11,504}} || Project A-Ko || November 1st, 2019 / [https://twitter.com/BKo_han_/status/1201379403994935298 Twitter] || played on Mame || [https://www.twitch.tv/videos/511431498 Twitch]
            |-
            | {{v|b1|11,471}} || KDK-Takeyuki || Arcadia March 2003 || ||
            |}
            {% endverbatim %}


Sky Kid

name: "Sky Kid"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sky Kid}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Sky Kid]] (Namco)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|1,259,590}} || SADAT X ||2013|| highest score PS2; double K.O. x5 || [https://youtu.be/9FyHTqG_BrY Youtube]
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=45255 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sky Kid Deluxe

name: "Sky Kid Deluxe"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sky Kid Deluxe}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Sky Kid Deluxe]] (Namco)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|1,276,830}} || 西利明&少女隊 || Micom Basic July 1986 || bomb attack x24 ||
            |}
            {% endverbatim %}


Sky Smasher

name: "Sky Smasher"
name-jp:
name-kana:
company: "Nihon System"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sky Smasher}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="6" | [[Sky Smasher]] (Nihon System)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || rowspan="2" | 10,000,000+α
            | NOJ || Gamest July 1991 || stage 10-4 ||
            |-
            | ON || 星白金-HIR || Micom Basic March 1991 || stage 10-4, no miss ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=55501 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sky Soldiers

name: "Sky Soldiers"
name-jp:
name-kana:
company: "ADK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sky Soldiers}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Sky Soldiers]] (ADK)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|6,579,460}} || hamami || February 22, 2016 (JHA March 2016) / [https://twitter.com/hamami999/status/701765839427493890 Twitter] || autofire ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1988_008_%E3%82%B9%E3%82%AB%E3%82%A4%E3%82%BD%E3%83%AB%E3%82%B8%E3%83%A3%E3%83%BC JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=49328 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Slap Fight

name: "Slap Fight"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Slap Fight}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Slap Fight]] (Toaplan)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | 9,999,990
            | SOL (SUPREME) || rowspan="2" | Gamest November 1986
            | loop 17 ||
            |-
            | STAC-AAY || loop 21 ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,990.
            
            * [https://shmups.system11.org/viewtopic.php?t=38634 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sol Divide

name: "Sol Divide"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sol Divide}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Sol Divide]] (Psikyo)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Kashon || {{v|a1|5,546,600}} || 大猿王 || Arcadia March 1999 || ||
            |-
            | Tyora || {{v|b1|5,328,600}} || おさる || Arcadia May 2001 || 1st loop 2.71m ||
            |-
            | Vorg || {{v|c1|5,423,400}} || SYG-SINO || Arcadia September 2002 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=30862 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sonic Boom

name: "Sonic Boom"
name-jp:
name-kana:
company: "Sega"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sonic Boom}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Sonic Boom]] (Sega)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 10,000,000+α || OAM-MRX(R) || Arcadia September 2006 || ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=59020 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sonic Wings

name: "Sonic Wings"
name-jp:
name-kana:
company: "Video System"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sonic Wings}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Sonic Wings]] (Video System)
            |-
            ! Ship / Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | AJ-37 / Kohful || {{v|a1|1,785,000}} || KDK-Takeyuki || JHA August 2016 || ||
            |-
            | AV-8 / Villiam || {{v|b1|1,715,900}} || D.I || JHA January 2020 || missed steel towers x2 ||
            |-
            | F-14 / Keith || {{v|c1|1,770,200}} || AXIOM-ZZZ || JHA September 2020 || autofire ||
            |-
            | F-15 / Mao || {{v|d1|1,589,700}} || みっしー || JHA April 2017 || ||
            |-
            | F-18 / Keaton || {{v|e1|1,706,400}} || D.I || JHA July 2017 || rocket x2 ||
            |-
            | FSX / Hien || {{v|f1|1,642,700}} || D.I || JHA May 2017 || rocket x2, missed steel towers x2 ||
            |-
            | IDS / Lord River || {{v|g1|1,763,100}} || D.I || JHA September 2017 || rocket x2 ||
            |-
            | JAS-39 / Tee-Bee || {{v|h1|1,807,500}} || D.I || JHA February 2020 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1992_005_%E3%82%BD%E3%83%8B%E3%83%83%E3%82%AF%E3%82%A6%E3%82%A3%E3%83%B3%E3%82%B0%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=31802 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sonic Wings 2

name: "Sonic Wings 2"
name-jp:
name-kana:
company: "Video System"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sonic Wings 2}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Sonic Wings 2]] (Video System)
            |-
            ! Ship / Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | A-10 / Silver || {{v|a1|3,161,300}} || HKR || Gamest August 1995 (Micom Basic August 1995) || final bosses: Lar, Mambo ||
            |-
            | AV-8 / Bobby || {{v|b1|2,973,500}} || D.I || Arcadia May 2009 || final bosses: Tenuki, Lar ||
            |-
            | F-117 / Keaton || {{v|c1|2,994,400}} || D.I || Arcadia April 2009 || final bosses: Lar, Tenuki ||
            |-
            | F-14 / Cindy&Ellen || {{v|d1|2,994,100}} || D.I || Arcadia July 2009 || final bosses: Lar x2 ||
            |-
            | rowspan="2" | F-15 / Mao Mao
            | {{v|e1|3,339,600}} || Project A-Ko || August 20th, 2015 / [https://shmups.system11.org/viewtopic.php?p=1125856#p1125856 Shmups Forum] ||  final bosses: Lar, Mambo; played on Shmupmame 4.2 || [https://youtu.be/VEtRBybEL48 Youtube]
            |-
            | {{v|f1|2,922,200}} || D.I || Arcadia June 2009 || final bosses: Lar, Tenuki ||
            |-
            | FSX / Hien || {{v|g1|2,939,600}} || D.I || Arcadia June 2009 || ||
            |-
            | YF-23 / Spanky || {{v|h1|2,968,000}} || D.I || Arcadia July 2009 || final bosses: Lar, Tenuki ||
            |-
            | Rafale / Angela || {{v|i1|3,185,900}} || HKR || Gamest November 1995 (Micom Basic November 1995) || final bosses: Lar, Mambo ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=33163 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sonic Wings 3

name: "Sonic Wings 3"
name-jp:
name-kana:
company: "Video System"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sonic Wings 3}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Sonic Wings 3]] (Video System)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Alex || {{v|a1|3,653,700}} || ☆CAT'S-WXW || Gamest September 1996 || ||
            |-
            | The Blazers || {{v|b1|3,693,900}} || ☆CAT'S-WXW || Gamest September 1996 || ||
            |-
            | Chaika&Pooshika || {{v|c1|3,496,000}} || ☆CAT'S-WXW || Gamest September 1996 || ||
            |-
            | Ellen&Cincia || {{v|d1|3,480,500}} || みここ旧ver || Arcadia July 2010 || ||
            |-
            | Hien || {{v|e1|3,952,200}} || みここ旧ver || Arcadia July 2009 || ||
            |-
            | Keaton || {{v|f1|3,984,500}} || みここ旧ver || Arcadia September 2009 || ||
            |-
            | Kowful&River || {{v|g1|3,517,500}} || みここ旧ver || Arcadia October 2010 || ||
            |-
            | Malcolm || {{v|h1|4,058,300}} || みここ旧ver || Arcadia May 2010 || ||
            |-
            | Mao Mao || {{v|i1|5,574,800}} || みここ旧ver || Arcadia August 2009 || ||
            |-
            | Whity || {{v|j1|3,576,800}} || ☆CAT'S-WXW || Gamest June 1998 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=33163 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Sonic Wings Limited

name: "Sonic Wings Limited"
name-jp:
name-kana:
company: "Video System"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Sonic Wings Limited}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Sonic Wings Limited]] (Video System)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|3,706,800}} || GGE-VXV || Arcadia December 2002 || used Mao Mao, 2p side, 0L remaining ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=55924 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Soukyugurentai

name: "Soukyugurentai"
name-jp:
name-kana:
company: "Raizing / 8ing"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Soukyugurentai}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Soukyugurentai]] (Raizing / 8ing)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Houga || {{v|a1|45,623,061}} || hamami || August 29th, 2016 (JHA September 2016) / [https://twitter.com/hamami999/status/770266022066565120 Twitter] || max bomb x21 ||
            |-
            | Shiden || {{v|b1|42,446,213}} || 中野龍三 || Arcadia May 2006 || max bomb x23 ||
            |-
            | Toryu || {{v|c1|43,407,875}} || KTL-NAL || July 18th, 2016 (JHA July 2016) / [https://twitter.com/Homestay_Akira/status/755044554244366337 Twitter] || max bomb x25 ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1996_007_%E8%92%BC%E7%A9%B9%E7%B4%85%E8%93%AE%E9%9A%8A JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?p=1207408 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Space Bomber

name: "Space Bomber"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Space Bomber}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Space Bomber]] (Psikyo)
            |-
            ! Version !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | A || {{v|a1|10,740,300}} || 山本 || Arcadia December 2003 || ||
            |-
            | rowspan="2" | B
            | {{v|b1|12,252,000}} || CYR-あきにゃ || February 26th, 2017 / [https://twitter.com/mendokusee1/status/835806771008548866 Twitter] || ||
            |-
            | {{v|c1|11,857,900}} || 山本 || Arcadia July 2005 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=55934 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Space Invaders Anniversary

name: "Space Invaders Anniversary"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Space Invaders Anniversary}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Space Invaders Anniversary]] (Taito)
            |-
            ! colspan="2" | Mode
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | Space Invaders 3D
            | Basic Version || {{v|a1|53,820}} || SG-ELF || Arcadia July 2004 || ||
            |-
            | Extra Version || {{v|b1|22,090}} || SG-ELF || Arcadia July 2004 || ||
            |}
            {% endverbatim %}


SRD: Super Real Darwin

name: "SRD: Super Real Darwin"
name-jp:
name-kana:
company: "Data East"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|SRD: Super Real Darwin}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="6" | [[SRD: Super Real Darwin]] (Data East)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="3" | 10,000,000+α
            | NOVEMBER KELLY || rowspan="3" | Micom Basic February 1988
            | stage 17-1 ||
            |-
            | CBK-(わ) || stage 16-2 ||
            |-
            | INFINITE-FLY || stage 17-5 ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            {% endverbatim %}


Stagger 1

name: "Stagger 1"
name-jp:
name-kana:
company: "Afega"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Stagger 1}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Stagger 1]] (Afega)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|9,007,800}} || ほむB || Arcadia January 2013 || 1L remaining, Oliver, autofire ||
            |}
            {% endverbatim %}


Star Force

name: "Star Force"
name-jp:
name-kana:
company: "Tehkan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Star Force}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Star Force]] (Tehkan)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|90,000,900}} || SGP-SV-TNK || December 27th, 2009 / [https://sites.google.com/site/starforcemegaforce Blog] || playtime ~17h ||
            |-
            | ON || 99,999,900 || MadGiwa || April 7th, 2019 || streamed live on Twitch, highest score Arcade Archives (PS4) || [https://www.twitch.tv/videos/407526188 Twitch 1] [https://www.twitch.tv/videos/407526345 2]
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=64492 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Storm Blade

name: "Storm Blade"
name-jp:
name-kana:
company: "Visco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Storm Blade}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Storm Blade]] (Visco)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|7,045,500}} || 戦国人 || Arcadia May 2007 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=12039 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Strania: The Stella Machina

name: "Strania: The Stella Machina"
name-jp:
name-kana:
company: "G.Rev"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Strania: The Stella Machina}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Strania: The Stella Machina]] (G.Rev)
            |-
            ! Ship !! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="6" | Strania
            | rowspan="2" | Normal
            | 15,944,630 || rowspan="2" | LevelFix
            | Arcadia January 2013 ||highest score Arcade || 
            |-
            | 15,950,590 || 2012 / XBL ranking || highest score Xbox 360 || [http://www.nicovideo.jp/watch/sm18982006 Niconico]
            |-
            | rowspan="2" | Hard
            | 16,762,910 || rowspan="2" | LevelFix
            | Arcadia March 2013 || highest score Arcade ||
            |-
            | 16,841,510 || 2016 / XBL ranking || highest score Xbox 360 || [http://www.nicovideo.jp/watch/sm28383797 Niconico]
            |-
            | rowspan="2" | Expert
            | 16,750,600 || rowspan="2" | LevelFix
            | 2017 / superplay DVD|| ||
            |-
            | 16,636,410 || Arcadia March 2013 || ||
            |-
            | rowspan="5" | Vower
            | rowspan="2" | Normal
            | 17,320,780 || りぶ || Arcadia June 2013 || highest score Arcade ||
            |-
            | 17,324,850 || LevelFix || XBL ranking || highest score Xbox 360 ||
            |-
            | rowspan="2" | Hard
            | 18,551,720 || rowspan="2" | LevelFix
            | Arcadia June 2012 || highest score Arcade ||
            |-
            | 18,759,480 || June 14th, 2012 / XBL ranking [https://twitter.com/level_fix/status/213196264693710848 Twitter] || highest score Xbox 360 ||
            |-
            | Expert || 18,809,670 || LevelFix || July 6th, 2012 (Arcadia October 2012) / [https://twitter.com/level_fix/status/221191641619369985 Twitter] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2011_014_%E6%98%9F%E9%9C%9C%E9%8B%BC%E6%A9%9F%E3%82%B9%E3%83%88%E3%83%A9%E3%83%8B%E3%82%A2_Ver.1.11 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=36135 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Strikers 1945

name: "Strikers 1945"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Strikers 1945}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Strikers 1945]] (Psikyo)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Bf-109 || {{v|a1|2,355,000}} || PPR-KTL-IZK || March 3rd, 2016 (JHA March 2016) / [https://twitter.com/DeepBlueNoiz/status/705305593460822017 Twitter] || ||
            |-
            | P-38 Lightning || {{v|b1|2,350,400}} || 戦国人 || Arcadia February 2007 || 1.98m after 2-5 ||
            |-
            | P-51 Mustang || {{v|c1|2,318,300}} || KTL-EL2 || Arcadia March 2003 || ||
            |-
            | Shinden || {{v|d1|2,324,400}} || KTL-EL2 || Arcadia May 1999 || ||
            |-
            | rowspan="2" | Spitfire
            | {{v|e1|2,326,700}} || WC. || August 7th, 2010 / [http://ranking.niyaozao.com/#/rank/9?_k=87i0xi Chinese Leaderboard] || 1st loop 1.18m ||
            |-
            | {{v|f1|2,275,100}} || hamami || February 20th, 2016 (JHA March 2016) / [https://twitter.com/hamami999/status/701041368135630848 Twitter] || ||
            |-
            | Zero || {{v|g1|2,301,900}} || J.G.K-ALL (副) || Arcadia January 2007 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1995_009_%E3%82%B9%E3%83%88%E3%83%A9%E3%82%A4%E3%82%AB%E3%83%BC%E3%82%BA1945 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=51578 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Strikers 1945 II

name: "Strikers 1945 II"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Strikers 1945 II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Strikers 1945 II]] (Psikyo)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Flying Pancake || {{v|a1|3,500,700}} || Y.Saito || November 12th, 2017 (JHA November 2017) / [https://twitter.com/Y_Saito_DX/status/929677455152918528 Twitter] || ||
            |-
            | Fockewulf || {{v|b1|3,412,000}} || M.T || Arcadia June 2012 || ||
            |-
            | rowspan="2" | Hayate
            | {{v|c1|3,467,900}} || H.J (PASTA) || June 26th, 2020 / [https://twitter.com/AkatronicsRetro/status/1276504677727657984 Twitter] [http://cafe.daum.net/shooting/810/19190 OCC Official Cafe] || ||
            |-
            | {{v|d1|3,434,400}} || M.T || JHA April 2020 || ||
            |-
            | Lightning || {{v|e1|3,401,300}} || Y.Saito || Arcadia April 2013 || ||
            |-
            | rowspan="2" | Mosquito
            | {{v|f1|3,482,100}} || DBS || September 7th, 2019 / [https://twitter.com/dbsqawsedrftgyh/status/1170381061684989952 Twitter] || ||
            |-
            | {{v|g1|3,339,300}} || alcoholic || December 20th, 2018 (JHA January 2019) / [https://twitter.com/kin_alcoholic/status/1075745519895339008 Twitter] || 1st loop 1.62m, used 4 bombs ||
            |-
            | Shinden || {{v|h1|3,304,100}} || M.T || Arcadia November 2007 || 1st loop 1.593m ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1997_008_%E3%82%B9%E3%83%88%E3%83%A9%E3%82%A4%E3%82%AB%E3%83%BC%E3%82%BA1945II JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=182 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Strikers 1945 Plus

name: "Strikers 1945 Plus"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Strikers 1945 Plus}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Strikers 1945 Plus]] (Psikyo)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,837,500}} || WC. || August 10th, 2019 / [https://twitter.com/ps_x91/status/1160509020081278977 Twitter] [http://ranking.niyaozao.com/#/rank/12?_k=gm3a43 Chinese Leaderboard] || Flying Pancake ||
            |-
            | {{v|b1|2,778,600}} || 前田愛 || Arcadia October 2001 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1999_036_%E3%82%B9%E3%83%88%E3%83%A9%E3%82%A4%E3%82%AB%E3%83%BC%E3%82%BA1945_%E3%83%97%E3%83%A9%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=11995 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Strikers 1999

name: "Strikers 1999"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Strikers 1999}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Strikers 1999]] (Psikyo)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | AV-8 Harrier || 3,359,000 || KDK-Takeyuki || Arcadia April 2003 || Double x1 ||
            |-
            | F-117 Stealth || 3,398,000 || 近くて遠い340万 || Arcadia October 2002 || ||
            |-
            | rowspan="3" | F-22 Raptor
            | 3,511,200 || DBS || December 7th, 2016 / [https://twitter.com/dbsqawsedrftgyh/status/806545233303334913 Twitter] || ||
            |-
            | 3,463,000 || Y.C || August 26th, 2010 / [http://cafe.daum.net/shooting/810/17405 OCC Official Cafe] || ||
            |-
            | 3,394,300 || 両替士 || Arcadia May 2010 || ||
            |-
            | F-4 Phantom II || 3,432,200 || CYS-SAK || October 30th, 2016 (JHA November 2016) / [https://twitter.com/1ka2no394285ki/status/792748345756221440 Twitter] || ||
            |-
            | F/A-18 Super Hornet || 3,372,700 || ZCM-FCM || Arcadia August 2002 || ||
            |-
            | rowspan="3" | X-36
            | 3,601,800 || CYS-SAK || February 17th, 2018 / [https://twitter.com/1ka2no394285ki/status/964894291767144449 Twitter] || played at home ||
            |-
            | 3,589,300 || H.J (PASTA) || January 15th, 2020 / [https://imgur.com/PkZxIbm Image] || ||
            |-
            | 3,578,200 || CYS-SAK || October 8th, 2017 (JHA October 2017) / [https://twitter.com/1ka2no394285ki/status/917052533238935552 Twitter] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1999_016_%E3%82%B9%E3%83%88%E3%83%A9%E3%82%A4%E3%82%AB%E3%83%BC%E3%82%BA1999 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=56620 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Super Xevious

name: "Super Xevious"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Super Xevious}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Super Xevious]] (Namco)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | 9,999,990
            | AYK・FDL || rowspan="2" | Micom Basic August 1984
            | ||
            |-
            | パオ || ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,990.
            
            * [https://shmups.system11.org/viewtopic.php?t=39729 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Syvalion

name: "Syvalion"
name-jp:
name-kana:
company: "Taito"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Syvalion}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Syvalion]] (Taito)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Basic || {{v|a1|14,194,420}} || SSC-VAP || Arcadia November 2006 || ||
            |-
            | Real Combat || {{v|b1|24,433,640}} || G.M.C.INI || Gamest August 1991 || ||
            |}
            {% endverbatim %}


Task Force Harrier

name: "Task Force Harrier"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Task Force Harrier}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Task Force Harrier]] (NMK)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="20" | 10,000,000+α
            | TYRANT-ひむ || rowspan="20" | Micom Basic January 1990
            | stage 4-1 ||
            |-
            | MIRAGE-MAX (ちょーやり組) || stage 3-2 ||
            |-
            | FGD-Sir || stage 3-4 ||
            |-
            | EXCEL-RVS-NBG! || stage 3-1 ||
            |-
            | EXGANDER || stage 3-5 ||
            |-
            | (R)-NBG || stage 3-1 ||
            |-
            | VAG-KIA || stage 3-1 ||
            |-
            | WOP || stage 3-1 ||
            |-
            | 長瀬の使者(松井だますな!) || stage 3-1 ||
            |-
            | TRM-LYN(に) || stage 3-1 ||
            |-
            | DIVINE || stage 3-1 ||
            |-
            | KAIN || stage 3-3 ||
            |-
            | さるかっぱOKP || stage 3-2 ||
            |-
            | G.M.C.EST || stage 3-2 ||
            |-
            | Lum || stage 3-4 ||
            |-
            | INDICK-たか || stage 4-2 ||
            |-
            | P.O MIU(セ) || ||
            |-
            | SURPASSER TSU || stage 4-1 ||
            |-
            | からあげ弁当くん || loop 3 ||
            |-
            | SUR-Y.T || loop 3 ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=39000 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Tatakae! Big Fighter

name: "Tatakae! Big Fighter"
name-jp:
name-kana:
company: "Nichibutsu"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Tatakae! Big Fighter}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Tatakae! Big Fighter]] (Nichibutsu)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|9,057,900}} || ビッグファイト倶楽部 || Arcadia October 2012 || ||
            |}
            
            Note: Japanese scoreboard closed due to the detection of an infinite pattern.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1989_001_%E6%88%A6%E3%81%88%EF%BC%81%E3%83%93%E3%83%83%E3%82%B0%E3%83%95%E3%82%A1%E3%82%A4%E3%82%BF%E3%83%BC JHA Leaderboard]
            {% endverbatim %}


Tatsujin / Truxton

name: "Tatsujin / Truxton"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Tatsujin / Truxton}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Tatsujin]] / Truxton (Toaplan)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | style="background: #B9D9B9;" rowspan="11" | 10,000,000+α
            | style="background: #B9D9B9;" | SPREAM-I.Z || style="background: #B9D9B9;" rowspan="11" | Gamest January 1989
            | style="background: #B9D9B9;" | stage 8-1 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | G.M.C.-M.Aその他2名 || style="background: #B9D9B9;" | stage 7-5 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | G.M.C.-ひむ || style="background: #B9D9B9;" | stage 7-5 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | JAG–HRO–AFC-WOP || style="background: #B9D9B9;" | stage 7-5 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | URX-緑の少年 || style="background: #B9D9B9;" | stage 8-1 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | ペットン || style="background: #B9D9B9;" | stage 8-5 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | TEAM 大道芸 (仮) R-I || style="background: #B9D9B9;" | stage 8-5 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | Sniper-MIU || style="background: #B9D9B9;" | stage 7-5 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | G.M.C.-N.K || style="background: #B9D9B9;" | stage 8-1 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | G.M.C.-CROSS || style="background: #B9D9B9;" | stage 7-5 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | G.M.C.-H.S.A || style="background: #B9D9B9;" | stage 7-4 || style="background: #B9D9B9;" |
            |-
            | {{v|a1|51,833,690}} || DBS || December 27th, 2009 (Arcadia December 2009) / [https://twitter.com/dbsqawsedrftgyh/status/703975143249305602 Twitter] || stage 32-5, autofire ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=53008 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Tatsujin Ou / Truxton II

name: "Tatsujin Ou / Truxton II"
name-jp: "達人王"
name-kana: "たつじんおう"
company: "Toaplan"
counterstop:
    score: "10,000,000+α"
    type: soft
needs-work: true

scores:
  - score: "10,000,000+α"
    player: "SPK(お)"
    sources:
      - name: Gamest
        date: "1999-03"
    comments:
      - "stage 8-2"

description: "Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000."

links:
  - url: https://shmups.system11.org/viewtopic.php?t=34858
    title: Shmups Forum Hi-Score Topic

Tenkomori Shooting

name: "Tenkomori Shooting"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Tenkomori Shooting}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Tenkomori Shooting]] (Namco)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Easy || {{v|a1|985,120}} || ずば || Arcadia December 2010 || ||
            |-
            | Medium || {{v|b1|1,989,720}} || HND-ヅバ番 || Arcadia February 2000 || ||
            |-
            | Hard || {{v|c1|3,110,990}} || C-PLAY-岩ピン || Gamest June 1999 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1998_014_%E3%81%A6%E3%82%93%E3%81%93%E3%82%82%E3%82%8A%E3%82%B7%E3%83%A5%E3%83%BC%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0 JHA Leaderboard]
            {% endverbatim %}


Tenseiryu / Saint Dragon

name: "Tenseiryu / Saint Dragon"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Tenseiryu / Saint Dragon}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Tenseiryu]] / Saint Dragon (NMK)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|25,727,700}} || TZW-ART? || JHA July 2020 / [https://twitter.com/TZW_guile/status/1295030987441582080 Twitter] || No miss, autofire ||
            |}
            
            Note: Gamest magazine (September 1989) lists a score of 25,764,100 by FACILITY-ARIS. This score was deemed impossible in JHA issue July 2020 and subsequently removed from the database. [https://twitter.com/JHA_information/status/1294983587700174849 Read the official statement here].
            
            * [https://shmups.system11.org/viewtopic.php?t=15717 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Terra Cresta

name: "Terra Cresta"
name-jp:
name-kana:
company: "Nichibutsu"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Terra Cresta}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Terra Cresta]] (Nichibutsu)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="5" | 10,000,000+α
            | EXCALIBUR || rowspan="5" | Micom Basic January 1986
            | playtime 9h 5m ||
            |-
            | FUN || playtime 9h 40m ||
            |-
            |両替町BROS || playtime 9h 40m ||
            |-
            | LMT.RGB || score 10,016,100 ||
            |-
            | CPM闘幻狂NIN || playtime 9h 25m ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=28531 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Terra Force

name: "Terra Force"
name-jp:
name-kana:
company: "Nichibutsu"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Terra Force}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Terra Force]] (Nichibutsu)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,585,300}} || SKY || Arcadia July 2003 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=9817 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


The Great Ragtime Show / Boogie Wings

name: "The Great Ragtime Show / Boogie Wings"
name-jp:
name-kana:
company: "Data East"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|The Great Ragtime Show / Boogie Wings}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[The Great Ragtime Show]] / Boogie Wings (Data East)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|4,354,850}} || ザ・YMN || Gamest August 1998 (Micom Basic September 1998) || 2L remaining, autofire ||
            |}
            {% endverbatim %}


Thunder Blaster / Lethal Thunder

name: "Thunder Blaster / Lethal Thunder"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Thunder Blaster / Lethal Thunder}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="6" | [[Thunder Blaster]] / Lethal Thunder (Irem)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|9,999,990}} || DGRS ネッシー君 || Gamest May 1992 || ||
            |-
            | ON || {{v|b1|9,999,990}} || HID-CYR || Gamest March 1992 || ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,990.
            
            * [https://shmups.system11.org/viewtopic.php?t=59562 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Thunder Cross

name: "Thunder Cross"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Thunder Cross}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Thunder Cross]] (Konami)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            |  style="background: #B9D9B9;" rowspan="29" | 10,000,000+α
            | style="background: #B9D9B9;" | EXCEED || style="background: #B9D9B9;" rowspan="29" | Gamest January 1989
            | style="background: #B9D9B9;" | stage 9-5 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | WHIM-M.A || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | E-SWAT'S FIRE BURST C || style="background: #B9D9B9;" | stage 9-5 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | E.C || style="background: #B9D9B9;" | stage 7-7 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | SPREAM-SAKI || style="background: #B9D9B9;" | stage 9-7, 24L remaining || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | R.S しょうちゃん || style="background: #B9D9B9;" | stage 9-7 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | FIN || style="background: #B9D9B9;" | stage 11-1 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | H.S || style="background: #B9D9B9;" | stage 9-1 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | OGS || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | ILG-K·M || style="background: #B9D9B9;" | stage 8-5, 27L remaining || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | URX-TEC || style="background: #B9D9B9;" | stage 8-6, 39L remaining || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | PAC || style="background: #B9D9B9;" | stage 8-6, 31L remaining || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | URX-緑の少年 || style="background: #B9D9B9;" | stage 8-6, 22L remaining || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | ZKS || style="background: #B9D9B9;" | stage 8-7 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | YUJ || style="background: #B9D9B9;" | stage 9-1 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | MAD(た) || style="background: #B9D9B9;" | stage 8-6 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | TURKEY || style="background: #B9D9B9;" | stage 8-3 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | INGS-T·H || style="background: #B9D9B9;" | stage 8-7 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | FREEDOM-南野狂 Y.T || style="background: #B9D9B9;" | stage 9-1 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | HCS KAW || style="background: #B9D9B9;" | stage 8-5 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | HCS ALES || style="background: #B9D9B9;" | stage 8-7, 23L remaining || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | G.M.C. HSA || style="background: #B9D9B9;" | stage 8-7 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | GMC.乱鳥.MU || style="background: #B9D9B9;" | stage 8-6 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | BUI. || style="background: #B9D9B9;" | stage 9-6 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | SNIPER MIU || style="background: #B9D9B9;" | stage 9-3 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | SNIPER NOM || style="background: #B9D9B9;" | stage 8-5 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | SNIPER MTR || style="background: #B9D9B9;" | stage 10-1 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | SNIPER APR || style="background: #B9D9B9;" | stage 8-7 || style="background: #B9D9B9;" |
            |-
            | style="background: #B9D9B9;" | NJP-MGF-NYA || style="background: #B9D9B9;" | stage 9-5, 26L remaining || style="background: #B9D9B9;" |
            |-
            | {{v|a1|100,695,560}} || Y.Y.Y || December 21st, 2018 / [https://twitter.com/yyy830527/status/1076063891669409794 Twitter] || stage 70-7, 54L remaining, playtime 25h 27m, superplay DVD ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=60060 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Thunder Cross II

name: "Thunder Cross II"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Thunder Cross II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Thunder Cross II]] (Konami)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|8,757,450}} || MMZ-BOM(ま) || Gamest May 1992 || stage 9-7 ||
            |-
            | style="background: #B9D9B9;" | ON || style="background: #B9D9B9;" | 10.000.000+α || style="background: #B9D9B9;" | MFC-GAUT-NAI || style="background: #B9D9B9;" | Gamest October 1993 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" |
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=60060 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Thunder Dragon

name: "Thunder Dragon"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Thunder Dragon}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="6" | [[Thunder Dragon]] (NMK)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="3" | OFF
            | rowspan="6" | 10,000,000+α
            | DEVICE-PHANTOM || rowspan="3" | Gamest January 1992
            | ||
            |-
            | GOL屋(ま)(真) || stage 24 ||
            |-
            | DGRS ネッシー君 || stage 18 ||
            |-
            | rowspan="3" | ON
            |  G.M.C.うた || rowspan="3" | Gamest December 1991
            | ||
            |-
            | G.M.C.DAN || ||
            |-
            | 星白金-HIR || stage 18 ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=49739 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Thunder Dragon 2

name: "Thunder Dragon 2"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Thunder Dragon 2}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Thunder Dragon 2]] (NMK)
            |-
            ! Player Side !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 1P || {{v|a1|6,447,380}} || DBS || May 4th, 2014 (Arcadia August 2014) / [https://twitter.com/dbsqawsedrftgyh/status/1135879691611459584 Twitter] || ||
            |-
            | 2P || {{v|b1|6,247,270}} || 両替士 || Arcadia October 2004 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=47008 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Thunder Force AC

name: "Thunder Force AC"
name-jp:
name-kana:
company: "Tecnosoft"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Thunder Force AC}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Thunder Force]] AC (Tecnosoft)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|2,411,980}} || 中井鯉絵(こ)(ん)(で)(ら) || Gamest May 1991 || 11L remaining ||
            |-
            | rowspan="2" | ON
            | {{v|b1|2,414,620}} || PEG || July 6th, 2016 / [https://shmups.system11.org/viewtopic.php?p=1196746#p1196746 Shmups Forum] || 11L remaining, played on Mame || [https://youtu.be/JTqKvA092pA Youtube]
            |-
            | {{v|c1|2,406,570}} || RPM-FKD || Arcadia March 2002 || 11L remaining ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=27396 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Tiger Heli

name: "Tiger Heli"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Tiger Heli}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Tiger Heli]] (Toaplan)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|9,999,990}} || [various players] || || ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,990.
            
            * [https://shmups.system11.org/viewtopic.php?t=34665 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Tokushu Butai U.A.G.

name: "Tokushu Butai U.A.G."
name-jp:
name-kana:
company: "Seta"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Tokushu Butai U.A.G.}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Tokushu Butai U.A.G.]] (Seta)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|1,603,800}} || TFG-WIN || Gamest February 1988 || ||
            |-
            | {{v|b1|2,004,900}} || P || 2013? || played on MAME32 0.61 || [https://youtu.be/xeT40s7M97s Youtube]
            |}
            
            Note: Japanese scoreboard closed March 1988 due to the detection of an infinite pattern.
            {% endverbatim %}


Triggerheart Exelica

name: "Triggerheart Exelica"
name-jp:
name-kana:
company: "Warashi"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Triggerheart Exelica}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Triggerheart Exelica]] (Warashi)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Cruel Tear || {{v|a1|741,052,512}} || PELA || Arcadia November 2007 || ||
            |-
            | Exelica || {{v|b1|768,067,269}} || PELA || Arcadia August 2008 / [https://web.archive.org/web/20150521162750/http://www.nakanoryuzo.sakura.ne.jp/GG/exe091227.jpg Image] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2006_020_%E3%83%88%E3%83%AA%E3%82%AC%E3%83%BC%E3%83%8F%E3%83%BC%E3%83%88_%E3%82%A8%E3%82%B0%E3%82%BC%E3%83%AA%E3%82%AB JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=19754 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Trigon

name: "Trigon"
name-jp: トライゴン
name-kana: とらいごん
company: "Konami"
needs-work: true

scores:
  - score: 2,724,560
    player: AION-LSD (SP.)-ALPHA
    autofire: OFF
    sources:
      - name: Gamest
        date: "1990-11"
    comments:

  - score: 2,753,920
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2017-10"
    comments:

  - score: 2,787,960
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2018-01"
    comments:

  - score: 2,801,420
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2018-02"
    comments:

  - score: 2,834,630
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2018-03"
    comments:

  - score: 2,841,820
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2018-07"
    comments:

  - score: 2,865,800
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2018-08"
    comments:

  - score: 2,874,590
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2018-10"
    comments:

  - score: 2,903,240
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2018-11"
    comments:

  - score: 2,904,870
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2018-12"
    comments:

  - score: 2,917,960
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2019-01"
    comments:

  - score: 2,925,930
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2019-02"
    comments:

  - score: 2,930,180
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2019-03"
    comments:

  - score: 2,939,450
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2019-04"
    comments:

  - score: 2,942,780
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2019-05"
    comments:

  - score: 2,972,110
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2019-06"
    comments:

  - score: 2,982,380
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: JHA
        date: "2019-09"
    comments:

  - score: 2,986,500
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: Twitter
        date: "2019-09-26"
        url: https://twitter.com/wsm_tuii3/status/1177227588365778944
      - name: JHA
        date: "2019-10"
    comments:
    attributes:
        is-current-record: true

  - score: 3,002,410
    player: WSM-ツィ~まる。
    autofire: OFF
    sources:
      - name: Twitter
        date: "2020-12-18"
        url: https://twitter.com/wsm_tuii3/status/1339912490835066883
    comments:

  - score: 2,980,200
    player: 大学院中退記念
    autofire: ON
    sources:
      - name: Arcadia
        date: "2001-12"
    comments:

  - score: 2,981,990
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: JHA
        date: "2019-06"
    comments:

  - score: 2,988,070
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: JHA
        date: "2020-07"
    comments:

  - score: 3,004,080
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: JHA
        date: "2019-08"
    comments:

  - score: 3,006,520
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: JHA
        date: "2019-11"
    comments:

  - score: 3,009,550
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: JHA
        date: "2019-12"
    comments:

  - score: 3,018,100
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: JHA
        date: "2020-01"
    comments:

  - score: 3,022,220
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: JHA
        date: "2020-02"
    comments:

  - score: 3,022,480
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: JHA
        date: "2020-03"
    comments:

  - score: 3,025,790
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: JHA
        date: "2020-04"
    comments:

  - score: 3,030,290
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: JHA
        date: "2020-06"
    comments:

  - score: 3,030,680
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: JHA
        date: "2020-07"
    comments:

  - score: 3,032,180
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: Twitter
        date: "2020-08-02"
        url: https://twitter.com/wsm_tuii3/status/1289912647253520384
      - name: JHA
        date: "2020-08"
    comments:

  - score: 3,035,050
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: Twitter
        date: "2020-10-04"
        url: https://twitter.com/wsm_tuii3/status/1312743713630646273
      - name: JHA
        date: "2020-10"
    comments:
    attributes:
        is-current-record: true

  - score: 3,035,060
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: Twitter
        date: "2020-10-25"
        url: https://twitter.com/wsm_tuii3/status/1320338489112547334
    comments:

  - score: 3,037,120
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: Twitter
        date: "2020-12-03"
        url: https://twitter.com/wsm_tuii3/status/1334459867591892993
    comments:

  - score: 3,040,180
    player: WSM-ツィ~まる。
    autofire: ON
    sources:
      - name: Twitter
        date: "2020-12-10"
        url: https://twitter.com/wsm_tuii3/status/1337013901527982086
    comments:

links:
  - url: https://wiki.denfaminicogamer.jp/highscore/1990_009_%E3%83%88%E3%83%A9%E3%82%A4%E3%82%B4%E3%83%B3
    title: JHA Leaderboard
  - url: https://shmups.system11.org/viewtopic.php?t=60057
    title: Shmups Forum Hi-Score Topic

layout:
    sort:
        scores:
            autofire: asc

Trizeal

name: "Trizeal"
name-jp:
name-kana:
company: "Triangle Service / Oriental Soft"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Trizeal}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Trizeal]] (Triangle Service / Oriental Soft)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|5,868,470}} || R. || JHA March 2016 || autofire, used XII ship ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2004_025_%E3%83%88%E3%83%A9%E3%82%A4%E3%82%B8%E3%83%BC%E3%83%AB JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=21196 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Trouble ☆ Witches AC

name: "Trouble ☆ Witches AC"
name-jp:
name-kana:
company: "Studio Siesta"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Trouble ☆ Witches AC}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="7" | [[Trouble ☆ Witches]] AC (Studio Siesta)
            |-
            ! Difficulty !! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="8" | Dokidoki
            | Aqua || {{v|a1|104,109,610}} || れっさ~ || Arcadia September 2012 || ||
            |-
            | Conon || {{v|b1|101,889,740}} || れっさ~ || Arcadia November 2012 || ||
            |-
            | Louis || {{v|c1|107,533,980}} || れっさ~ || Arcadia September 2012 || ||
            |-
            | Lyla || {{v|d1|96,895,380}} || みはる~ん || Arcadia November 2012 || ||
            |-
            | Pril || {{v|e1|102,471,360}} || れっさ~ || Arcadia November 2012 || ||
            |-
            | Sies || {{v|f1|109,702,480}} || れっさ~ || Arcadia September 2012 || ||
            |-
            | Symphy || {{v|g1|103,702,940}} || れっさ~ || Arcadia November 2012 || ||
            |-
            | Yuuki || {{v|h1|105,686,610}} || れっさ~ || Arcadia September 2012 || ||
            |-
            | rowspan="8" | Gerogero
            | Aqua || {{v|i1|148,028,920}} || BBA || Arcadia July 2014 || ||
            |-
            | Conon || {{v|j1|138,077,060}} || れっさ~ || Arcadia January 2013 || ||
            |-
            | Louis || {{v|k1|144,490,170}} || れっさ~ || Arcadia January 2013 || ||
            |-
            | Lyla || {{v|l1|135,915,330}} || みはる~ん || Arcadia March 2013 || ||
            |-
            | Pril || {{v|m1|161,901,280}} || BBA || Arcadia April 2015 || ||
            |-
            | Sies || {{v|n1|165,547,920}} || れっさ~ || Arcadia August 2013 || ||
            |-
            | Symphy || {{v|o1|153,914,890}} || BBA || Arcadia April 2015 || ||
            |-
            | Yuuki || {{v|p1|145,977,190}} || BBA || Arcadia April 2015 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2009_002_%E3%83%88%E3%83%A9%E3%83%96%E3%83%AB%E2%98%86%E3%82%A6%E3%82%A3%E3%83%83%E3%83%81%E3%83%BC%E3%82%BAAC JHA Leaderboard]
            {% endverbatim %}


Turbo Force

name: "Turbo Force"
name-jp:
name-kana:
company: "Video System"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Turbo Force}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Turbo Force]] (Video System)
            |-
            ! Version !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | New || 1,856,700 || rowspan="2" | まつお
            | Arcadia April 2015 || stage 3-4 ||
            |-
            | Old || 2,111,200 || Arcadia November 2014 || stage 3-6 ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1991_003_%E3%82%BF%E3%83%BC%E3%83%9C%E3%83%95%E3%82%A9%E3%83%BC%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=61518 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Twin Eagle

name: "Twin Eagle"
name-jp:
name-kana:
company: "Seta"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Twin Eagle}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Twin Eagle]] (Seta)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|3,689,500}} || DAZUNI本田はでしのでし! || Micom Basic July 1988 || 1p side ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=28525 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Twin Eagle II

name: "Twin Eagle II"
name-jp:
name-kana:
company: "Seta"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Twin Eagle II}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Twin Eagle II]] (Seta)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|7,295,870}} || ぱるとりっ君(ぱ) || Gamest October 1994 || ||
            |-
            | ON || {{v|b1|7,899,140}} || MRU-キビシー || Gamest November 1994 (Micom Basic November 1994) || ||
            |}
            {% endverbatim %}


TwinBee Yahhoo!

name: "TwinBee Yahhoo!"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|TwinBee Yahhoo!}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[TwinBee Yahhoo!]] (Konami)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Practice || 9,136,200 || HPN-K.N || Arcadia April 2003 || ||
            |-
            | Normal || style="background: #B9D9B9;" | 8,043,170 || style="background: #B9D9B9;" | RBN-H.M || style="background: #B9D9B9;" | Micom Basic November 1995 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" | 
            |-
            | rowspan="2" | Special
            | 18,521,420 || みっしー || June 2015? || ||
            |-
            | style="background: #B9D9B9;" | 18,203,180 || style="background: #B9D9B9;" | GGE-K.N || style="background: #B9D9B9;" | Micom Basic November 1995 || style="background: #B9D9B9;" | || style="background: #B9D9B9;" | 
            |}
            
            Note: Japanese scoreboard for Normal and Special modes closed due to the detection of an infinite pattern.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1995_003_%E3%83%84%E3%82%A4%E3%83%B3%E3%83%93%E3%83%BC%E3%83%A4%E3%83%83%E3%83%9B%E3%83%BC%EF%BC%81 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=51575 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Twinkle Star Sprites

name: "Twinkle Star Sprites"
name-jp:
name-kana:
company: "ADK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Twinkle Star Sprites}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Twinkle Star Sprites]] (ADK)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|4,007,569}} || NMT8.2i || Arcadia August 2001 || 0L remaining, Mevious Max 62 Hits, autofire ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=34876 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


U.S. Navy

name: "U.S. Navy"
name-jp:
name-kana:
company: "Capcom"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|U.S. Navy}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[U.S. Navy]] (Capcom)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|2,623,470}} || 悲しいねSAD (死)(亡) || Gamest June 1991 || Shoplifting x 10 Perfect x 9 ||
            |-
            | ON || {{v|b1|2,972,460}} || イマサラT.O || May 17, 2020 (JHA May 2020) / [https://twitter.com/i_ma_sa_RA/status/1262018889631711235 Twitter] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1990_005_U.S.%E3%83%8D%E3%82%A4%E3%83%93%E3%83%BC JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=11308 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Uchuu Senkan Gomora / Bio-Ship Paladin

name: "Uchuu Senkan Gomora / Bio-Ship Paladin"
name-jp:
name-kana:
company: "UPL"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Uchuu Senkan Gomora / Bio-Ship Paladin}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Uchuu Senkan Gomora]] / Bio-Ship Paladin (UPL)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|1,460,520}} || G.M.C. R-I || ? || ||
            |-
            | ON || {{v|b1|1,474,120}} || WZH || Gamest March 1991 (Micom Basic March 1991) || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=53189 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Ultimate Ecology

name: "Ultimate Ecology"
name-jp:
name-kana:
company: "Capcom"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Ultimate Ecology}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Ultimate Ecology]] (Capcom)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|2,513,600}} || ZAC-Rister || Arcadia October 1999 || Biba 0 ||
            |-
            | ON || {{v|b1|2,571,400}} || ZAC-Rister || Gamest October 1998 || Biba 20k Rock 1,031,000 ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=59293 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Ultra Keibitai / Ultra X Weapons

name: "Ultra Keibitai / Ultra X Weapons"
name-jp:
name-kana:
company: "Seta"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Ultra Keibitai / Ultra X Weapons}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Ultra Keibitai]] / Ultra X Weapons (Seta)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|9,999,999}} || [various players] || || ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,999.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1995_005_%E3%82%A6%E3%83%AB%E3%83%88%E3%83%A9%E8%AD%A6%E5%82%99%E9%9A%8A JHA Leaderboard]
            {% endverbatim %}


Under Defeat

name: "Under Defeat"
name-jp:
name-kana:
company: "G.Rev"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Under Defeat}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Under Defeat]] (G.Rev)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|7,693,060}} || えす☆さま || JHA December 2019 || 0L 5B remaining ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2005_009_%E3%82%A2%E3%83%B3%E3%83%80%E3%83%BC%E3%83%87%E3%82%A3%E3%83%95%E3%82%A3%E3%83%BC%E3%83%88 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=41470 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


USAAF Mustang

name: "USAAF Mustang"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|USAAF Mustang}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[USAAF Mustang]] (NMK)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="8" | 10,000,000+α
            | KSY☆吉浦 || rowspan="8" | Gamest September 1990
            | stage 6-8 ||
            |-
            | R-1 || stage 8-7 ||
            |-
            | PIA-冬眠中PJM || stage 7-7 ||
            |-
            | Disp-..A (人) || stage 7-4 ||
            |-
            | LCN修斗 (蹴) || stage 8-4 ||
            |-
            | KSGな人 (魔) || stage 7-8 ||
            |-
            | IML-YUJ || stage 9-5 ||
            |-
            | MIROR || stage 9-3 ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=39000 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


V-V / Grind Stormer

name: "V-V / Grind Stormer"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|V-V / Grind Stormer}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[V-V]] / Grind Stormer (Toaplan)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Normal || {{v|a1|37,079,650}} || KizM || Arcadia April 2015 || 1st loop 10.30m ||
            |-
            | Bomber || {{v|b1|69,489,820}} || ツィ~まる。 || May 2014? || 1st loop 4.21m ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1993_002_V%E3%83%BB%E3%83%95%E3%82%A1%E3%82%A4%E3%83%96 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=35012 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Valtric

name: "Valtric"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Valtric}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Valtric]] (NMK)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|1,049,520}} || ACU-EPS || Micom Basic April 1987 || stage 2-3 ||
            |-
            | {{v|b1|1,487,190}} || GMC.えるす || Micom Basic April 1987 || stage 2-1 ||
            |}
            
            Note: It has been reported that the furthest a player has ever gotten is actually stage 3-1 ([https://igcc.jp/kenjo-03-01/ Source]).
            
            * [https://shmups.system11.org/viewtopic.php?t=59663 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Varth

name: "Varth"
name-jp:
name-kana:
company: "Capcom"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Varth}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Varth]] (Capcom)
            |-
            ! Autofire !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || {{v|a1|13,130,800}} || A.BOY || November 13th, 2016 (JHA November 2016) / [https://twitter.com/hiropom_76/status/797727978612396032 Twitter] || 0L remaining Double K.O. x4, Podless x29 ||
            |-
            | ON || {{v|b1|15,345,000}} || よどさん || October 28, 2018 (JHA November 2018) || ||
            |}
            
            Note: Higher scores have been posted in various places but these were all played on non-default extend settings, e.g. 1st 600,000 and then Every 1,400,000, which is the extend setting when both DIP 4 and 5 are set to OFF. However, the [https://imgur.com/fNf7qch PCB manual] states that the default extend setting is 1st 600,000, 2nd 2,000,000, and 3rd 4,500,000 with DIP switches 4 ON and 5 OFF.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1992_001_%E3%83%90%E3%83%BC%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=52339 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Vasara

name: "Vasara"
name-jp:
name-kana:
company: "Visco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Vasara}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Vasara]] (Visco)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Saika Magoichi || {{v|a1|1,803,400}} || TEN || September 2013 || 170 kills || [https://www.nicovideo.jp/watch/sm21917825 Niconico]
            |-
            | Sanada Yukimura || {{v|b1|1,636,050}} || SKY || Arcadia October 2004 || 159 kills ||
            |-
            | Shima Sakon || {{v|c1|1,511,800}} || DAB.S || Arcadia September 2004 || 144 kills ||
            |}
            
            Note: Japanese scoreboard closed due to the detection of an infinite pattern.
            
            * [https://shmups.system11.org/viewtopic.php?t=1549 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Vasara 2

name: "Vasara 2"
name-jp:
name-kana:
company: "Visco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Vasara 2}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Vasara 2]] (Visco)
            |-
            ! Character !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Akechi Mitsuhide || {{v|a1|32,111,920}} || SOF-WTN || September 29th, 2018 (JHA October 2018) / [https://twitter.com/sof_wtn/status/1046022667445272576 Twitter] || ||
            |-
            | Momochi Sandayu || {{v|b1|32,150,400}} || ISO / Niboshi || February 15th, 2018 (JHA February 2018) / [https://twitter.com/niboooji/status/964126758910943233 Twitter] || ||
            |-
            | Seiryubo Zuifu || {{v|c1|30,735,090}} || hamami || August 12th, 2018 (JHA August 2018) / [https://twitter.com/hamami999/status/1028658691090731009 Twitter] || ||
            |-
            | Takeda Nobukatsu || {{v|d1|30,899,620}} || hamami || July 14th, 2018 (JHA July 2018) / [https://twitter.com/hamami999/status/1018151784097853441 Twitter] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2001_022_%E5%A9%86%E8%A3%9F%E7%BE%852 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=1549 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Viewpoint

name: "Viewpoint"
name-jp:
name-kana:
company: "Aicom / Yumekobo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Viewpoint}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Viewpoint]] (Aicom / Yumekobo)
            |-
            ! Autofire || Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | OFF || 4,661,420 || rowspan="3" | IMU-AT2
            | Arcadia July 2003 || 1-Up item x2, max bonus star x28, nazo x10, suicide x6 ||
            |-
            | rowspan="2" | ON
            | 5,634,200 || September 11th, 2018 / [https://twitter.com/imu_at2/status/1039369776294846465 Twitter] || before final boss 3.97m ||
            |-
            | 5,459,370 || Arcadia September 2013 || 1-Up item x3, max bonus star x32, nazo x14, suicide x7 ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=36319 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Vimana

name: "Vimana"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Vimana}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="6" | [[Vimana]] (Toaplan)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="52" | 10,000,000+α
            | SSG || rowspan="52" | Gamest September 1991
            | stage 8-3 ||
            |-
            | あつし || stage 6-6 ||
            |-
            | BIN || stage 6-6 ||
            |-
            | エルポレナレフ ぷか P || 711% ||
            |-
            | GION || stage 8-1 ||
            |-
            | STEAL-CYR-MER || stage 7-5, 686% ||
            |-
            | D.S 吟 || 682% ||
            |-
            | DEUS YAS || 660% ||
            |-
            | GACHAPIN || stage 8-3 ||
            |-
            | M || stage 8-2 ||
            |-
            | MIRAGE-MAX ち || stage 7-5 ||
            |-
            | ComPati || ||
            |-
            | 東ワキ長所 DON || ||
            |-
            | TYR-ひむ || stage 7-5 ||
            |-
            | 春太郎 || 736% ||
            |-
            | R.K. || 644% ||
            |-
            | HST-(お)SPT || ||
            |-
            | JAG-道草-AXI || ||
            |-
            | KVC々木場 || ||
            |-
            | R·G·B-STC || 648% ||
            |-
            | SKG 渋 || ||
            |-
            | G·M·C MIE || ||
            |-
            | N.ARC-IZA T || ||
            |-
            | N.ARC-MIT || ||
            |-
            | MST || ||
            |-
            | SBK 血祭り君 || stage 7-5 ||
            |-
            | M·K || ||
            |-
            | DES-ILM || ||
            |-
            | NOVIE だ || ||
            |-
            | 桂鳥 || ||
            |-
            | ANP || 663% ||
            |-
            | レーザーになった なかちゃん! || ||
            |-
            | すさまG-R カモネ(コ) || stage 7-4 ||
            |-
            | [龍] の牙総統ーAUT || stage 7-3 ||
            |-
            | E.T [龍] || stage 7-6 ||
            |-
            | OR-からみ [は] || stage 7-2 ||
            |-
            | DEVICE-SEI || stage 7-3, 648% ||
            |-
            | NSG-A-BOY [ど] || ||
            |-
            | HYAKU-京城屋 || ||
            |-
            | K.N [ど] || 650% ||
            |-
            | SVR-WIZ (えび) || ||
            |-
            | SHC-せっきん || 732% ||
            |-
            | 焼肉パワーHSK || 716% ||
            |-
            | くまプー, Y.Y || stage 7-2 ||
            |-
            | G.M.C.知恵なき子G塔 || ||
            |-
            | SUR-文 || ||
            |-
            | TSU || ||
            |-
            | JDA-RGL || ||
            |-
            | ACA-VI || stage 9-2 ||
            |-
            | DIO || ||
            |-
            | YSD || ||
            |-
            | P.O || ||
            |-
            | style="background: #DFDFDF;" | 100,000,000 || style="background: #DFDFDF;" | YAE-BRIGHT || style="background: #DFDFDF;" | December 2005? || style="background: #DFDFDF;" | loop 58, 5848%, playtime 26h || style="background: #DFDFDF;" |
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 100,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=24628 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Viper Phase 1

name: "Viper Phase 1"
name-jp:
name-kana:
company: "Seibu Kaihatsu / Moss"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Viper Phase 1}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | Viper Phase 1
            |-
            ! Version !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="2" | New
            | 16,816,397 || rowspan="2" | NER
            | 2005 / superplay DVD || NMNB, stage 4 99%, 7B remaining ||
            |-
            | 16,754,423 || Arcadia February 2004 || NMNB, stage 4 99%, 7B remaining ||
            |-
            | Old || 12,334,602 || ZBL-らじあめ拝 || May 9th, 2018 (JHA May 2018) / [https://twitter.com/kuni_kouyama/status/994204042288140288 Twitter] || 100% x7, 1 miss ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2005_035_%E9%9B%B7%E9%9B%BBIII JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=56616 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Wangan Sensou / Desert War

name: "Wangan Sensou / Desert War"
name-jp:
name-kana:
company: "NMK"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Wangan Sensou / Desert War}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Wangan Sensou]] / Desert War (NMK)
            |-
            ! Mode !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Beginner || {{v|a1|9,155,600}} || G.M.C.げえむのごんちゃん || Arcadia September 2011 || ||
            |-
            | Average || {{v|b1|13,226,700}} || KDK-Takeyuki || JHA May 2018 || ||
            |-
            | Expert || {{v|c1|19,917,600}} || KDK-Takeyuki || JHA September 2018 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1995_007_%E6%B9%BE%E5%B2%B8%E6%88%A6%E4%BA%89 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=63981 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


War of Aero

name: "War of Aero"
name-jp:
name-kana:
company: "Yang Chen"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|War of Aero}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[War of Aero]] (Yang Chen)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|2,455,200}} || hamami || February 20th, 2018 (JHA March 2018) / [https://twitter.com/hamami999/status/965882618901229568 Twitter] || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1993_013_%E3%82%A6%E3%82%A9%E3%83%BC%E3%82%AA%E3%83%96%E3%82%A8%E3%82%A2%E3%83%AD JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=44924 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Wonder Planet

name: "Wonder Planet"
name-jp:
name-kana:
company: "Data East"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Wonder Planet}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Wonder Planet]] (Data East)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|10,285,830}} || FUL || Micom Basic December 1987 || ||
            |}
            {% endverbatim %}


X-Multiply

name: "X-Multiply"
name-jp:
name-kana:
company: "Irem"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|X-Multiply}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[X-Multiply]] (Irem)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|19,024,400}} || KDK-Takeyuki || JHA December 2018 || suicide x6 ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/1989_023_X%E3%83%9E%E3%83%AB%E3%83%81%E3%83%97%E3%83%A9%E3%82%A4 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=37703 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Xevious

name: "Xevious"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Xevious}}
            {| class="wikitable" style="background: #DFDFDF; text-align: center"
            |-
            ! colspan="5" | [[Xevious]] (Namco)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | rowspan="11" | 9,999,990
            | 小林覚 || rowspan="11" | Micom Basic January 1984
            | ||
            |-
            | 諸星あたる || ||
            |-
            | もぎちゃん || ||
            |-
            | 伊達剛 || ||
            |-
            | M.SHUNYA || ||
            |-
            | 青野 || ||
            |-
            | 梅本孝治 || ||
            |-
            | 松村健一 || ||
            |-
            | 山本新 || ||
            |-
            | 田中弘毅 || ||
            |-
            | 波田尚之 || ||
            |}
            
            Note: Scoreboard closed after the achievement of the counterstop at 9,999,990.
            
            * [https://shmups.system11.org/viewtopic.php?t=39729 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Xevious 3D/G

name: "Xevious 3D/G"
name-jp:
name-kana:
company: "Namco"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Xevious 3D/G}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Xevious 3D/G]] (Namco)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|7,371,110}} || KDK-Takeyuki || Arcadia July 2013 || ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=39729 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Xexex

name: "Xexex"
name-jp:
name-kana:
company: "Konami"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Xexex}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Xexex]] (Konami)
            |-
            ! Version !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Japan || {{v|a1|10,745,100}} || DBS || Arcadia September 2005 || glitch exploited ||
            |-
            | World || {{v|b1|5,192,700}} || DRP || before 2012 / [https://web.archive.org/web/20140407041443/http:/www9.plala.or.jp/nakanoryuzo/HS/RANK/0/1/ZEXEXKAIGAI.html 全国ハイスコア集計+α] || stage 4-2 ||
            |}
            
            Note: Besides various aspects of gameplay, one major difference between the two versions is that the Japan Version only has 2 loops while the World Version loops infinitely.
            
            * [https://wiki.denfaminicogamer.jp/highscore/1991_004_%E3%82%BC%E3%82%AF%E3%82%BB%E3%82%AF%E3%82%B9 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=3389 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


XII Stag

name: "XII Stag"
name-jp:
name-kana:
company: "Triangle Service / Oriental Soft"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|XII Stag}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[XII Stag]] (Triangle Service / Oriental Soft)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|14,327,060}} || R. || Arcadia June 2006 || superplay DVD ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?t=46230 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


XX Mission

name: "XX Mission"
name-jp:
name-kana:
company: "UPL"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|XX Mission}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[XX Mission]] (UPL)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 10,000,000+α || ECM-ペルシャ || Micom Basic November 1986 || ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            {% endverbatim %}


Yokushin: Giga Wing Generations

name: "Yokushin: Giga Wing Generations"
name-jp:
name-kana:
company: "Takumi"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Yokushin: Giga Wing Generations}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | Yokushin: [[Giga Wing Generations]] (Takumi)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Eagle || {{v|a1|29,620,015,483,358,048,940}} || DBS || October 13th, 2006 (Arcadia January 2007) / [https://twitter.com/dbsqawsedrftgyh/status/703972949821227008 Twitter] || ||
            |-
            | Grouse || {{v|b1|33,853,587,664,270,963,200}} || DBS || October 12th, 2006 (Arcadia January 2007) / [https://twitter.com/dbsqawsedrftgyh/status/703972949821227008 Twitter] || ||
            |-
            | Hawk || {{v|c1|36,508,703,765,249,195,220}} || DBS || October 15th, 2006 (Arcadia January 2007) / [https://twitter.com/dbsqawsedrftgyh/status/703973285415915520 Twitter] || ||
            |-
            | Robin || {{v|d1|37,827,320,237,132,742,960}} || DBS || October 15th, 2006 (Arcadia January 2007) / [https://twitter.com/dbsqawsedrftgyh/status/703973285415915520 Twitter] || ||
            |-
            | [Doubleplay] || {{v|e1|12,659,678,051,786,448,360}} || 服部 || Arcadia December 2005 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2004_009_%E7%BF%BC%E7%A5%9E JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=1412 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Zero Gunner

name: "Zero Gunner"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Zero Gunner}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Zero Gunner]] (Psikyo)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|1,703,300}} || JKP-RDX-寛千代 || Arcadia November 2000 || used AH1-SX, no miss / no bomb ||
            |}
            {% endverbatim %}


Zero Gunner 2

name: "Zero Gunner 2"
name-jp:
name-kana:
company: "Psikyo"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Zero Gunner 2}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="6" | [[Zero Gunner 2]] (Psikyo)
            |-
            ! Ship !! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | Apache || {{v|a1|3,932,600}} || V.T KAK || Arcadia February 2004 || ||
            |-
            | Comanche || {{v|b1|3,918,350}} || MGN-ひろせ || Arcadia June 2004 || ||
            |-
            | Hokum || {{v|c1|3,805,000}} || はむはむ || Arcadia April 2002 || ||
            |}
            
            * [https://wiki.denfaminicogamer.jp/highscore/2001_030_%E3%82%BC%E3%83%AD%E3%82%AC%E3%83%B3%E3%83%8A%E3%83%BC2 JHA Leaderboard]
            * [https://shmups.system11.org/viewtopic.php?t=28463 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Zero Wing

name: "Zero Wing"
name-jp:
name-kana:
company: "Toaplan"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Zero Wing}}
            {| class="wikitable" style="background: #B9D9B9; text-align: center"
            |-
            ! colspan="5" | [[Zero Wing]] (Toaplan)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | 10.000.000+α || HYT || Gamest June 1991 || stage 3-7, 10-Up x1 ||
            |}
            
            Note: Japanese scoreboard closed after the achievement of the target score of 10,000,000.
            
            * [https://shmups.system11.org/viewtopic.php?t=38614 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


Zing Zing Zip

name: "Zing Zing Zip"
name-jp:
name-kana:
company: "Allumer"
needs-work: true

layout:
    templates:
        game: |
            {% verbatim %}
            {{Anchor|Zing Zing Zip}}
            {| class="wikitable" style="text-align: center"
            |-
            ! colspan="5" | [[Zing Zing Zip]] (Allumer)
            |-
            ! Score !! Player !! Date / Source !! Comment !! Replay
            |-
            | {{v|a1|4,758,000}} || カミーユビンタ || Arcadia April 2002 || stage 4-3 ||
            |}
            
            * [https://shmups.system11.org/viewtopic.php?f=2&t=66050 Shmups Forum Hi-Score Topic]
            {% endverbatim %}


PREVIOUS DATA BELOW, PLEASE IGNORE

Global

Values defined in this section will apply to all the games in the database. Its main purpose is to reduce redundant translations for reocurring values (e.g. company names, common column names, ...).

<nowiki-x>

name: global

config:

   scores:
       group-by:
         - ship
         - mode
       num-previous: 0

layout:

   sort:
       games:
           company: asc
           name: asc
       scores:
           score: desc
   templates:
       games: |
           {% for game in games %}
           {% if game.template %}
           Template:Game.template
           {% else %}
           Template:Include('game')
           {% endif %}
           {% endfor %}
       game: |
colspan="Template:Game.headers" | Template:Game.properties.name
Template:Game.headers
           {% for columns in game.scores %}
Template:Columns
           {% endfor %}

translations:

 - property: company
   value: Cave
   value-jp: ケイブ
 - property: company
   value: Raizing / 8ing
   value-jp: ライジング / エイティング
</nowiki>


Akai Katana

<nowiki-x>

name: Akai Katana name-jp: 赤い刀 company: CAVE

layout:

   templates:
       game : |
Akai Katana
Ship Score Player Date / Source Comment Replay
Type 1
Sumire & Tsubaki
472,554,090 太菱 Arcadia July 2011
Type 2
Kikyou & Botan
454,324,700 LON Arcadia February 2012
Type 3
Suzuran & Shion
540,176,130 AKF Arcadia July 2012
           * Shmups Forum Hi-Score Topic
</nowiki>


Mushihimesama Futari v1.5

<nowiki-x>

name: Mushihimesama Futari 1.5 name-jp: 虫姫さまふたりVer 1.5 company: CAVE

scores:

 - player: ABI
   score: 530,358,660
   ship: Palm
   mode: Original
   weapon: Normal
   scored-date: "2008-01"
   source: Arcadia January 2008
 - player: ISO / Niboshi
   player-jp: にぼし
   score: 518,902,716
   ship: Palm
   mode: Original
   weapon: Abnormal
   scored-date: "2007"
   source: Superplay DVD
 - player: KTL-NAL
   score: 973,020,065
   ship: Palm
   mode: Maniac
   weapon: Abnormal
   scored-date: "2007-11"
   source: Arcadia November 2007
 - player: ABI
   score: 550,705,999
   ship: Reco
   mode: Original
   weapon: Normal
   scored-date: "2010-02"
   source: Blog
   comments:
     - 5L 0B remaining
     - "After stage 4: 273.7m"
 - player: ISO / Niboshi
   score: 538,378,364
   ship: Reco
   mode: Original
   weapon: Normal
   scored-date: "2007-10"
   source: Arcadia October 2007
 - player: yasu0219
   score: 454,386,226
   ship: Reco
   mode: Original
   weapon: Abnormal
   scored-date: "2009-12-12"
   source: Xbox rankings
   comments:
     - Highest score Xbox360
 - player: KTL-NAL
   score: 981,872,827
   ship: Palm
   mode: Maniac
   weapon: Abnormal
   scored-date: "2007-09"
   source: Superplay DVD
   comments:
     - 5L 2B remaining
     - "After stage 4: 693.8m"
 - player: fufufu
   score: 3,999,999,999
   ship: Reco
   mode: Ultra
   weapon: Normal
   scored-date: "2009-05-27"
   source: Arcadia August 2009
   comments:
     - 0L 0B remaining
     - "After stage 4: 2.205b"
   links:
     - url: https://
       name: Youtube
 - player: Clover-TAC
   score: 1,047,258,714
   ship: Reco
   mode: Maniac
   weapon: Normal
   scored-date: "2015-03"
   source: Arcadia March 2015
   comments:
     - 5L 2B remaining
     - "After stage 4: 745.1m"
 - player: rescue_STG
   score: 2,956,728,306
   ship: Palm
   mode: Ultra
   weapon: Normal
   scored-date: "2017-04-08"
   source: Xbox rankings
   comments:
     - Highest score Xbox360
   links:
     - url: https://
       name: Youtube
 - player: Dame K.K
   score: 3,999,999,999
   ship: Palm
   mode: Ultra
   weapon: Abnormal
   scored-date: "2008-03"
   source: Arcadia March 2008
   comments:
     - 1L 0B remaining
     - Highest score Arcade
 - player: KGM
   score: 3,999,999,999
   score-real: 4,263,416,356
   ship: Palm
   mode: Ultra
   weapon: Abnormal
   scored-date: "2013-07-24"
   source: Xbox rankings
   comments:
       - Highest score Xbox360
   links:
     - url: https://
       name: Youtube
 - player: lstze
   score: 3,266,405,598
   ship: Reco
   mode: Ultra
   weapon: Abnormal
   scored-date: "2014?"
   links:
     - url: https://
       name: Youtube

links:

 - url: https://example.org/some_link_id
   title: JHA Leaderboard
   title-jp: 日本ハイスコア協会
 - url: https://example.org/some_other_link
   title: Shmups Forum Hi-Score Topic

layout:

   columns:
     - label: Mode
       template: "Template:Mode"
       groupSameValues: true
     - label: Character
       template: "Template:Ship"
       groupSameValues: true
     - label: Style
       template: "Template:Weapon"
     - label: Score
       template: "Template:Score"
     - label: Player
       template: "Template:Player"
       groupSameValues: true
     - label: Date / Source
       template: "Template:Scored-date / Template:Source"
     - label: Comment
       template: "Template:Comments"
   sort:
       scores:
           mode: [ Original, Maniac, Ultra ]
           ship: [ Palm, Reco ]
           weapon: [ Normal, Abnormal ]
  1. Translations for the whole game (so you do not have to specify the same Japanese term within all the entries)

translations:

 - property: mode
   value: Original
   value-jp: オリジナルモード
 - property: mode
   value: Maniac
   value-jp: マニアックモード
 - property: mode
   value: Ultra
   value-jp: ウルトラモード
 - property: ship
   value: Reco
   value-jp: レコ
 - property: ship
   value: Palm
   value-jp: パルム
 - property: weapon
   value: Normal
   value-jp: ノーマル
 - property: weapon
   value: Abnormal
   value-jp: アブノーマル
</nowiki>

Ketsui

<nowiki-x>

name: "Ketsui: Kizuna Jigoku Tachi" name-jp: ケツイ ~絆地獄たち~ company: Cave

scores:

 - player: SPS
   score: 507,780,433
   ship: Type A
   mode: Omote
   scored-date: "2014-08"
   source: Arcadia August 2014
   comments:
     
 - player: SPS
   score: 481,402,383
   ship: Type B
   mode: Omote
   scored-date: "2014-11"
   source: Arcadia November 2014
   comments:
     - 6L 0B remaining
     - 1st loop 276m
 - player: GAN
   score: 569,741,232
   ship: Type B
   mode: Ura
   scored-date: "2016-03"
   source: JHA March 2016
   comments:
     - 6L remaining
 - player: SPS
   score: 583,614,753
   ship: Type A
   mode: Ura
   scored-date: "2014-05-27"
   source: Arcadia September 2014 / [https:// Twitter]
   comments:
     - 6L 0B remaining
     - 1st loop 285m

links:

 - url: https://example.org/some_link_id
   title: JHA Leaderboard
   title-jp: 日本ハイスコア協会
 - url: https://example.org/some_other_link
   title: Shmups Forum Hi-Score Topic

translations:

 - property: ship
   value: Type A
   value-en: Tiger Schwert
   value-jp: TYPE-A ティーゲルシュベルト
 - property: ship
   value: Type B
   value-en: Panzer Jäger
   value-jp: TYPE-B パンツァーイェーガー
 - property: mode
   value: Omote
   value-jp: 表2週
 - property: mode
   value: Ura
   value-jp: 裏2週

layout:

   columns:
     - label: Ship
       label-jp: 自機
       template: "Template:Ship"
       groupSameValues: true
     - label: Loop
       label-jp: 2週種
       template: "Template:Mode"
     - label: Score
       label-jp: スコア
       template: "Template:Score"
     - label: Player
       label-jp: プレイヤー
       template: "Template:Player"
       groupSameValues: true
     - label: Date / Source
       label-jp: 年月日 / 情報元
       template: "Template:Scored-date / Template:Source"
     - label: Comment
       label-jp: 備考
       template: "Template:Comments"
   sort:
       scores:
           ship: [ Type A, Type B ]
           mode: asc
</nowiki>


Great Mahou Daisakusen

<nowiki-x>

name: Great Mahou Daisakusen company: Raizing / 8ing

layout:

   templates:
       game : |
Great Mahou Daisakusen
Ship Score Player Date / Source Comment Replay
Birthday 83,743,680 Miku August 2nd, 2020 / [https:// Twitter] 107 items
66,693,110 JHA November 2019 107 items
Chitta 93,664,750 SOF-WTN August 8th, 2020 / [https:// Twitter] 108 items
83,195,810 JHA June 2020
Gain 80,528,610 Boredom July 1st, 2020 / [https:// Twitter] 108 items [https:// Youtube]
31,653,130 HTL-蕨ガイン見参 JHA June 2020
Golden 99,999,999 [101,033,460] Boredom February 13th, 2020 / [https:// Twitter] 108 items
14,925,200 磨弓 JHA July 2020
Grimlen 99,999,999 KDK-Takeyuki Arcadia July 2002 108 items
Karte 99,999,999 [100,571,630] ACR Archer November 17th, 2014 (Arcadia February 2015) / [https:// Twitter] 108 items [https:// Youtube]
Miyamoto 99,999,999 Clover-TAC JHA March 2016 108 items
99,999,999 [102,596,210] SOF-WTN February 3rd 2016 (JHA March 2016) / [https:// Twitter] 108 items
Solo Bang 99,999,999 Clover-TAC JHA July 2020 108 items, 2p side
           Note: Scoreboard closed after the achievement of the counterstop at 99,999,999.
           * JHA Leaderboard
           * Shmups Forum Hi-Score Topic
</nowiki>