Skip to content

Instantly share code, notes, and snippets.

@jsm174
Last active June 20, 2025 12:27
Show Gist options
  • Save jsm174/d8711b7ea4af4501090f96f1db808202 to your computer and use it in GitHub Desktop.
Save jsm174/d8711b7ea4af4501090f96f1db808202 to your computer and use it in GitHub Desktop.
Pinscape Pico Notes

Pinscape Pico Notes

A comprehensive guide for controlling Pinscape Pico devices using hidapitester from the command line.

Device Information

  • VID/PID: 1209:eaeb
  • Usage Page: 6 (Generic Device)
  • Usage: 0 (Undefined)
  • Report ID: 4 (Feedback Controller Interface)
  • Report Length: 64 bytes

Command Summary

Command Code Description Response
Device ID Query 0x01 Get device information Yes
Set Wall Clock 0x14 Set current date/time No
All Ports Off 0x20 Turn off all outputs No
Set Port Block 0x21 Set contiguous ports No
Set Output Ports 0x22 Set random ports No

1. Device Identification (0x01)

Query device information including unit number, name, port count, and hardware details.

Command

sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --open --send-output 4,0x01 --read-input

Response Format

[0]       = HID report ID (4)
[1]       = Command code (0x01)
[2]       = Unit number (1-16)
[3..34]   = Unit name (32-byte null-padded string)
[35..36]  = Protocol version (UINT16, little-endian)
[37..44]  = Hardware ID (8-byte binary string)
[45..46]  = Number of output ports (UINT16, little-endian)
[47..48]  = Plunger type (UINT16, little-endian)

Note: Always run this first to understand your device configuration and port count.


2. Set Wall Clock Time (0x14)

Sets the device's internal clock for time-of-day features like attract mode scheduling, power management, and event-based effects.

Format

Byte 1:   Command (0x14)
Byte 2-3: Year (UINT16, little-endian)
Byte 4:   Month (1-12)
Byte 5:   Day (1-31)
Byte 6:   Hour (0-23)
Byte 7:   Minute (0-59)
Byte 8:   Second (0-59)

Examples

# Set to June 17, 2025, 15:30:45
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --open --send-output 4,0x14,233,7,6,17,15,30,45

# Set to Christmas 2025, midnight
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --open --send-output 4,0x14,233,7,12,25,0,0,0

Important: Year is little-endian UINT16. For 2025: 233,7 (233 + 7×256 = 2025)


3. All Ports Off (0x20)

Emergency stop - immediately turns off all output ports.

Command

sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --open --send-output 4,0x20

4. Set Output Port Block (0x21)

Sets up to 60 contiguous output ports in a single command. Most efficient for updating ranges of consecutive ports.

Format

Byte 1: Command (0x21)
Byte 2: Number of ports to set
Byte 3: First port number (1-based)
Byte 4+: Port values (0-255)

Examples

# Set ports 1-3 to values 64, 128, 255
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --open --send-output 4,0x21,3,1,64,128,255

# Set ports 10-15 to full brightness
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --open --send-output 4,0x21,6,10,255,255,255,255,255,255

# Fade effect on ports 5-9
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --open --send-output 4,0x21,5,5,51,102,153,204,255

5. Set Output Ports (0x22)

Sets up to 30 randomly addressed ports in a single command. Most efficient for updating scattered individual ports.

Format

Byte 1: Command (0x22)
Byte 2: Number of ports to set
Byte 3: First port number (1-based)
Byte 4: First port value (0-255)
Byte 5: Second port number
Byte 6: Second port value
... (continue for up to 30 ports)

Examples

# Set single port 8 to maximum brightness
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --open --send-output 4,0x22,1,8,255

# Set multiple scattered ports
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --open --send-output 4,0x22,3,2,100,7,200,15,50

# Turn off specific ports
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --open --send-output 4,0x22,4,1,0,5,0,10,0,20,0

Monitoring and Debugging

Continuous Input Monitoring

# Monitor all device responses
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --timeout 1000 --open --read-input-forever

# Verbose monitoring with hex output
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --timeout 1000 --verbose --base 16 --open --read-input-forever

Device Discovery

# List all Pinscape Pico devices
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 --list-detail

# Get HID report descriptor
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 --open --get-report-descriptor

Combined Operations

# Full device setup: identify, set time, turn all off
sudo hidapitester --vidpid 1209:eaeb --usagePage 6 --usage 0 -l 64 --open \
  --send-output 4,0x01 --read-input \
  --send-output 4,0x14,233,7,6,17,15,30,0 \
  --send-output 4,0x20

Tips and Best Practices

Port Numbering

  • Ports are numbered starting from 1, not 0
  • Port values range from 0 (off) to 255 (maximum)

Efficiency

  • Use 0x21 for contiguous port ranges
  • Use 0x22 for scattered individual ports
  • DOF software automatically chooses the most efficient method

Initialization Sequence

  1. Device ID Query (0x01) - Learn port count and device info
  2. Set Wall Clock (0x14) - Optional, enables time-based features
  3. Configure outputs as needed

Wall Clock Use Cases

  • Attract Mode: Different patterns for day/night
  • Power Management: Auto-dimming during late hours
  • Event Effects: Holiday themes, birthday celebrations
  • Logging: Timestamp game sessions and usage analytics

Note

On macOS, accessing HID devices with usage page 0x06 and usage 0x00 (like Pinscape Pico) requires elevated permissions. You must run as sudo to communicate with the device.


HID Report Descriptor Analysis

This device presents as a composite HID device with three interfaces:

  1. Keyboard (Report ID 1) - Button/key inputs
  2. Consumer Control (Report ID 2) - Media control buttons
  3. Feedback Controller (Report ID 4) - DOF output control ⭐

The feedback controller interface uses:

  • Usage Page 6 (Generic Device)
  • Usage 0 (Undefined)
  • String descriptor: "PinscapeFeedbackController/X" (where X = protocol version)

Compiling Firmware on MacOS

#!/bin/bash
set -e

wget https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10-mac.tar.bz2
tar -xjf gcc-arm-none-eabi-10.3-2021.10-mac.tar.bz2
export PATH="$PWD/gcc-arm-none-eabi-10.3-2021.10/bin:$PATH"

git clone --recurse-submodules [email protected]:mjrgh/PinscapePico.git
cd PinscapePico/Firmware
export PICO_SDK_FETCH_FROM_GIT=1
cmake .
make -j4

sudo workaround (Ubuntu)

Create a new 99-pinscape-pico.rules file:

sudo vi /etc/udev/rules.d/99-pinscape-pico.rules

Add the following line:

SUBSYSTEM=="hidraw", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="eaeb", MODE="0660", GROUP="plugdev"

Add your user to the plugdev group:

sudo usermod -aG plugdev $USER
newgrp plugdev

Reload the udev rules:

sudo udevadm control --reload
sudo udevadm trigger

Then unplug and replug the USB device.

Wiring Test LED

IMG_6676 IMG_6675


DOF Config

ij_l7,0,0,0,0,0,0,0,L88 Blink fu500 fd550
test_basic,0,0,0,0,0,0,0,L88
test_fade,0,0,0,0,0,0,0,L88 fu500 fd550
test_blink,0,0,0,0,0,0,0,L88 Blink
test_both,0,0,0,0,0,0,0,L88 Blink fu500 fd550

References

Some content generated from DOF source code analysis. Commands tested on Pinscape Pico hardware.

@jsm174
Copy link
Author

jsm174 commented Jun 18, 2025

directoutputconfig51.ini:

[version]
version=5129
mindofversion=0.8

[Colors DOF]
Black=#000000FF
White=#FFFFFFFF
Red=#FF0000FF
Lime=#00FF00FF
Blue=#0000FFFF
Yellow=#FFFF00FF
Cyan=#00FFFFFF
Magenta=#FF00FFFF
Silver=#C0C0C0FF
Gray=#808080FF
Brown=#800000FF
Olive=#808000FF
Green=#008000FF
Purple=#800080FF
Teal=#008080FF
Navy=#000080FF
Dark_red=#8B0000FF
Firebrick=#B22222FF
Crimson=#DC143CFF
Tomato=#FF6347FF
Coral=#FF7F50FF
Indian_red=#CD5C5CFF
Light_coral=#F08080FF
Dark_salmon=#E9967AFF
Salmon=#FA8072FF
Light_salmon=#FFA07AFF
Orange_red=#FF4500FF
Dark_orange=#FF8C00FF
Orange=#FFA500FF
Gold=#FFD700FF
Dark_golden_rod=#B8860BFF
Golden_rod=#DAA520FF
Pale_golden_rod=#EEE8AAFF
Dark_khaki=#BDB76BFF
Khaki=#F0E68CFF
Yellow_green=#9ACD32FF
Dark_olive_green=#556B2FFF
Olive_drab=#6B8E23FF
Lawn_green=#7CFC00FF
Chart_reuse=#7FFF00FF
Green_yellow=#ADFF2FFF
Dark_green=#006400FF
Forest_green=#228B22FF
Lime_green=#32CD32FF
Light_green=#90EE90FF
Pale_green=#98FB98FF
Dark_sea_green=#8FBC8FFF
Medium_spring_green=#00FA9AFF
Spring_green=#00FF7FFF
Sea_green=#2E8B57FF
Medium_aqua_marine=#66CDAAFF
Medium_sea_green=#3CB371FF
Light_sea_green=#20B2AAFF
Dark_slate_gray=#2F4F4FFF
Dark_cyan=#008B8BFF
Aqua=#00FFFFFF
Light_cyan=#E0FFFFFF
Dark_turquoise=#00CED1FF
Turquoise=#40E0D0FF
Medium_turquoise=#48D1CCFF
Pale_turquoise=#AFEEEEFF
Aqua_marine=#7FFFD4FF
Powder_blue=#B0E0E6FF
Cadet_blue=#5F9EA0FF
Steel_blue=#4682B4FF
Corn_flower_blue=#6495EDFF
Deep_sky_blue=#00BFFFFF
Dodger_blue=#1E90FFFF
Light_blue=#ADD8E6FF
Sky_blue=#87CEEBFF
Light_sky_blue=#87CEFAFF
Midnight_blue=#191970FF
Dark_blue=#00008BFF
Medium_blue=#0000CDFF
Royal_blue=#4169E1FF
Blue_violet=#8A2BE2FF
Indigo=#4B0082FF
Dark_slate_blue=#483D8BFF
Slate_blue=#6A5ACDFF
Medium_slate_blue=#7B68EEFF
Medium_purple=#9370DBFF
Dark_magenta=#8B008BFF
Dark_violet=#9400D3FF
Dark_orchid=#9932CCFF
Medium_orchid=#BA55D3FF
Thistle=#D8BFD8FF
Plum=#DDA0DDFF
Violet=#EE82EEFF
Orchid=#DA70D6FF
Medium_violet_red=#C71585FF
Pale_violet_red=#DB7093FF
Deep_pink=#FF1493FF
Light_pink=#FFB6C1FF
Pink=#FFC0CBFF
Antique_white=#FAEBD7FF
Beige=#F5F5DCFF
Bisque=#FFE4C4FF
Corn_silk=#FFF8DCFF
Lemon_chiffon=#FFFACDFF
Light_golden_rod=#FAFAD2FF
Light_yellow=#FFFFE0FF
Saddle_brown=#8B4513FF
Sienna=#A0522DFF
Chocolate=#D2691EFF
Peru=#CD853FFF
Sandy_brown=#F4A460FF
Burly_wood=#DEB887FF
Tan=#D2B48CFF
Rosy_brown=#BC8F8FFF
Moccasin=#FFE4B5FF
Navajo_white=#FFDEADFF
Peach_puff=#FFDAB9FF
Misty_rose=#FFE4E1FF
Lavender_blush=#FFF0F5FF
Papaya_whip=#FFEFD5FF
Slate_gray=#708090FF
Light_slate_gray=#778899FF
Light_steel_blue=#B0C4DEFF
Lavender=#E6E6FAFF
Dim_gray=#696969FF
Dark_gray=#A9A9A9FF
Amber=#FFBF00FF

[TableVariables]
diner,flshemulo=AH100 AL0 AT0 AW19 SHPLetterD/flshemuli=AH100 AL20 AT0 AW19 SHPLetterI/flshemuc=AH100 AL40 AT0 AW19 SHPLetterN/flshemuri=AH100 AL60 AT0 AW19 SHPLetterE/flshemuro=AH100 AL80 AT0 AW19 SHPLetterR
tom,flshemulo=AH100 AL0 AT0 AW19 SHPLetterM/flshemuli=AH100 AL20 AT0 AW19 SHPLetterA/flshemuc=AH100 AL40 AT0 AW19 SHPLetterG/flshemuri=AH100 AL60 AT0 AW19 SHPLetterI/flshemuro=AH100 AL80 AT0 AW19 SHPLetterC
tomy,flshemulo=AH100 AL0 AT0 AW19 SHPLetterT/flshemuli=AH100 AL20 AT0 AW19 SHPLetterO/flshemuc=AH100 AL40 AT0 AW19 SHPLetterM/flshemuri=AH100 AL60 AT0 AW19 SHPLetterM/flshemuro=AH100 AL80 AT0 AW19 SHPLetterY
whirl,flshemulo = AH100 AL0 AT0 AW19 SHPLetterS / flshemuli = AH100 AL20 AT0 AW19 SHPLetterT / flshemuc = AH100 AL40 AT0 AW19 SHPLetterO / flshemuri = AH100 AL60 AT0 AW19 SHPLetterR / flshemuro = AH100 AL80 AT0 AW19 SHPLetterM
black100,playon=(W43=0)
pinupmenu,ON
serioussam,Godfather
goonies,flshemulo = AH100 AL0 AT0 AW19 SHPLetterS / flshemuli = AH100 AL20 AT0 AW19 SHPLetterL / flshemuc = AH100 AL40 AT0 AW19 SHPLetterO / flshemuri = AH100 AL60 AT0 AW19 SHPLetterT / flshemuro = AH100 AL80 AT0 AW19 SHPLetterH
christmasp,flshemulo = AH100 AL0 AT0 AW19 SHPLetterH / flshemuli = AH100 AL20 AT0 AW19 SHPLetterO / flshemuc = AH100 AL40 AT0 AW19 SHPColorSwirl / flshemuri = AH100 AL60 AT0 AW19 SHPLetterH / flshemuro = AH100 AL80 AT0 AW19 SHPLetterO
jpsdeadpool,Cenobite
bourne,DOFLock=1

[Variables DOF]
t = 60 I48
dt = 60 I48
strblft = White AH30 AL0 AT0 AW9 SHPCircle3
strbrgt = White AH30 AL91 AT0 AW9 SHPCircle3
flshemulo = AH100 AL0 AT0 AW19 SHPCircle3
flshemuli = AH100 AL20 AT0 AW19 SHPCircle3
flshemuc = AH100 AL40 AT0 AW19 SHPCircle3
flshemuri = AH100 AL60 AT0 AW19 SHPCircle3
flshemuro = AH100 AL80 AT0 AW19 SHPCircle3
flasherclo = AH100 AL0 AT0 AW14
flashercli = AH100 AL20 AT0 AW14
flashercc = AH100 AL40 AT0 AW14
flashercri = AH100 AL60 AT0 AW14
flashercro = AH100 AL80 AT0 AW14
LetterA = SHPLetterA
LetterB = SHPLetterB
LetterC = SHPLetterC
LetterD = SHPLetterD
LetterE = SHPLetterE
LetterF = SHPLetterF
LetterG = SHPLetterG
LetterH = SHPLetterH
LetterI = SHPLetterI
LetterJ = SHPLetterJ
LetterK = SHPLetterK
LetterL = SHPLetterL
LetterM = SHPLetterM
LetterN = SHPLetterN
LetterO = SHPLetterO
LetterP = SHPLetterP
LetterQ = SHPLetterQ
LetterR = SHPLetterR
LetterS = SHPLetterS
LetterT = SHPLetterT
LetterU = SHPLetterU
LetterV = SHPLetterV
LetterW = SHPLetterW
LetterX = SHPLetterX
LetterY = SHPLetterY
LetterZ = SHPLetterZ
ForwardSlash = SHPForwardSlash
Apostrophe = SHPApostrophe
ArrowLeft = SHPArrowLeft
ArrowRight = SHPArrowRight
AtSymbol = SHPAtSymbol
CirclePulse = SHPCirclePulse
Colon = SHPColon
ColorBurst = SHPColorBurst
ColorSwirl = SHPColorSwirl
Comma = SHPComma
CrossPulse = SHPCrossPulse
DiamondBoxPulse = SHPDiamondBoxPulse
DiamondPulse = SHPDiamondPulse
Equals = SHPEquals
Exclamation = SHPExclamation
FillBottomTop = SHPFillBottomTop
FillLeftRight = SHPFillLeftRight
FillRightLeft = SHPFillRightLeft
FillTopBottom = SHPFillTopBottom
GreaterThan = SHPGreaterThan
LeftBracket = SHPLeftBracket
LeftRight = SHPLeftRight
LessThan = SHPLessThan
Minus = SHPMinus
Percent = SHPPercent
Period = SHPPeriod
Plus = SHPPlus
PointPlop = SHPPointPlop
Pound = SHPPound
QuestionMark = SHPQuestionMark
QuotationMarks = SHPQuotationMarks
RightBracket = SHPRightBracket
RoundAndRound = SHPRoundAndRound
RoundPulse = SHPRoundPulse
Semi-Colon = SHPSemi-Colon
Smiley = SHPSmiley
SquarePlop = SHPSquarePlop
SquarePulse = SHPSquarePulse
Times = SHPTimes
UpDown = SHPUpDown
VLinePulse = SHPVLinePulse
Number0 = SHPNumber0
Number1 = SHPNumber1
Number2 = SHPNumber2
Number3 = SHPNumber3
Number4 = SHPNumber4
Number5 = SHPNumber5
Number6 = SHPNumber6
Number7 = SHPNumber7
Number8 = SHPNumber8
Number9 = SHPNumber9

[Config DOF]
# "Rom","","","","","","","","Start Button"
5th_Element,0,0,0,0,0,0,0,On Blink fu500 fd600
A-Go-Go,0,0,0,0,0,0,0,ON Medium_purple
a7x,0,0,0,0,0,0,0,On
aar,0,0,0,0,0,0,0,L33 Blink fu500 fd550
aavenger,0,0,0,0,0,0,0,ON
abracadabra,0,0,0,0,0,0,0,E125 Blink fu500 fd600
abracadabraup,0,0,0,0,0,0,0,0
abv106,0,0,0,0,0,0,0,L3 m550 Blink fu500 fd550
acd_170,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
acd_168,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
acd_170h,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
acd_170hc,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
acd_168hc,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
acd_168h,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
ACDC,0,0,0,0,0,0,0,E209 Blink fu500 fd600
Ace_Speed,0,0,0,0,0,0,0,0
aclockworkorange,0,0,0,0,0,0,0,0
aerosmith,0,0,0,0,0,0,0,E200 Blink fu500 fd600
afm,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
agent777,0,0,0,0,0,0,0,0
airaces_1974,0,0,0,0,0,0,0,E212 Blink fu500 fd600
Airport_1969,0,0,0,0,0,0,0,E232 Blink fu500 fd600
CollegeQueens_1969,0,0,0,0,0,0,0,E232 Blink fu500 fd600
Aladdins_Castle,0,0,0,0,0,0,0,ON
alaska,0,0,0,0,0,0,0,ON
alcapone,0,0,0,0,0,0,0,ON
algar,0,0,0,0,0,0,0,ON
ali,0,0,0,0,0,0,0,ON
ALICEINCHAINSPUP,0,0,0,0,0,0,0,ON
aliensfromouterspace,0,0,0,0,0,0,0,0
alienstr,0,0,0,0,0,0,0,ON
SUBLIME,0,0,0,0,0,0,0,ON
aloha,0,0,0,0,0,0,0,ON Light_sea_green
alpok_b6,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
alpok_l6,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
alpok_l2,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
alpok_f6,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
amazonh,0,0,0,0,0,0,0,ON
america,0,0,0,0,0,0,0,ON
americamosthaunted,0,0,0,0,0,0,0,E126 Blink fu500 fd600
AmericanGraffiti_1962,0,0,0,0,0,0,0,E127 Blink fu500 fd600
Amigo_1974,0,0,0,0,0,0,0,E200 Blink fu500 fd600
andretti,0,0,0,0,0,0,0,L1 Blink fu500 fd600
androme,0,0,0,0,0,0,0,ON
AnimalCrossing,0,0,0,0,0,0,0,0
antar,0,0,0,0,0,0,0,ON
antar2,0,0,0,0,0,0,0,ON
Apache_1975,0,0,0,0,0,0,0,E200 Blink fu500 fd600
Apache_1978,0,0,0,0,0,0,0,E125 Blink fu500 fd600
apollo_1967,0,0,0,0,0,0,0,E117 Blink fu500 fd600
apollo13,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd650
aqualand,0,0,0,0,0,0,0,ON
Aquaman,0,0,0,0,0,0,0,0
aquarius_1970,0,0,0,0,0,0,0,E125 Blink fu500 fd600
arena,0,0,0,0,0,0,0,ON
argosy_1977,0,0,0,0,0,0,0,0
aspen,0,0,0,0,0,0,0,ON
astannie,0,0,0,0,0,0,0,ON
asterix12tasks,0,0,0,0,0,0,0,E125 Blink fu500 fd600
atarianb,0,0,0,0,0,0,0,ON
athf,0,0,0,0,0,0,0,0
atlantis,0,0,0,0,0,0,0,ON
Atlantis_1975,0,0,0,0,0,0,0,E116 Blink fu500 fd600
atleta,0,0,0,0,0,0,0,S1 Blink fu500 fd600
attack,0,0,0,0,0,0,0,ON
attila,0,0,0,0,0,0,0,ON
austin,0,0,0,0,0,0,0,ON
avr,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
avs_170,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
avs_170c,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
avs_170h,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
aztec_1976,0,0,0,0,0,0,0,E128 Blink fu500 fd600
B52s,0,0,0,0,0,0,0,0
b66_orig,0,0,0,0,0,0,0,E140 Blink fu200 fd200
babypac,0,0,0,0,0,0,0,ON
badgirls,0,0,0,0,0,0,0,ON
BallsAPoppin_1956,0,0,0,0,0,0,0,E124 Blink fu500 fd600
Bally_Hoo,0,0,0,0,0,0,0,ON
Bally4Queens_1970,0,0,0,0,0,0,0,E232 Blink
ballyhoo,0,0,0,0,0,0,0,0
bandWagon_1965,0,0,0,0,0,0,0,E125 Blink fu500 fd600
BankABall_1965,0,0,0,0,0,0,0,E135 Blink fu500 fd600
FlipperPool_1965,0,0,0,0,0,0,0,E135 Blink fu500 fd600
ElectraPool_1965,0,0,0,0,0,0,0,E135 Blink fu500 fd600
BankShot_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
SureShot_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
SpotPool_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Barbarella_1972,0,0,0,0,0,0,0,E131 Blink fu500 fd600
barbwire,0,0,0,0,0,0,0,ON
barra,0,0,0,0,0,0,0,ON
baseball_1970,0,0,0,0,0,0,0,E125 Blink fu500 fd600
BatterUp_1970,0,0,0,0,0,0,0,E125 Blink fu500 fd600
batmanf,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
bmf_fr,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
batmantas,0,0,0,0,0,0,0,0
baywatch,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd550
bay_401,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd550
bbb109,0,0,0,0,0,0,0,L3 m550 Blink fu500 fd550
bbb108,0,0,0,0,0,0,0,L3 m550 Blink fu500 fd550
bbeltzac,0,0,0,0,0,0,0,ON
bbh,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
bbnny,0,0,0,0,0,0,0,ON
bcats,0,0,0,0,0,0,0,ON
bdk,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
beat_the_clock_1963,0,0,0,0,0,0,0,E115 Blink fu500 fd600
beatclck,0,0,0,0,0,0,0,L2 m550 Blink fu500 fd600
beatclc2,0,0,0,0,0,0,0,L2 m550 Blink fu500 fd600
Beatles2013,0,0,0,0,0,0,0,ON
BeatTime,0,0,0,0,0,0,0,E117 Blink fu500 fd600
beav_butt,0,0,0,0,0,0,0,ON
bellring,0,0,0,0,0,0,0,ON
benhur1977,0,0,0,0,0,0,0,ON
bguns,0,0,0,0,0,0,0,ON
Big Lebowski,0,0,0,0,0,0,0,0
BigLebowsky,0,0,0,0,0,0,0,0
big_indian,0,0,0,0,0,0,0,E123 Blink fu500 fd600
big-indian,0,0,0,0,0,0,0,E123 Blink fu500 fd600
big-brave,0,0,0,0,0,0,0,E123 Blink fu500 fd600
big_top_1977,0,0,0,0,0,0,0,ON
BigBrave,0,0,0,0,0,0,0,E111 Blink fu500 fd550
BigChief1965,0,0,0,0,0,0,0,E232 Blink fu500 fd600
BigDeal1963,0,0,0,0,0,0,0,E232 Blink fu500 fd600
bigdeal1977,0,0,0,0,0,0,0,ON
biggame,0,0,0,0,0,0,0,ON
bighit,0,0,0,0,0,0,0,ON
bighorse,0,0,0,0,0,0,0,E200 Blink fu500 fd600
bighouse,0,0,0,0,0,0,0,ON
bighurt,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
bigstar,0,0,0,0,0,0,0,0
bigtop_1964,0,0,0,0,0,0,0,E126 Blink fu500 fd600
bigtown,0,0,0,0,0,0,0,Blink fu500 fd600
BigTrouble,0,0,0,0,0,0,0,E121 Blink fu500 fd550
bigvalley,0,0,0,0,0,0,0,ON
bk,0,0,0,0,0,0,0,L7 m550 Blink fu500 fd600
bk2k,0,0,0,0,0,0,0,ON
bksor,0,0,0,0,0,0,0,E892 Blink f500 fd550
bksorle,0,0,0,0,0,0,0,0
black100,0,0,0,0,0,0,0,ON
blackblt,0,0,0,0,0,0,0,ON
blackgold_1975,0,0,0,0,0,0,0,0
blackjck,0,0,0,0,0,0,0,ON
blackmagic4,0,0,0,0,0,0,0,0
BlackRed,0,0,0,0,0,0,0,E200 Blink fu500 fd600
TheGrinch,0,0,0,0,0,0,0,E200 Blink fu500 fd600
BladeRunner2049,0,0,0,0,0,0,0,E125 Blink fu500 fd600
blakpyra,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
Blaze,0,0,0,0,0,0,0,ON
blckhole,0,0,0,0,0,0,0,ON
blkhole7,0,0,0,0,0,0,0,ON
blkou,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
blkou_hf,0,0,0,0,0,0,0,ON
blkshpsq,0,0,0,0,0,0,0,ON
bloodmach,0,0,0,0,0,0,0,E122 BLINK 700 F200
BlueChip_1976,0,0,0,0,0,0,0,E232 Blink
BlueNote_1979,0,0,0,0,0,0,0,E236 Blink fu500 fd600
Rock_Star_1979,0,0,0,0,0,0,0,E236 Blink fu500 fd600
bmx,0,0,0,0,0,0,0,ON
bnbps,0,0,0,0,0,0,0,E125 Blink fu500 fd600
bnzai,0,0,0,0,0,0,0,ON
bon_voyage_1974,0,0,0,0,0,0,0,0
bond,0,0,0,0,0,0,0,E125 Blink f500 fd550
bonebstr,0,0,0,0,0,0,0,ON
boomerang_1974,0,0,0,0,0,0,0,E132 Blink fu500 fd600/E427 Blink fu500 fd600
bop,0,0,0,0,0,0,0,ON
bountyh,0,0,0,0,0,0,0,ON
bourne,0,0,0,0,0,0,0,ON
bowarrow,0,0,0,0,0,0,0,ON
bowarrowEM_1974,0,0,0,0,0,0,0,0
br,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
break,0,0,0,0,0,0,0,ON
BreakingBad,0,0,0,0,0,0,0,E125 Blink f500 fd550
bronco,0,0,0,0,0,0,0,E122 Blink fu500 fd600
bronco_1977,0,0,0,0,0,0,0,E126 Blink fu500 fd600
BroncoBuster,0,0,0,0,0,0,0,0
brvteam,0,0,0,0,0,0,0,ON
BS70_B2S,0,0,0,0,0,0,0,ON
BS80_B2S,0,0,0,0,0,0,0,ON
bsktball,0,0,0,0,0,0,0,ON
bsv103,0,0,0,0,0,0,0,L1 Blink fu500 fd550
btmn,0,0,0,0,0,0,0,L54 m550 Blink fu500 fd550
bttf,0,0,0,0,0,0,0,ON
Buccaneer,0,0,0,0,0,0,0,E127 Blink fu500 fd600
ShipAhoy_1976,0,0,0,0,0,0,0,E127 Blink fu500 fd600
buckaroo_1965,0,0,0,0,0,0,0,E135 Blink fu500 fd600
cowpoke_1965,0,0,0,0,0,0,0,E135 Blink fu500 fd600
buckrgrs,0,0,0,0,0,0,0,ON
BudTerence,0,0,0,0,0,0,0,0
bullseye,0,0,0,0,0,0,0,ON
bumper,0,0,0,0,0,0,0,0
BumperPool_1969,0,0,0,0,0,0,0,E129 Blink
bushidoa,0,0,0,0,0,0,0,S1 Blink fu500 fd600
bushido,0,0,0,0,0,0,0,S1 Blink fu500 fd600
Caballeros_del_Zodiaco,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
cabaret_1968,0,0,0,0,0,0,0,E130 Blink fu500 fd600
cactjack,0,0,0,0,0,0,0,ON
caddie_1970,0,0,0,0,0,0,0,E122 Blink fu500 fd600
CampingTrip,0,0,0,0,0,0,0,E125 Blink fu500 fd600
CanadaDry_1976,0,0,0,0,0,0,0,E111 Blink fu500 fd600
canasta,0,0,0,0,0,0,0,ON
cannes1976,0,0,0,0,0,0,0,ON
capersville,0,0,0,0,0,0,0,E150 Blink fu500 fd600
CAPTAINSPAULDING1,0,0,0,0,0,0,0,0
CaptCard_1973,0,0,0,0,0,0,0,E127 Blink fu500 fd600
captfantastic,0,0,0,0,0,0,0,ON
cardwhiz_1976,0,0,0,0,0,0,0,E137 Blink fu500 fd600
carhop,0,0,0,0,0,0,0,ON
carnavalnorio,0,0,0,0,0,0,0,E123 blink fu600 fd500
Cartoons,0,0,0,0,0,0,0,E122 Blink fu500 fd600
cataco,0,0,0,0,0,0,0,ON
Cavalier_1979,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Swashbuckler_1979,0,0,0,0,0,0,0,E118 Blink fu500 fd600
caveman,0,0,0,0,0,0,0,ON
cavnegro,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd550
cc,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
centaur,0,0,0,0,0,0,0,ON
centauri,0,0,0,0,0,0,0,ON
centigrade,0,0,0,0,0,0,0,E138 Blink fu500 fd600
cftbl,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
ChampBall1y973,0,0,0,0,0,0,0,0
chance,0,0,0,0,0,0,0,0
chance_1971,0,0,0,0,0,0,0,E200 Blink fu500 fd600
charlies,0,0,0,0,0,0,0,ON
che_cho,0,0,0,0,0,0,0,ON
checkMate,0,0,0,0,0,0,0,E200 Blink fu500 fd600
cheetah,0,0,0,0,0,0,0,ON
cherry_bell,0,0,0,0,0,0,0,E123 Blink fu500 fd600
christmasp,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
circus,0,0,0,0,0,0,0,ON
Circus_1973,0,0,0,0,0,0,0,E127 Blink fu500 fd600
BigShow_1974,0,0,0,0,0,0,0,E127 Blink fu500 fd600
CircusB,0,0,0,0,0,0,0,E200 Blink fu500 fd600
CircusZaccaria_1977,0,0,0,0,0,0,0,E127 Blink fu500 fd600
City_Hunter,0,0,0,0,0,0,0,0
cityslck,0,0,0,0,0,0,0,ON
ckpt,0,0,0,0,0,0,0,ON
clas1812,0,0,0,0,0,0,0,ON
clash,0,0,0,0,0,0,0,ON
cleoptra,0,0,0,0,0,0,0,ON
closeenc,0,0,0,0,0,0,0,ON
clown,0,0,0,0,0,0,0,ON
Clown-Playmatic,0,0,0,0,0,0,0,E200 blink fu600 fd600
clue,0,0,0,0,0,0,0,E119 Blink fu500 fd600
cntct,0,0,0,0,0,0,0,ON
cntforc7,0,0,0,0,0,0,0,ON
cntforce,0,0,0,0,0,0,0,ON
COLDPLAYPUP,0,0,0,0,0,0,0,ON
comet,0,0,0,0,0,0,0,ON
Concorde,0,0,0,0,0,0,0,E126 Blink fu500 fd600
coneyis,0,0,0,0,0,0,0,ON
congo,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
Conquest200,0,0,0,0,0,0,0,E125 Blink fu500 fd600
contest_1958,0,0,0,0,0,0,0,E119 Blink fu500 fd600
corsario,0,0,0,0,0,0,0,ON Blink fu500 fd600
corv,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
cosmic,0,0,0,0,0,0,0,ON
countdwn,0,0,0,0,0,0,0,ON
cp,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
cpthook,0,0,0,0,0,0,0,ON
CrazyCats,0,0,0,0,0,0,0,0
crescendo_1970,0,0,0,0,0,0,0,E123 Blink fu500 fd600
criterium77,0,0,0,0,0,0,0,E125 Blink fu500 fd600
CrossTown_1966,0,0,0,0,0,0,0,E127 Blink fu500 fd600
crystalball,0,0,0,0,0,0,0,E200 Blink fu500 fd600
csi,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
csmic,0,0,0,0,0,0,0,ON
cue,0,0,0,0,0,0,0,ON Blink fu500 fd600
cueball,0,0,0,0,0,0,0,ON Blink fu500 fd600
cuphead,0,0,0,0,0,0,0,E126 Blink fu500 fd600
cv,0,0,0,0,0,0,0,L88 Blink fu500 fd550
cv_dmd,0,0,0,0,0,0,0,E88 Blink fu500 fd600
cyberrace,0,0,0,0,0,0,0,E105
cybrnaut,0,0,0,0,0,0,0,ON
cybrnaua,0,0,0,0,0,0,0,ON
cycln,0,0,0,0,0,0,0,ON
cyclopes,0,0,0,0,0,0,0,ON
Daft_Punk,0,0,0,0,0,0,0,0
dalejr,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd600
Daredevil,0,0,0,0,0,0,0,0
darkchaos,0,0,0,0,0,0,0,ON
DarkCrystal,0,0,0,0,0,0,0,E125 Blink fu500 fd600
darkestdungeon,0,0,0,0,0,0,0,E121 Blink fu500 fd550
DarkPrincess,0,0,0,0,0,0,0,ON
darkshad,0,0,0,0,0,0,0,ON m550 Blink fu500 fd550
darling,0,0,0,0,0,0,0,E137 Blink fu500 fd600
dbz,0,0,0,0,0,0,0,E128 Blink fu500 fd600
dd,0,0,0,0,0,0,0,ON
deadweap,0,0,0,0,0,0,0,ON
DealersChoice_1973,0,0,0,0,0,0,0,E127 Blink fu500 fd600
LuckyAce_1974,0,0,0,0,0,0,0,E127 Blink fu500 fd600
deathproof,0,0,0,0,0,0,0,ON
DEFLEPPARDPUP,0,0,0,0,0,0,0,ON
dfndr,0,0,0,0,0,0,0,L7 m550 Blink fu500 fd600
dh,0,0,0,0,0,0,0,L88 Blink fu500 fd600
diablo,0,0,0,0,0,0,0,E114 Blink fu500 fd600
diamond,0,0,0,0,0,0,0,ON
diehard,0,0,0,0,0,0,0,E120 BLINK 700 F200
diner,0,0,0,0,0,0,0,ON
dipsydoodle,0,0,0,0,0,0,0,ON
disco,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
disco_Stern_1977,0,0,0,0,0,0,0,E200 Blink fu500 fd600
dm,0,0,0,0,0,0,0,L88 Blink fu500 fd550
dof_test,0,0,0,0,0,0,0,Blink
doflinx,0,0,0,0,0,0,0,0
doflinx_effects,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
doflinx_effects_custom,0,0,0,0,0,0,0,0
doflinx_effects_mame,0,0,0,0,0,0,0,0
dollyptb,0,0,0,0,0,0,0,ON
dolphin_1974,0,0,0,0,0,0,0,E122 Blink fu500 fd600
domino_1968,0,0,0,0,0,0,0,E125 Blink fu500 fd600
DoodleBug_1971,0,0,0,0,0,0,0,E232 Blink
dotd_1978,0,0,0,0,0,0,0,E122 Blink fu500 fd600
doubleup_1970,0,0,0,0,0,0,0,E132 Blink fu500 fd600
drac,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
dracula,0,0,0,0,0,0,0,ON
draculfp,0,0,0,0,0,0,0,ON
dragfi,0,0,0,0,0,0,0,ON
dragon,0,0,0,0,0,0,0,ON
dragonfire,0,0,0,0,0,0,0,0
dragoninterflip,0,0,0,0,0,0,0,E125 Blink fu500 fd650
DragoonRF,0,0,0,0,0,0,0,E125 Blink fu500 fd650
drakor,0,0,0,0,0,0,0,ON
DreamDaddy,0,0,0,0,0,0,0,E119 Blink fu500 fd600
drinkabsolut,0,0,0,0,0,0,0,E200 Blink fu500 fd600
DUCKTALES,0,0,0,0,0,0,0,0
dukes,0,0,0,0,0,0,0,ON
dune,0,0,0,0,0,0,0,E125 Blink fu500 fd600
dungdrag,0,0,0,0,0,0,0,ON
dvlrider,0,0,0,0,0,0,0,ON
dvlrdfp,0,0,0,0,0,0,0,ON
dvlsdre,0,0,0,0,0,0,0,ON
dw,0,0,0,0,0,0,0,L88 Blink fu500 fd550
eatpm,0,0,0,0,0,0,0,ON
eballchp,0,0,0,0,0,0,0,ON
eballdlx,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
eballdla,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
eclipse,0,0,0,0,0,0,0,ON
EggHead_1961,0,0,0,0,0,0,0,E134 Blink fu500 fd600
eightbll,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
El_Dorado_1975,0,0,0,0,0,0,0,E111 Blink fu500 fd600
eldorado,0,0,0,0,0,0,0,ON
elektra,0,0,0,0,0,0,0,ON
EliteGuard_1968,0,0,0,0,0,0,0,E115 Blink
elvis,0,0,0,0,0,0,0,L80 Blink fu500 fd550
grease,0,0,0,0,0,0,0,L80 Blink fu500 fd550
embryon,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
empsback,0,0,0,0,0,0,0,ON
Epe_CaptainNemoDivesAgain,0,0,0,0,0,0,0,0
Epe_CaptainNemo_SteamFlyerMOD,0,0,0,0,0,0,0,0
erizo,0,0,0,0,0,0,0,ON
escape,0,0,0,0,0,0,0,ON
esclwrld,0,0,0,0,0,0,0,ON
esha,0,0,0,0,0,0,0,ON
evelknie,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
evelknib,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
evlfight,0,0,0,0,0,0,0,ON
ewf,0,0,0,0,0,0,0,L13 m550 Blink fu500 fd600
excalibr,0,0,0,0,0,0,0,ON
exorcist,0,0,0,0,0,0,0,0
f14,0,0,0,0,0,0,0,ON
faces_1976,0,0,0,0,0,0,0,E118 Blink fu500 fd600
faeton,0,0,0,0,0,0,0,ON
Far_Out_1974,0,0,0,0,0,0,0,E114 Blink fu500 fd600
OutofSight_1974,0,0,0,0,0,0,0,E114 Blink fu500 fd600
farfalla,0,0,0,0,0,0,0,ON
farffp,0,0,0,0,0,0,0,ON
FarmTime_2020,0,0,0,0,0,0,0,E199 Blink fu500 fd600
FashionShow_1962,0,0,0,0,0,0,0,E199 Blink fu500 fd600
Fast_Draw_1975,0,0,0,0,0,0,0,E126 Blink fu500 fd600
fathom,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
fathomb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
fball,0,0,0,0,0,0,0,ON
fbclass,0,0,0,0,0,0,0,ON
fbclassa,0,0,0,0,0,0,0,ON
ffv104,0,0,0,0,0,0,0,L3 m550 Blink fu500 fd650
fg,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
fh,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
Fifteen,0,0,0,0,0,0,0,E200 Blink fu500 fd600
fire,0,0,0,0,0,0,0,ON
fireact,0,0,0,0,0,0,0,ON
fireactd,0,0,0,0,0,0,0,ON
fireball_1972,0,0,0,0,0,0,0,E122 Blink fu500 fd600
fireballxl5,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Firecracker_1971,0,0,0,0,0,0,0,E118 Blink fu500 fd600
firemntn,0,0,0,0,0,0,0,ON
firequeen_1977,0,0,0,0,0,0,0,E133 Blink fu500 fd600
fjholden,0,0,0,0,0,0,0,ON
flash,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
flsh,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
flashgdn,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
flashman,0,0,0,0,0,0,0,ON Blink fu500 fd600
FleetJr,0,0,0,0,0,0,0,0
FleetSr,0,0,0,0,0,0,0,0
Fleetwood,0,0,0,0,0,0,0,ON
flicker,0,0,0,0,0,0,0,ON
flicker_1974,0,0,0,0,0,0,0,E427 Blink fu500 fd600
flight2k,0,0,0,0,0,0,0,ON
flightfp,0,0,0,0,0,0,0,ON
flight2m,0,0,0,0,0,0,0,ON
FlipACard_1970,0,0,0,0,0,0,0,E135 Blink fu500 fd600
CardTrix_1970,0,0,0,0,0,0,0,E135 Blink fu500 fd600
FlipFlop,0,0,0,0,0,0,0,0
FlipperFair_1961,0,0,0,0,0,0,0,E135 Blink
Fluffy,0,0,0,0,0,0,0,0
flying_carpet,0,0,0,0,0,0,0,E123 Blink fu500 fd600
FlyingChariots_1963,0,0,0,0,0,0,0,0
FNAF,0,0,0,0,0,0,0,E125 Blink fu500 fd600
FOOFIGHTERSPUP,0,0,0,0,0,0,0,ON
football_1979_2,0,0,0,0,0,0,0,E125 Blink fu500 fd600
force,0,0,0,0,0,0,0,ON
forceii,0,0,0,0,0,0,0,ON
fouraces,0,0,0,0,0,0,0,E200 Blink fu500 fd600
FourMBC,0,0,0,0,0,0,0,E212 Blink fu500 fd600
FourSeasons_1968,0,0,0,0,0,0,0,E200 Blink fu500 fd600
fp_24,0,0,0,0,0,0,0,0
fp_5thelement,0,0,0,0,0,0,0,0
fp_adfam_ultimate,0,0,0,0,0,0,0,0
fp_alienleg_ultimate,0,0,0,0,0,0,0,0
fp_astroblast,0,0,0,0,0,0,0,0
fp_astrohits,0,0,0,0,0,0,0,0
fp_avatar_ultimate,0,0,0,0,0,0,0,0
fp_batman1989,0,0,0,0,0,0,0,0
fp_bigspen,0,0,0,0,0,0,0,0
fp_blade_runner_ult_pro,0,0,0,0,0,0,0,0
fp_bmjoker,0,0,0,0,0,0,0,0
fp_Bond 50,0,0,0,0,0,0,0,0
fp_bop,0,0,0,0,0,0,0,0
fp_bttf_slam_ultimate,0,0,0,0,0,0,0,0
fp_bubbob,0,0,0,0,0,0,0,0
fp_bvp,0,0,0,0,0,0,0,0
fp_cent_ultimate,0,0,0,0,0,0,0,0
fp_checkpoint,0,0,0,0,0,0,0,0
fp_coolpos,0,0,0,0,0,0,0,0
fp_creaturefbl,0,0,0,0,0,0,0,0
fp_csi,0,0,0,0,0,0,0,0
fp_darkquest,0,0,0,0,0,0,0,0
fp_deadhunters,0,0,0,0,0,0,0,0
fp_deadpool,0,0,0,0,0,0,0,0
fp_dlair,0,0,0,0,0,0,0,0
FP_DOF,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
FP_DOF_TEST,0,0,0,0,0,0,0,0
fp_everafterhigh,0,0,0,0,0,0,0,0
fp_flash_gordon_ult_pro,0,0,0,0,0,0,0,0
fp_flashg_ultimate,0,0,0,0,0,0,0,0
fp_flreap,0,0,0,0,0,0,0,0
fp_frogster,0,0,0,0,0,0,0,0
fp_futurama,0,0,0,0,0,0,0,0
fp_goldorak,0,0,0,0,0,0,0,ON
fp_gonein60,0,0,0,0,0,0,0,0
fp_goonies,0,0,0,0,0,0,0,0
fp_gorgar_ultimate,0,0,0,0,0,0,0,0
fp_gremlins,0,0,0,0,0,0,0,0
fp_hlwn_ult_pro,0,0,0,0,0,0,0,0
fp_id4,0,0,0,0,0,0,0,0
fp_ij_ult_pro,0,0,0,0,0,0,0,0
fp_im_ultimate,0,0,0,0,0,0,0,0
fp_indyskull,0,0,0,0,0,0,0,0
fp_ironman_ult_pro,0,0,0,0,0,0,0,0
fp_jp_ultimate,0,0,0,0,0,0,0,0
fp_jungle_girl,0,0,0,0,0,0,0,0
fp_jungleboy,0,0,0,0,0,0,0,0
fp_jurassicpark_ult_pro,0,0,0,0,0,0,0,0
fp_kiss_ult_pro,0,0,0,0,0,0,0,0
fp_knightrider,0,0,0,0,0,0,0,0
fp_lotr_ultimate,0,0,0,0,0,0,0,0
fp_lunto,0,0,0,0,0,0,0,0
fp_megaman,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_metalslug,0,0,0,0,0,0,0,0
fp_minions,0,0,0,0,0,0,0,0
fp_Mission_Impossible,0,0,0,0,0,0,0,0
fp_motu,0,0,0,0,0,0,0,0
fp_multipede,0,0,0,0,0,0,0,0
fp_noes_slam_ultimate,0,0,0,0,0,0,0,0
fp_noes_ult_pro,0,0,0,0,0,0,0,0
fp_oblivion,0,0,0,0,0,0,0,0
fp_paragon,0,0,0,0,0,0,0,0
fp_pe_aliens_legacy_gom,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_blade_runner_re,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
FP_PE_BLUE_VS_PINK_BAM,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_f14_tomcat_ab,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
FP_PE_HALLOWEEN_BBM,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_indiana_jones_fge,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
FP_PE_JAWS_BBE,0,0,0,0,0,0,0,E10 Blink 200/E11
FP_PE_JUNKYARD_CATS_BAM,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_motu_ce,0,0,0,0,0,0,0,E10 Blink 300/E11
fp_pe_retroflair_bam,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_robocop_doae,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_sonic_pinball_mania,0,0,0,0,0,0,0,E10 Blink fu500 fd500
FP_PE_SW_DSA_GE,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_phantom_ultimate,0,0,0,0,0,0,0,0
fp_pinevent,0,0,0,0,0,0,0,0
fp_pinkfloyd,0,0,0,0,0,0,0,0
fp_poc,0,0,0,0,0,0,0,0
fp_reelitin,0,0,0,0,0,0,0,0
fp_retroflair,0,0,0,0,0,0,0,0
fp_roadgirls,0,0,0,0,0,0,0,0
fp_robinv_ultimate,0,0,0,0,0,0,0,0
fp_robocop_ult_pro,0,0,0,0,0,0,0,0
fp_robocop_ultimate,0,0,0,0,0,0,0,0
fp_scaredstiff,0,0,0,0,0,0,0,0
fp_shootanza,0,0,0,0,0,0,0,0
fp_sjp_ultimate,0,0,0,0,0,0,0,0
fp_sonicpp_ultimate,0,0,0,0,0,0,0,0
fp_speeddevse,0,0,0,0,0,0,0,0
fp_spiderman,0,0,0,0,0,0,0,0
fp_startrek_cr_ult_pro,0,0,0,0,0,0,0,0
fp_startrek_stern_ult_pro,0,0,0,0,0,0,0,0
fp_steelwheelse,0,0,0,0,0,0,0,0
fp_strek_stern_ult,0,0,0,0,0,0,0,0
fp_strikes_and_spares_ult_pro,0,0,0,0,0,0,0,0
fp_sttng_ultimate,0,0,0,0,0,0,0,0
fp_supman_slam_ult,0,0,0,0,0,0,0,0
fp_sw_dsa_ult_pro,0,0,0,0,0,0,0,0
fp_swbfh,0,0,0,0,0,0,0,0
fp_swdsa_ultimate,0,0,0,0,0,0,0,0
fp_swemp,0,0,0,0,0,0,0,0
fp_t2sky_ultimate,0,0,0,0,0,0,0,0
fp_taf_ult_pro,0,0,0,0,0,0,0,0
fp_tempexx,0,0,0,0,0,0,0,0
fp_tftc,0,0,0,0,0,0,0,0
fp_tgtbtu,0,0,0,0,0,0,0,0
fp_threeang_ultimate,0,0,0,0,0,0,0,0
fp_tombstone,0,0,0,0,0,0,0,0
fp_totan,0,0,0,0,0,0,0,0
fp_transformers,0,0,0,0,0,0,0,0
fp_tronleg_slam_ult,0,0,0,0,0,0,0,0
fp_tronleg_stern_ult,0,0,0,0,0,0,0,0
fp_tutenkham,0,0,0,0,0,0,0,0
fp_underdog,0,0,0,0,0,0,0,0
fp_wackyraces,0,0,0,0,0,0,0,0
fp_warlock,0,0,0,0,0,0,0,0
fp_wcs,0,0,0,0,0,0,0,0
fp_wipeout,0,0,0,0,0,0,0,0
fp_wow_ultimate,0,0,0,0,0,0,0,0
fp_x-men,0,0,0,0,0,0,0,0
fp_xenon_ult_pro,0,0,0,0,0,0,0,0
fp_xfiles,0,0,0,0,0,0,0,0
fpwr2,0,0,0,0,0,0,0,ON
frankst,0,0,0,0,0,0,0,L64 m550 Blink f500 fd550
freddy,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
Freddy's_Nightmares,0,0,0,0,0,0,0,0
freedom,0,0,0,0,0,0,0,ON
freedom_1976,0,0,0,0,0,0,0,E127 Blink fu500 fd600
freefall,0,0,0,0,0,0,0,ON
freefafp,0,0,0,0,0,0,0,ON
frontie,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd550
frpwr,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
fs,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
ft,0,0,0,0,0,0,0,L88 Blink fu500 fd550
Full,0,0,0,0,0,0,0,ON
FunFair_1968,0,0,0,0,0,0,0,E123 Blink
FunLand_1968,0,0,0,0,0,0,0,E123 Blink
FunFest_1973,0,0,0,0,0,0,0,0
futrquen,0,0,0,0,0,0,0,ON
futurama,0,0,0,0,0,0,0,E120 BLINK 700 F200
futurspa,0,0,0,0,0,0,0,L59 Blink fu500 fd600
futurspb,0,0,0,0,0,0,0,L59 Blink fu500 fd600
futurwld,0,0,0,0,0,0,0,ON
fx_brothersarms,0,0,0,0,0,0,0,0
fx_charliebrown,0,0,0,0,0,0,0,0
fx_curse_mummy,0,0,0,0,0,0,0,0
fx_dragons,0,0,0,0,0,0,0,0
fx_eldergods,0,0,0,0,0,0,0,0
fx_garfield,0,0,0,0,0,0,0,0
fx_gloomhaven,0,0,0,0,0,0,0,0
fx_godzillakong,0,0,0,0,0,0,0,0
fx_grimm,0,0,0,0,0,0,0,0
fx_hiigara Homeworld,0,0,0,0,0,0,0,0
fx_kittens,0,0,0,0,0,0,0,0
fx_kong,0,0,0,0,0,0,0,0
fx_little_pony,0,0,0,0,0,0,0,0
fx_mars,0,0,0,0,0,0,0,0
fx_mysteriousisland,0,0,0,0,0,0,0,0
fx_necrodancer,0,0,0,0,0,0,0,0
fx_noir,0,0,0,0,0,0,0,0
fx_panda,0,0,0,0,0,0,0,0
fx_peanuts,0,0,0,0,0,0,0,0
fx_samiurai,0,0,0,0,0,0,0,0
fx_sky_pirates,0,0,0,0,0,0,0,0
fx_startrek_deepspace,0,0,0,0,0,0,0,0
fx_startrek_discovery,0,0,0,0,0,0,0,0
fx_startrek_kelvin,0,0,0,0,0,0,0,0
fx_swcollectables,0,0,0,0,0,0,0,0
fx_systemshock,0,0,0,0,0,0,0,0
fx_trolls,0,0,0,0,0,0,0,0
fx_vaulthunter,0,0,0,0,0,0,0,0
fx_wms_addams,0,0,0,0,0,0,0,0
fx_wms_bride,0,0,0,0,0,0,0,0
fx_wms_nextgen,0,0,0,0,0,0,0,0
fx_wms_swords,0,0,0,0,0,0,0,0
fx_wms_twilight,0,0,0,0,0,0,0,0
fx_wms_whirlwind,0,0,0,0,0,0,0,0
fx_wms_worldcup,0,0,0,0,0,0,0,0
fx_wwz,0,0,0,0,0,0,0,0
fx2_aforce,0,0,0,0,0,0,0,0
fx2_ageultron,0,0,0,0,0,0,0,0
fx2_alienisol,0,0,0,0,0,0,0,0
fx2_aliens,0,0,0,0,0,0,0,0
fx2_alienvsp,0,0,0,0,0,0,0,0
fx2_amdad,0,0,0,0,0,0,0,0
fx2_antman,0,0,0,0,0,0,0,0
fx2_archer,0,0,0,0,0,0,0,0
fx2_avengers,0,0,0,0,0,0,0,0
fx2_bb,0,0,0,0,0,0,0,0
fx2_biolab,0,0,0,0,0,0,0,0
fx2_blade,0,0,0,0,0,0,0,0
fx2_boba,0,0,0,0,0,0,0,0
fx2_captam,0,0,0,0,0,0,0,0
fx2_castle,0,0,0,0,0,0,0,0
fx2_champions,0,0,0,0,0,0,0,0
fx2_civilwar,0,0,0,0,0,0,0,0
fx2_deadpool,0,0,0,0,0,0,0,0
fx2_doom,0,0,0,0,0,0,0,0
fx2_drstrange,0,0,0,0,0,0,0,0
fx2_earthdef,0,0,0,0,0,0,0,0
fx2_eldorado,0,0,0,0,0,0,0,0
fx2_epicquest,0,0,0,0,0,0,0,0
fx2_excalibur,0,0,0,0,0,0,0,0
fx2_fallout,0,0,0,0,0,0,0,0
fx2_familyguy,0,0,0,0,0,0,0,0
fx2_fantasticfour,0,0,0,0,0,0,0,0
fx2_fearitself,0,0,0,0,0,0,0,0
fx2_ghostrider,0,0,0,0,0,0,0,0
fx2_guardians,0,0,0,0,0,0,0,0
fx2_infinityg,0,0,0,0,0,0,0,0
fx2_ironman,0,0,0,0,0,0,0,0
fx2_mars,0,0,0,0,0,0,0,0
fx2_moonknight,0,0,0,0,0,0,0,0
fx2_mssplosion,0,0,0,0,0,0,0,0
fx2_paranormal,0,0,0,0,0,0,0,0
fx2_pasha,0,0,0,0,0,0,0,0
fx2_portal,0,0,0,0,0,0,0,0
fx2_pvz,0,0,0,0,0,0,0,0
fx2_rome,0,0,0,0,0,0,0,0
fx2_secretsdeep,0,0,0,0,0,0,0,0
fx2_shaman,0,0,0,0,0,0,0,0
fx2_skyrim,0,0,0,0,0,0,0,0
fx2_sorcerers,0,0,0,0,0,0,0,0
fx2_spbutters,0,0,0,0,0,0,0,0
fx2_spiderman,0,0,0,0,0,0,0,0
fx2_spsweet,0,0,0,0,0,0,0,0
fx2_superleague,0,0,0,0,0,0,0,0
fx2_swclonewars,0,0,0,0,0,0,0,0
fx2_swdarth,0,0,0,0,0,0,0,0
fx2_swdroids,0,0,0,0,0,0,0,0
fx2_swempire,0,0,0,0,0,0,0,0
fx2_swforceaw,0,0,0,0,0,0,0,0
fx2_swhansolo,0,0,0,0,0,0,0,0
fx2_swmasters,0,0,0,0,0,0,0,0
fx2_swmight,0,0,0,0,0,0,0,0
fx2_swnewhope,0,0,0,0,0,0,0,0
fx2_swrebels,0,0,0,0,0,0,0,0
fx2_swreturn,0,0,0,0,0,0,0,0
fx2_swrogueone,0,0,0,0,0,0,0,0
fx2_swstarfighter,0,0,0,0,0,0,0,0
fx2_tesla,0,0,0,0,0,0,0,0
fx2_thor,0,0,0,0,0,0,0,0
fx2_v12,0,0,0,0,0,0,0,0
fx2_venom,0,0,0,0,0,0,0,0
fx2_walkingdead,0,0,0,0,0,0,0,0
fx2_wildwest,0,0,0,0,0,0,0,0
fx2_wolverine,0,0,0,0,0,0,0,0
fx2_wwhulk,0,0,0,0,0,0,0,0
fx2_xmen,0,0,0,0,0,0,0,0
fx3_amusement,0,0,0,0,0,0,0,0
fx3_bttf,0,0,0,0,0,0,0,0
fx3_et,0,0,0,0,0,0,0,0
fx3_hercules,0,0,0,0,0,0,0,0
fx3_jaws,0,0,0,0,0,0,0,0
fx3_jurassicmayhem,0,0,0,0,0,0,0,0
fx3_jurassicpark,0,0,0,0,0,0,0,0
fx3_jurassicworld,0,0,0,0,0,0,0,0
fx3_swahchtoisland,0,0,0,0,0,0,0,0
fx3_swcalrissian,0,0,0,0,0,0,0,0
fx3_swlastjedi,0,0,0,0,0,0,0,0
fx3_swmimban,0,0,0,0,0,0,0,0
fx3_swsolo,0,0,0,0,0,0,0,0
fx3_wms_afm,0,0,0,0,0,0,0,0
fx3_wms_blackrose,0,0,0,0,0,0,0,0
fx3_wms_championpub,0,0,0,0,0,0,0,0
fx3_wms_cirqusvoltaire,0,0,0,0,0,0,0,0
Fx3_wms_creaturebl,0,0,0,0,0,0,0,0
fx3_wms_drdude,0,0,0,0,0,0,0,0
fx3_wms_fishtales,0,0,0,0,0,0,0,0
fx3_wms_funhouse,0,0,0,0,0,0,0,0
fx3_wms_getaway,0,0,0,0,0,0,0,0
fx3_wms_hurricane,0,0,0,0,0,0,0,0
fx3_wms_indiana_jones,0,0,0,0,0,0,0,0
fx3_wms_junkyard,0,0,0,0,0,0,0,0
fx3_wms_mmadness,0,0,0,0,0,0,0,0
fx3_wms_monsterbash,0,0,0,0,0,0,0,0
fx3_wms_nogoodgofers,0,0,0,0,0,0,0,0
fx3_wms_partyzone,0,0,0,0,0,0,0,0
fx3_wms_redandted,0,0,0,0,0,0,0,0
fx3_wms_safecracker,0,0,0,0,0,0,0,0
fx3_wms_spacestation,0,0,0,0,0,0,0,0
fx3_wms_tom,0,0,0,0,0,0,0,0
fx3_wms_totan,0,0,0,0,0,0,0,0
fx3_wms_whitewater,0,0,0,0,0,0,0,0
galaxy,0,0,0,0,0,0,0,ON
gamatron,0,0,0,0,0,0,0,ON
gameofthrones,0,0,0,0,0,0,0,E140 Blink fu500 fd600
gameofthrone,0,0,0,0,0,0,0,E140 Blink fu500 fd600
gargamel_park,0,0,0,0,0,0,0,E131 Blink fu500 fd600
gator,0,0,0,0,0,0,0,E225 Blink fu500 fd600
gatos,0,0,0,0,0,0,0,0
gaucho_1963,0,0,0,0,0,0,0,E200 Blink fu500 fd600
gay90s_1970,0,0,0,0,0,0,0,0
geega,0,0,0,0,0,0,0,E200 Blink fu500 fd600
geisha_FS,0,0,0,0,0,0,0,E119 Blink fu500 fd550
geisha_FS_cpc_0.1,0,0,0,0,0,0,0,E119 Blink fu500 fd550
gemini,0,0,0,0,0,0,0,ON
gemini_1977,0,0,0,0,0,0,0,E122 Blink fu500 fd600
genesis,0,0,0,0,0,0,0,ON
genie,0,0,0,0,0,0,0,ON
getsmart,0,0,0,0,0,0,0,E314 Blink fu500 fd600
ghostbusters,0,0,0,0,0,0,0,ON
gi,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
Gigi_1963,0,0,0,0,0,0,0,E144 Blink fu500 fd600
gladiatr,0,0,0,0,0,0,0,ON
gldneye,0,0,0,0,0,0,0,L3 Blink fu500 fd550
glxplay,0,0,0,0,0,0,0,ON
gnr,0,0,0,0,0,0,0,L64 Blink fu500 fd550
Godfather,0,0,0,0,0,0,0,0
godzilla,0,0,0,0,0,0,0,ON
GOG_Trilogy,0,0,0,0,0,0,0,0
goinnuts,0,0,0,0,0,0,0,ON
goldbal,0,0,0,0,0,0,0,L59 Blink fu500 fd600
goldcue,0,0,0,0,0,0,0,0
goldenarrow_1977,0,0,0,0,0,0,0,E128 Blink fu500 fd600
Goldorak,0,0,0,0,0,0,0,E128 Blink fu500 fd600
goldwing,0,0,0,0,0,0,0,ON
goonies,0,0,0,0,0,0,0,E136 Blink fu500 fd600
got,0,0,0,0,0,0,0,E136 Blink fu500 fd600
gorillaz,0,0,0,0,0,0,0,0
gork,0,0,0,0,0,0,0,ON
gotg_2020,0,0,0,0,0,0,0,E140 Blink fu500 fd600
gottlieb300_1975,0,0,0,0,0,0,0,E314 Blink fu500 fd600
GottliebTopScore_1975,0,0,0,0,0,0,0,E314 Blink fu500 fd600
gprix,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd600
grand,0,0,0,0,0,0,0,ON
GrandeDomino_1968,0,0,0,0,0,0,0,E125 Blink
grandprix_1977,0,0,0,0,0,0,0,E127 Blink fu500 fd600
GrandTour_1964,0,0,0,0,0,0,0,E199 Blink fu500 fd600
gransla,0,0,0,0,0,0,0,L44 m550 Blink fu500 fd600
GratefulDead_B2S,0,0,0,0,0,0,0,ON
Great_HOUDINI,0,0,0,0,0,0,0,0
grgar,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
gridiron,0,0,0,0,0,0,0,ON
groovy_1970,0,0,0,0,0,0,0,E123 Blink fu500 fd600
gs,0,0,0,0,0,0,0,ON
GTB_4square_1971,0,0,0,0,0,0,0,E109 Blink fu500 fd600
GTB2001_1971,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Dimension_1971,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Galaxie_1971,0,0,0,0,0,0,0,E118 Blink fu500 fd600
gulfstream_1973,0,0,0,0,0,0,0,E127 Blink fu500 fd600
GunMen1979,0,0,0,0,0,0,0,ON
gw,0,0,0,0,0,0,0,L68 m550 Blink fu500 fd550
gwarfare,0,0,0,0,0,0,0,ON
halley,0,0,0,0,0,0,0,ON
Halloween,0,0,0,0,0,0,0,0
HangGlider_1976,0,0,0,0,0,0,0,E200 Blink fu500 fd600
HannibalVPX,0,0,0,0,0,0,0,E125 Blink fu500 fd600
hardbody,0,0,0,0,0,0,0,ON
harl,0,0,0,0,0,0,0,ON
Harmony_1967,0,0,0,0,0,0,0,E124 Blink
hauntedmansion,0,0,0,0,0,0,0,E104 Blink fu500 fd550
hawkman,0,0,0,0,0,0,0,ON
hd,0,0,0,0,0,0,0,ON
heartsgain,0,0,0,0,0,0,0,E232 Blink
Heat,0,0,0,0,0,0,0,0
heat_wave_1964,0,0,0,0,0,0,0,E121 Blink fu500 fd600
HeatWave_1964,0,0,0,0,0,0,0,E121 Blink fu500 fd600
HeavyMetal,0,0,0,0,0,0,0,0
heavymtl,0,0,0,0,0,0,0,ON
HELLBOY,0,0,0,0,0,0,0,0
HellRaiser,0,0,0,0,0,0,0,E125 Blink fu500 fd600
hercules,0,0,0,0,0,0,0,ON
hexagone,0,0,0,0,0,0,0,ON
hglbtrtb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
hh,0,0,0,0,0,0,0,ON
hhotel,0,0,0,0,0,0,0,ON
HiDeal_1975,0,0,0,0,0,0,0,E200 Blink fu500 fd600
hidiver,0,0,0,0,0,0,0,E200 Blink fu500 fd600
highhand_1973,0,0,0,0,0,0,0,E116 Blink fu500 fd600
HighSeas_1976,0,0,0,0,0,0,0,E123 Blink
HiLo_1969,0,0,0,0,0,0,0,E129 Blink
HiLoAce_1973,0,0,0,0,0,0,0,E129 Blink fu500 fd600
hirolcas,0,0,0,0,0,0,0,ON
hiscorepool,0,0,0,0,0,0,0,E103 Blink fu500 fd600
hitthedeck,0,0,0,0,0,0,0,ON
hlywoodh,0,0,0,0,0,0,0,ON
beachbms,0,0,0,0,0,0,0,ON
hod,0,0,0,0,0,0,0,0
hoedown,0,0,0,0,0,0,0,ON
HokusPokus_1976,0,0,0,0,0,0,0,E127 Blink fu500 fd600
homealone,0,0,0,0,0,0,0,On
HomeRun_1971,0,0,0,0,0,0,0,E232 Blink
honey,0,0,0,0,0,0,0,ON
hook,0,0,0,0,0,0,0,L31 Blink fu500 fd550
hoops,0,0,0,0,0,0,0,ON
horrorburg,0,0,0,0,0,0,0,0
Hot_Shot_1973,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Big_Shot_1974,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Pro_Pool_1973,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Play_Pool_1972,0,0,0,0,0,0,0,E125 Blink fu500 fd600
hotdogg,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
hothand,0,0,0,0,0,0,0,ON
hothanfp,0,0,0,0,0,0,0,ON
HotLine_1966,0,0,0,0,0,0,0,E130 Blink fu500 fd600
hotshots,0,0,0,0,0,0,0,ON
hotwheel,0,0,0,0,0,0,0,ON
howzat,0,0,0,0,0,0,0,ON
hpgof,0,0,0,0,0,0,0,ON
hs,0,0,0,0,0,0,0,ON
httip_l1,0,0,0,0,0,0,0,ON
hulk,0,0,0,0,0,0,0,ON
HulkLE,0,0,0,0,0,0,0,ON
humpty_dumpty,0,0,0,0,0,0,0,on
hunter,0,0,0,0,0,0,0,0
hurr,0,0,0,0,0,0,0,L86 Blink fu500 fd550
hustler,0,0,0,0,0,0,0,E200 Blink fu500 fd600
hvymetal,0,0,0,0,0,0,0,ON
hypbl,0,0,0,0,0,0,0,ON
i500,0,0,0,0,0,0,0,L88 Blink fu500 fd550
icecoldbeer,0,0,0,0,0,0,0,E102 Blink fu500 fd600
icefever,0,0,0,0,0,0,0,ON
id4,0,0,0,0,0,0,0,ON
ij,0,0,0,0,0,0,0,L88 Blink fu500 fd550
ij_l7,0,0,0,0,0,0,0,L88 Blink fu500 fd550
ij4,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
im,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
IM_LOTB,0,0,0,0,0,0,0,E125 Blink fu500 fd600
impacto,0,0,0,0,0,0,0,ON
ind250cc,0,0,0,0,0,0,0,ON
indiana_jones_last_movie,0,0,0,0,0,0,0,0
indochine_central_tour,0,0,0,0,0,0,0,E125 Blink fu500 fd600
INHABITINGMARS,0,0,0,0,0,0,0,On
ironball,0,0,0,0,0,0,0,ON
ironmaid,0,0,0,0,0,0,0,ON Blink fu500 fd600
ironmafp,0,0,0,0,0,0,0,ON Blink fu500 fd600
IronMaiden_LOTB,0,0,0,0,0,0,0,E125 Blink fu500 fd600
it_pinball_madness,0,0,0,0,0,0,0,On
jack2opn,0,0,0,0,0,0,0,ON
JackInTheBox_1973,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Jackpot_1971,0,0,0,0,0,0,0,E126 Blink fu500 fd600
jacksopen,0,0,0,0,0,0,0,E142 Blink fu500 fd600
jacksparrow,0,0,0,0,0,0,0,0
jalisco,0,0,0,0,0,0,0,E200 Blink f500 fd550
jamesb2,0,0,0,0,0,0,0,ON
jamesb,0,0,0,0,0,0,0,ON
jamesb7,0,0,0,0,0,0,0,ON
jamesb7b,0,0,0,0,0,0,0,ON
Jaws,0,0,0,0,0,0,0,E202 Blink f500 fd550/E203
jb,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
jd,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
jetspin_1977,0,0,0,0,0,0,0,E123 Blink fu500 fd600
superspin_1977,0,0,0,0,0,0,0,E123 Blink fu500 fd600
jigglebox,0,0,0,0,0,0,0,E136 Blink fu500 fd550
Jigsaw,0,0,0,0,0,0,0,ON
jivetime,0,0,0,0,0,0,0,E125 Blink fu500 fd600
jm,0,0,0,0,0,0,0,L88 Blink fu500 fd550
jngld,0,0,0,0,0,0,0,ON
John_Rambo,0,0,0,0,0,0,0,0
johnwick,0,0,0,0,0,0,0,On
Joker_1950,0,0,0,0,0,0,0,E144 Blink fu500 fd600
jokerpoker_1978,0,0,0,0,0,0,0,E113 Blink fu500 fd600
jokrpokr,0,0,0,0,0,0,0,ON
jokrz,0,0,0,0,0,0,0,ON
JollyRoger_1967,0,0,0,0,0,0,0,E130 Blink fu500 fd600
jolypark,0,0,0,0,0,0,0,ON
jp_ghostbusters,0,0,0,0,0,0,0,E140 Blink fu500 fd600
JP30LE,0,0,0,0,0,0,0,E140 Blink fu200 fd200
jplstw,0,0,0,0,0,0,0,ON
jpsdeadpool,0,0,0,0,0,0,0,E125 Blink f500 fd550
jpsfriday13th,0,0,0,0,0,0,0,E125 Blink f500 fd550
jpspacecadet,0,0,0,0,0,0,0,E125 Blink f500 fd550
jpspacecadetGE,0,0,0,0,0,0,0,E125 Blink f500 fd550
jst_l2,0,0,0,0,0,0,0,ON
Jumaci_1966,0,0,0,0,0,0,0,E106
jumanji,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Jumping_Jack,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Jungle_1972,0,0,0,0,0,0,0,E121 Blink fu500 fd650
JungleKing_1973,0,0,0,0,0,0,0,E121 Blink
JungleLife_1972,0,0,0,0,0,0,0,E121 Blink
jungleprincess_1977,0,0,0,0,0,0,0,E137 Blink fu500 fd600
junglequeen,0,0,0,0,0,0,0,E108 Blink fu500 fd650
jupk,0,0,0,0,0,0,0,L9 m550 Blink fu500 fd600
jurassic,0,0,0,0,0,0,0,0
jy,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
Kickoff_1967,0,0,0,0,0,0,0,E232 Blink
kidnap,0,0,0,0,0,0,0,ON
kiko,0,0,0,0,0,0,0,ON
kill_bill,0,0,0,0,0,0,0,0
KillerInstinct,0,0,0,0,0,0,0,E125 Blink fu500 fd600
killershof,0,0,0,0,0,0,0,0
kimwilde,0,0,0,0,0,0,0,ON
King_Pin_1973,0,0,0,0,0,0,0,E110 Blink fu500 fd600
kingdom,0,0,0,0,0,0,0,0
KingOfDiamonds_1967,0,0,0,0,0,0,0,E125 Blink fu500 fd600
KingPin1962,0,0,0,0,0,0,0,E200 Blink fu500 fd600
KingRock_1972,0,0,0,0,0,0,0,E107 Blink fu500 fd600
kingsandqueens,0,0,0,0,0,0,0,ON
kingtut,0,0,0,0,0,0,0,E110 Blink fu500 fd650
kiss,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
kissc,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
kiss_original_2016,0,0,0,0,0,0,0,E125 Blink fu500 fd600
KKlowns,0,0,0,0,0,0,0,0
klondike1971,0,0,0,0,0,0,0,E126 Blink fu500 fd600
Knight_Rider,0,0,0,0,0,0,0,0
knockout,0,0,0,0,0,0,0,E128 Blink fu500 fd650
Knockout_1950,0,0,0,0,0,0,0,E144 Blink fu500 fd600
kosteel,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
kp,0,0,0,0,0,0,0,L3 m550 Blink fu500 fd600
krull,0,0,0,0,0,0,0,ON
Kuwait,0,0,0,0,0,0,0,E123 Blink fu500 fd600
kz26,0,0,0,0,0,0,0,ON
LadyLuck,0,0,0,0,0,0,0,ON
ladylukt,0,0,0,0,0,0,0,ON
lah,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
lancelot,0,0,0,0,0,0,0,ON
lapbylap,0,0,0,0,0,0,0,ON
lastlap,0,0,0,0,0,0,0,Blink fu500 fd600
lca,0,0,0,0,0,0,0,ON
lectrono,0,0,0,0,0,0,0,ON
lectrofp,0,0,0,0,0,0,0,ON
ledzeppelin,0,0,0,0,0,0,0,E127 Blink fu500 fd600
leprechaun,0,0,0,0,0,0,0,ON
libad,0,0,0,0,0,0,0,E125 Blink f500 fd550
libertybell_1977,0,0,0,0,0,0,0,E127 Blink fu500 fd600
lightnin,0,0,0,0,0,0,0,ON
lightnfp,0,0,0,0,0,0,0,ON
LightningBall_1959,0,0,0,0,0,0,0,E134 Blink
linedrive,0,0,0,0,0,0,0,E111 Blink fu500 fd550
LINKINPARKPUP,0,0,0,0,0,0,0,ON
littlechief,0,0,0,0,0,0,0,0
LittleJoe_1971,0,0,0,0,0,0,0,E232 Blink
lizard,0,0,0,0,0,0,0,ON
lochness,0,0,0,0,0,0,0,E140 Blink fu500 fd600
locomotn,0,0,0,0,0,0,0,ON
lortium,0,0,0,0,0,0,0,ON
lostspc,0,0,0,0,0,0,0,L8 m550 Blink fu500 fd600
lostw,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
lostwldb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
lotr,0,0,0,0,0,0,0,L80 Blink fu500 fd550
lsrcu,0,0,0,0,0,0,0,ON
lucksmile4,0,0,0,0,0,0,0,0
lucksmile1,0,0,0,0,0,0,0,0
lucky,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
LuckyStrike_1978,0,0,0,0,0,0,0,E125 Blink fu500 fd600
lunelle,0,0,0,0,0,0,0,ON
lw3,0,0,0,0,0,0,0,L33 Blink fu500 fd550
mj,0,0,0,0,0,0,0,L33 Blink fu500 fd550
lwar,0,0,0,0,0,0,0,ON
lzbal,0,0,0,0,0,0,0,ON
m_mpac,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
m_mpaca,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
macgalxy,0,0,0,0,0,0,0,ON
mach2,0,0,0,0,0,0,0,ON
mach2a,0,0,0,0,0,0,0,ON
macjungl,0,0,0,0,0,0,0,ON
madrace,0,0,0,0,0,0,0,ON
madscientist,0,0,0,0,0,0,0,E116 Blink fu500 fd600
magic,0,0,0,0,0,0,0,ON
magic_circle,0,0,0,0,0,0,0,E125 Blink fu500 fd600
MagicCity_1967,0,0,0,0,0,0,0,0
Magnotron_1974,0,0,0,0,0,0,0,E135 Blink fu500 fd650
magodeoz,0,0,0,0,0,0,0,E125 Blink fu500 fd600
attackontitan,0,0,0,0,0,0,0,E125 Blink fu500 fd600
majorleague1934,0,0,0,0,0,0,0,0
mandalorian,0,0,0,0,0,0,0,ON
MARILYNMANSONPUP,0,0,0,0,0,0,0,ON
mariner_1971,0,0,0,0,0,0,0,E127 Blink fu500 fd600
marqueen,0,0,0,0,0,0,0,0
married,0,0,0,0,0,0,0,0
mars,0,0,0,0,0,0,0,ON
marstrek,0,0,0,0,0,0,0,E132 Blink fu500 fd600
masquerade,0,0,0,0,0,0,0,E200
matahari,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
mav,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
mb,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
mcastle,0,0,0,0,0,0,0,ON
medusa,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
megadeth,0,0,0,0,0,0,0,0
memlan,0,0,0,0,0,0,0,ON
men_in_black,0,0,0,0,0,0,0,0
metalman,0,0,0,0,0,0,0,ON
metalslug,0,0,0,0,0,0,0,E128 Blink fu500 fd600
meteor,0,0,0,0,0,0,0,ON
meteort,0,0,0,0,0,0,0,ON
metropolis,0,0,0,0,0,0,0,E150 Blink fu500 fd600
mexico,0,0,0,0,0,0,0,ON
mfdoom,0,0,0,0,0,0,0,ON
MI,0,0,0,0,0,0,0,E125 Blink f500 fd550
MIBS_1969,0,0,0,0,0,0,0,E312 Blink fu500 fd600
MickeyM,0,0,0,0,0,0,0,E200 Blink fu500 fd600
midearth,0,0,0,0,0,0,0,ON
milln,0,0,0,0,0,0,0,ON
MiniCycle_1970,0,0,0,0,0,0,0,E233 Blink fu500 fd600
minions,0,0,0,0,0,0,0,E128 Blink fu500 fd600
MiniPool_1969,0,0,0,0,0,0,0,E129 Blink
miss_o_1969,0,0,0,0,0,0,0,E137 Blink fu500 fd600
mississipi,0,0,0,0,0,0,0,E200 Blink fu500 fd600
missworld,0,0,0,0,0,0,0,0
mkii,0,0,0,0,0,0,0,E126 Blink fu500 fd600
mm,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
mmunsters,0,0,0,0,0,0,0,E140 Blink fu500 fd600
mnfb,0,0,0,0,0,0,0,ON
mnshnr,0,0,0,0,0,0,0,E119 Blink fu500 fd600
mntecrlo,0,0,0,0,0,0,0,ON
Moana,0,0,0,0,0,0,0,Blink fu500 fd600
monaco1977,0,0,0,0,0,0,0,ON
monkeyisland,0,0,0,0,0,0,0,0
monopoly,0,0,0,0,0,0,0,L80 Blink fu500 fd550
monopolf,0,0,0,0,0,0,0,L80 Blink fu500 fd550
monopole,0,0,0,0,0,0,0,L80 Blink fu500 fd550
montecarlo_1973,0,0,0,0,0,0,0,0
moonlght,0,0,0,0,0,0,0,ON
motrdome,0,0,0,0,0,0,0,ON
motrshow,0,0,0,0,0,0,0,ON
motu,0,0,0,0,0,0,0,E512/E513 Blink 250
mousn,0,0,0,0,0,0,0,ON
Mphisto,0,0,0,0,0,0,0,E125 Blink fu500 fd650
JPMephisto,0,0,0,0,0,0,0,E125 Blink fu500 fd650
mrblack,0,0,0,0,0,0,0,ON
MrDoom_1979,0,0,0,0,0,0,0,E118 Blink fu500 fd600
MrEvil_1979,0,0,0,0,0,0,0,E118 Blink fu500 fd600
mt_130,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mt_120,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mt_140,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mt_145,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mt_145h,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mt_145hc,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mtl_180,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
mtl_180c,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
mtl_180h,0,0,0,0,0,0,0,L72 m550 Blink fu500 fd550
mtl_180hc,0,0,0,0,0,0,0,L72 m550 Blink fu500 fd550
mtl_170hc,0,0,0,0,0,0,0,L72 m550 Blink fu500 fd550
mtl_170h,0,0,0,0,0,0,0,L72 m550 Blink fu500 fd550
mundial,0,0,0,0,0,0,0,ON Blink fu500 fd600
Mustang_1977,0,0,0,0,0,0,0,E126 Blink fu500 fd600
mystcas,0,0,0,0,0,0,0,L47 m550 Blink fu500 fd600
mysticb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
mystic,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
myststar,0,0,0,0,0,0,0,ON
nags_1960,0,0,0,0,0,0,0,E427 Blink fu500 fd600
nairobi,0,0,0,0,0,0,0,E200 Blink fu500 fd600
nascar,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd600
nautilus,0,0,0,0,0,0,0,ON Blink fu500 fd600
nba,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
nbaf,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
nbamac,0,0,0,0,0,0,0,ON
ndlsmr,0,0,0,0,0,0,0,ON
nemesis,0,0,0,0,0,0,0,ON
neptune,0,0,0,0,0,0,0,E137 Blink fu500 fd600
newwave,0,0,0,0,0,0,0,ON
newworld,0,0,0,0,0,0,0,E125 Blink fu500 fd600
NewYork_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
nf,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
nfl,0,0,0,0,0,0,0,ON
ngg,0,0,0,0,0,0,0,L88 Blink fu500 fd550
ngndshkr,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
ngndshkb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
ngndshkm,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
nightmarebc,0,0,0,0,0,0,0,E125 Blink f500 fd550
nightrdr,0,0,0,0,0,0,0,ON
nightrdb,0,0,0,0,0,0,0,ON
nightr20,0,0,0,0,0,0,0,ON
ninebal,0,0,0,0,0,0,0,ON
nipit_1973,0,0,0,0,0,0,0,E129 Blink fu500 fd600
NIRVANAPUP,0,0,0,0,0,0,0,ON
nmoves,0,0,0,0,0,0,0,ON
no rom v,0,0,0,0,0,0,0,0
Nobs,0,0,0,0,0,0,0,0
nobs_2016,0,0,0,0,0,0,0,E137 Blink fu500 fd600
northpole,0,0,0,0,0,0,0,E123 Blink fu500 fd600
NorthStar_1964,0,0,0,0,0,0,0,E200 Blink fu500 fd600
NOTLD68,0,0,0,0,0,0,0,E114 Blink fu500 fd600
Now_1971,0,0,0,0,0,0,0,E200 Blink fu500 fd600
nudge_test,0,0,0,0,0,0,0,Blink fu500 fd550
nudgeit,0,0,0,0,0,0,0,0
nudgy_1947,0,0,0,0,0,0,0,E127 Blink fu500 fd600
nugent,0,0,0,0,0,0,0,ON
obaoba,0,0,0,0,0,0,0,ON
OBWAT,0,0,0,0,0,0,0,E427 Blink fu500 fd600
odin_dlx,0,0,0,0,0,0,0,ON
odisea,0,0,0,0,0,0,0,ON
OKIES_TornadoRally,0,0,0,0,0,0,0,E137 Blink fu500 fd600
TornadoRally,0,0,0,0,0,0,0,E137 Blink fu500 fd600
old_chicago_1975,0,0,0,0,0,0,0,E123 Blink fu500 fd650
olympics_1962,0,0,0,0,0,0,0,E235 Blink fu500 fd600
olympus,0,0,0,0,0,0,0,ON
onbeam,0,0,0,0,0,0,0,E200 blink fu500 fd600
Op-Pop-Pop,0,0,0,0,0,0,0,E140 blink fu600 fd500
opthund,0,0,0,0,0,0,0,ON
orbit_1971,0,0,0,0,0,0,0,E130 Blink fu500 fd600
outerspace_1972,0,0,0,0,0,0,0,E130 Blink fu500 fd600
orbit1,0,0,0,0,0,0,0,ON
orbito,0,0,0,0,0,0,0,ON
OXO,0,0,0,0,0,0,0,E127 Blink fu500 fd600
ozzy,0,0,0,0,0,0,0,0
PalaceGuard_1970,0,0,0,0,0,0,0,E125 Blink fu500 fd600
panthera,0,0,0,0,0,0,0,ON
panther7,0,0,0,0,0,0,0,ON
tronclassic,0,0,0,0,0,0,0,ON
tronneon,0,0,0,0,0,0,0,ON
papa_smurf,0,0,0,0,0,0,0,E117 Blink fu500 fd600
Paradise_Gottlieb_1965,0,0,0,0,0,0,0,E211 Blink fu500 fd600
ParadiseJP,0,0,0,0,0,0,0,E140 blink fu600 fd500
paragon,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
party,0,0,0,0,0,0,0,ON
pathand1975,0,0,0,0,0,0,0,ON
paulbunyan_1968,0,0,0,0,0,0,0,E134 Blink fu500 fd600
pb,0,0,0,0,0,0,0,ON
pecmen,0,0,0,0,0,0,0,0
pentacup,0,0,0,0,0,0,0,ON
petaco,0,0,0,0,0,0,0,ON
petaco2,0,0,0,0,0,0,0,ON
pfevr,0,0,0,0,0,0,0,ON
pharo,0,0,0,0,0,0,0,ON
PhaseII_1975,0,0,0,0,0,0,0,E126 Blink fu500 fd650
phnix,0,0,0,0,0,0,0,ON
pimbal,0,0,0,0,0,0,0,ON
pinball,0,0,0,0,0,0,0,ON
pinbalfp,0,0,0,0,0,0,0,ON
PinballUniverse,0,0,0,0,0,0,0,E108 Blink fu500 fd550
PinballX,0,0,0,0,0,0,0,ON Blink fu500 fd600
PinballXMX,0,0,0,0,0,0,0,0
PinballY,0,0,0,0,0,0,0,ON Blink fu500 fd600
pinchamp,0,0,0,0,0,0,0,ON
pinclown,0,0,0,0,0,0,0,ON
pinjuke,0,0,0,0,0,0,0,ON I32/L19 100 I48
pink_floyd,0,0,0,0,0,0,0,ON
pinpool,0,0,0,0,0,0,0,ON
pinupmenu,0,0,0,0,0,0,0,ON
Pioneer,0,0,0,0,0,0,0,E122 Blink fu500 fd600
PirateGold_1969,0,0,0,0,0,0,0,E199 Blink fu500 fd600
PiratesLife2,0,0,0,0,0,0,0,0
pizzatime,0,0,0,0,0,0,0,ON
pkrno,0,0,0,0,0,0,0,0
play,0,0,0,0,0,0,0,ON
Playball_71VPX,0,0,0,0,0,0,0,E232 Blink
playboyb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
playboy,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
playboys,0,0,0,0,0,0,0,L72 Blink fu500 fd550
playboyf,0,0,0,0,0,0,0,L72 Blink fu500 fd550
playboystentacle,0,0,0,0,0,0,0,L72 Blink fu500 fd550
PlaymaticSpeakeasy,0,0,0,0,0,0,0,E131 Blink fu500 fd600
pmv112,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
pmv112r,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
pnkpnthr,0,0,0,0,0,0,0,ON
Pokemon_Pinball,0,0,0,0,0,0,0,E125 Blink fu500 fd600
ChronoTrigger,0,0,0,0,0,0,0,E125 Blink fu500 fd600
polar,0,0,0,0,0,0,0,ON
poleposn,0,0,0,0,0,0,0,ON
polic,0,0,0,0,0,0,0,ON
Poltergeist,0,0,0,0,0,0,0,E121 Blink fu500 fd550
pool,0,0,0,0,0,0,0,ON
pop,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd500
PopACard_1971,0,0,0,0,0,0,0,E200 Blink fu500 fd600
DropACard_1971,0,0,0,0,0,0,0,E200 Blink fu500 fd600
Poseidon_1978,0,0,0,0,0,0,0,E200 Blink fu500 fd600
PostTime_1969,0,0,0,0,0,0,0,E199 Blink fu500 fd600
potc,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
potcjp,0,0,0,0,0,0,0,0
poto,0,0,0,0,0,0,0,ON
powerrangers,0,0,0,0,0,0,0,E125 Blink f500 fd550
price_is_right,0,0,0,0,0,0,0,0
princess,0,0,0,0,0,0,0,ON
princefp,0,0,0,0,0,0,0,ON
Proc_CC,0,0,0,0,0,0,0,ON
proc_evildead,0,0,0,0,0,0,0,ON
evildead,0,0,0,0,0,0,0,ON
proc_gremlins,0,0,0,0,0,0,0,0
gremlins,0,0,0,0,0,0,0,0
Prospector_1977,0,0,0,0,0,0,0,E115 Blink fu500 fd600
prtyanim,0,0,0,0,0,0,0,ON
pstlpkr,0,0,0,0,0,0,0,L32 m550 Blink fu500 fd600
Psychedelic_1970,0,0,0,0,0,0,0,E123 Blink
pulpfiction,0,0,0,0,0,0,0,0
punchout,0,0,0,0,0,0,0,0
punchy,0,0,0,0,0,0,0,ON
punk,0,0,0,0,0,0,0,ON
Punk_Park,0,0,0,0,0,0,0,0
pupjukebox,0,0,0,0,0,0,0,ON Blink fu500 fd600
Purge,0,0,0,0,0,0,0,ON
PVM,0,0,0,0,0,0,0,0
pwerplay,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
pwerplab,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
pyramid_1978,0,0,0,0,0,0,0,E126 Blink fu500 fd600
pz,0,0,0,0,0,0,0,L78 m550 Blink fu500 fd600
qbquest,0,0,0,0,0,0,0,ON
QOTSA,0,0,0,0,0,0,0,ON
QueenOFHearts_1952,0,0,0,0,0,0,0,E218
quicks,0,0,0,0,0,0,0,ON
rab,0,0,0,0,0,0,0,L15 m550 Blink fu500 fd550
RackABall_1962,0,0,0,0,0,0,0,E312 Blink
rackemup,0,0,0,0,0,0,0,ON
radcl,0,0,0,0,0,0,0,ON
raimfire,0,0,0,0,0,0,0,ON
Rainbow_1956,0,0,0,0,0,0,0,E134 Blink fu500 fd600
rally,0,0,0,0,0,0,0,ON
Rambo,0,0,0,0,0,0,0,0
Rancho_1965,0,0,0,0,0,0,0,E135 Blink
rancho1976,0,0,0,0,0,0,0,ON
rapidfir,0,0,0,0,0,0,0,0
ratfink,0,0,0,0,0,0,0,ON
raven,0,0,0,0,0,0,0,ON
Rawhide,0,0,0,0,0,0,0,0
Stampede,0,0,0,0,0,0,0,0
rctycn,0,0,0,0,0,0,0,L64 Blink fu500 fd550
rct701,0,0,0,0,0,0,0,L64 Blink fu500 fd550
rdkng,0,0,0,0,0,0,0,ON
RED_HOT_Pinball,0,0,0,0,0,0,0,0
rescu911,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
ReydeDiamantes_1967,0,0,0,0,0,0,0,E125 Blink
rflshdlx,0,0,0,0,0,0,0,ON
RHCPPUP,0,0,0,0,0,0,0,ON
RickMorty,0,0,0,0,0,0,0,E126 Blink fu500 fd600
ripleys,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd550
ripleysf,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd550
RoadRace_1969,0,0,0,0,0,0,0,E109 Blink fu500 fd600
roadrunr,0,0,0,0,0,0,0,ON
robo,0,0,0,0,0,0,0,ON
robot,0,0,0,0,0,0,0,ON
robowars,0,0,0,0,0,0,0,ON
rock,0,0,0,0,0,0,0,ON
rock_enc,0,0,0,0,0,0,0,ON
rock2500,0,0,0,0,0,0,0,ON
RocketIII_1967,0,0,0,0,0,0,0,E114 Blink fu500 fd600
rockmakers_1968,0,0,0,0,0,0,0,E199 Blink fu500 fd600
rocky,0,0,0,0,0,0,0,ON
rockyle,0,0,0,0,0,0,0,ON
roldisco,0,0,0,0,0,0,0,ON
RollerCoaster_1971,0,0,0,0,0,0,0,E117 Blink fu500 fd600
rollr,0,0,0,0,0,0,0,ON
rollstob,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
RomanVictory,0,0,0,0,0,0,0,E125 Blink fu500 fd600
roses_1962,0,0,0,0,0,0,0,E121 Blink fu500 fd600
RoyalPair_1974,0,0,0,0,0,0,0,E129 Blink
rs,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
rsn,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
rugby,0,0,0,0,0,0,0,ON
runninghorse,0,0,0,0,0,0,0,E200 Blink fu500 fd600
rush_le,0,0,0,0,0,0,0,0
RUSH2112_B2S,0,0,0,0,0,0,0,ON
rvrbt,0,0,0,0,0,0,0,ON
SanFrancisco1964,0,0,0,0,0,0,0,E232 Blink fu500 fd600
SatinDoll_1975,0,0,0,0,0,0,0,E118 Blink
saturn2,0,0,0,0,0,0,0,ON
sc,0,0,0,0,0,0,0,L88 Blink fu500 fd550
Scarface,0,0,0,0,0,0,0,E132 Blink fu500 fd550
scarn200,0,0,0,0,0,0,0,ON m550 Blink fu500 fd550
schuss,0,0,0,0,0,0,0,E200 Blink fu500 fd600
Scooby,0,0,0,0,0,0,0,E121 Blink fu500 fd550
scram,0,0,0,0,0,0,0,ON
scrpn_l1,0,0,0,0,0,0,0,ON
scrpn_t1,0,0,0,0,0,0,0,ON
Scuba_1970,0,0,0,0,0,0,0,E115 Blink fu500 fd600
searay_1971,0,0,0,0,0,0,0,E127 Blink fu500 fd600
seawitch,0,0,0,0,0,0,0,ON
seawitfp,0,0,0,0,0,0,0,ON
Secretagent,0,0,0,0,0,0,0,0
seesaw,0,0,0,0,0,0,0,ON
SegaGalaxy,0,0,0,0,0,0,0,0
serioussam,0,0,0,0,0,0,0,E125 Blink fu500 fd600
swampthing,0,0,0,0,0,0,0,E125 Blink fu500 fd600
sevenwinner,0,0,0,0,0,0,0,E200 Blink fu500 fd600
sfight2,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
sfight2a,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
sfight2b,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
shamrock4,0,0,0,0,0,0,0,E200 Blink fu500 fd600
shamrock1,0,0,0,0,0,0,0,E200 Blink fu500 fd600
Shangrila,0,0,0,0,0,0,0,ON
shaqatt,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
shark,0,0,0,0,0,0,0,ON
sharkt,0,0,0,0,0,0,0,ON
Sheriff_1971,0,0,0,0,0,0,0,E111 Blink fu500 fd600
ShipMates_1964,0,0,0,0,0,0,0,E110 Blink
shock,0,0,0,0,0,0,0,ON
shovelknight,0,0,0,0,0,0,0,ON
shr,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
shrkysht,0,0,0,0,0,0,0,L71 m550 Blink fu500 fd600
Silver,0,0,0,0,0,0,0,0
silvslug,0,0,0,0,0,0,0,ON
simp,0,0,0,0,0,0,0,ON
simpprty,0,0,0,0,0,0,0,L31 m550 fu500 fd600
simpprtf,0,0,0,0,0,0,0,L31 m550 fu500 fd600
simpprtg,0,0,0,0,0,0,0,L31 m550 fu500 fd600
simpprti,0,0,0,0,0,0,0,L31 m550 fu500 fd600
simpprtl,0,0,0,0,0,0,0,L31 m550 fu500 fd600
simpprtyh,0,0,0,0,0,0,0,L31 m550 fu500 fd600
sinbad,0,0,0,0,0,0,0,ON
sincity,0,0,0,0,0,0,0,ON
sing_along_1967,0,0,0,0,0,0,0,E124 Blink fu500 fd600
skateblb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
skatebll,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
skatebrd,0,0,0,0,0,0,0,ON Blink fu500 fd600
skijump,0,0,0,0,0,0,0,L10 m550 Blink fu500 fd600
Skipper_1969,0,0,0,0,0,0,0,E117 Blink
Sky_Jump_1974,0,0,0,0,0,0,0,E136 Blink fu500 fd600
Skylab1974,0,0,0,0,0,0,0,ON
skyrocket,0,0,0,0,0,0,0,ON
Skyscraper,0,0,0,0,0,0,0,0
skyway_1954,0,0,0,0,0,0,0,E102 Blink fu500 fd600
slbmania,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
slbmanib,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
SlickChick_1963,0,0,0,0,0,0,0,E134 Blink fu500 fd600
sman,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
smart_set_1969,0,0,0,0,0,0,0,E128 Blink fu500 fd600
smb3,0,0,0,0,0,0,0,ON
smbmush,0,0,0,0,0,0,0,L80 m550 fu500 fd600
smman,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
smmanb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
smmanc,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
smmand,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
smurfette,0,0,0,0,0,0,0,E130 Blink fu500 fd600
snake,0,0,0,0,0,0,0,ON
SnowDerby_1970,0,0,0,0,0,0,0,E123 Blink fu500 fd600
snspares,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
soa,0,0,0,0,0,0,0,E136 Blink fu500 fd600
Soccer1964,0,0,0,0,0,0,0,E232 Blink
sock,0,0,0,0,0,0,0,ON
solar,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
solaride,0,0,0,0,0,0,0,ON
solarrideem,0,0,0,0,0,0,0,E200 Blink f500 fd550
solarwar,0,0,0,0,0,0,0,ON
Solitaire_1967,0,0,0,0,0,0,0,E125 Blink
sonstw,0,0,0,0,0,0,0,ON
sopranos,0,0,0,0,0,0,0,L80 Blink fu500 fd550
sopranof,0,0,0,0,0,0,0,L80 Blink fu500 fd550
sorbit,0,0,0,0,0,0,0,0
sorcr,0,0,0,0,0,0,0,ON
SOTA,0,0,0,0,0,0,0,0
soundstage,0,0,0,0,0,0,0,E200 blink fu500 fd600
spacecty,0,0,0,0,0,0,0,ON
spacehaw,0,0,0,0,0,0,0,ON
spaceinv,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
spaceinb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
spacej,0,0,0,0,0,0,0,ON
spacejam,0,0,0,0,0,0,0,ON
spacejmg,0,0,0,0,0,0,0,ON
spacemission_1976,0,0,0,0,0,0,0,E130 Blink fu500 fd600
SpaceOrbit_1972,0,0,0,0,0,0,0,E233 Blink
SpacePatrol,0,0,0,0,0,0,0,E125 Blink fu500 fd600
spaceramp,0,0,0,0,0,0,0,ON
spacetime_1972,0,0,0,0,0,0,0,E125 Blink fu500 fd600
spacewalk_1979,0,0,0,0,0,0,0,E121 Blink fu500 fd600
spagb_100,0,0,0,0,0,0,0,0
spagb_100b2s,0,0,0,0,0,0,0,E83 Blink fu500 fd600
spanisheyes_1972,0,0,0,0,0,0,0,E121 Blink fu500 fd600
spcgambl,0,0,0,0,0,0,0,ON
spcrider,0,0,0,0,0,0,0,ON
spctrain,0,0,0,0,0,0,0,ON
speake,0,0,0,0,0,0,0,ON
specforc,0,0,0,0,0,0,0,ON
spectru4,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
spidermanjp,0,0,0,0,0,0,0,E116 Blink 400/E118
spidermn,0,0,0,0,0,0,0,ON
spiderm7,0,0,0,0,0,0,0,ON
SpinACard_1969,0,0,0,0,0,0,0,E129 Blink fu500 fd600
HeartsAndSpades_1969,0,0,0,0,0,0,0,E129 Blink fu500 fd600
spinningwheel,0,0,0,0,0,0,0,E200 Blink fu500 fd600
SpinOut_1975,0,0,0,0,0,0,0,E110 Blink fu500 fd600
spirit,0,0,0,0,0,0,0,ON
Spiritof76,0,0,0,0,0,0,0,E126 fu300 fd400
splitsec,0,0,0,0,0,0,0,ON
splitsfp,0,0,0,0,0,0,0,ON
spongebob,0,0,0,0,0,0,0,E121 BLINK 700 F200
spooky,0,0,0,0,0,0,0,ON
spooki,0,0,0,0,0,0,0,ON
SpookyWednesday,0,0,0,0,0,0,0,0
SpookyWednesdayPro,0,0,0,0,0,0,0,0
spotacard_1960,0,0,0,0,0,0,0,E144 Blink fu500 fd600
SPP,0,0,0,0,0,0,0,0
sprbreak,0,0,0,0,0,0,0,ON
sprbrk,0,0,0,0,0,0,0,ON
sprk,0,0,0,0,0,0,0,ON
spstn,0,0,0,0,0,0,0,ON
spyhunt,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
squid_game,0,0,0,0,0,0,0,0
SS,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
sshooter,0,0,0,0,0,0,0,ON
sshootr2,0,0,0,0,0,0,0,ON
sshtl,0,0,0,0,0,0,0,ON
sshtlzac,0,0,0,0,0,0,0,ON
sshuttle,0,0,0,0,0,0,0,ON
sst,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
sstb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
sstc,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
sstd,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
ssvc,0,0,0,0,0,0,0,ON
st_162,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
st_161c,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
st_162c,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
st_162h,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd550
st_161hc,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd550
st_161h,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd550
star_jet,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Stardust,0,0,0,0,0,0,0,E200 Blink fu500 fd600
starfire,0,0,0,0,0,0,0,ON Blink fu500 fd600
stargat4,0,0,0,0,0,0,0,ON
stargat5,0,0,0,0,0,0,0,ON
stargod,0,0,0,0,0,0,0,L13 m550 Blink fu500 fd600
stargoda,0,0,0,0,0,0,0,L13 m550 Blink fu500 fd600
stargzr,0,0,0,0,0,0,0,ON
stargzrb,0,0,0,0,0,0,0,ON
stargzfp,0,0,0,0,0,0,0,ON
StarPool_1974,0,0,0,0,0,0,0,E131 Blink fu500 fd600
starrace,0,0,0,0,0,0,0,ON
cataarc7,0,0,0,0,0,0,0,ON
stars,0,0,0,0,0,0,0,ON
starship,0,0,0,0,0,0,0,E200 Blink FU500 FD600
startrek,0,0,0,0,0,0,0,ON
startrekb,0,0,0,0,0,0,0,ON
startreb,0,0,0,0,0,0,0,ON
startrek_1971,0,0,0,0,0,0,0,E136 Blink fu500 fd600
startrip,0,0,0,0,0,0,0,0
startrp,0,0,0,0,0,0,0,ON
StarWars_1978,0,0,0,0,0,0,0,E137 Blink fu500 fd600
starwarsbh,0,0,0,0,0,0,0,ON
stest,0,0,0,0,0,0,0,ON
stingray,0,0,0,0,0,0,0,ON
stingrfp,0,0,0,0,0,0,0,ON
stk,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
STLE,0,0,0,0,0,0,0,ON
stlwr,0,0,0,0,0,0,0,ON
straight_flush,0,0,0,0,0,0,0,E126 Blink fu500 fd600
WilliamsStraightFlush,0,0,0,0,0,0,0,E126 Blink fu500 fd600
stranger_things,0,0,0,0,0,0,0,E140 Blink fu500 fd600
STRANGERTHINGS4,0,0,0,0,0,0,0,ON
StrangerThings4_Premium,0,0,0,0,0,0,0,ON
strapids,0,0,0,0,0,0,0,ON
Stratoflite,0,0,0,0,0,0,0,E109 Blink fu500 fd550
strawman,0,0,0,0,0,0,0,E129 Blink fu500 fd600
strike,0,0,0,0,0,0,0,ON
striker,0,0,0,0,0,0,0,ON
strikext,0,0,0,0,0,0,0,ON
strxt,0,0,0,0,0,0,0,ON
stripping_funny,0,0,0,0,0,0,0,0
strlt,0,0,0,0,0,0,0,ON
strngsci,0,0,0,0,0,0,0,ON
strsphnx,0,0,0,0,0,0,0,ON
strworld,0,0,0,0,0,0,0,ON
sttng,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
stwr,0,0,0,0,0,0,0,L25 m550 Blink fu500 fd600
superman,0,0,0,0,0,0,0,ON
Superman_tjl,0,0,0,0,0,0,0,0
SupermanLE,0,0,0,0,0,0,0,ON
supermantas,0,0,0,0,0,0,0,0
supersoccer,0,0,0,0,0,0,0,On
superstar,0,0,0,0,0,0,0,E112 Blink fu500 fd550
SuperStraight,0,0,0,0,0,0,0,E133 Blink fu500 fd600
suprbowl,0,0,0,0,0,0,0,ON
supreme,0,0,0,0,0,0,0,0
suprnova,0,0,0,0,0,0,0,ON
sureshot,0,0,0,0,0,0,0,ON
Surfer_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
SurfChamp_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
surfnsaf,0,0,0,0,0,0,0,ON
SurfSide_1967,0,0,0,0,0,0,0,E232 Blink
SweetHearts_1963,0,0,0,0,0,0,0,E200 Blink fu500 fd600
swingalong,0,0,0,0,0,0,0,E200 Blink fu500 fd600
Swinger_1972,0,0,0,0,0,0,0,0
swrds,0,0,0,0,0,0,0,ON
fallout,0,0,0,0,0,0,0,ON
swtril43,0,0,0,0,0,0,0,ON
t2,0,0,0,0,0,0,0,L84 Blink fu500 fd550
taf,0,0,0,0,0,0,0,L88 Blink fu500 fd550
tafg,0,0,0,0,0,0,0,L88 Blink fu500 fd550
tagteam,0,0,0,0,0,0,0,ON
TamTam_1975,0,0,0,0,0,0,0,E130 Blink
Target_Alpha_1976,0,0,0,0,0,0,0,E111 Blink fu500 fd650
TargetPool_1969,0,0,0,0,0,0,0,E129 Blink
taxi,0,0,0,0,0,0,0,ON
TeachersPet_1965,0,0,0,0,0,0,0,E200 Blink fu500 fd600
TeamOne_77VPX,0,0,0,0,0,0,0,E126 Blink
teedoff3,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
TenasiousD,0,0,0,0,0,0,0,0
Firepower II,0,0,0,0,0,0,0,0
term3,0,0,0,0,0,0,0,L53 m550 Blink fu500 fd650
term3f,0,0,0,0,0,0,0,L53 m550 Blink fu500 fd650
term3g,0,0,0,0,0,0,0,L53 m550 Blink fu500 fd650
term3i,0,0,0,0,0,0,0,L53 m550 Blink fu500 fd650
term3l,0,0,0,0,0,0,0,L53 m550 Blink fu500 fd650
Terrifier,0,0,0,0,0,0,0,0
terrlake,0,0,0,0,0,0,0,ON
tf,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
tfle,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
tfight,0,0,0,0,0,0,0,ON
tftc,0,0,0,0,0,0,0,L16 m550 Blink fu500 fd550
the_fog_1979,0,0,0,0,0,0,0,E121 Blink fu500 fd600
The+War+of+the+Worlds,0,0,0,0,0,0,0,0
thecerebralmaze,0,0,0,0,0,0,0,E132 Blink fu500 fd600
thegames,0,0,0,0,0,0,0,ON
TheMatrix,0,0,0,0,0,0,0,E125
theraid,0,0,0,0,0,0,0,ON
theweb,0,0,0,0,0,0,0,ON
thewiggler_1967,0,0,0,0,0,0,0,E199 Blink fu500 fd600
thndrman,0,0,0,0,0,0,0,0
Threeangels,0,0,0,0,0,0,0,0
thund_p,0,0,0,0,0,0,0,ON
ThunderCats,0,0,0,0,0,0,0,E114 Blink fu500 fd600
Tiger_1975,0,0,0,0,0,0,0,E130 Blink
time2000,0,0,0,0,0,0,0,ON
timeline,0,0,0,0,0,0,0,ON
TimeLord,0,0,0,0,0,0,0,0
timeshock,0,0,0,0,0,0,0,L0
timetunnel_1971,0,0,0,0,0,0,0,E125 Blink fu500 fd600
tiros,0,0,0,0,0,0,0,0
titan,0,0,0,0,0,0,0,ON
tko_1979,0,0,0,0,0,0,0,E123 Blink fu500 fd600
TlD_123,0,0,0,0,0,0,0,E200 Blink fu500 fd600
tmac,0,0,0,0,0,0,0,ON
tmachzac,0,0,0,0,0,0,0,ON
tmachfp,0,0,0,0,0,0,0,ON
tmachffp,0,0,0,0,0,0,0,ON
tmacgfp,0,0,0,0,0,0,0,ON
tmaczfap,0,0,0,0,0,0,0,ON
tmfnt,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
tmnt,0,0,0,0,0,0,0,ON
tmwrp,0,0,0,0,0,0,0,ON
tna,0,0,0,0,0,0,0,E140 Blink fu500 fd600
toledo,0,0,0,0,0,0,0,0
tom,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
tomb_raider,0,0,0,0,0,0,0,0
tomjerry,0,0,0,0,0,0,0,ON
tomy,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd550
TOOLPUP,0,0,0,0,0,0,0,ON
TopCard_1974,0,0,0,0,0,0,0,E200 Blink fu500 fd600
TopHand_1973,0,0,0,0,0,0,0,E116 Blink
torch,0,0,0,0,0,0,0,ON
torp,0,0,0,0,0,0,0,ON
Torpedo,0,0,0,0,0,0,0,E125 Blink fu500 fd600
totan,0,0,0,0,0,0,0,L88 Blink fu500 fd550
totem,0,0,0,0,0,0,0,ON
TotemEM,0,0,0,0,0,0,0,ON
touchdn,0,0,0,0,0,0,0,ON
Touchdown_1967,0,0,0,0,0,0,0,E232 Blink fu500 fd600
trade_winds,0,0,0,0,0,0,0,E112 Blink fu500 fd600
trailer,0,0,0,0,0,0,0,ON Blink fu500 fd600
trek,0,0,0,0,0,0,0,L31 m550 Blink fu500 fd600
trickrtreat,0,0,0,0,0,0,0,ON
tricksht,0,0,0,0,0,0,0,ON Blink fu500 fd600
trident,0,0,0,0,0,0,0,ON
trigon,0,0,0,0,0,0,0,E116 Blink fu500 fd600
triplay,0,0,0,0,0,0,0,ON
TripleAction_1973,0,0,0,0,0,0,0,E200 Blink fu500 fd600
StarAction_1973,0,0,0,0,0,0,0,E200 Blink fu500 fd600
triplestrike,0,0,0,0,0,0,0,E120 Blink f500
TripleX_1973,0,0,0,0,0,0,0,0
trizn_l1,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
trn_174h,0,0,0,0,0,0,0,L65 m550 Blink fu500 fd600
TropicFun_1973,0,0,0,0,0,0,0,E127 Blink fu500 fd600
trucksp3,0,0,0,0,0,0,0,ON
ts,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
tsptr,0,0,0,0,0,0,0,ON
twd_156,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
twd_160,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
twd_156h,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
twd_160h,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
twenty4,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
twst,0,0,0,0,0,0,0,ON
txsector,0,0,0,0,0,0,0,ON
tz,0,0,0,0,0,0,0,L88 Blink fu500 fd550
u-foes,0,0,0,0,0,0,0,0
uboat65,0,0,0,0,0,0,0,ON Blink fu500 fd600
uefa_cl,0,0,0,0,0,0,0,E150 Blink fu500 fd600
underwater,0,0,0,0,0,0,0,E125 Blink fu500 fd600
universe,0,0,0,0,0,0,0,E200 Blink fu500 fd600
ut99ctf,0,0,0,0,0,0,0,E115 BLINK 700 F200
v1,0,0,0,0,0,0,0,ON
Vampire,0,0,0,0,0,0,0,0
vampirella,0,0,0,0,0,0,0,0
VANHALENPUP,0,0,0,0,0,0,0,ON
vector,0,0,0,0,0,0,0,ON
vectora,0,0,0,0,0,0,0,ON
vectorb,0,0,0,0,0,0,0,ON
vegas,0,0,0,0,0,0,0,ON
vegast,0,0,0,0,0,0,0,ON
victory,0,0,0,0,0,0,0,ON
vikingb,0,0,0,0,0,0,0,ON
viper,0,0,0,0,0,0,0,ON
viprsega,0,0,0,0,0,0,0,ON
vlcno_ax,0,0,0,0,0,0,0,ON
volkan,0,0,0,0,0,0,0,E113 BLINK 700 F200
volley_1976,0,0,0,0,0,0,0,E123 Blink fu500 fd650
voltan,0,0,0,0,0,0,0,ON
voodoo,0,0,0,0,0,0,0,E122 BLINK 700 F200
vortex,0,0,0,0,0,0,0,ON
VP_DOF_TEST,0,0,0,0,0,0,0,0
VpBuffyVamp,0,0,0,0,0,0,0,E125 Blink fu500 fd600
vrnwrld,0,0,0,0,0,0,0,ON
wackyraces,0,0,0,0,0,0,0,0
waroftheworlds,0,0,0,0,0,0,0,0
watchmen,0,0,0,0,0,0,0,ON
waterwld,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
wcs,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
wcsoccer,0,0,0,0,0,0,0,ON
wcsoccd2,0,0,0,0,0,0,0,ON
wcup90,0,0,0,0,0,0,0,ON
wd,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
wheel_maresa,0,0,0,0,0,0,0,E125 Blink fu500 fd600
whirl,0,0,0,0,0,0,0,ON Blink fu500 fd700
whirl_wind_1958,0,0,0,0,0,0,0,E199 Blink fu500 fd600
Whoa_Nellie_EM,0,0,0,0,0,0,0,E121 Blink fu500 fd600
primus,0,0,0,0,0,0,0,E121 Blink fu500 fd600
pabst,0,0,0,0,0,0,0,E121 Blink fu500 fd600
wildfyre,0,0,0,0,0,0,0,ON Blink fu500 fd600
WildWest,0,0,0,0,0,0,0,0
wildwildwest_1969,0,0,0,0,0,0,0,E130 Blink fu500 fd600
Williams8Ball1966,0,0,0,0,0,0,0,E232 Blink fu500 fd600
willywonka,0,0,0,0,0,0,0,0
wimbledon,0,0,0,0,0,0,0,E123 Blink fu500 fd600
wipeout,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
wizard_1975,0,0,0,0,0,0,0,E119 Blink fu500 fd600
wldcp,0,0,0,0,0,0,0,ON
wof,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
wolfman,0,0,0,0,0,0,0,ON
Wooly,0,0,0,0,0,0,0,E121 Blink fu500 fd550
worlddef,0,0,0,0,0,0,0,ON
worlds_fair,0,0,0,0,0,0,0,0
WorldSeries_1972,0,0,0,0,0,0,0,E232 Blink
woz_original,0,0,0,0,0,0,0,E114 Blink fu500 fd600
wpt,0,0,0,0,0,0,0,L1 m550 fu500 fd600
wrldtou2,0,0,0,0,0,0,0,L39 m550 Blink fu500 fd550
wrlok,0,0,0,0,0,0,0,ON
ww,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
wwfr,0,0,0,0,0,0,0,L16 m550 Blink fu500 fd600
Xenon,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
xfiles,0,0,0,0,0,0,0,ON
xmn_151,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
xmn_151h,0,0,0,0,0,0,0,L39 Blink fu500 fd600
xmn_151hc,0,0,0,0,0,0,0,L39 Blink fu500 fd600
xsandos,0,0,0,0,0,0,0,ON
xsandosa,0,0,0,0,0,0,0,ON
yellowsub,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Yes,0,0,0,0,0,0,0,0
yukon,0,0,0,0,0,0,0,ON
zankor,0,0,0,0,0,0,0,ON
zankorfp,0,0,0,0,0,0,0,ON
zarza,0,0,0,0,0,0,0,ON
zekespeak,0,0,0,0,0,0,0,E102 Blink fu500 fd600
zephy,0,0,0,0,0,0,0,0
zipadoo_1970,0,0,0,0,0,0,0,E118 Blink fu500 fd600
zira,0,0,0,0,0,0,0,ON
zissou,0,0,0,0,0,0,0,0
zodiac_1971,0,0,0,0,0,0,0,E314 Blink fu500 fd600
zof10,0,0,0,0,0,0,0,E172 Blink fu500 fd600
test_basic,0,0,0,0,0,0,0,L88
test_fade,0,0,0,0,0,0,0,L88 fu500 fd550
test_blink,0,0,0,0,0,0,0,L88 Blink
test_both,0,0,0,0,0,0,0,L88 Blink fu500 fd550

directoutputconfig120.ini:

[version]
version=5132
mindofversion=0.8

[Colors DOF]
Black=#000000FF
White=#FFFFFFFF
Red=#FF0000FF
Lime=#00FF00FF
Blue=#0000FFFF
Yellow=#FFFF00FF
Cyan=#00FFFFFF
Magenta=#FF00FFFF
Silver=#C0C0C0FF
Gray=#808080FF
Brown=#800000FF
Olive=#808000FF
Green=#008000FF
Purple=#800080FF
Teal=#008080FF
Navy=#000080FF
Dark_red=#8B0000FF
Firebrick=#B22222FF
Crimson=#DC143CFF
Tomato=#FF6347FF
Coral=#FF7F50FF
Indian_red=#CD5C5CFF
Light_coral=#F08080FF
Dark_salmon=#E9967AFF
Salmon=#FA8072FF
Light_salmon=#FFA07AFF
Orange_red=#FF4500FF
Dark_orange=#FF8C00FF
Orange=#FFA500FF
Gold=#FFD700FF
Dark_golden_rod=#B8860BFF
Golden_rod=#DAA520FF
Pale_golden_rod=#EEE8AAFF
Dark_khaki=#BDB76BFF
Khaki=#F0E68CFF
Yellow_green=#9ACD32FF
Dark_olive_green=#556B2FFF
Olive_drab=#6B8E23FF
Lawn_green=#7CFC00FF
Chart_reuse=#7FFF00FF
Green_yellow=#ADFF2FFF
Dark_green=#006400FF
Forest_green=#228B22FF
Lime_green=#32CD32FF
Light_green=#90EE90FF
Pale_green=#98FB98FF
Dark_sea_green=#8FBC8FFF
Medium_spring_green=#00FA9AFF
Spring_green=#00FF7FFF
Sea_green=#2E8B57FF
Medium_aqua_marine=#66CDAAFF
Medium_sea_green=#3CB371FF
Light_sea_green=#20B2AAFF
Dark_slate_gray=#2F4F4FFF
Dark_cyan=#008B8BFF
Aqua=#00FFFFFF
Light_cyan=#E0FFFFFF
Dark_turquoise=#00CED1FF
Turquoise=#40E0D0FF
Medium_turquoise=#48D1CCFF
Pale_turquoise=#AFEEEEFF
Aqua_marine=#7FFFD4FF
Powder_blue=#B0E0E6FF
Cadet_blue=#5F9EA0FF
Steel_blue=#4682B4FF
Corn_flower_blue=#6495EDFF
Deep_sky_blue=#00BFFFFF
Dodger_blue=#1E90FFFF
Light_blue=#ADD8E6FF
Sky_blue=#87CEEBFF
Light_sky_blue=#87CEFAFF
Midnight_blue=#191970FF
Dark_blue=#00008BFF
Medium_blue=#0000CDFF
Royal_blue=#4169E1FF
Blue_violet=#8A2BE2FF
Indigo=#4B0082FF
Dark_slate_blue=#483D8BFF
Slate_blue=#6A5ACDFF
Medium_slate_blue=#7B68EEFF
Medium_purple=#9370DBFF
Dark_magenta=#8B008BFF
Dark_violet=#9400D3FF
Dark_orchid=#9932CCFF
Medium_orchid=#BA55D3FF
Thistle=#D8BFD8FF
Plum=#DDA0DDFF
Violet=#EE82EEFF
Orchid=#DA70D6FF
Medium_violet_red=#C71585FF
Pale_violet_red=#DB7093FF
Deep_pink=#FF1493FF
Light_pink=#FFB6C1FF
Pink=#FFC0CBFF
Antique_white=#FAEBD7FF
Beige=#F5F5DCFF
Bisque=#FFE4C4FF
Corn_silk=#FFF8DCFF
Lemon_chiffon=#FFFACDFF
Light_golden_rod=#FAFAD2FF
Light_yellow=#FFFFE0FF
Saddle_brown=#8B4513FF
Sienna=#A0522DFF
Chocolate=#D2691EFF
Peru=#CD853FFF
Sandy_brown=#F4A460FF
Burly_wood=#DEB887FF
Tan=#D2B48CFF
Rosy_brown=#BC8F8FFF
Moccasin=#FFE4B5FF
Navajo_white=#FFDEADFF
Peach_puff=#FFDAB9FF
Misty_rose=#FFE4E1FF
Lavender_blush=#FFF0F5FF
Papaya_whip=#FFEFD5FF
Slate_gray=#708090FF
Light_slate_gray=#778899FF
Light_steel_blue=#B0C4DEFF
Lavender=#E6E6FAFF
Dim_gray=#696969FF
Dark_gray=#A9A9A9FF
Amber=#FFBF00FF

[TableVariables]
diner,flshemulo=AH100 AL0 AT0 AW19 SHPLetterD/flshemuli=AH100 AL20 AT0 AW19 SHPLetterI/flshemuc=AH100 AL40 AT0 AW19 SHPLetterN/flshemuri=AH100 AL60 AT0 AW19 SHPLetterE/flshemuro=AH100 AL80 AT0 AW19 SHPLetterR
tom,flshemulo=AH100 AL0 AT0 AW19 SHPLetterM/flshemuli=AH100 AL20 AT0 AW19 SHPLetterA/flshemuc=AH100 AL40 AT0 AW19 SHPLetterG/flshemuri=AH100 AL60 AT0 AW19 SHPLetterI/flshemuro=AH100 AL80 AT0 AW19 SHPLetterC
tomy,flshemulo=AH100 AL0 AT0 AW19 SHPLetterT/flshemuli=AH100 AL20 AT0 AW19 SHPLetterO/flshemuc=AH100 AL40 AT0 AW19 SHPLetterM/flshemuri=AH100 AL60 AT0 AW19 SHPLetterM/flshemuro=AH100 AL80 AT0 AW19 SHPLetterY
whirl,flshemulo = AH100 AL0 AT0 AW19 SHPLetterS / flshemuli = AH100 AL20 AT0 AW19 SHPLetterT / flshemuc = AH100 AL40 AT0 AW19 SHPLetterO / flshemuri = AH100 AL60 AT0 AW19 SHPLetterR / flshemuro = AH100 AL80 AT0 AW19 SHPLetterM
black100,playon=(W43=0)
pinupmenu,ON
serioussam,Godfather
goonies,flshemulo = AH100 AL0 AT0 AW19 SHPLetterS / flshemuli = AH100 AL20 AT0 AW19 SHPLetterL / flshemuc = AH100 AL40 AT0 AW19 SHPLetterO / flshemuri = AH100 AL60 AT0 AW19 SHPLetterT / flshemuro = AH100 AL80 AT0 AW19 SHPLetterH
christmasp,flshemulo = AH100 AL0 AT0 AW19 SHPLetterH / flshemuli = AH100 AL20 AT0 AW19 SHPLetterO / flshemuc = AH100 AL40 AT0 AW19 SHPColorSwirl / flshemuri = AH100 AL60 AT0 AW19 SHPLetterH / flshemuro = AH100 AL80 AT0 AW19 SHPLetterO
jpsdeadpool,Cenobite
bourne,DOFLock=1

[Variables DOF]
t = 60 I48
dt = 60 I48
strblft = White AH30 AL0 AT0 AW9 SHPCircle3
strbrgt = White AH30 AL91 AT0 AW9 SHPCircle3
flshemulo = AH100 AL0 AT0 AW19 SHPCircle3
flshemuli = AH100 AL20 AT0 AW19 SHPCircle3
flshemuc = AH100 AL40 AT0 AW19 SHPCircle3
flshemuri = AH100 AL60 AT0 AW19 SHPCircle3
flshemuro = AH100 AL80 AT0 AW19 SHPCircle3
flasherclo = AH100 AL0 AT0 AW14
flashercli = AH100 AL20 AT0 AW14
flashercc = AH100 AL40 AT0 AW14
flashercri = AH100 AL60 AT0 AW14
flashercro = AH100 AL80 AT0 AW14
LetterA = SHPLetterA
LetterB = SHPLetterB
LetterC = SHPLetterC
LetterD = SHPLetterD
LetterE = SHPLetterE
LetterF = SHPLetterF
LetterG = SHPLetterG
LetterH = SHPLetterH
LetterI = SHPLetterI
LetterJ = SHPLetterJ
LetterK = SHPLetterK
LetterL = SHPLetterL
LetterM = SHPLetterM
LetterN = SHPLetterN
LetterO = SHPLetterO
LetterP = SHPLetterP
LetterQ = SHPLetterQ
LetterR = SHPLetterR
LetterS = SHPLetterS
LetterT = SHPLetterT
LetterU = SHPLetterU
LetterV = SHPLetterV
LetterW = SHPLetterW
LetterX = SHPLetterX
LetterY = SHPLetterY
LetterZ = SHPLetterZ
ForwardSlash = SHPForwardSlash
Apostrophe = SHPApostrophe
ArrowLeft = SHPArrowLeft
ArrowRight = SHPArrowRight
AtSymbol = SHPAtSymbol
CirclePulse = SHPCirclePulse
Colon = SHPColon
ColorBurst = SHPColorBurst
ColorSwirl = SHPColorSwirl
Comma = SHPComma
CrossPulse = SHPCrossPulse
DiamondBoxPulse = SHPDiamondBoxPulse
DiamondPulse = SHPDiamondPulse
Equals = SHPEquals
Exclamation = SHPExclamation
FillBottomTop = SHPFillBottomTop
FillLeftRight = SHPFillLeftRight
FillRightLeft = SHPFillRightLeft
FillTopBottom = SHPFillTopBottom
GreaterThan = SHPGreaterThan
LeftBracket = SHPLeftBracket
LeftRight = SHPLeftRight
LessThan = SHPLessThan
Minus = SHPMinus
Percent = SHPPercent
Period = SHPPeriod
Plus = SHPPlus
PointPlop = SHPPointPlop
Pound = SHPPound
QuestionMark = SHPQuestionMark
QuotationMarks = SHPQuotationMarks
RightBracket = SHPRightBracket
RoundAndRound = SHPRoundAndRound
RoundPulse = SHPRoundPulse
Semi-Colon = SHPSemi-Colon
Smiley = SHPSmiley
SquarePlop = SHPSquarePlop
SquarePulse = SHPSquarePulse
Times = SHPTimes
UpDown = SHPUpDown
VLinePulse = SHPVLinePulse
Number0 = SHPNumber0
Number1 = SHPNumber1
Number2 = SHPNumber2
Number3 = SHPNumber3
Number4 = SHPNumber4
Number5 = SHPNumber5
Number6 = SHPNumber6
Number7 = SHPNumber7
Number8 = SHPNumber8
Number9 = SHPNumber9

[Config DOF]
# "Rom","","","","","","","","Start Button"
5th_Element,0,0,0,0,0,0,0,On Blink fu500 fd600
A-Go-Go,0,0,0,0,0,0,0,ON Medium_purple
a7x,0,0,0,0,0,0,0,On
aar,0,0,0,0,0,0,0,L33 Blink fu500 fd550
aavenger,0,0,0,0,0,0,0,ON
abracadabra,0,0,0,0,0,0,0,E125 Blink fu500 fd600
abracadabraup,0,0,0,0,0,0,0,0
abv106,0,0,0,0,0,0,0,L3 m550 Blink fu500 fd550
acd_170,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
acd_168,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
acd_170h,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
acd_170hc,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
acd_168hc,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
acd_168h,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
ACDC,0,0,0,0,0,0,0,E209 Blink fu500 fd600
Ace_Speed,0,0,0,0,0,0,0,0
aclockworkorange,0,0,0,0,0,0,0,0
aerosmith,0,0,0,0,0,0,0,E200 Blink fu500 fd600
afm,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
agent777,0,0,0,0,0,0,0,0
airaces_1974,0,0,0,0,0,0,0,E212 Blink fu500 fd600
Airport_1969,0,0,0,0,0,0,0,E232 Blink fu500 fd600
CollegeQueens_1969,0,0,0,0,0,0,0,E232 Blink fu500 fd600
Aladdins_Castle,0,0,0,0,0,0,0,ON
alaska,0,0,0,0,0,0,0,ON
alcapone,0,0,0,0,0,0,0,ON
algar,0,0,0,0,0,0,0,ON
ali,0,0,0,0,0,0,0,ON
ALICEINCHAINSPUP,0,0,0,0,0,0,0,ON
aliensfromouterspace,0,0,0,0,0,0,0,0
alienstr,0,0,0,0,0,0,0,ON
SUBLIME,0,0,0,0,0,0,0,ON
aloha,0,0,0,0,0,0,0,ON Light_sea_green
alpok_b6,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
alpok_l6,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
alpok_l2,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
alpok_f6,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
amazonh,0,0,0,0,0,0,0,ON
america,0,0,0,0,0,0,0,ON
americamosthaunted,0,0,0,0,0,0,0,E126 Blink fu500 fd600
AmericanGraffiti_1962,0,0,0,0,0,0,0,E127 Blink fu500 fd600
Amigo_1974,0,0,0,0,0,0,0,E200 Blink fu500 fd600
andretti,0,0,0,0,0,0,0,L1 Blink fu500 fd600
androme,0,0,0,0,0,0,0,ON
AnimalCrossing,0,0,0,0,0,0,0,0
antar,0,0,0,0,0,0,0,ON
antar2,0,0,0,0,0,0,0,ON
Apache_1975,0,0,0,0,0,0,0,E200 Blink fu500 fd600
Apache_1978,0,0,0,0,0,0,0,E125 Blink fu500 fd600
apollo_1967,0,0,0,0,0,0,0,E117 Blink fu500 fd600
apollo13,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd650
aqualand,0,0,0,0,0,0,0,ON
Aquaman,0,0,0,0,0,0,0,0
aquarius_1970,0,0,0,0,0,0,0,E125 Blink fu500 fd600
arena,0,0,0,0,0,0,0,ON
argosy_1977,0,0,0,0,0,0,0,0
aspen,0,0,0,0,0,0,0,ON
astannie,0,0,0,0,0,0,0,ON
asterix12tasks,0,0,0,0,0,0,0,E125 Blink fu500 fd600
atarianb,0,0,0,0,0,0,0,ON
athf,0,0,0,0,0,0,0,0
atlantis,0,0,0,0,0,0,0,ON
Atlantis_1975,0,0,0,0,0,0,0,E116 Blink fu500 fd600
atleta,0,0,0,0,0,0,0,S1 Blink fu500 fd600
attack,0,0,0,0,0,0,0,ON
attila,0,0,0,0,0,0,0,ON
austin,0,0,0,0,0,0,0,ON
avr,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
avs_170,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
avs_170c,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
avs_170h,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
aztec_1976,0,0,0,0,0,0,0,E128 Blink fu500 fd600
B52s,0,0,0,0,0,0,0,0
b66_orig,0,0,0,0,0,0,0,E140 Blink fu200 fd200
babypac,0,0,0,0,0,0,0,ON
badgirls,0,0,0,0,0,0,0,ON
BallsAPoppin_1956,0,0,0,0,0,0,0,E124 Blink fu500 fd600
Bally_Hoo,0,0,0,0,0,0,0,ON
Bally4Queens_1970,0,0,0,0,0,0,0,E232 Blink
ballyhoo,0,0,0,0,0,0,0,0
bandWagon_1965,0,0,0,0,0,0,0,E125 Blink fu500 fd600
BankABall_1965,0,0,0,0,0,0,0,E135 Blink fu500 fd600
FlipperPool_1965,0,0,0,0,0,0,0,E135 Blink fu500 fd600
ElectraPool_1965,0,0,0,0,0,0,0,E135 Blink fu500 fd600
BankShot_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
SureShot_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
SpotPool_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Barbarella_1972,0,0,0,0,0,0,0,E131 Blink fu500 fd600
barbwire,0,0,0,0,0,0,0,ON
barra,0,0,0,0,0,0,0,ON
baseball_1970,0,0,0,0,0,0,0,E125 Blink fu500 fd600
BatterUp_1970,0,0,0,0,0,0,0,E125 Blink fu500 fd600
batmanf,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
bmf_fr,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
batmantas,0,0,0,0,0,0,0,0
baywatch,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd550
bay_401,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd550
bbb109,0,0,0,0,0,0,0,L3 m550 Blink fu500 fd550
bbb108,0,0,0,0,0,0,0,L3 m550 Blink fu500 fd550
bbeltzac,0,0,0,0,0,0,0,ON
bbh,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
bbnny,0,0,0,0,0,0,0,ON
bcats,0,0,0,0,0,0,0,ON
bdk,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
beat_the_clock_1963,0,0,0,0,0,0,0,E115 Blink fu500 fd600
beatclck,0,0,0,0,0,0,0,L2 m550 Blink fu500 fd600
beatclc2,0,0,0,0,0,0,0,L2 m550 Blink fu500 fd600
Beatles2013,0,0,0,0,0,0,0,ON
BeatTime,0,0,0,0,0,0,0,E117 Blink fu500 fd600
beav_butt,0,0,0,0,0,0,0,ON
bellring,0,0,0,0,0,0,0,ON
benhur1977,0,0,0,0,0,0,0,ON
bguns,0,0,0,0,0,0,0,ON
Big Lebowski,0,0,0,0,0,0,0,0
BigLebowsky,0,0,0,0,0,0,0,0
big_indian,0,0,0,0,0,0,0,E123 Blink fu500 fd600
big-indian,0,0,0,0,0,0,0,E123 Blink fu500 fd600
big-brave,0,0,0,0,0,0,0,E123 Blink fu500 fd600
big_top_1977,0,0,0,0,0,0,0,ON
BigBrave,0,0,0,0,0,0,0,E111 Blink fu500 fd550
BigChief1965,0,0,0,0,0,0,0,E232 Blink fu500 fd600
BigDeal1963,0,0,0,0,0,0,0,E232 Blink fu500 fd600
bigdeal1977,0,0,0,0,0,0,0,ON
biggame,0,0,0,0,0,0,0,ON
bighit,0,0,0,0,0,0,0,ON
bighorse,0,0,0,0,0,0,0,E200 Blink fu500 fd600
bighouse,0,0,0,0,0,0,0,ON
bighurt,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
bigstar,0,0,0,0,0,0,0,0
bigtop_1964,0,0,0,0,0,0,0,E126 Blink fu500 fd600
bigtown,0,0,0,0,0,0,0,Blink fu500 fd600
BigTrouble,0,0,0,0,0,0,0,E121 Blink fu500 fd550
bigvalley,0,0,0,0,0,0,0,ON
bk,0,0,0,0,0,0,0,L7 m550 Blink fu500 fd600
bk2k,0,0,0,0,0,0,0,ON
bksor,0,0,0,0,0,0,0,E892 Blink f500 fd550
bksorle,0,0,0,0,0,0,0,0
black100,0,0,0,0,0,0,0,ON
blackblt,0,0,0,0,0,0,0,ON
blackgold_1975,0,0,0,0,0,0,0,0
blackjck,0,0,0,0,0,0,0,ON
blackmagic4,0,0,0,0,0,0,0,0
BlackRed,0,0,0,0,0,0,0,E200 Blink fu500 fd600
TheGrinch,0,0,0,0,0,0,0,E200 Blink fu500 fd600
BladeRunner2049,0,0,0,0,0,0,0,E125 Blink fu500 fd600
blakpyra,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
Blaze,0,0,0,0,0,0,0,ON
blckhole,0,0,0,0,0,0,0,ON
blkhole7,0,0,0,0,0,0,0,ON
blkou,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
blkou_hf,0,0,0,0,0,0,0,ON
blkshpsq,0,0,0,0,0,0,0,ON
bloodmach,0,0,0,0,0,0,0,E122 BLINK 700 F200
BlueChip_1976,0,0,0,0,0,0,0,E232 Blink
BlueNote_1979,0,0,0,0,0,0,0,E236 Blink fu500 fd600
Rock_Star_1979,0,0,0,0,0,0,0,E236 Blink fu500 fd600
bmx,0,0,0,0,0,0,0,ON
bnbps,0,0,0,0,0,0,0,E125 Blink fu500 fd600
bnzai,0,0,0,0,0,0,0,ON
bon_voyage_1974,0,0,0,0,0,0,0,0
bond,0,0,0,0,0,0,0,E125 Blink f500 fd550
bonebstr,0,0,0,0,0,0,0,ON
boomerang_1974,0,0,0,0,0,0,0,E132 Blink fu500 fd600/E427 Blink fu500 fd600
bop,0,0,0,0,0,0,0,ON
bountyh,0,0,0,0,0,0,0,ON
bourne,0,0,0,0,0,0,0,ON
bowarrow,0,0,0,0,0,0,0,ON
bowarrowEM_1974,0,0,0,0,0,0,0,0
br,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
break,0,0,0,0,0,0,0,ON
BreakingBad,0,0,0,0,0,0,0,E125 Blink f500 fd550
bronco,0,0,0,0,0,0,0,E122 Blink fu500 fd600
bronco_1977,0,0,0,0,0,0,0,E126 Blink fu500 fd600
BroncoBuster,0,0,0,0,0,0,0,0
brvteam,0,0,0,0,0,0,0,ON
BS70_B2S,0,0,0,0,0,0,0,ON
BS80_B2S,0,0,0,0,0,0,0,ON
bsktball,0,0,0,0,0,0,0,ON
bsv103,0,0,0,0,0,0,0,L1 Blink fu500 fd550
btmn,0,0,0,0,0,0,0,L54 m550 Blink fu500 fd550
bttf,0,0,0,0,0,0,0,ON
Buccaneer,0,0,0,0,0,0,0,E127 Blink fu500 fd600
ShipAhoy_1976,0,0,0,0,0,0,0,E127 Blink fu500 fd600
buckaroo_1965,0,0,0,0,0,0,0,E135 Blink fu500 fd600
cowpoke_1965,0,0,0,0,0,0,0,E135 Blink fu500 fd600
buckrgrs,0,0,0,0,0,0,0,ON
BudTerence,0,0,0,0,0,0,0,0
bullseye,0,0,0,0,0,0,0,ON
bumper,0,0,0,0,0,0,0,0
BumperPool_1969,0,0,0,0,0,0,0,E129 Blink
bushidoa,0,0,0,0,0,0,0,S1 Blink fu500 fd600
bushido,0,0,0,0,0,0,0,S1 Blink fu500 fd600
Caballeros_del_Zodiaco,0,0,0,0,0,0,0,L57 m550 Blink fu500 fd550
cabaret_1968,0,0,0,0,0,0,0,E130 Blink fu500 fd600
cactjack,0,0,0,0,0,0,0,ON
caddie_1970,0,0,0,0,0,0,0,E122 Blink fu500 fd600
CampingTrip,0,0,0,0,0,0,0,E125 Blink fu500 fd600
CanadaDry_1976,0,0,0,0,0,0,0,E111 Blink fu500 fd600
canasta,0,0,0,0,0,0,0,ON
cannes1976,0,0,0,0,0,0,0,ON
capersville,0,0,0,0,0,0,0,E150 Blink fu500 fd600
CAPTAINSPAULDING1,0,0,0,0,0,0,0,0
CaptCard_1973,0,0,0,0,0,0,0,E127 Blink fu500 fd600
captfantastic,0,0,0,0,0,0,0,ON
cardwhiz_1976,0,0,0,0,0,0,0,E137 Blink fu500 fd600
carhop,0,0,0,0,0,0,0,ON
carnavalnorio,0,0,0,0,0,0,0,E123 blink fu600 fd500
Cartoons,0,0,0,0,0,0,0,E122 Blink fu500 fd600
cataco,0,0,0,0,0,0,0,ON
Cavalier_1979,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Swashbuckler_1979,0,0,0,0,0,0,0,E118 Blink fu500 fd600
caveman,0,0,0,0,0,0,0,ON
cavnegro,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd550
cc,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
centaur,0,0,0,0,0,0,0,ON
centauri,0,0,0,0,0,0,0,ON
centigrade,0,0,0,0,0,0,0,E138 Blink fu500 fd600
cftbl,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
ChampBall1y973,0,0,0,0,0,0,0,0
chance,0,0,0,0,0,0,0,0
chance_1971,0,0,0,0,0,0,0,E200 Blink fu500 fd600
charlies,0,0,0,0,0,0,0,ON
che_cho,0,0,0,0,0,0,0,ON
checkMate,0,0,0,0,0,0,0,E200 Blink fu500 fd600
cheetah,0,0,0,0,0,0,0,ON
cherry_bell,0,0,0,0,0,0,0,E123 Blink fu500 fd600
christmasp,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
circus,0,0,0,0,0,0,0,ON
Circus_1973,0,0,0,0,0,0,0,E127 Blink fu500 fd600
BigShow_1974,0,0,0,0,0,0,0,E127 Blink fu500 fd600
CircusB,0,0,0,0,0,0,0,E200 Blink fu500 fd600
CircusZaccaria_1977,0,0,0,0,0,0,0,E127 Blink fu500 fd600
City_Hunter,0,0,0,0,0,0,0,0
cityslck,0,0,0,0,0,0,0,ON
ckpt,0,0,0,0,0,0,0,ON
clas1812,0,0,0,0,0,0,0,ON
clash,0,0,0,0,0,0,0,ON
cleoptra,0,0,0,0,0,0,0,ON
closeenc,0,0,0,0,0,0,0,ON
clown,0,0,0,0,0,0,0,ON
Clown-Playmatic,0,0,0,0,0,0,0,E200 blink fu600 fd600
clue,0,0,0,0,0,0,0,E119 Blink fu500 fd600
cntct,0,0,0,0,0,0,0,ON
cntforc7,0,0,0,0,0,0,0,ON
cntforce,0,0,0,0,0,0,0,ON
COLDPLAYPUP,0,0,0,0,0,0,0,ON
comet,0,0,0,0,0,0,0,ON
Concorde,0,0,0,0,0,0,0,E126 Blink fu500 fd600
coneyis,0,0,0,0,0,0,0,ON
congo,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
Conquest200,0,0,0,0,0,0,0,E125 Blink fu500 fd600
contest_1958,0,0,0,0,0,0,0,E119 Blink fu500 fd600
corsario,0,0,0,0,0,0,0,ON Blink fu500 fd600
corv,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
cosmic,0,0,0,0,0,0,0,ON
countdwn,0,0,0,0,0,0,0,ON
cp,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
cpthook,0,0,0,0,0,0,0,ON
CrazyCats,0,0,0,0,0,0,0,0
crescendo_1970,0,0,0,0,0,0,0,E123 Blink fu500 fd600
criterium77,0,0,0,0,0,0,0,E125 Blink fu500 fd600
CrossTown_1966,0,0,0,0,0,0,0,E127 Blink fu500 fd600
crystalball,0,0,0,0,0,0,0,E200 Blink fu500 fd600
csi,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
csmic,0,0,0,0,0,0,0,ON
cue,0,0,0,0,0,0,0,ON Blink fu500 fd600
cueball,0,0,0,0,0,0,0,ON Blink fu500 fd600
cuphead,0,0,0,0,0,0,0,E126 Blink fu500 fd600
cv,0,0,0,0,0,0,0,L88 Blink fu500 fd550
cv_dmd,0,0,0,0,0,0,0,E88 Blink fu500 fd600
cyberrace,0,0,0,0,0,0,0,E105
cybrnaut,0,0,0,0,0,0,0,ON
cybrnaua,0,0,0,0,0,0,0,ON
cycln,0,0,0,0,0,0,0,ON
cyclopes,0,0,0,0,0,0,0,ON
Daft_Punk,0,0,0,0,0,0,0,0
dalejr,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd600
Daredevil,0,0,0,0,0,0,0,0
darkchaos,0,0,0,0,0,0,0,ON
DarkCrystal,0,0,0,0,0,0,0,E125 Blink fu500 fd600
darkestdungeon,0,0,0,0,0,0,0,E121 Blink fu500 fd550
DarkPrincess,0,0,0,0,0,0,0,ON
darkshad,0,0,0,0,0,0,0,ON m550 Blink fu500 fd550
darling,0,0,0,0,0,0,0,E137 Blink fu500 fd600
dbz,0,0,0,0,0,0,0,E128 Blink fu500 fd600
dd,0,0,0,0,0,0,0,ON
deadweap,0,0,0,0,0,0,0,ON
DealersChoice_1973,0,0,0,0,0,0,0,E127 Blink fu500 fd600
LuckyAce_1974,0,0,0,0,0,0,0,E127 Blink fu500 fd600
deathproof,0,0,0,0,0,0,0,ON
DEFLEPPARDPUP,0,0,0,0,0,0,0,ON
dfndr,0,0,0,0,0,0,0,L7 m550 Blink fu500 fd600
dh,0,0,0,0,0,0,0,L88 Blink fu500 fd600
diablo,0,0,0,0,0,0,0,E114 Blink fu500 fd600
diamond,0,0,0,0,0,0,0,ON
diehard,0,0,0,0,0,0,0,E120 BLINK 700 F200
diner,0,0,0,0,0,0,0,ON
dipsydoodle,0,0,0,0,0,0,0,ON
disco,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
disco_Stern_1977,0,0,0,0,0,0,0,E200 Blink fu500 fd600
dm,0,0,0,0,0,0,0,L88 Blink fu500 fd550
dof_test,0,0,0,0,0,0,0,Blink
doflinx,0,0,0,0,0,0,0,0
doflinx_effects,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
doflinx_effects_custom,0,0,0,0,0,0,0,0
doflinx_effects_mame,0,0,0,0,0,0,0,0
dollyptb,0,0,0,0,0,0,0,ON
dolphin_1974,0,0,0,0,0,0,0,E122 Blink fu500 fd600
domino_1968,0,0,0,0,0,0,0,E125 Blink fu500 fd600
DoodleBug_1971,0,0,0,0,0,0,0,E232 Blink
dotd_1978,0,0,0,0,0,0,0,E122 Blink fu500 fd600
doubleup_1970,0,0,0,0,0,0,0,E132 Blink fu500 fd600
drac,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
dracula,0,0,0,0,0,0,0,ON
draculfp,0,0,0,0,0,0,0,ON
dragfi,0,0,0,0,0,0,0,ON
dragon,0,0,0,0,0,0,0,ON
dragonfire,0,0,0,0,0,0,0,0
dragoninterflip,0,0,0,0,0,0,0,E125 Blink fu500 fd650
DragoonRF,0,0,0,0,0,0,0,E125 Blink fu500 fd650
drakor,0,0,0,0,0,0,0,ON
DreamDaddy,0,0,0,0,0,0,0,E119 Blink fu500 fd600
drinkabsolut,0,0,0,0,0,0,0,E200 Blink fu500 fd600
DUCKTALES,0,0,0,0,0,0,0,0
dukes,0,0,0,0,0,0,0,ON
dune,0,0,0,0,0,0,0,E125 Blink fu500 fd600
dungdrag,0,0,0,0,0,0,0,ON
dvlrider,0,0,0,0,0,0,0,ON
dvlrdfp,0,0,0,0,0,0,0,ON
dvlsdre,0,0,0,0,0,0,0,ON
dw,0,0,0,0,0,0,0,L88 Blink fu500 fd550
eatpm,0,0,0,0,0,0,0,ON
eballchp,0,0,0,0,0,0,0,ON
eballdlx,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
eballdla,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
eclipse,0,0,0,0,0,0,0,ON
EggHead_1961,0,0,0,0,0,0,0,E134 Blink fu500 fd600
eightbll,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
El_Dorado_1975,0,0,0,0,0,0,0,E111 Blink fu500 fd600
eldorado,0,0,0,0,0,0,0,ON
elektra,0,0,0,0,0,0,0,ON
EliteGuard_1968,0,0,0,0,0,0,0,E115 Blink
elvis,0,0,0,0,0,0,0,L80 Blink fu500 fd550
grease,0,0,0,0,0,0,0,L80 Blink fu500 fd550
embryon,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
empsback,0,0,0,0,0,0,0,ON
Epe_CaptainNemoDivesAgain,0,0,0,0,0,0,0,0
Epe_CaptainNemo_SteamFlyerMOD,0,0,0,0,0,0,0,0
erizo,0,0,0,0,0,0,0,ON
escape,0,0,0,0,0,0,0,ON
esclwrld,0,0,0,0,0,0,0,ON
esha,0,0,0,0,0,0,0,ON
evelknie,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
evelknib,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
evlfight,0,0,0,0,0,0,0,ON
ewf,0,0,0,0,0,0,0,L13 m550 Blink fu500 fd600
excalibr,0,0,0,0,0,0,0,ON
exorcist,0,0,0,0,0,0,0,0
f14,0,0,0,0,0,0,0,ON
faces_1976,0,0,0,0,0,0,0,E118 Blink fu500 fd600
faeton,0,0,0,0,0,0,0,ON
Far_Out_1974,0,0,0,0,0,0,0,E114 Blink fu500 fd600
OutofSight_1974,0,0,0,0,0,0,0,E114 Blink fu500 fd600
farfalla,0,0,0,0,0,0,0,ON
farffp,0,0,0,0,0,0,0,ON
FarmTime_2020,0,0,0,0,0,0,0,E199 Blink fu500 fd600
FashionShow_1962,0,0,0,0,0,0,0,E199 Blink fu500 fd600
Fast_Draw_1975,0,0,0,0,0,0,0,E126 Blink fu500 fd600
fathom,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
fathomb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
fball,0,0,0,0,0,0,0,ON
fbclass,0,0,0,0,0,0,0,ON
fbclassa,0,0,0,0,0,0,0,ON
ffv104,0,0,0,0,0,0,0,L3 m550 Blink fu500 fd650
fg,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
fh,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
Fifteen,0,0,0,0,0,0,0,E200 Blink fu500 fd600
fire,0,0,0,0,0,0,0,ON
fireact,0,0,0,0,0,0,0,ON
fireactd,0,0,0,0,0,0,0,ON
fireball_1972,0,0,0,0,0,0,0,E122 Blink fu500 fd600
fireballxl5,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Firecracker_1971,0,0,0,0,0,0,0,E118 Blink fu500 fd600
firemntn,0,0,0,0,0,0,0,ON
firequeen_1977,0,0,0,0,0,0,0,E133 Blink fu500 fd600
fjholden,0,0,0,0,0,0,0,ON
flash,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
flsh,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
flashgdn,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
flashman,0,0,0,0,0,0,0,ON Blink fu500 fd600
FleetJr,0,0,0,0,0,0,0,0
FleetSr,0,0,0,0,0,0,0,0
Fleetwood,0,0,0,0,0,0,0,ON
flicker,0,0,0,0,0,0,0,ON
flicker_1974,0,0,0,0,0,0,0,E427 Blink fu500 fd600
flight2k,0,0,0,0,0,0,0,ON
flightfp,0,0,0,0,0,0,0,ON
flight2m,0,0,0,0,0,0,0,ON
FlipACard_1970,0,0,0,0,0,0,0,E135 Blink fu500 fd600
CardTrix_1970,0,0,0,0,0,0,0,E135 Blink fu500 fd600
FlipFlop,0,0,0,0,0,0,0,0
FlipperFair_1961,0,0,0,0,0,0,0,E135 Blink
Fluffy,0,0,0,0,0,0,0,0
flying_carpet,0,0,0,0,0,0,0,E123 Blink fu500 fd600
FlyingChariots_1963,0,0,0,0,0,0,0,0
FNAF,0,0,0,0,0,0,0,E125 Blink fu500 fd600
FOOFIGHTERSPUP,0,0,0,0,0,0,0,ON
football_1979_2,0,0,0,0,0,0,0,E125 Blink fu500 fd600
force,0,0,0,0,0,0,0,ON
forceii,0,0,0,0,0,0,0,ON
fouraces,0,0,0,0,0,0,0,E200 Blink fu500 fd600
FourMBC,0,0,0,0,0,0,0,E212 Blink fu500 fd600
FourSeasons_1968,0,0,0,0,0,0,0,E200 Blink fu500 fd600
fp_24,0,0,0,0,0,0,0,0
fp_5thelement,0,0,0,0,0,0,0,0
fp_adfam_ultimate,0,0,0,0,0,0,0,0
fp_alienleg_ultimate,0,0,0,0,0,0,0,0
fp_astroblast,0,0,0,0,0,0,0,0
fp_astrohits,0,0,0,0,0,0,0,0
fp_avatar_ultimate,0,0,0,0,0,0,0,0
fp_batman1989,0,0,0,0,0,0,0,0
fp_bigspen,0,0,0,0,0,0,0,0
fp_blade_runner_ult_pro,0,0,0,0,0,0,0,0
fp_bmjoker,0,0,0,0,0,0,0,0
fp_Bond 50,0,0,0,0,0,0,0,0
fp_bop,0,0,0,0,0,0,0,0
fp_bttf_slam_ultimate,0,0,0,0,0,0,0,0
fp_bubbob,0,0,0,0,0,0,0,0
fp_bvp,0,0,0,0,0,0,0,0
fp_cent_ultimate,0,0,0,0,0,0,0,0
fp_checkpoint,0,0,0,0,0,0,0,0
fp_coolpos,0,0,0,0,0,0,0,0
fp_creaturefbl,0,0,0,0,0,0,0,0
fp_csi,0,0,0,0,0,0,0,0
fp_darkquest,0,0,0,0,0,0,0,0
fp_deadhunters,0,0,0,0,0,0,0,0
fp_deadpool,0,0,0,0,0,0,0,0
fp_dlair,0,0,0,0,0,0,0,0
FP_DOF,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
FP_DOF_TEST,0,0,0,0,0,0,0,0
fp_everafterhigh,0,0,0,0,0,0,0,0
fp_flash_gordon_ult_pro,0,0,0,0,0,0,0,0
fp_flashg_ultimate,0,0,0,0,0,0,0,0
fp_flreap,0,0,0,0,0,0,0,0
fp_frogster,0,0,0,0,0,0,0,0
fp_futurama,0,0,0,0,0,0,0,0
fp_goldorak,0,0,0,0,0,0,0,ON
fp_gonein60,0,0,0,0,0,0,0,0
fp_goonies,0,0,0,0,0,0,0,0
fp_gorgar_ultimate,0,0,0,0,0,0,0,0
fp_gremlins,0,0,0,0,0,0,0,0
fp_hlwn_ult_pro,0,0,0,0,0,0,0,0
fp_id4,0,0,0,0,0,0,0,0
fp_ij_ult_pro,0,0,0,0,0,0,0,0
fp_im_ultimate,0,0,0,0,0,0,0,0
fp_indyskull,0,0,0,0,0,0,0,0
fp_ironman_ult_pro,0,0,0,0,0,0,0,0
fp_jp_ultimate,0,0,0,0,0,0,0,0
fp_jungle_girl,0,0,0,0,0,0,0,0
fp_jungleboy,0,0,0,0,0,0,0,0
fp_jurassicpark_ult_pro,0,0,0,0,0,0,0,0
fp_kiss_ult_pro,0,0,0,0,0,0,0,0
fp_knightrider,0,0,0,0,0,0,0,0
fp_lotr_ultimate,0,0,0,0,0,0,0,0
fp_lunto,0,0,0,0,0,0,0,0
fp_megaman,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_metalslug,0,0,0,0,0,0,0,0
fp_minions,0,0,0,0,0,0,0,0
fp_Mission_Impossible,0,0,0,0,0,0,0,0
fp_motu,0,0,0,0,0,0,0,0
fp_multipede,0,0,0,0,0,0,0,0
fp_noes_slam_ultimate,0,0,0,0,0,0,0,0
fp_noes_ult_pro,0,0,0,0,0,0,0,0
fp_oblivion,0,0,0,0,0,0,0,0
fp_paragon,0,0,0,0,0,0,0,0
fp_pe_aliens_legacy_gom,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_blade_runner_re,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
FP_PE_BLUE_VS_PINK_BAM,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_f14_tomcat_ab,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
FP_PE_HALLOWEEN_BBM,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_indiana_jones_fge,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
FP_PE_JAWS_BBE,0,0,0,0,0,0,0,E10 Blink 200/E11
FP_PE_JUNKYARD_CATS_BAM,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_motu_ce,0,0,0,0,0,0,0,E10 Blink 300/E11
fp_pe_retroflair_bam,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_robocop_doae,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_pe_sonic_pinball_mania,0,0,0,0,0,0,0,E10 Blink fu500 fd500
FP_PE_SW_DSA_GE,0,0,0,0,0,0,0,E10 Blink fu500 fd500/E11
fp_phantom_ultimate,0,0,0,0,0,0,0,0
fp_pinevent,0,0,0,0,0,0,0,0
fp_pinkfloyd,0,0,0,0,0,0,0,0
fp_poc,0,0,0,0,0,0,0,0
fp_reelitin,0,0,0,0,0,0,0,0
fp_retroflair,0,0,0,0,0,0,0,0
fp_roadgirls,0,0,0,0,0,0,0,0
fp_robinv_ultimate,0,0,0,0,0,0,0,0
fp_robocop_ult_pro,0,0,0,0,0,0,0,0
fp_robocop_ultimate,0,0,0,0,0,0,0,0
fp_scaredstiff,0,0,0,0,0,0,0,0
fp_shootanza,0,0,0,0,0,0,0,0
fp_sjp_ultimate,0,0,0,0,0,0,0,0
fp_sonicpp_ultimate,0,0,0,0,0,0,0,0
fp_speeddevse,0,0,0,0,0,0,0,0
fp_spiderman,0,0,0,0,0,0,0,0
fp_startrek_cr_ult_pro,0,0,0,0,0,0,0,0
fp_startrek_stern_ult_pro,0,0,0,0,0,0,0,0
fp_steelwheelse,0,0,0,0,0,0,0,0
fp_strek_stern_ult,0,0,0,0,0,0,0,0
fp_strikes_and_spares_ult_pro,0,0,0,0,0,0,0,0
fp_sttng_ultimate,0,0,0,0,0,0,0,0
fp_supman_slam_ult,0,0,0,0,0,0,0,0
fp_sw_dsa_ult_pro,0,0,0,0,0,0,0,0
fp_swbfh,0,0,0,0,0,0,0,0
fp_swdsa_ultimate,0,0,0,0,0,0,0,0
fp_swemp,0,0,0,0,0,0,0,0
fp_t2sky_ultimate,0,0,0,0,0,0,0,0
fp_taf_ult_pro,0,0,0,0,0,0,0,0
fp_tempexx,0,0,0,0,0,0,0,0
fp_tftc,0,0,0,0,0,0,0,0
fp_tgtbtu,0,0,0,0,0,0,0,0
fp_threeang_ultimate,0,0,0,0,0,0,0,0
fp_tombstone,0,0,0,0,0,0,0,0
fp_totan,0,0,0,0,0,0,0,0
fp_transformers,0,0,0,0,0,0,0,0
fp_tronleg_slam_ult,0,0,0,0,0,0,0,0
fp_tronleg_stern_ult,0,0,0,0,0,0,0,0
fp_tutenkham,0,0,0,0,0,0,0,0
fp_underdog,0,0,0,0,0,0,0,0
fp_wackyraces,0,0,0,0,0,0,0,0
fp_warlock,0,0,0,0,0,0,0,0
fp_wcs,0,0,0,0,0,0,0,0
fp_wipeout,0,0,0,0,0,0,0,0
fp_wow_ultimate,0,0,0,0,0,0,0,0
fp_x-men,0,0,0,0,0,0,0,0
fp_xenon_ult_pro,0,0,0,0,0,0,0,0
fp_xfiles,0,0,0,0,0,0,0,0
fpwr2,0,0,0,0,0,0,0,ON
frankst,0,0,0,0,0,0,0,L64 m550 Blink f500 fd550
freddy,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
Freddy's_Nightmares,0,0,0,0,0,0,0,0
freedom,0,0,0,0,0,0,0,ON
freedom_1976,0,0,0,0,0,0,0,E127 Blink fu500 fd600
freefall,0,0,0,0,0,0,0,ON
freefafp,0,0,0,0,0,0,0,ON
frontie,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd550
frpwr,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
fs,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
ft,0,0,0,0,0,0,0,L88 Blink fu500 fd550
Full,0,0,0,0,0,0,0,ON
FunFair_1968,0,0,0,0,0,0,0,E123 Blink
FunLand_1968,0,0,0,0,0,0,0,E123 Blink
FunFest_1973,0,0,0,0,0,0,0,0
futrquen,0,0,0,0,0,0,0,ON
futurama,0,0,0,0,0,0,0,E120 BLINK 700 F200
futurspa,0,0,0,0,0,0,0,L59 Blink fu500 fd600
futurspb,0,0,0,0,0,0,0,L59 Blink fu500 fd600
futurwld,0,0,0,0,0,0,0,ON
fx_brothersarms,0,0,0,0,0,0,0,0
fx_charliebrown,0,0,0,0,0,0,0,0
fx_curse_mummy,0,0,0,0,0,0,0,0
fx_dragons,0,0,0,0,0,0,0,0
fx_eldergods,0,0,0,0,0,0,0,0
fx_garfield,0,0,0,0,0,0,0,0
fx_gloomhaven,0,0,0,0,0,0,0,0
fx_godzillakong,0,0,0,0,0,0,0,0
fx_grimm,0,0,0,0,0,0,0,0
fx_hiigara Homeworld,0,0,0,0,0,0,0,0
fx_kittens,0,0,0,0,0,0,0,0
fx_kong,0,0,0,0,0,0,0,0
fx_little_pony,0,0,0,0,0,0,0,0
fx_mars,0,0,0,0,0,0,0,0
fx_mysteriousisland,0,0,0,0,0,0,0,0
fx_necrodancer,0,0,0,0,0,0,0,0
fx_noir,0,0,0,0,0,0,0,0
fx_panda,0,0,0,0,0,0,0,0
fx_peanuts,0,0,0,0,0,0,0,0
fx_samiurai,0,0,0,0,0,0,0,0
fx_sky_pirates,0,0,0,0,0,0,0,0
fx_startrek_deepspace,0,0,0,0,0,0,0,0
fx_startrek_discovery,0,0,0,0,0,0,0,0
fx_startrek_kelvin,0,0,0,0,0,0,0,0
fx_swcollectables,0,0,0,0,0,0,0,0
fx_systemshock,0,0,0,0,0,0,0,0
fx_trolls,0,0,0,0,0,0,0,0
fx_vaulthunter,0,0,0,0,0,0,0,0
fx_wms_addams,0,0,0,0,0,0,0,0
fx_wms_bride,0,0,0,0,0,0,0,0
fx_wms_nextgen,0,0,0,0,0,0,0,0
fx_wms_swords,0,0,0,0,0,0,0,0
fx_wms_twilight,0,0,0,0,0,0,0,0
fx_wms_whirlwind,0,0,0,0,0,0,0,0
fx_wms_worldcup,0,0,0,0,0,0,0,0
fx_wwz,0,0,0,0,0,0,0,0
fx2_aforce,0,0,0,0,0,0,0,0
fx2_ageultron,0,0,0,0,0,0,0,0
fx2_alienisol,0,0,0,0,0,0,0,0
fx2_aliens,0,0,0,0,0,0,0,0
fx2_alienvsp,0,0,0,0,0,0,0,0
fx2_amdad,0,0,0,0,0,0,0,0
fx2_antman,0,0,0,0,0,0,0,0
fx2_archer,0,0,0,0,0,0,0,0
fx2_avengers,0,0,0,0,0,0,0,0
fx2_bb,0,0,0,0,0,0,0,0
fx2_biolab,0,0,0,0,0,0,0,0
fx2_blade,0,0,0,0,0,0,0,0
fx2_boba,0,0,0,0,0,0,0,0
fx2_captam,0,0,0,0,0,0,0,0
fx2_castle,0,0,0,0,0,0,0,0
fx2_champions,0,0,0,0,0,0,0,0
fx2_civilwar,0,0,0,0,0,0,0,0
fx2_deadpool,0,0,0,0,0,0,0,0
fx2_doom,0,0,0,0,0,0,0,0
fx2_drstrange,0,0,0,0,0,0,0,0
fx2_earthdef,0,0,0,0,0,0,0,0
fx2_eldorado,0,0,0,0,0,0,0,0
fx2_epicquest,0,0,0,0,0,0,0,0
fx2_excalibur,0,0,0,0,0,0,0,0
fx2_fallout,0,0,0,0,0,0,0,0
fx2_familyguy,0,0,0,0,0,0,0,0
fx2_fantasticfour,0,0,0,0,0,0,0,0
fx2_fearitself,0,0,0,0,0,0,0,0
fx2_ghostrider,0,0,0,0,0,0,0,0
fx2_guardians,0,0,0,0,0,0,0,0
fx2_infinityg,0,0,0,0,0,0,0,0
fx2_ironman,0,0,0,0,0,0,0,0
fx2_mars,0,0,0,0,0,0,0,0
fx2_moonknight,0,0,0,0,0,0,0,0
fx2_mssplosion,0,0,0,0,0,0,0,0
fx2_paranormal,0,0,0,0,0,0,0,0
fx2_pasha,0,0,0,0,0,0,0,0
fx2_portal,0,0,0,0,0,0,0,0
fx2_pvz,0,0,0,0,0,0,0,0
fx2_rome,0,0,0,0,0,0,0,0
fx2_secretsdeep,0,0,0,0,0,0,0,0
fx2_shaman,0,0,0,0,0,0,0,0
fx2_skyrim,0,0,0,0,0,0,0,0
fx2_sorcerers,0,0,0,0,0,0,0,0
fx2_spbutters,0,0,0,0,0,0,0,0
fx2_spiderman,0,0,0,0,0,0,0,0
fx2_spsweet,0,0,0,0,0,0,0,0
fx2_superleague,0,0,0,0,0,0,0,0
fx2_swclonewars,0,0,0,0,0,0,0,0
fx2_swdarth,0,0,0,0,0,0,0,0
fx2_swdroids,0,0,0,0,0,0,0,0
fx2_swempire,0,0,0,0,0,0,0,0
fx2_swforceaw,0,0,0,0,0,0,0,0
fx2_swhansolo,0,0,0,0,0,0,0,0
fx2_swmasters,0,0,0,0,0,0,0,0
fx2_swmight,0,0,0,0,0,0,0,0
fx2_swnewhope,0,0,0,0,0,0,0,0
fx2_swrebels,0,0,0,0,0,0,0,0
fx2_swreturn,0,0,0,0,0,0,0,0
fx2_swrogueone,0,0,0,0,0,0,0,0
fx2_swstarfighter,0,0,0,0,0,0,0,0
fx2_tesla,0,0,0,0,0,0,0,0
fx2_thor,0,0,0,0,0,0,0,0
fx2_v12,0,0,0,0,0,0,0,0
fx2_venom,0,0,0,0,0,0,0,0
fx2_walkingdead,0,0,0,0,0,0,0,0
fx2_wildwest,0,0,0,0,0,0,0,0
fx2_wolverine,0,0,0,0,0,0,0,0
fx2_wwhulk,0,0,0,0,0,0,0,0
fx2_xmen,0,0,0,0,0,0,0,0
fx3_amusement,0,0,0,0,0,0,0,0
fx3_bttf,0,0,0,0,0,0,0,0
fx3_et,0,0,0,0,0,0,0,0
fx3_hercules,0,0,0,0,0,0,0,0
fx3_jaws,0,0,0,0,0,0,0,0
fx3_jurassicmayhem,0,0,0,0,0,0,0,0
fx3_jurassicpark,0,0,0,0,0,0,0,0
fx3_jurassicworld,0,0,0,0,0,0,0,0
fx3_swahchtoisland,0,0,0,0,0,0,0,0
fx3_swcalrissian,0,0,0,0,0,0,0,0
fx3_swlastjedi,0,0,0,0,0,0,0,0
fx3_swmimban,0,0,0,0,0,0,0,0
fx3_swsolo,0,0,0,0,0,0,0,0
fx3_wms_afm,0,0,0,0,0,0,0,0
fx3_wms_blackrose,0,0,0,0,0,0,0,0
fx3_wms_championpub,0,0,0,0,0,0,0,0
fx3_wms_cirqusvoltaire,0,0,0,0,0,0,0,0
Fx3_wms_creaturebl,0,0,0,0,0,0,0,0
fx3_wms_drdude,0,0,0,0,0,0,0,0
fx3_wms_fishtales,0,0,0,0,0,0,0,0
fx3_wms_funhouse,0,0,0,0,0,0,0,0
fx3_wms_getaway,0,0,0,0,0,0,0,0
fx3_wms_hurricane,0,0,0,0,0,0,0,0
fx3_wms_indiana_jones,0,0,0,0,0,0,0,0
fx3_wms_junkyard,0,0,0,0,0,0,0,0
fx3_wms_mmadness,0,0,0,0,0,0,0,0
fx3_wms_monsterbash,0,0,0,0,0,0,0,0
fx3_wms_nogoodgofers,0,0,0,0,0,0,0,0
fx3_wms_partyzone,0,0,0,0,0,0,0,0
fx3_wms_redandted,0,0,0,0,0,0,0,0
fx3_wms_safecracker,0,0,0,0,0,0,0,0
fx3_wms_spacestation,0,0,0,0,0,0,0,0
fx3_wms_tom,0,0,0,0,0,0,0,0
fx3_wms_totan,0,0,0,0,0,0,0,0
fx3_wms_whitewater,0,0,0,0,0,0,0,0
galaxy,0,0,0,0,0,0,0,ON
gamatron,0,0,0,0,0,0,0,ON
gameofthrones,0,0,0,0,0,0,0,E140 Blink fu500 fd600
gameofthrone,0,0,0,0,0,0,0,E140 Blink fu500 fd600
gargamel_park,0,0,0,0,0,0,0,E131 Blink fu500 fd600
gator,0,0,0,0,0,0,0,E225 Blink fu500 fd600
gatos,0,0,0,0,0,0,0,0
gaucho_1963,0,0,0,0,0,0,0,E200 Blink fu500 fd600
gay90s_1970,0,0,0,0,0,0,0,0
geega,0,0,0,0,0,0,0,E200 Blink fu500 fd600
geisha_FS,0,0,0,0,0,0,0,E119 Blink fu500 fd550
geisha_FS_cpc_0.1,0,0,0,0,0,0,0,E119 Blink fu500 fd550
gemini,0,0,0,0,0,0,0,ON
gemini_1977,0,0,0,0,0,0,0,E122 Blink fu500 fd600
genesis,0,0,0,0,0,0,0,ON
genie,0,0,0,0,0,0,0,ON
getsmart,0,0,0,0,0,0,0,E314 Blink fu500 fd600
ghostbusters,0,0,0,0,0,0,0,ON
gi,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
Gigi_1963,0,0,0,0,0,0,0,E144 Blink fu500 fd600
gladiatr,0,0,0,0,0,0,0,ON
gldneye,0,0,0,0,0,0,0,L3 Blink fu500 fd550
glxplay,0,0,0,0,0,0,0,ON
gnr,0,0,0,0,0,0,0,L64 Blink fu500 fd550
Godfather,0,0,0,0,0,0,0,0
godzilla,0,0,0,0,0,0,0,ON
GOG_Trilogy,0,0,0,0,0,0,0,0
goinnuts,0,0,0,0,0,0,0,ON
goldbal,0,0,0,0,0,0,0,L59 Blink fu500 fd600
goldcue,0,0,0,0,0,0,0,0
goldenarrow_1977,0,0,0,0,0,0,0,E128 Blink fu500 fd600
Goldorak,0,0,0,0,0,0,0,E128 Blink fu500 fd600
goldwing,0,0,0,0,0,0,0,ON
goonies,0,0,0,0,0,0,0,E136 Blink fu500 fd600
got,0,0,0,0,0,0,0,E136 Blink fu500 fd600
gorillaz,0,0,0,0,0,0,0,0
gork,0,0,0,0,0,0,0,ON
gotg_2020,0,0,0,0,0,0,0,E140 Blink fu500 fd600
gottlieb300_1975,0,0,0,0,0,0,0,E314 Blink fu500 fd600
GottliebTopScore_1975,0,0,0,0,0,0,0,E314 Blink fu500 fd600
gprix,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd600
grand,0,0,0,0,0,0,0,ON
GrandeDomino_1968,0,0,0,0,0,0,0,E125 Blink
grandprix_1977,0,0,0,0,0,0,0,E127 Blink fu500 fd600
GrandTour_1964,0,0,0,0,0,0,0,E199 Blink fu500 fd600
gransla,0,0,0,0,0,0,0,L44 m550 Blink fu500 fd600
GratefulDead_B2S,0,0,0,0,0,0,0,ON
Great_HOUDINI,0,0,0,0,0,0,0,0
grgar,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
gridiron,0,0,0,0,0,0,0,ON
groovy_1970,0,0,0,0,0,0,0,E123 Blink fu500 fd600
gs,0,0,0,0,0,0,0,ON
GTB_4square_1971,0,0,0,0,0,0,0,E109 Blink fu500 fd600
GTB2001_1971,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Dimension_1971,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Galaxie_1971,0,0,0,0,0,0,0,E118 Blink fu500 fd600
gulfstream_1973,0,0,0,0,0,0,0,E127 Blink fu500 fd600
GunMen1979,0,0,0,0,0,0,0,ON
gw,0,0,0,0,0,0,0,L68 m550 Blink fu500 fd550
gwarfare,0,0,0,0,0,0,0,ON
halley,0,0,0,0,0,0,0,ON
Halloween,0,0,0,0,0,0,0,0
HangGlider_1976,0,0,0,0,0,0,0,E200 Blink fu500 fd600
HannibalVPX,0,0,0,0,0,0,0,E125 Blink fu500 fd600
hardbody,0,0,0,0,0,0,0,ON
harl,0,0,0,0,0,0,0,ON
Harmony_1967,0,0,0,0,0,0,0,E124 Blink
hauntedmansion,0,0,0,0,0,0,0,E104 Blink fu500 fd550
hawkman,0,0,0,0,0,0,0,ON
hd,0,0,0,0,0,0,0,ON
heartsgain,0,0,0,0,0,0,0,E232 Blink
Heat,0,0,0,0,0,0,0,0
heat_wave_1964,0,0,0,0,0,0,0,E121 Blink fu500 fd600
HeatWave_1964,0,0,0,0,0,0,0,E121 Blink fu500 fd600
HeavyMetal,0,0,0,0,0,0,0,0
heavymtl,0,0,0,0,0,0,0,ON
HELLBOY,0,0,0,0,0,0,0,0
HellRaiser,0,0,0,0,0,0,0,E125 Blink fu500 fd600
hercules,0,0,0,0,0,0,0,ON
hexagone,0,0,0,0,0,0,0,ON
hglbtrtb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
hh,0,0,0,0,0,0,0,ON
hhotel,0,0,0,0,0,0,0,ON
HiDeal_1975,0,0,0,0,0,0,0,E200 Blink fu500 fd600
hidiver,0,0,0,0,0,0,0,E200 Blink fu500 fd600
highhand_1973,0,0,0,0,0,0,0,E116 Blink fu500 fd600
HighSeas_1976,0,0,0,0,0,0,0,E123 Blink
HiLo_1969,0,0,0,0,0,0,0,E129 Blink
HiLoAce_1973,0,0,0,0,0,0,0,E129 Blink fu500 fd600
hirolcas,0,0,0,0,0,0,0,ON
hiscorepool,0,0,0,0,0,0,0,E103 Blink fu500 fd600
hitthedeck,0,0,0,0,0,0,0,ON
hlywoodh,0,0,0,0,0,0,0,ON
beachbms,0,0,0,0,0,0,0,ON
hod,0,0,0,0,0,0,0,0
hoedown,0,0,0,0,0,0,0,ON
HokusPokus_1976,0,0,0,0,0,0,0,E127 Blink fu500 fd600
homealone,0,0,0,0,0,0,0,On
HomeRun_1971,0,0,0,0,0,0,0,E232 Blink
honey,0,0,0,0,0,0,0,ON
hook,0,0,0,0,0,0,0,L31 Blink fu500 fd550
hoops,0,0,0,0,0,0,0,ON
horrorburg,0,0,0,0,0,0,0,0
Hot_Shot_1973,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Big_Shot_1974,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Pro_Pool_1973,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Play_Pool_1972,0,0,0,0,0,0,0,E125 Blink fu500 fd600
hotdogg,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
hothand,0,0,0,0,0,0,0,ON
hothanfp,0,0,0,0,0,0,0,ON
HotLine_1966,0,0,0,0,0,0,0,E130 Blink fu500 fd600
hotshots,0,0,0,0,0,0,0,ON
hotwheel,0,0,0,0,0,0,0,ON
howzat,0,0,0,0,0,0,0,ON
hpgof,0,0,0,0,0,0,0,ON
hs,0,0,0,0,0,0,0,ON
httip_l1,0,0,0,0,0,0,0,ON
hulk,0,0,0,0,0,0,0,ON
HulkLE,0,0,0,0,0,0,0,ON
humpty_dumpty,0,0,0,0,0,0,0,on
hunter,0,0,0,0,0,0,0,0
hurr,0,0,0,0,0,0,0,L86 Blink fu500 fd550
hustler,0,0,0,0,0,0,0,E200 Blink fu500 fd600
hvymetal,0,0,0,0,0,0,0,ON
hypbl,0,0,0,0,0,0,0,ON
i500,0,0,0,0,0,0,0,L88 Blink fu500 fd550
icecoldbeer,0,0,0,0,0,0,0,E102 Blink fu500 fd600
icefever,0,0,0,0,0,0,0,ON
id4,0,0,0,0,0,0,0,ON
ij,0,0,0,0,0,0,0,L88 Blink fu500 fd550
ij_l7,0,0,0,0,0,0,0,L88 Blink fu500 fd550
ij4,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
im,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
IM_LOTB,0,0,0,0,0,0,0,E125 Blink fu500 fd600
impacto,0,0,0,0,0,0,0,ON
ind250cc,0,0,0,0,0,0,0,ON
indiana_jones_last_movie,0,0,0,0,0,0,0,0
indochine_central_tour,0,0,0,0,0,0,0,E125 Blink fu500 fd600
INHABITINGMARS,0,0,0,0,0,0,0,On
ironball,0,0,0,0,0,0,0,ON
ironmaid,0,0,0,0,0,0,0,ON Blink fu500 fd600
ironmafp,0,0,0,0,0,0,0,ON Blink fu500 fd600
IronMaiden_LOTB,0,0,0,0,0,0,0,E125 Blink fu500 fd600
it_pinball_madness,0,0,0,0,0,0,0,On
jack2opn,0,0,0,0,0,0,0,ON
JackInTheBox_1973,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Jackpot_1971,0,0,0,0,0,0,0,E126 Blink fu500 fd600
jacksopen,0,0,0,0,0,0,0,E142 Blink fu500 fd600
jacksparrow,0,0,0,0,0,0,0,0
jalisco,0,0,0,0,0,0,0,E200 Blink f500 fd550
jamesb2,0,0,0,0,0,0,0,ON
jamesb,0,0,0,0,0,0,0,ON
jamesb7,0,0,0,0,0,0,0,ON
jamesb7b,0,0,0,0,0,0,0,ON
Jaws,0,0,0,0,0,0,0,E202 Blink f500 fd550/E203
jb,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
jd,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
jetspin_1977,0,0,0,0,0,0,0,E123 Blink fu500 fd600
superspin_1977,0,0,0,0,0,0,0,E123 Blink fu500 fd600
jigglebox,0,0,0,0,0,0,0,E136 Blink fu500 fd550
Jigsaw,0,0,0,0,0,0,0,ON
jivetime,0,0,0,0,0,0,0,E125 Blink fu500 fd600
jm,0,0,0,0,0,0,0,L88 Blink fu500 fd550
jngld,0,0,0,0,0,0,0,ON
John_Rambo,0,0,0,0,0,0,0,0
johnwick,0,0,0,0,0,0,0,On
Joker_1950,0,0,0,0,0,0,0,E144 Blink fu500 fd600
jokerpoker_1978,0,0,0,0,0,0,0,E113 Blink fu500 fd600
jokrpokr,0,0,0,0,0,0,0,ON
jokrz,0,0,0,0,0,0,0,ON
JollyRoger_1967,0,0,0,0,0,0,0,E130 Blink fu500 fd600
jolypark,0,0,0,0,0,0,0,ON
jp_ghostbusters,0,0,0,0,0,0,0,E140 Blink fu500 fd600
JP30LE,0,0,0,0,0,0,0,E140 Blink fu200 fd200
jplstw,0,0,0,0,0,0,0,ON
jpsdeadpool,0,0,0,0,0,0,0,E125 Blink f500 fd550
jpsfriday13th,0,0,0,0,0,0,0,E125 Blink f500 fd550
jpspacecadet,0,0,0,0,0,0,0,E125 Blink f500 fd550
jpspacecadetGE,0,0,0,0,0,0,0,E125 Blink f500 fd550
jst_l2,0,0,0,0,0,0,0,ON
Jumaci_1966,0,0,0,0,0,0,0,E106
jumanji,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Jumping_Jack,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Jungle_1972,0,0,0,0,0,0,0,E121 Blink fu500 fd650
JungleKing_1973,0,0,0,0,0,0,0,E121 Blink
JungleLife_1972,0,0,0,0,0,0,0,E121 Blink
jungleprincess_1977,0,0,0,0,0,0,0,E137 Blink fu500 fd600
junglequeen,0,0,0,0,0,0,0,E108 Blink fu500 fd650
jupk,0,0,0,0,0,0,0,L9 m550 Blink fu500 fd600
jurassic,0,0,0,0,0,0,0,0
jy,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
Kickoff_1967,0,0,0,0,0,0,0,E232 Blink
kidnap,0,0,0,0,0,0,0,ON
kiko,0,0,0,0,0,0,0,ON
kill_bill,0,0,0,0,0,0,0,0
KillerInstinct,0,0,0,0,0,0,0,E125 Blink fu500 fd600
killershof,0,0,0,0,0,0,0,0
kimwilde,0,0,0,0,0,0,0,ON
King_Pin_1973,0,0,0,0,0,0,0,E110 Blink fu500 fd600
kingdom,0,0,0,0,0,0,0,0
KingOfDiamonds_1967,0,0,0,0,0,0,0,E125 Blink fu500 fd600
KingPin1962,0,0,0,0,0,0,0,E200 Blink fu500 fd600
KingRock_1972,0,0,0,0,0,0,0,E107 Blink fu500 fd600
kingsandqueens,0,0,0,0,0,0,0,ON
kingtut,0,0,0,0,0,0,0,E110 Blink fu500 fd650
kiss,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
kissc,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
kiss_original_2016,0,0,0,0,0,0,0,E125 Blink fu500 fd600
KKlowns,0,0,0,0,0,0,0,0
klondike1971,0,0,0,0,0,0,0,E126 Blink fu500 fd600
Knight_Rider,0,0,0,0,0,0,0,0
knockout,0,0,0,0,0,0,0,E128 Blink fu500 fd650
Knockout_1950,0,0,0,0,0,0,0,E144 Blink fu500 fd600
kosteel,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
kp,0,0,0,0,0,0,0,L3 m550 Blink fu500 fd600
krull,0,0,0,0,0,0,0,ON
Kuwait,0,0,0,0,0,0,0,E123 Blink fu500 fd600
kz26,0,0,0,0,0,0,0,ON
LadyLuck,0,0,0,0,0,0,0,ON
ladylukt,0,0,0,0,0,0,0,ON
lah,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
lancelot,0,0,0,0,0,0,0,ON
lapbylap,0,0,0,0,0,0,0,ON
lastlap,0,0,0,0,0,0,0,Blink fu500 fd600
lca,0,0,0,0,0,0,0,ON
lectrono,0,0,0,0,0,0,0,ON
lectrofp,0,0,0,0,0,0,0,ON
ledzeppelin,0,0,0,0,0,0,0,E127 Blink fu500 fd600
leprechaun,0,0,0,0,0,0,0,ON
libad,0,0,0,0,0,0,0,E125 Blink f500 fd550
libertybell_1977,0,0,0,0,0,0,0,E127 Blink fu500 fd600
lightnin,0,0,0,0,0,0,0,ON
lightnfp,0,0,0,0,0,0,0,ON
LightningBall_1959,0,0,0,0,0,0,0,E134 Blink
linedrive,0,0,0,0,0,0,0,E111 Blink fu500 fd550
LINKINPARKPUP,0,0,0,0,0,0,0,ON
littlechief,0,0,0,0,0,0,0,0
LittleJoe_1971,0,0,0,0,0,0,0,E232 Blink
lizard,0,0,0,0,0,0,0,ON
lochness,0,0,0,0,0,0,0,E140 Blink fu500 fd600
locomotn,0,0,0,0,0,0,0,ON
lortium,0,0,0,0,0,0,0,ON
lostspc,0,0,0,0,0,0,0,L8 m550 Blink fu500 fd600
lostw,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
lostwldb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
lotr,0,0,0,0,0,0,0,L80 Blink fu500 fd550
lsrcu,0,0,0,0,0,0,0,ON
lucksmile4,0,0,0,0,0,0,0,0
lucksmile1,0,0,0,0,0,0,0,0
lucky,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
LuckyStrike_1978,0,0,0,0,0,0,0,E125 Blink fu500 fd600
lunelle,0,0,0,0,0,0,0,ON
lw3,0,0,0,0,0,0,0,L33 Blink fu500 fd550
mj,0,0,0,0,0,0,0,L33 Blink fu500 fd550
lwar,0,0,0,0,0,0,0,ON
lzbal,0,0,0,0,0,0,0,ON
m_mpac,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
m_mpaca,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
macgalxy,0,0,0,0,0,0,0,ON
mach2,0,0,0,0,0,0,0,ON
mach2a,0,0,0,0,0,0,0,ON
macjungl,0,0,0,0,0,0,0,ON
madrace,0,0,0,0,0,0,0,ON
madscientist,0,0,0,0,0,0,0,E116 Blink fu500 fd600
magic,0,0,0,0,0,0,0,ON
magic_circle,0,0,0,0,0,0,0,E125 Blink fu500 fd600
MagicCity_1967,0,0,0,0,0,0,0,0
Magnotron_1974,0,0,0,0,0,0,0,E135 Blink fu500 fd650
magodeoz,0,0,0,0,0,0,0,E125 Blink fu500 fd600
attackontitan,0,0,0,0,0,0,0,E125 Blink fu500 fd600
majorleague1934,0,0,0,0,0,0,0,0
mandalorian,0,0,0,0,0,0,0,ON
MARILYNMANSONPUP,0,0,0,0,0,0,0,ON
mariner_1971,0,0,0,0,0,0,0,E127 Blink fu500 fd600
marqueen,0,0,0,0,0,0,0,0
married,0,0,0,0,0,0,0,0
mars,0,0,0,0,0,0,0,ON
marstrek,0,0,0,0,0,0,0,E132 Blink fu500 fd600
masquerade,0,0,0,0,0,0,0,E200
matahari,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
mav,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
mb,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
mcastle,0,0,0,0,0,0,0,ON
medusa,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
megadeth,0,0,0,0,0,0,0,0
memlan,0,0,0,0,0,0,0,ON
men_in_black,0,0,0,0,0,0,0,0
metalman,0,0,0,0,0,0,0,ON
metalslug,0,0,0,0,0,0,0,E128 Blink fu500 fd600
meteor,0,0,0,0,0,0,0,ON
meteort,0,0,0,0,0,0,0,ON
metropolis,0,0,0,0,0,0,0,E150 Blink fu500 fd600
mexico,0,0,0,0,0,0,0,ON
mfdoom,0,0,0,0,0,0,0,ON
MI,0,0,0,0,0,0,0,E125 Blink f500 fd550
MIBS_1969,0,0,0,0,0,0,0,E312 Blink fu500 fd600
MickeyM,0,0,0,0,0,0,0,E200 Blink fu500 fd600
midearth,0,0,0,0,0,0,0,ON
milln,0,0,0,0,0,0,0,ON
MiniCycle_1970,0,0,0,0,0,0,0,E233 Blink fu500 fd600
minions,0,0,0,0,0,0,0,E128 Blink fu500 fd600
MiniPool_1969,0,0,0,0,0,0,0,E129 Blink
miss_o_1969,0,0,0,0,0,0,0,E137 Blink fu500 fd600
mississipi,0,0,0,0,0,0,0,E200 Blink fu500 fd600
missworld,0,0,0,0,0,0,0,0
mkii,0,0,0,0,0,0,0,E126 Blink fu500 fd600
mm,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
mmunsters,0,0,0,0,0,0,0,E140 Blink fu500 fd600
mnfb,0,0,0,0,0,0,0,ON
mnshnr,0,0,0,0,0,0,0,E119 Blink fu500 fd600
mntecrlo,0,0,0,0,0,0,0,ON
Moana,0,0,0,0,0,0,0,Blink fu500 fd600
monaco1977,0,0,0,0,0,0,0,ON
monkeyisland,0,0,0,0,0,0,0,0
monopoly,0,0,0,0,0,0,0,L80 Blink fu500 fd550
monopolf,0,0,0,0,0,0,0,L80 Blink fu500 fd550
monopole,0,0,0,0,0,0,0,L80 Blink fu500 fd550
montecarlo_1973,0,0,0,0,0,0,0,0
moonlght,0,0,0,0,0,0,0,ON
motrdome,0,0,0,0,0,0,0,ON
motrshow,0,0,0,0,0,0,0,ON
motu,0,0,0,0,0,0,0,E512/E513 Blink 250
mousn,0,0,0,0,0,0,0,ON
Mphisto,0,0,0,0,0,0,0,E125 Blink fu500 fd650
JPMephisto,0,0,0,0,0,0,0,E125 Blink fu500 fd650
mrblack,0,0,0,0,0,0,0,ON
MrDoom_1979,0,0,0,0,0,0,0,E118 Blink fu500 fd600
MrEvil_1979,0,0,0,0,0,0,0,E118 Blink fu500 fd600
mt_130,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mt_120,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mt_140,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mt_145,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mt_145h,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mt_145hc,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
mtl_180,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
mtl_180c,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
mtl_180h,0,0,0,0,0,0,0,L72 m550 Blink fu500 fd550
mtl_180hc,0,0,0,0,0,0,0,L72 m550 Blink fu500 fd550
mtl_170hc,0,0,0,0,0,0,0,L72 m550 Blink fu500 fd550
mtl_170h,0,0,0,0,0,0,0,L72 m550 Blink fu500 fd550
mundial,0,0,0,0,0,0,0,ON Blink fu500 fd600
Mustang_1977,0,0,0,0,0,0,0,E126 Blink fu500 fd600
mystcas,0,0,0,0,0,0,0,L47 m550 Blink fu500 fd600
mysticb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
mystic,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
myststar,0,0,0,0,0,0,0,ON
nags_1960,0,0,0,0,0,0,0,E427 Blink fu500 fd600
nairobi,0,0,0,0,0,0,0,E200 Blink fu500 fd600
nascar,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd600
nautilus,0,0,0,0,0,0,0,ON Blink fu500 fd600
nba,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
nbaf,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
nbamac,0,0,0,0,0,0,0,ON
ndlsmr,0,0,0,0,0,0,0,ON
nemesis,0,0,0,0,0,0,0,ON
neptune,0,0,0,0,0,0,0,E137 Blink fu500 fd600
newwave,0,0,0,0,0,0,0,ON
newworld,0,0,0,0,0,0,0,E125 Blink fu500 fd600
NewYork_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
nf,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
nfl,0,0,0,0,0,0,0,ON
ngg,0,0,0,0,0,0,0,L88 Blink fu500 fd550
ngndshkr,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
ngndshkb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
ngndshkm,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
nightmarebc,0,0,0,0,0,0,0,E125 Blink f500 fd550
nightrdr,0,0,0,0,0,0,0,ON
nightrdb,0,0,0,0,0,0,0,ON
nightr20,0,0,0,0,0,0,0,ON
ninebal,0,0,0,0,0,0,0,ON
nipit_1973,0,0,0,0,0,0,0,E129 Blink fu500 fd600
NIRVANAPUP,0,0,0,0,0,0,0,ON
nmoves,0,0,0,0,0,0,0,ON
no rom v,0,0,0,0,0,0,0,0
Nobs,0,0,0,0,0,0,0,0
nobs_2016,0,0,0,0,0,0,0,E137 Blink fu500 fd600
northpole,0,0,0,0,0,0,0,E123 Blink fu500 fd600
NorthStar_1964,0,0,0,0,0,0,0,E200 Blink fu500 fd600
NOTLD68,0,0,0,0,0,0,0,E114 Blink fu500 fd600
Now_1971,0,0,0,0,0,0,0,E200 Blink fu500 fd600
nudge_test,0,0,0,0,0,0,0,Blink fu500 fd550
nudgeit,0,0,0,0,0,0,0,0
nudgy_1947,0,0,0,0,0,0,0,E127 Blink fu500 fd600
nugent,0,0,0,0,0,0,0,ON
obaoba,0,0,0,0,0,0,0,ON
OBWAT,0,0,0,0,0,0,0,E427 Blink fu500 fd600
odin_dlx,0,0,0,0,0,0,0,ON
odisea,0,0,0,0,0,0,0,ON
OKIES_TornadoRally,0,0,0,0,0,0,0,E137 Blink fu500 fd600
TornadoRally,0,0,0,0,0,0,0,E137 Blink fu500 fd600
old_chicago_1975,0,0,0,0,0,0,0,E123 Blink fu500 fd650
olympics_1962,0,0,0,0,0,0,0,E235 Blink fu500 fd600
olympus,0,0,0,0,0,0,0,ON
onbeam,0,0,0,0,0,0,0,E200 blink fu500 fd600
Op-Pop-Pop,0,0,0,0,0,0,0,E140 blink fu600 fd500
opthund,0,0,0,0,0,0,0,ON
orbit_1971,0,0,0,0,0,0,0,E130 Blink fu500 fd600
outerspace_1972,0,0,0,0,0,0,0,E130 Blink fu500 fd600
orbit1,0,0,0,0,0,0,0,ON
orbito,0,0,0,0,0,0,0,ON
OXO,0,0,0,0,0,0,0,E127 Blink fu500 fd600
ozzy,0,0,0,0,0,0,0,0
PalaceGuard_1970,0,0,0,0,0,0,0,E125 Blink fu500 fd600
panthera,0,0,0,0,0,0,0,ON
panther7,0,0,0,0,0,0,0,ON
tronclassic,0,0,0,0,0,0,0,ON
tronneon,0,0,0,0,0,0,0,ON
papa_smurf,0,0,0,0,0,0,0,E117 Blink fu500 fd600
Paradise_Gottlieb_1965,0,0,0,0,0,0,0,E211 Blink fu500 fd600
ParadiseJP,0,0,0,0,0,0,0,E140 blink fu600 fd500
paragon,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
party,0,0,0,0,0,0,0,ON
pathand1975,0,0,0,0,0,0,0,ON
paulbunyan_1968,0,0,0,0,0,0,0,E134 Blink fu500 fd600
pb,0,0,0,0,0,0,0,ON
pecmen,0,0,0,0,0,0,0,0
pentacup,0,0,0,0,0,0,0,ON
petaco,0,0,0,0,0,0,0,ON
petaco2,0,0,0,0,0,0,0,ON
pfevr,0,0,0,0,0,0,0,ON
pharo,0,0,0,0,0,0,0,ON
PhaseII_1975,0,0,0,0,0,0,0,E126 Blink fu500 fd650
phnix,0,0,0,0,0,0,0,ON
pimbal,0,0,0,0,0,0,0,ON
pinball,0,0,0,0,0,0,0,ON
pinbalfp,0,0,0,0,0,0,0,ON
PinballUniverse,0,0,0,0,0,0,0,E108 Blink fu500 fd550
PinballX,0,0,0,0,0,0,0,ON Blink fu500 fd600
PinballXMX,0,0,0,0,0,0,0,0
PinballY,0,0,0,0,0,0,0,ON Blink fu500 fd600
pinchamp,0,0,0,0,0,0,0,ON
pinclown,0,0,0,0,0,0,0,ON
pinjuke,0,0,0,0,0,0,0,ON I32/L19 100 I48
pink_floyd,0,0,0,0,0,0,0,ON
pinpool,0,0,0,0,0,0,0,ON
pinupmenu,0,0,0,0,0,0,0,ON
Pioneer,0,0,0,0,0,0,0,E122 Blink fu500 fd600
PirateGold_1969,0,0,0,0,0,0,0,E199 Blink fu500 fd600
PiratesLife2,0,0,0,0,0,0,0,0
pizzatime,0,0,0,0,0,0,0,ON
pkrno,0,0,0,0,0,0,0,0
play,0,0,0,0,0,0,0,ON
Playball_71VPX,0,0,0,0,0,0,0,E232 Blink
playboyb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
playboy,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
playboys,0,0,0,0,0,0,0,L72 Blink fu500 fd550
playboyf,0,0,0,0,0,0,0,L72 Blink fu500 fd550
playboystentacle,0,0,0,0,0,0,0,L72 Blink fu500 fd550
PlaymaticSpeakeasy,0,0,0,0,0,0,0,E131 Blink fu500 fd600
pmv112,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
pmv112r,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
pnkpnthr,0,0,0,0,0,0,0,ON
Pokemon_Pinball,0,0,0,0,0,0,0,E125 Blink fu500 fd600
ChronoTrigger,0,0,0,0,0,0,0,E125 Blink fu500 fd600
polar,0,0,0,0,0,0,0,ON
poleposn,0,0,0,0,0,0,0,ON
polic,0,0,0,0,0,0,0,ON
Poltergeist,0,0,0,0,0,0,0,E121 Blink fu500 fd550
pool,0,0,0,0,0,0,0,ON
pop,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd500
PopACard_1971,0,0,0,0,0,0,0,E200 Blink fu500 fd600
DropACard_1971,0,0,0,0,0,0,0,E200 Blink fu500 fd600
Poseidon_1978,0,0,0,0,0,0,0,E200 Blink fu500 fd600
PostTime_1969,0,0,0,0,0,0,0,E199 Blink fu500 fd600
potc,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
potcjp,0,0,0,0,0,0,0,0
poto,0,0,0,0,0,0,0,ON
powerrangers,0,0,0,0,0,0,0,E125 Blink f500 fd550
price_is_right,0,0,0,0,0,0,0,0
princess,0,0,0,0,0,0,0,ON
princefp,0,0,0,0,0,0,0,ON
Proc_CC,0,0,0,0,0,0,0,ON
proc_evildead,0,0,0,0,0,0,0,ON
evildead,0,0,0,0,0,0,0,ON
proc_gremlins,0,0,0,0,0,0,0,0
gremlins,0,0,0,0,0,0,0,0
Prospector_1977,0,0,0,0,0,0,0,E115 Blink fu500 fd600
prtyanim,0,0,0,0,0,0,0,ON
pstlpkr,0,0,0,0,0,0,0,L32 m550 Blink fu500 fd600
Psychedelic_1970,0,0,0,0,0,0,0,E123 Blink
pulpfiction,0,0,0,0,0,0,0,0
punchout,0,0,0,0,0,0,0,0
punchy,0,0,0,0,0,0,0,ON
punk,0,0,0,0,0,0,0,ON
Punk_Park,0,0,0,0,0,0,0,0
pupjukebox,0,0,0,0,0,0,0,ON Blink fu500 fd600
Purge,0,0,0,0,0,0,0,ON
PVM,0,0,0,0,0,0,0,0
pwerplay,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
pwerplab,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
pyramid_1978,0,0,0,0,0,0,0,E126 Blink fu500 fd600
pz,0,0,0,0,0,0,0,L78 m550 Blink fu500 fd600
qbquest,0,0,0,0,0,0,0,ON
QOTSA,0,0,0,0,0,0,0,ON
QueenOFHearts_1952,0,0,0,0,0,0,0,E218
quicks,0,0,0,0,0,0,0,ON
rab,0,0,0,0,0,0,0,L15 m550 Blink fu500 fd550
RackABall_1962,0,0,0,0,0,0,0,E312 Blink
rackemup,0,0,0,0,0,0,0,ON
radcl,0,0,0,0,0,0,0,ON
raimfire,0,0,0,0,0,0,0,ON
Rainbow_1956,0,0,0,0,0,0,0,E134 Blink fu500 fd600
rally,0,0,0,0,0,0,0,ON
Rambo,0,0,0,0,0,0,0,0
Rancho_1965,0,0,0,0,0,0,0,E135 Blink
rancho1976,0,0,0,0,0,0,0,ON
rapidfir,0,0,0,0,0,0,0,0
ratfink,0,0,0,0,0,0,0,ON
raven,0,0,0,0,0,0,0,ON
Rawhide,0,0,0,0,0,0,0,0
Stampede,0,0,0,0,0,0,0,0
rctycn,0,0,0,0,0,0,0,L64 Blink fu500 fd550
rct701,0,0,0,0,0,0,0,L64 Blink fu500 fd550
rdkng,0,0,0,0,0,0,0,ON
RED_HOT_Pinball,0,0,0,0,0,0,0,0
rescu911,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
ReydeDiamantes_1967,0,0,0,0,0,0,0,E125 Blink
rflshdlx,0,0,0,0,0,0,0,ON
RHCPPUP,0,0,0,0,0,0,0,ON
RickMorty,0,0,0,0,0,0,0,E126 Blink fu500 fd600
ripleys,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd550
ripleysf,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd550
RoadRace_1969,0,0,0,0,0,0,0,E109 Blink fu500 fd600
roadrunr,0,0,0,0,0,0,0,ON
robo,0,0,0,0,0,0,0,ON
robot,0,0,0,0,0,0,0,ON
robowars,0,0,0,0,0,0,0,ON
rock,0,0,0,0,0,0,0,ON
rock_enc,0,0,0,0,0,0,0,ON
rock2500,0,0,0,0,0,0,0,ON
RocketIII_1967,0,0,0,0,0,0,0,E114 Blink fu500 fd600
rockmakers_1968,0,0,0,0,0,0,0,E199 Blink fu500 fd600
rocky,0,0,0,0,0,0,0,ON
rockyle,0,0,0,0,0,0,0,ON
roldisco,0,0,0,0,0,0,0,ON
RollerCoaster_1971,0,0,0,0,0,0,0,E117 Blink fu500 fd600
rollr,0,0,0,0,0,0,0,ON
rollstob,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
RomanVictory,0,0,0,0,0,0,0,E125 Blink fu500 fd600
roses_1962,0,0,0,0,0,0,0,E121 Blink fu500 fd600
RoyalPair_1974,0,0,0,0,0,0,0,E129 Blink
rs,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
rsn,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
rugby,0,0,0,0,0,0,0,ON
runninghorse,0,0,0,0,0,0,0,E200 Blink fu500 fd600
rush_le,0,0,0,0,0,0,0,0
RUSH2112_B2S,0,0,0,0,0,0,0,ON
rvrbt,0,0,0,0,0,0,0,ON
SanFrancisco1964,0,0,0,0,0,0,0,E232 Blink fu500 fd600
SatinDoll_1975,0,0,0,0,0,0,0,E118 Blink
saturn2,0,0,0,0,0,0,0,ON
sc,0,0,0,0,0,0,0,L88 Blink fu500 fd550
Scarface,0,0,0,0,0,0,0,E132 Blink fu500 fd550
scarn200,0,0,0,0,0,0,0,ON m550 Blink fu500 fd550
schuss,0,0,0,0,0,0,0,E200 Blink fu500 fd600
Scooby,0,0,0,0,0,0,0,E121 Blink fu500 fd550
scram,0,0,0,0,0,0,0,ON
scrpn_l1,0,0,0,0,0,0,0,ON
scrpn_t1,0,0,0,0,0,0,0,ON
Scuba_1970,0,0,0,0,0,0,0,E115 Blink fu500 fd600
searay_1971,0,0,0,0,0,0,0,E127 Blink fu500 fd600
seawitch,0,0,0,0,0,0,0,ON
seawitfp,0,0,0,0,0,0,0,ON
Secretagent,0,0,0,0,0,0,0,0
seesaw,0,0,0,0,0,0,0,ON
SegaGalaxy,0,0,0,0,0,0,0,0
serioussam,0,0,0,0,0,0,0,E125 Blink fu500 fd600
swampthing,0,0,0,0,0,0,0,E125 Blink fu500 fd600
sevenwinner,0,0,0,0,0,0,0,E200 Blink fu500 fd600
sfight2,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
sfight2a,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
sfight2b,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
shamrock4,0,0,0,0,0,0,0,E200 Blink fu500 fd600
shamrock1,0,0,0,0,0,0,0,E200 Blink fu500 fd600
Shangrila,0,0,0,0,0,0,0,ON
ShangriLa1967,0,0,0,0,0,0,0,E232 Blink
shaqatt,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
shark,0,0,0,0,0,0,0,ON
sharkt,0,0,0,0,0,0,0,ON
Sheriff_1971,0,0,0,0,0,0,0,E111 Blink fu500 fd600
ShipMates_1964,0,0,0,0,0,0,0,E110 Blink
shock,0,0,0,0,0,0,0,ON
shovelknight,0,0,0,0,0,0,0,ON
shr,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
shrkysht,0,0,0,0,0,0,0,L71 m550 Blink fu500 fd600
Silver,0,0,0,0,0,0,0,0
silvslug,0,0,0,0,0,0,0,ON
simp,0,0,0,0,0,0,0,ON
simpprty,0,0,0,0,0,0,0,L31 m550 fu500 fd600
simpprtf,0,0,0,0,0,0,0,L31 m550 fu500 fd600
simpprtg,0,0,0,0,0,0,0,L31 m550 fu500 fd600
simpprti,0,0,0,0,0,0,0,L31 m550 fu500 fd600
simpprtl,0,0,0,0,0,0,0,L31 m550 fu500 fd600
simpprtyh,0,0,0,0,0,0,0,L31 m550 fu500 fd600
sinbad,0,0,0,0,0,0,0,ON
sincity,0,0,0,0,0,0,0,ON
sing_along_1967,0,0,0,0,0,0,0,E124 Blink fu500 fd600
skateblb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
skatebll,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
skatebrd,0,0,0,0,0,0,0,ON Blink fu500 fd600
skijump,0,0,0,0,0,0,0,L10 m550 Blink fu500 fd600
Skipper_1969,0,0,0,0,0,0,0,E117 Blink
Sky_Jump_1974,0,0,0,0,0,0,0,E136 Blink fu500 fd600
Skylab1974,0,0,0,0,0,0,0,ON
skyrocket,0,0,0,0,0,0,0,ON
Skyscraper,0,0,0,0,0,0,0,0
skyway_1954,0,0,0,0,0,0,0,E102 Blink fu500 fd600
slbmania,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
slbmanib,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
SlickChick_1963,0,0,0,0,0,0,0,E134 Blink fu500 fd600
sman,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
smart_set_1969,0,0,0,0,0,0,0,E128 Blink fu500 fd600
smb3,0,0,0,0,0,0,0,ON
smbmush,0,0,0,0,0,0,0,L80 m550 fu500 fd600
smman,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
smmanb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
smmanc,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
smmand,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
smurfette,0,0,0,0,0,0,0,E130 Blink fu500 fd600
snake,0,0,0,0,0,0,0,ON
SnowDerby_1970,0,0,0,0,0,0,0,E123 Blink fu500 fd600
snspares,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
soa,0,0,0,0,0,0,0,E136 Blink fu500 fd600
Soccer1964,0,0,0,0,0,0,0,E232 Blink
sock,0,0,0,0,0,0,0,ON
solar,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
solaride,0,0,0,0,0,0,0,ON
solarrideem,0,0,0,0,0,0,0,E200 Blink f500 fd550
solarwar,0,0,0,0,0,0,0,ON
Solitaire_1967,0,0,0,0,0,0,0,E125 Blink
sonstw,0,0,0,0,0,0,0,ON
sopranos,0,0,0,0,0,0,0,L80 Blink fu500 fd550
sopranof,0,0,0,0,0,0,0,L80 Blink fu500 fd550
sorbit,0,0,0,0,0,0,0,0
sorcr,0,0,0,0,0,0,0,ON
SOTA,0,0,0,0,0,0,0,0
soundstage,0,0,0,0,0,0,0,E200 blink fu500 fd600
spacecty,0,0,0,0,0,0,0,ON
spacehaw,0,0,0,0,0,0,0,ON
spaceinv,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
spaceinb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
spacej,0,0,0,0,0,0,0,ON
spacejam,0,0,0,0,0,0,0,ON
spacejmg,0,0,0,0,0,0,0,ON
spacemission_1976,0,0,0,0,0,0,0,E130 Blink fu500 fd600
SpaceOrbit_1972,0,0,0,0,0,0,0,E233 Blink
SpacePatrol,0,0,0,0,0,0,0,E125 Blink fu500 fd600
spaceramp,0,0,0,0,0,0,0,ON
spacetime_1972,0,0,0,0,0,0,0,E125 Blink fu500 fd600
spacewalk_1979,0,0,0,0,0,0,0,E121 Blink fu500 fd600
spagb_100,0,0,0,0,0,0,0,0
spagb_100b2s,0,0,0,0,0,0,0,E83 Blink fu500 fd600
spanisheyes_1972,0,0,0,0,0,0,0,E121 Blink fu500 fd600
spcgambl,0,0,0,0,0,0,0,ON
spcrider,0,0,0,0,0,0,0,ON
spctrain,0,0,0,0,0,0,0,ON
speake,0,0,0,0,0,0,0,ON
specforc,0,0,0,0,0,0,0,ON
spectru4,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
spidermanjp,0,0,0,0,0,0,0,E116 Blink 400/E118
spidermn,0,0,0,0,0,0,0,ON
spiderm7,0,0,0,0,0,0,0,ON
SpinACard_1969,0,0,0,0,0,0,0,E129 Blink fu500 fd600
HeartsAndSpades_1969,0,0,0,0,0,0,0,E129 Blink fu500 fd600
spinningwheel,0,0,0,0,0,0,0,E200 Blink fu500 fd600
SpinOut_1975,0,0,0,0,0,0,0,E110 Blink fu500 fd600
spirit,0,0,0,0,0,0,0,ON
Spiritof76,0,0,0,0,0,0,0,E126 fu300 fd400
splitsec,0,0,0,0,0,0,0,ON
splitsfp,0,0,0,0,0,0,0,ON
spongebob,0,0,0,0,0,0,0,E121 BLINK 700 F200
spooky,0,0,0,0,0,0,0,ON
spooki,0,0,0,0,0,0,0,ON
SpookyWednesday,0,0,0,0,0,0,0,0
SpookyWednesdayPro,0,0,0,0,0,0,0,0
spotacard_1960,0,0,0,0,0,0,0,E144 Blink fu500 fd600
SPP,0,0,0,0,0,0,0,0
sprbreak,0,0,0,0,0,0,0,ON
sprbrk,0,0,0,0,0,0,0,ON
sprk,0,0,0,0,0,0,0,ON
spstn,0,0,0,0,0,0,0,ON
spyhunt,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
squid_game,0,0,0,0,0,0,0,0
SS,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
sshooter,0,0,0,0,0,0,0,ON
sshootr2,0,0,0,0,0,0,0,ON
sshtl,0,0,0,0,0,0,0,ON
sshtlzac,0,0,0,0,0,0,0,ON
sshuttle,0,0,0,0,0,0,0,ON
sst,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
sstb,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
sstc,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
sstd,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
ssvc,0,0,0,0,0,0,0,ON
st_162,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
st_161c,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
st_162c,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
st_162h,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd550
st_161hc,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd550
st_161h,0,0,0,0,0,0,0,L80 m550 Blink fu500 fd550
star_jet,0,0,0,0,0,0,0,E125 Blink fu500 fd600
Stardust,0,0,0,0,0,0,0,E200 Blink fu500 fd600
starfire,0,0,0,0,0,0,0,ON Blink fu500 fd600
stargat4,0,0,0,0,0,0,0,ON
stargat5,0,0,0,0,0,0,0,ON
stargod,0,0,0,0,0,0,0,L13 m550 Blink fu500 fd600
stargoda,0,0,0,0,0,0,0,L13 m550 Blink fu500 fd600
stargzr,0,0,0,0,0,0,0,ON
stargzrb,0,0,0,0,0,0,0,ON
stargzfp,0,0,0,0,0,0,0,ON
StarPool_1974,0,0,0,0,0,0,0,E131 Blink fu500 fd600
starrace,0,0,0,0,0,0,0,ON
cataarc7,0,0,0,0,0,0,0,ON
stars,0,0,0,0,0,0,0,ON
starship,0,0,0,0,0,0,0,E200 Blink FU500 FD600
startrek,0,0,0,0,0,0,0,ON
startrekb,0,0,0,0,0,0,0,ON
startreb,0,0,0,0,0,0,0,ON
startrek_1971,0,0,0,0,0,0,0,E136 Blink fu500 fd600
startrip,0,0,0,0,0,0,0,0
startrp,0,0,0,0,0,0,0,ON
StarWars_1978,0,0,0,0,0,0,0,E137 Blink fu500 fd600
starwarsbh,0,0,0,0,0,0,0,ON
stest,0,0,0,0,0,0,0,ON
stingray,0,0,0,0,0,0,0,ON
stingrfp,0,0,0,0,0,0,0,ON
stk,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
STLE,0,0,0,0,0,0,0,ON
stlwr,0,0,0,0,0,0,0,ON
straight_flush,0,0,0,0,0,0,0,E126 Blink fu500 fd600
WilliamsStraightFlush,0,0,0,0,0,0,0,E126 Blink fu500 fd600
stranger_things,0,0,0,0,0,0,0,E140 Blink fu500 fd600
STRANGERTHINGS4,0,0,0,0,0,0,0,ON
StrangerThings4_Premium,0,0,0,0,0,0,0,ON
strapids,0,0,0,0,0,0,0,ON
Stratoflite,0,0,0,0,0,0,0,E109 Blink fu500 fd550
strawman,0,0,0,0,0,0,0,E129 Blink fu500 fd600
strike,0,0,0,0,0,0,0,ON
striker,0,0,0,0,0,0,0,ON
strikext,0,0,0,0,0,0,0,ON
strxt,0,0,0,0,0,0,0,ON
stripping_funny,0,0,0,0,0,0,0,0
strlt,0,0,0,0,0,0,0,ON
strngsci,0,0,0,0,0,0,0,ON
strsphnx,0,0,0,0,0,0,0,ON
strworld,0,0,0,0,0,0,0,ON
sttng,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
stwr,0,0,0,0,0,0,0,L25 m550 Blink fu500 fd600
superman,0,0,0,0,0,0,0,ON
Superman_tjl,0,0,0,0,0,0,0,0
SupermanLE,0,0,0,0,0,0,0,ON
supermantas,0,0,0,0,0,0,0,0
supersoccer,0,0,0,0,0,0,0,On
superstar,0,0,0,0,0,0,0,E112 Blink fu500 fd550
SuperStraight,0,0,0,0,0,0,0,E133 Blink fu500 fd600
suprbowl,0,0,0,0,0,0,0,ON
supreme,0,0,0,0,0,0,0,0
suprnova,0,0,0,0,0,0,0,ON
sureshot,0,0,0,0,0,0,0,ON
Surfer_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
SurfChamp_1976,0,0,0,0,0,0,0,E125 Blink fu500 fd600
surfnsaf,0,0,0,0,0,0,0,ON
SurfSide_1967,0,0,0,0,0,0,0,E232 Blink
SweetHearts_1963,0,0,0,0,0,0,0,E200 Blink fu500 fd600
swingalong,0,0,0,0,0,0,0,E200 Blink fu500 fd600
Swinger_1972,0,0,0,0,0,0,0,0
swrds,0,0,0,0,0,0,0,ON
fallout,0,0,0,0,0,0,0,ON
swtril43,0,0,0,0,0,0,0,ON
t2,0,0,0,0,0,0,0,L84 Blink fu500 fd550
taf,0,0,0,0,0,0,0,L88 Blink fu500 fd550
tafg,0,0,0,0,0,0,0,L88 Blink fu500 fd550
tagteam,0,0,0,0,0,0,0,ON
TamTam_1975,0,0,0,0,0,0,0,E130 Blink
Target_Alpha_1976,0,0,0,0,0,0,0,E111 Blink fu500 fd650
TargetPool_1969,0,0,0,0,0,0,0,E129 Blink
taxi,0,0,0,0,0,0,0,ON
TeachersPet_1965,0,0,0,0,0,0,0,E200 Blink fu500 fd600
TeamOne_77VPX,0,0,0,0,0,0,0,E126 Blink
teedoff3,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
TenasiousD,0,0,0,0,0,0,0,0
Firepower II,0,0,0,0,0,0,0,0
term3,0,0,0,0,0,0,0,L53 m550 Blink fu500 fd650
term3f,0,0,0,0,0,0,0,L53 m550 Blink fu500 fd650
term3g,0,0,0,0,0,0,0,L53 m550 Blink fu500 fd650
term3i,0,0,0,0,0,0,0,L53 m550 Blink fu500 fd650
term3l,0,0,0,0,0,0,0,L53 m550 Blink fu500 fd650
Terrifier,0,0,0,0,0,0,0,0
terrlake,0,0,0,0,0,0,0,ON
tf,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
tfle,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
tfight,0,0,0,0,0,0,0,ON
tftc,0,0,0,0,0,0,0,L16 m550 Blink fu500 fd550
the_fog_1979,0,0,0,0,0,0,0,E121 Blink fu500 fd600
The+War+of+the+Worlds,0,0,0,0,0,0,0,0
thecerebralmaze,0,0,0,0,0,0,0,E132 Blink fu500 fd600
thegames,0,0,0,0,0,0,0,ON
TheMatrix,0,0,0,0,0,0,0,E125
theraid,0,0,0,0,0,0,0,ON
theweb,0,0,0,0,0,0,0,ON
thewiggler_1967,0,0,0,0,0,0,0,E199 Blink fu500 fd600
thndrman,0,0,0,0,0,0,0,0
Threeangels,0,0,0,0,0,0,0,0
thund_p,0,0,0,0,0,0,0,ON
ThunderCats,0,0,0,0,0,0,0,E114 Blink fu500 fd600
Tiger_1975,0,0,0,0,0,0,0,E130 Blink
time2000,0,0,0,0,0,0,0,ON
timeline,0,0,0,0,0,0,0,ON
TimeLord,0,0,0,0,0,0,0,0
timeshock,0,0,0,0,0,0,0,L0
timetunnel_1971,0,0,0,0,0,0,0,E125 Blink fu500 fd600
tiros,0,0,0,0,0,0,0,0
titan,0,0,0,0,0,0,0,ON
tko_1979,0,0,0,0,0,0,0,E123 Blink fu500 fd600
TlD_123,0,0,0,0,0,0,0,E200 Blink fu500 fd600
tmac,0,0,0,0,0,0,0,ON
tmachzac,0,0,0,0,0,0,0,ON
tmachfp,0,0,0,0,0,0,0,ON
tmachffp,0,0,0,0,0,0,0,ON
tmacgfp,0,0,0,0,0,0,0,ON
tmaczfap,0,0,0,0,0,0,0,ON
tmfnt,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd600
tmnt,0,0,0,0,0,0,0,ON
tmwrp,0,0,0,0,0,0,0,ON
tna,0,0,0,0,0,0,0,E140 Blink fu500 fd600
toledo,0,0,0,0,0,0,0,0
tom,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
tomb_raider,0,0,0,0,0,0,0,0
tomjerry,0,0,0,0,0,0,0,ON
tomy,0,0,0,0,0,0,0,L64 m550 Blink fu500 fd550
TOOLPUP,0,0,0,0,0,0,0,ON
TopCard_1974,0,0,0,0,0,0,0,E200 Blink fu500 fd600
TopHand_1973,0,0,0,0,0,0,0,E116 Blink
torch,0,0,0,0,0,0,0,ON
torp,0,0,0,0,0,0,0,ON
Torpedo,0,0,0,0,0,0,0,E125 Blink fu500 fd600
totan,0,0,0,0,0,0,0,L88 Blink fu500 fd550
totem,0,0,0,0,0,0,0,ON
TotemEM,0,0,0,0,0,0,0,ON
touchdn,0,0,0,0,0,0,0,ON
Touchdown_1967,0,0,0,0,0,0,0,E232 Blink fu500 fd600
trade_winds,0,0,0,0,0,0,0,E112 Blink fu500 fd600
trailer,0,0,0,0,0,0,0,ON Blink fu500 fd600
trek,0,0,0,0,0,0,0,L31 m550 Blink fu500 fd600
trickrtreat,0,0,0,0,0,0,0,ON
tricksht,0,0,0,0,0,0,0,ON Blink fu500 fd600
trident,0,0,0,0,0,0,0,ON
trigon,0,0,0,0,0,0,0,E116 Blink fu500 fd600
triplay,0,0,0,0,0,0,0,ON
TripleAction_1973,0,0,0,0,0,0,0,E200 Blink fu500 fd600
StarAction_1973,0,0,0,0,0,0,0,E200 Blink fu500 fd600
triplestrike,0,0,0,0,0,0,0,E120 Blink f500
TripleX_1973,0,0,0,0,0,0,0,0
trizn_l1,0,0,0,0,0,0,0,L56 m550 Blink fu500 fd600
trn_174h,0,0,0,0,0,0,0,L65 m550 Blink fu500 fd600
TropicFun_1973,0,0,0,0,0,0,0,E127 Blink fu500 fd600
trucksp3,0,0,0,0,0,0,0,ON
ts,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
tsptr,0,0,0,0,0,0,0,ON
twd_156,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
twd_160,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
twd_156h,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
twd_160h,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
twenty4,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
twst,0,0,0,0,0,0,0,ON
txsector,0,0,0,0,0,0,0,ON
tz,0,0,0,0,0,0,0,L88 Blink fu500 fd550
u-foes,0,0,0,0,0,0,0,0
uboat65,0,0,0,0,0,0,0,ON Blink fu500 fd600
uefa_cl,0,0,0,0,0,0,0,E150 Blink fu500 fd600
underwater,0,0,0,0,0,0,0,E125 Blink fu500 fd600
universe,0,0,0,0,0,0,0,E200 Blink fu500 fd600
ut99ctf,0,0,0,0,0,0,0,E115 BLINK 700 F200
v1,0,0,0,0,0,0,0,ON
Vampire,0,0,0,0,0,0,0,0
vampirella,0,0,0,0,0,0,0,0
VANHALENPUP,0,0,0,0,0,0,0,ON
vector,0,0,0,0,0,0,0,ON
vectora,0,0,0,0,0,0,0,ON
vectorb,0,0,0,0,0,0,0,ON
vegas,0,0,0,0,0,0,0,ON
vegast,0,0,0,0,0,0,0,ON
victory,0,0,0,0,0,0,0,ON
vikingb,0,0,0,0,0,0,0,ON
viper,0,0,0,0,0,0,0,ON
viprsega,0,0,0,0,0,0,0,ON
vlcno_ax,0,0,0,0,0,0,0,ON
volkan,0,0,0,0,0,0,0,E113 BLINK 700 F200
volley_1976,0,0,0,0,0,0,0,E123 Blink fu500 fd650
voltan,0,0,0,0,0,0,0,ON
voodoo,0,0,0,0,0,0,0,E122 BLINK 700 F200
vortex,0,0,0,0,0,0,0,ON
VP_DOF_TEST,0,0,0,0,0,0,0,0
VpBuffyVamp,0,0,0,0,0,0,0,E125 Blink fu500 fd600
vrnwrld,0,0,0,0,0,0,0,ON
wackyraces,0,0,0,0,0,0,0,0
waroftheworlds,0,0,0,0,0,0,0,0
watchmen,0,0,0,0,0,0,0,ON
waterwld,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
wcs,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
wcsoccer,0,0,0,0,0,0,0,ON
wcsoccd2,0,0,0,0,0,0,0,ON
wcup90,0,0,0,0,0,0,0,ON
wd,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd550
wheel_maresa,0,0,0,0,0,0,0,E125 Blink fu500 fd600
whirl,0,0,0,0,0,0,0,ON Blink fu500 fd700
whirl_wind_1958,0,0,0,0,0,0,0,E199 Blink fu500 fd600
Whoa_Nellie_EM,0,0,0,0,0,0,0,E121 Blink fu500 fd600
primus,0,0,0,0,0,0,0,E121 Blink fu500 fd600
pabst,0,0,0,0,0,0,0,E121 Blink fu500 fd600
wildfyre,0,0,0,0,0,0,0,ON Blink fu500 fd600
WildWest,0,0,0,0,0,0,0,0
wildwildwest_1969,0,0,0,0,0,0,0,E130 Blink fu500 fd600
Williams8Ball1966,0,0,0,0,0,0,0,E232 Blink fu500 fd600
willywonka,0,0,0,0,0,0,0,0
wimbledon,0,0,0,0,0,0,0,E123 Blink fu500 fd600
wipeout,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd600
wizard_1975,0,0,0,0,0,0,0,E119 Blink fu500 fd600
wldcp,0,0,0,0,0,0,0,ON
wof,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
wolfman,0,0,0,0,0,0,0,ON
Wooly,0,0,0,0,0,0,0,E121 Blink fu500 fd550
worlddef,0,0,0,0,0,0,0,ON
worlds_fair,0,0,0,0,0,0,0,0
WorldSeries_1972,0,0,0,0,0,0,0,E232 Blink
woz_original,0,0,0,0,0,0,0,E114 Blink fu500 fd600
wpt,0,0,0,0,0,0,0,L1 m550 fu500 fd600
wrldtou2,0,0,0,0,0,0,0,L39 m550 Blink fu500 fd550
wrlok,0,0,0,0,0,0,0,ON
ww,0,0,0,0,0,0,0,L88 m550 Blink fu500 fd600
wwfr,0,0,0,0,0,0,0,L16 m550 Blink fu500 fd600
Xenon,0,0,0,0,0,0,0,L59 m550 Blink fu500 fd600
xfiles,0,0,0,0,0,0,0,ON
xmn_151,0,0,0,0,0,0,0,L1 m550 Blink fu500 fd550
xmn_151h,0,0,0,0,0,0,0,L39 Blink fu500 fd600
xmn_151hc,0,0,0,0,0,0,0,L39 Blink fu500 fd600
xsandos,0,0,0,0,0,0,0,ON
xsandosa,0,0,0,0,0,0,0,ON
yellowsub,0,0,0,0,0,0,0,E118 Blink fu500 fd600
Yes,0,0,0,0,0,0,0,0
yukon,0,0,0,0,0,0,0,ON
zankor,0,0,0,0,0,0,0,ON
zankorfp,0,0,0,0,0,0,0,ON
zarza,0,0,0,0,0,0,0,ON
zekespeak,0,0,0,0,0,0,0,E102 Blink fu500 fd600
zephy,0,0,0,0,0,0,0,0
zipadoo_1970,0,0,0,0,0,0,0,E118 Blink fu500 fd600
zira,0,0,0,0,0,0,0,ON
zissou,0,0,0,0,0,0,0,0
zodiac_1971,0,0,0,0,0,0,0,E314 Blink fu500 fd600
zof10,0,0,0,0,0,0,0,E172 Blink fu500 fd600
test_basic,0,0,0,0,0,0,0,L88
test_fade,0,0,0,0,0,0,0,L88 fu500 fd550
test_blink,0,0,0,0,0,0,0,L88 Blink
test_both,0,0,0,0,0,0,0,L88 Blink fu500 fd550

pico_config.json:

// Pinscape Pico Configuration - Starter Template
// Copyright 2024, 2025 Michael J Roberts / BSD-3-Clause license / NO WARRANTY
//
// This is a starter template for a Pinscape Pico config file, with
// commented-out examples of many of the common settings options.
//
// Like most JSON files, this file basically defines one big "object",
// which is a collection of name/value pairs, called "properties".  An
// object is written with a pair of braces, { and }, enclosing a list of
// properties, separated by commas.  Each property consists of a name, a
// colon, and a value, which can be a string (in quotes), a number, a
// boolean (true or false), another object (in braces), or an array
// (which is an ordered list of values, enclosed in square brackets).
//
// Here's what a basic object definition might look like to describe a
// pinball machine for a pinball database.  This has nothing to do with
// Pinscape; it's just to illustrate the JSON syntax with something
// concrete.
//
// {
//    title: "Medieval Madness",
//    year: 1997,
//    manufacturer: "Williams Electronics Games",
//    type: "Solid State",
//    platform: "WPC95",
//    display: {            // this is a nested object
//       type: "DMD",       // with its own set of properties
//       pixels: "128x32",
//    },
//    flippers: {
//       number: 2,
//       technology: "Fliptronics II",
//    },
//    magnaSave: false,
//    launchButton: true,
//    designers: ["Brian Eddy"],   // an array, since there might be multiple credits
//    artists: ["Jouhn Youssi", "Greg Freres"]   // ...as seen here
// }
//
// Upper/lower case DOES MATTER for property names.  You must enter the
// names exactly as shown.
//
// The order of the properties in each object is completely unimportant.
// You can define things in whatever order makes sense to you and makes
// things easiest to find.
//

{
    // ---------------------------------------------------------------------
    //
    // Basic device setup
    //

    // Unit identification
    id: {
        // Every configuration should have a unit number, to identify the
        // device to DOF.  Assign unit #1 to the first Pinscape Pico in your
        // system, 2 to the second, and so on.  (Don't count KL25Z Pinscape
        // units here.  DOF treats the KL25Z and Pico versions as separate
        // devices, so the Picos get their own numbering starting at 1.)
        // The numbering should always start at 1 and go up sequentially
        // from there, because it'll make things easier to set up with DOF.
        unitNum: 1,

        // The unit name is just for display purposes, to help YOU tell your
        // Pinscape Pico units apart if you have more than one.  The name
        // will be displayed when the Config Tool or other tools list the
        // available devices on-screen.  The name can be whatever you want,
        // but it's best to keep it fairly short, since it might be used to
        // label small UI elements, such as buttons.
        unitName: "Main Pico",

        // Emulated LedWiz ID.  This is for use by an LedWiz API emulator
        // on the PC host, which provides a virtual LedWiz interface for
        // legacy LedWiz-aware applications that can't access the Pinscape
        // Pico through either DOF or the Pinscape native interfaces.  An
        // LedWiz emulator on the PC can make the Pico appear as an LedWiz
        // to such older applications, allowing those apps to program
        // feedback effects through the Pinscape output ports.  This sets
        // the LedWiz ID, 1 to 16, for the virtual LedWiz.  An LedWiz unit
        // only has 32 ports, so if the Pico is configured with more than
        // 32 logical outputs, the LedWiz emulator will create multiple
        // virtual LedWiz units, one for each group of 32 Pico ports.
        // The additional units will be numbered sequentially starting
        // with the ID assigned here.
        //
        // Note that the Pico itself doesn't emulate the LedWiz protocol.
        // The emulation has to be done on the host side.  On Windows,
        // this is handled through an open-source replacement for the
        // LEDWIZ.DLL that comes with the genuine LedWiz, available at
        // http://mjrnet.org/pinscape/dll-updates.html#LedWiz.dll.
        // 
        // Set this to 0 to disable emulation for this Pico.
        ledWizUnitNum: 1,
    },
    
    outputs: [
        {
            device: { type: "virtual"},
        },
        {
            device: { type: "virtual"},
        },
        {
            device: { type: "virtual"},
        },
        {
            device: { type: "virtual"},
        },
        {
            device: { type: "virtual"},
        },
        {
            device: { type: "virtual"},
        },
        {
            device: { type: "virtual"},
        },
        {
            device: { type: "gpio", gp: 7, pwm: true },
        },
    ],

    // USB settings, setting the USB device identifiers that Windows
    // uses to identify the device.  The only reason to change these
    // from the defaults is that you have another unrelated device in
    // your system that's using the same numbers.  That should never
    // happen, because the default VID/PID were carefully chosen and
    // registered to avoid conflicts with other devices that follow the
    // USB registration rules.  But some devices don't follow the rules,
    // so conflicts are possible.
    //
    // usb: {
    //   vid: 0xFAFA,
    //   pid: 0xEAEB,
    // },


    // Serial ports.  Pinscape Pico lets you communicate with the device
    // via a terminal window, using either an old-school physical serial
    // port on your PC (the kind with the old 9-pin D-Sub connector), or
    // a virtual COM port via the USB connection.  (The USB virtual COM
    // port amicably shares the USB connection with the other Pinscape
    // devices, like the gamepad and keyboard, so enabling it doesn't
    // take away any other features.)
    //
    // If you set up a COM port connection, you can open a terminal
    // window on the PC to connect to the Pico to view its message log.
    // The log can be really helpful for troubleshooting.  You can also
    // view the log through the Config Tool, but I find it easier to
    // keep a terminal window open in the background so that I can look
    // back over recent messages if anything unexpected happens.  The
    // terminal can also access a primitive command console, which gives
    // you low-level access to some of the firmware's hairier internal
    // details.  The command console is mostly for developers working
    // on the firmware itself, but it might come in handy for regular
    // setup troubleshooting once in a while as well.
    //
    // If you don't already have a terminal program that you prefer,
    // PuTTY is a great choice.  It's free and open-source, and it works
    // with both physical serial ports and USB virtual ports.  Like most
    // open source (present company excepted!), it's not the most
    // user-friendly thing I've seen, but it does a good job once you
    // have it set up.
    //
    // The USB and UART ports each have their pluses and minuses.  The
    // UART port's big drawback is that it requires extra wiring, and
    // ties up two Pico GPIO ports; the USB port piggybacks on the
    // existing USB connection, and doesn't need any GPIOs.  The USB
    // port's big weakness is that Windows closes the connection every
    // time you reboot the Pico, so you have to close and re-open the
    // terminal window every time you update the Pico configuration or
    // reboot it for any other reason.  The UART connection, being a
    // physical serial port, stays active across Pico reboots, so you
    // don't have to keep re-launching the terminal window.
    //
    serialPorts: {

        // UART serial port.  This sets up a physical serial port
        // on a pair of the Pico's GPIO pins.  With an RS232 to
        // 3.3V GPIO adpater, you can connect the Pico GPIO pins
        // to a 9-pin COM port on your PC, if you have one.
        //
        // Note that the Pico only allows UART TX and RX on certain
        // GPIO pins.  You must select pins that allow the chosen
        // function.  The two pins must also be on the SAME UART
        // unit, either UART0 or UART1.
        //
        // UART 0:
        //    TX = GPIO 0, 12, or 16
        //    RX = GPIO 1, 13, or 17
        //
        // UART 1:
        //    TX = GPIO 4 or 8
        //    RX = GPIO 9 or 13
        //
        // The UART serial port uses the following fixed terminal
        // settings: 8 data bits, 1 stop bit, no parity.  You can
        // select the baud rate below.
        //
        // uart: {
        //     tx: 0,              // GPIO pin for UART TX
        //     rx: 1,              // GPIO pin for UART RX
        //     baud: 115200,       // bit rate; default is 115200
        //     logging: true,      // enable logging on this port
        //     console: {
        //        enable: true,    // enable the interactive command line on this port
        //        bufSize: 4096,   // buffer size for console output
        //     },
        // },

        // USB virtual COM port, also known as a CDC port.  If you
        // include this section, the device will set up a virtual
        // serial port across the USB connection that will appear on
        // Windows as a COMx port.  You can connect to this port with
        // any terminal program; set the terminal to 8 data bits, 1
        // stop bit, no parity, 115200 baud.
        //
        // The COMx port number is assigned automatically by Windows
        // on the first connection.  Unfortunately, Windows doesn't
        // let the device choose its own COM port, so we can't assign
        // it here.  You just have to wait and see what Windows gives
        // us after you connect.  Once the connection is set up, you
        // can find the assigned port number on the Config Tool's Device
        // Overview page.
        //
        // Windows has built-in CDC support in Windows 10 and later,
        // but earlier Windows versions require that you install a
        // CDC device driver.  Microsoft doesn't provide an official
        // driver, so you'll have to find one from a third party.  I
        // don't have any particular recommendations about where to
        // find one; try a Web search for something along the lines
        // of "USB CDC for driver Windows 7".
        // 
        usb: {
            logging: true,       // enable logging on this port
            console: {
                enable: true,    // enable the interactive command line on this port
                bufSize: 2048,   // buffer size for console output
            },
        },
    },


    // Logging.  The firmware generates messages flagging errors and
    // reporting various bits of status while it runs.  These can be
    // extremely useful for troubleshooting, because they give you a
    // view of the inner workings of the software that you can't get any
    // other way.
    //
    // You can view the log via one of the serial port options (a
    // physical COM port connection or a USB virtual COM port), by
    // connecting a terminal program
    logging: {

        // Message filter.  This string selects which message types are
        // included in the log.  List all desired types, separated by
        // spaces; for example, "error warning" selects only error and
        // warning messages, disabling all others.  Available types:
        //
        //   debug      - debug messages; code path and internal state information useful when working on the firmware
        //   debugex    - extra debug messages; even more debugging detail, used for messages that tend to be repetitive,
        //                to allow filtering them out while still keeping the less voluminous debug messages
        //   error      - error messages
        //   warning    - warning messages (things that aren't errors but might cause unintended behavior)
        //   info       - general information and status messages
        //   vendor     - informational messages related to the USB vendor interface
        //   xinput     - informational messages related to the XInput (XBox controller emulation) interface
        //   config     - informational messages related to configuration and initialization
        //   tinyusb    - debugging messages from the Tinyusb library; enabled only when the firmware is compiled with
        //                Tinyusb debug messages enabled
        //   
        // "*" (asterisk) selects all message types
        // "~ x y" selects all EXCEPT x and y
        //
        // For a regular deployed system, you probably want the following:
        // errors, warnings, info, config.
        filter: "error warning info config",

        // Internal buffer size.  The device stores messages in an
        // internal buffer, so that it can pass them to attached
        // terminals at a pace that the serial connections can handle.
        // Messages are often generated at a faster rate than they can
        // be sent across the wire, and the Pinscape firmware makes a
        // point of never waiting for sloooow things like that, because
        // its most critical mission is to respond quickly to input
        // events from accelerometers, buttons, and plungers.  If the
        // buffer is too small, some messages might be discarded when a
        // flurry of activity occurs.  So the bigger the better, keeping
        // in mind that the Pico only has about 256K of RAM overall, and
        // lots of other features also want a piece of that.  Something
        // around 8K works pretty well, providing a cushion for the log
        // without crowding out any other features.
        bufSize: 8192,

        // Include timestamps, type codes, and color coding in log
        // messages?  The timestamps and type codes (which announce the
        // classification of each message: error, warning, info, etc)
        // are nice to have but take up room in that limited buffer
        // space we just allocated, so if you want to keep the buffer
        // smaller, you might turn them off.  The color coding also
        // takes up a bit of space, but it's really helpful because it
        // makes the error messages really stand out from the crowd.
        // The color coding uses ANSI escape sequences, which most
        // terminal programs understand, but which will look like
        // gibberish on terminals that DON'T recognize them.  If you
        // have problems with weird sequences like "[0;31m" appearing
        // all over the screen, try turning off the color coding.
        timestamps: true,
        typeCodes: true,
        colors: true,
    },


    // ---------------------------------------------------------------------
    //
    // USB virtual device setup.  Pinscape can emulate several common USB
    // devices that many games can use for input:  keyboard, gamepad, XBox
    // controller.  You can enable these devices in any combination to
    // suit the games you use.
    //


    // HID keyboard interface.  Enabling this allows you to assign
    // button inputs to send keyboard keystrokes to the PC.  This is one
    // of the foundational features of a pinball controller that
    // practically every virtual pin cab should include.  If you're not
    // using this Pinscape unit for button inputs, or if you don't wish
    // to map anything to keyboard input (for example, if you want all
    // buttons to generate gamepad input instead), it's okay to disable
    // this.
    //
    // Note that enabling this won't usually have any obvious visible
    // effect on the Windows side, since Windows does an excellent job
    // of making multiple keyboards all appear to work together as one
    // unified keyboard.  You will see a new keyboard appear in Device
    // Manager, but you probably won't notice any other effects.
    keyboard: {
        enable: true,
    },


    // HID gamepad interface.  Enabling this makes Pinscape emulate a
    // gamepad, so it will show up on Windows under the list of game
    // controllers when you run JOY.CPL.  This is another foundational
    // virtual pin cab feature, because almost all of the pinball
    // simulators accept "analog" control inputs, for plungers and
    // accelerometers, via joystick axis controls.
    //
    // Pinscape Pico actually offers two kinds of gamepad-like device
    // emulations: HID gamepads, and XBox controllers.  The two devices
    // have almost identical capabilities, so most people only need one
    // or the other.  Both are equal in capabilities, but depending on
    // what OTHER software you're running on your system, you might have
    // better COMPATIBILITY results with one or the other.  With the
    // KL25Z Pinscape, some people ran into problems where some
    // commercial game or other that they were running would crash or
    // otherwise complain if a joystick was present.  So if you're
    // running a game like that, you might find that the XBox controller
    // emulation is a better fit for your system.  On the other hand,
    // the gamepad is a lot more universal, so you might have better
    // results with the gamepad.  It all depends on what combination of
    // games you want to play on your system.
    gamepad: {
        enable: true,       // enable the gamepad emulation
        x: "nudge.x",       // connect the accelerometer X axis to the joystick X axis
        y: "nudge.y",       // ditto for the Y axis
        z: "plunger.z",     // connect the plunger position reading to the joystick Z axis

        // rx: "sine(2000)",     // connect a sine wave with a 2-second period on the RX rotational axis
        // ry: "negate(sine(2000))",  // connect a negative sine wave to the RY rotational axis
        // rz: "plunger.speed",  // connect the plunger speed reading to the joystick RZ rotational axis

        // Note that gamepad buttons aren't assigned here.  Instead,
        // they're assigned as OUTPUTS from the 'buttons' section, which
        // sets up your wiring for actual physical buttons coming into
        // the Pico.  For each physical wired button, you can assign
        // what action occurs when you press the button, and one of
        // those actions is to generate a button press on the imaginary
        // gamepad.
    },


    // XBox controller interface.  If enabled, this makes the Pico
    // emulate an XBox controller.  This is almost exactly like a
    // gamepad, but as explained in the gamepad section above, one or
    // the other might work better in your system depending on what game
    // software you're running.  Some games seem to have problems with
    // joysticks being present at all, and other games can't recognize
    // input from XBox controllers.
    //
    // One reason NOT to enable XBox input is that the left joystick and
    // some of the buttons will trigger activity on the Windows desktop
    // if you're running Windows 11.  Microsoft seemed to think it would
    // be cute to use your XBox controller to select programs to run,
    // and they thought it would be SO CUTE that they didn't give you
    // any way to turn it off.  For a virtual pinball controller that
    // maps the perpetually twitching acceleromter input to the joystick
    // axes, it'll look like there's a cat walking around your keyboard
    // randomly popping up the Start menu and launching programs.  So if
    // you're going to map the accelerometer, map it to the RIGHT axis,
    // which the Windows 11 desktop thankfully ignores.
    //
    // Note that it's perfectly okay to enable BOTH the regular gamepad
    // and the XBox gamepad.  Windows will just think you have two
    // gamepads.  (Some games might not like it, though, since a lot of
    // games can only handle one gamepad input at a time.  Even VP has
    // some problems with multiple joysticks.)
    //
    // Each XBox controller gets assigned a Player Number, from 1 to 4,
    // which identifies the player that the physical controller
    // represents when you launch a game that uses XBox controllers for
    // input.  Windows assigns the player number automatically when you
    // plug in a new controller, so there's nothing we can do here to
    // control what that number will be - we just have to accept what
    // Windows assigns us.  You can find out the Player Number that
    // Pinscape was assigned via the Config Tool, in the Device Overview
    // tab.  Note that the "Player Number" is just the nominal ID that
    // Windows displays for the user to see, whereas Windows
    // *internally* uses a "Player Index".  The Player Index is just the
    // Player Number minus one, so that runs from 0 to 3.  If you're
    // writing Windows API code that accesses the XInput system, the
    // Player Index is the number you'll use there to identify a
    // particular controller unit.
    //
    // xInput: {
    //     enable: true,
    //     xRight: "nudge.x",      // connect accelerometer X axis to the XBox right X axis
    //     yRight: "nudge.y",      // connect accelerometer Y to the XBox right Y axis
    // },


    // Open Pinball Device HID.  This is a new alternative to the gamepad
    // interface that sends nudge, plunger, and button press information
    // to the PC via a dedicated, pinball-specific virtual device.  This 
    // only works with compatible simulators, so if you're using pinball
    // games that only accept the traditional joystick input, you can
    // enable BOTH the joystick and pinball device interfaces.  The goal
    // of the Open Pinball Device is to eventually replace the joystick
    // interface in all of the popular pinball simulators, so that you
    // don't have to make Pinscape Pico pretend to be a joystick.  Some
    // non-pinball games can behave erratically if an accelerometer is
    // constantly jiggling a joystick input, so we hope to eventually
    // eliminate these conflicts by making it unnecessary for pinball
    // controllers to impersonate joysticks.
    openPinballDevice: {
        enable: true,
    },

    // -------------------------------------------------------------------
    //
    // Buttons.  This section sets up the mappings between your
    // physical button input ports and the actions that the buttons
    // invoke.
    //
    // The buttons are defined as an array of objects.  Each object
    // in the array defines one button mapping, which consists of a
    // physical input port assignment, and an action to perform when
    // the button attached to that port is pressed.
    //
    // The physical input port is specified by the "source" property.
    // This specifies which GPIO port or peripheral chip port to read
    // for this button's input.
    //
    // The action to perform is specified by the "action" property.
    // This can specify a keyboard key press, a gamepad button press,
    // an IR command to transmit, or a macro (a series of timed actions
    // to perform), among other things.
    //
    // buttons: [
    //     // button #0
    //     {
    //         source: { type: "gpio", gp: 7 },        // button is wired to GPIO port GP7
    //         action: { type: "key", key: "enter" },  // send Enter key to PC when pressed
    //     },
    //
    //     // button #1
    //     {
    //         source: { type: "pca9555", port: "IO0_1" }, // button is wired to a PCA9555 chip
    //         action: { type: "gamepad", button: 1 }, // activate gamepad button 1 when pressed
    //     },
    //
    //     // button #2
    //     {
    //         source: { type: "74hc165", chip: 0, port: "A" }, // 74HC165 shift register chip
    //         action: { type: "xInput", button: "a" }, // activate XBox "A" button when pressed
    //     },
    // ],


    // -------------------------------------------------------------------
    //
    // Output Ports.  This section sets up the "logical output ports",
    // which are the numbered ports that PC software like DOF can use to
    // send commands to your feedback devices.  The main thing that we
    // have to do here is assign the physical output port that each
    // numbered DOF port controls.
    //
    // The outputs are defined as an array of objects.  Each object in
    // the array defines one numbered DOF output port, starting at DOF
    // port #1 for the first array entry.
    //
    // Each output has a "device" property that specifies the physical
    // port location that the DOF port controls, such as a GPIO port
    // number, or a port number on a peripheral chip.
    //
    // outputs: [
    //     // DOF port #1
    //     {
    //         device: { type: "gpio", gp: 7, pwm: true },  // GPIO output on GP7
    //     },
    // 
    //     // DOF port #2
    //     {
    //         device: { type: "pca9685", chip: 0, port: 12 }, // PCA9685 output on first chip, port LED12
    //     },
    // 
    //     // DOF port #3
    //     {
    //         device: { type: "tlc59116", chip: 0, port: 7 }, // TLC59116 output on first chip, port OUT7
    //     },
    // ],


    // -------------------------------------------------------------------
    //
    // Nudge device.  The Pico doesn't have a built-in accelerometer, so
    // you'll need to connect an accelerometer chip to the Pico to enable
    // the nudging function.  The Pinscape Pico firmware currently supports
    // the following devices:
    //
    //  Memsic MC3416
    //  Memsic MXC6655XA
    //
    // There are two steps to configuring the nudge device:
    //
    // - First, set up the "nudge" property with some general options
    //   for how Pinscape reads the accelerometer
    //
    // - Second, set up the hardware definition for the specific sensor
    //   chip you're using
    //
    // We'll start with the general "nudge" settings.
    //
    // The optional auto-centering feature periodically sets the resting
    // point for the accelerometer readings to the average of recent
    // readings after a period of stillness.  This automatically
    // corrects for any slight tilt in the chip's orientation.  If the
    // chip isn't perfectly level, it'll pick up a constant acceleration
    // from the Earth's gravity along the tilted axis.  It's almost
    // impossible to get it perfectly level, so instead, the software
    // determines the constant acceleration coming from the tilt by
    // monitoring the readings over time, and subtracts that out
    // automatically.  You can disable this if you want, but you really
    // shouldn't, since the alternative is that you have to get the
    // physical installation perfectly level, which is just about
    // impossible within the sensitivity of these devices.
    //
    // The "g Range" sets the sensitivity of the accelerometer, in units
    // of the Earth's gravity, or "g".  Most accelerometer chips let you
    // set their range between about 1g to 8g, plus or minus.  When you
    // set the range to 2g, it means that the device will report
    // anything higher than 2g as 2g - readings are clipped at the
    // maximum, in other words.  So why not just set the range as high
    // as it can go?  Because the trade-off is that the wider range
    // comes with lower precision at smaller readings.  If the device is
    // set to 8g range, it won't be able to distinguish small bumps as
    // finely as it can if you set the range to 1g.  For pin cabs, the
    // sweet spot seems to be about a 2g range.  Anything above 2g is
    // such a sharp nudge that it might as well be infinity, so there's
    // no real value in setting the range higher, whereas it's nice to
    // be able to distinguish smaller nudges for more accurate results
    // in the simulation.
    //
    // Finally, you have to tell Pinscape how your chip is oriented in
    // the cabinet.  This is done by mapping each of the physical axes
    // on the device to a "logical" axis in Pinscape, via the logicalX,
    // logicalY, and logicalZ properties.  For each one, you set the
    // name and direction of the chip axis to use: "+X" for the X axis
    // on the chip, "-X" for the reversed X axis on the chip, and so on.
    // The simplest mapping is to set each logical axis to the same chip
    // axis, which requires installing the chip with its physical X axis
    // across the width of the cabinet, its Y axis across the length
    // (front to back) of the cabinet, and its Z axis straight up and
    // down.  The easiest way to figure out the correct mounting is
    // to try it with the default mapping shown below, and then observe
    // the effect to see if you need to rotate the settings.
    //
    // You don't have to set the sensor type anywhere in the "nudge"
    // section.  When you configure the hardware for your chosen chip,
    // Pinscape will recognize it as an accelerometer and will
    // automatically use it for the acceleration inputs.  However, if
    // for some reason you're connecting more than one accelerometer
    // chip to the Pico, you can specify which one to use for nudging
    // via the "source" property - set that to the chip name of the
    // sensor to use (in lower case: "mmc6655xa", "mc3416").
    //
    // nudge: {
    //     source: "mxc6655xa",  // device source (only needed if multiple accelerometers are configured)
    //     x: "+X",              // map the chip's X axis to Pinscape's nudge X axis
    //     y: "+Y",              // map the chip's Y axis to Pinscape's nudge Y axis
    //     z: "+Z",              // map the chip's Z axis to Pinscape's nudge Z axis
    // },

    //
    // Now let's cover the setup for the various accelerometer chips...
    //

    // MXC6655XA I2C accelerometer
    //
    // mxc6655xa: {
    //     i2c: 0,            // I2C bus - 0 for I2C0, 1 for I2C1
    //     interrupt: 18,     // GPIO port connected to interrupt pin; set to -1 if not connected
    //     gRange: 2,         // set the device's dynamic range to +/- 2g
    // },

    // MC3416 I2C accelerometer
    //
    // mc3416: {
    //     i2c: 0,            // I2C bus - 0 for I2C0, 1 for I2C1
    //     addr: 0x4c,        // I2C address: 0x4C or 0x6C, configured via VPP pin on chip
    //     interrupt: 18,     // GPIO port connected to interrupt pin; set to -1 if not connected
    //     gRange: 2,         // dynamic range +/- 2g
    // },

    // LIS3DH I2C accelerometer
    //
    // lis3dh: {
    //     i2c: 0,            // I2C bus - 0 for I2C0, 1 for I2C1
    //     addr: 0x18,        // I2C address: 0x18 if SDO/SA0 is wired to GND, 0x19 if wired to 3.3V
    //     interrupt: 18,     // GPIO port connected to interrupt pin; set to -1 if not connecte
    //     gRange: 2,         // dynamic range +/- 2g
    // },


    // -------------------------------------------------------------------
    //
    // Plungers.  Pinscape Pico has support for all of the plunger
    // sensors that the original KL25Z Pinscape supported:
    //
    //  - Potentiometer, via the Pico's on-board ADC or an external ADC (ADS1115)
    //  - AEDR-8300 optical quadrature sensor
    //  - TSL1410R imaging sensor
    //  - TCD1103 imaging sensor
    //  - VCNL4010 proximity sensor
    //  - VL6180X distance sensor
    //
    // There are two parts to setting up the plunger configuration:
    //
    // - First, set up the "plunger:" property to specify what type of
    //   sensor you're using, and some other option settings
    //
    // - Second, set up a hardware definition for the chosen sensor
    //
    // Let's start with the general "plunger:" settings.
    //
    // plunger: {
    //     source: "pico_adc",   // source sensor type; usually inferred automatically from available sensors
    //     autoZero: true,       // enable auto-zeroing; only applies to quadrature sensors, ignored otherwise
    //     autoZeroTime: 5000,   // time in milliseconds for auto-zeroing; plunger must be stationary this long to auto-zero
    //     powerLaw: 2,          // power-law exponent in brightness-to-distance calculation, only for VCNL4010
    // },
    //
    // The "source" doesn't usually need to be specified, because the
    // firmware will automatically choose from the configured sensor
    // types, based on the hardware settings for the sensors.  In most
    // cases, you'll only have one plunger-capable sensor attached, so
    // there won't be any ambiguity about which one to use.  If for some
    // reason you have multiple plunger-capable sensors configured, you
    // can add "source" to specify which one to use: pico_adc, ads1115,
    // aedr8300, tsl1410r, tsl1412s, tcd1103, vcnl4010, vl6180x.


    //
    // Now let's cover the various plunger sensor hardware options...
    //


    // Pico on-board ADC.  The RP2040 has a built-in ADC, which can
    // be accessed through GPIO 26, 27, and 28.  The Pinscape firmware
    // can use the on-board ADC as the input source for a potentiometer-
    // based plunger.  Note that the Pico ADC is considered somewhat
    // poor, so an outboard ADC like an ADS1115 is preferable for a
    // potentiometer-based plunger, since that setup benefits from
    // high-fidelity ADC readings.
    //
    // pico_adc: {
    //     gpio: 26,
    // }


    // ADS1115 ADC.  This is analog-to-digital converter chip that you
    // can use with a pot plunger sensor.  The ADS1115 is an I2C device,
    // so you also have to configure the I2C bus it's attached to under
    // the separate "i2c0" or "i2c1" property key - see the Hardware
    // section for examples.  This chip also has a "READY" pin that you
    // can optionally connect to a Pico GPIO.  The ADS1115 has four
    // "channels", which correspond to the four analog input pins on the
    // chip.  Only one input channel can be used at a time, because the
    // input pins are all multiplexed into a single converter unit on
    // the chip.  For Pinscape use, you have to designate the single
    // channel you're using.  The channel corresponds to the input
    // pin where the potentiometer is physically wired: channel 0 for
    // AIN0, channel 1 for AIN1, etc.
    //
    // ads1115: {
    //     i2c: 0,              // I2C bus number, 0 for I2C0, 1 for I2C1
    //     addr: 0x48,          // I2C address, set on the chip via pin inputs, 0x48 to 0x4B
    //     ready: 15,           // GPIO connected to the chip's READY pin, or -1 if not connected
    //     channel: 0,          // ADC channel number (0 to 3) on the chip where the pot is connected
    // },


    // VCNL4010 IR proximity sensor.  This is an I2C device, so you also
    // have to configure the I2C bus it's attached to under the separate
    // "i2c0" "i2c1" property key - see the Hardware section for
    // examples.  The chip also has an INTERRUPT pin, which you can
    // optionally connect to its own GPIO.  The only other parameter is
    // the IR emitter current setting, which should usually be turned up
    // to the maximum brightness of 200 mA.
    //
    // vcnl4010: {
    //     i2c: 0,             // I2C bus number, 0 for I2C0, 1 for I2C1
    //     iredCurrent: 200,   // IRED current, in mA, 10 to 200
    //     interrupt: 19,      // GPIO port of chip's INTERRUPT connection; optional, use -1 if not connected
    // },


    // VL6180X IR distance sensor.  This is an I2C device, so you also
    // have to configure the I2C bus it's attached to under the separate
    // "i2c0" "i2c1" property key - see the Hardware section for
    // examples.  This chip also has an INTERRUPT pin, which can
    // optionally connect to its own GPIO port.
    //
    //  vl6180x: {
    //      i2c: 0,            // I2C bus number, 0 for I2C0, 1 for I2C1
    //      interrupt: 19,     // GPIO port of chip's INTERRUPT connection; optional, use -1 if not connected
    //  },


    // AEDR-8300.  This chip connects to two GPIO ports on the Pico.
    // The configuration simply specifies the GPIOs.
    //
    // aedr8300: {
    //     channelA: 20,       // GPIO port of chip's Channel A connection
    //     channelB: 21,       // GPIO port of chip's Channel B connection
    // },


    // TDC1103 linear imaging sensor.  This chip requires four GPIO port
    // connections.  The "OS" connection is an analog signal, so it must
    // be connected to one of the Pico's ADC-capable ports, which are
    // GPIOs 26, 27, and 28.  The data sheet for this chip recommends
    // connecting a logic inverter between the microcontroller and the
    // chip for all of the logic ports (FM, ICG, SH).  If you're
    // following that advice, set invertedLogic to true; but if the
    // GPIOs are connected directly to the logic pins on the chip, set
    // invertedLogic to false.
    //
    // tcd1103: {
    //     fm: 19,                // GPIO port of chip's FM (master clock) connection
    //     icg: 20,               // GPIO port of chip's ICG (integration clear gate) connection
    //     sh: 21,                // GPIO port of chip's SH (shift clock) connection
    //     os: 27,                // GPIO port of chip's OS (analog output) connection - must be GPIO 26, 27, or 28
    //     invertedLogic: true,   // true -> a logic inverter is connected between the Pico and the chip's logic inputs
    // },


    // TSL1410R and TSL1412S linear imaging sensors.  These chips use
    // three GPIO connections to the Pico.  The "SO" pin is an analog
    // signal, so it must be connected to one of the Pico's ADC-capable
    // GPIO pins, GPIO 26, 27, or 28.
    //
    // The two chips are identical other than pixel array size, so they
    // have the same properties in the configuration.  Use the chip
    // property name that matches the type of sensor you're using,
    // either "tsl1410r" or "tsl1412s".  That'll ensure that Pinscape
    // reads the correct number of pixels in each image frame.
    //
    // tsl1410r: {
    //     si: 18,               // GPIO port connected to SI pin on chip
    //     clk: 19,              // GPIO port connected to CLK pin on chip
    //     so: 26,               // GPIO port connected to SO pin on chip; must be GPIO 26, 27, or 28
    // },
    //
    // tsl1412s: {
    //     si: 18,               // GPIO port connected to SI pin on chip
    //     clk: 19,              // GPIO port connected to CLK pin on chip
    //     so: 26,               // GPIO port connected to SO pin on chip; must be GPIO 26, 27, or 28
    // },


    // -------------------------------------------------------------------
    //
    // IR Remote Control setup
    //

    // IR Remote Receiver.  Pinscape Pico can interface with a TSOP384xx
    // infrared sensor/demodulator chip to receive signals from many
    // kinds of remote controls for TVs and other consumer electronics.
    //
    // The TSOP384xx chip only requires a single GPIO port connection
    // to the Pico, which connects to the OUT pin on the chip.  The
    // other pins on the chip are just power and ground inputs.
    //
    // irRx: {
    //     gpio: 21,      // GPIO port for TSOP384xx OUT pin
    // },


    // IR Remote Transmitter.  Pinscape Pico can generate IR remote
    // control signals that are compatible with many types of TVs and
    // other consumer electronics.  To send these signals, the Pico must
    // be equipped with an IR emitter, which is simply an LED that emits
    // light in the infrared part of the spectrum.  It's also necessary
    // to use a simple high-current driver circuit to drive the LED
    // (which can be as simple as an NPN transistor driver), since you
    // need to run most IR LEDs at rather high current (500 to 1000 mA)
    // in order to achieve sufficient brightness to reach across a room
    // and turn on a TV.
    //
    // An IR LED only needs a single GPIO port connection on the Pico,
    // to turn the LED on and off.
    //
    // irTx: {
    //     gpio: 22,      // GPIO port for IR LED output
    // },


    // -------------------------------------------------------------------
    //
    // TV ON.  Pinscape Pico can send "ON" commands to your TV(s) when
    // the overall system power comes on (after a programmable delay),
    // for seamless startup even with TVs that just go into standby mode
    // when power is restored.  The Pinscape Build Guide has a more
    // detailed explanation of how to set this up.  This requires a
    // special power-sensing circuit that the Pico uses to distinguish
    // Pico resets and USB connection resets from actual system power
    // event.
    // 
    // tvon: {
    //     // Power detect circuit - this is required for the feature
    //     // to operate.  See the Pinscape Build Guide section for a
    //     // circuit plan:
    //     //
    //     // http://mjrnet.org/pinscape/BuildGuideV2/BuildGuide.php?sid=tvon
    //     // 
    //     powerDetect: {
    //         sense: 20,
    //         set: 21,
    //     },
    //
    //     // Delay time after system-wide power-on is detected, in
    //     // milliseconds.  The TV ON system waits this long before
    //     // pulsing the relay and/or sending the IR commands.
    //     delay: 7000,
    //     
    //     // IR commands to send.  This is a sequence of command
    //     // strings, using the Pinscape universal remote control
    //     // coding format, to send after a power-on event.  You
    //     // should set these to the commands necessary to power up
    //     // your TV(s).
    //     //
    //     // The best way to figure out the code strings for your
    //     // particular TVs is to fire up the Config Tool, go to the
    //     // TV ON & IR screen, and press the remote buttons whose
    //     // codes you want to capture.  The IR screen shows commands
    //     // received on the IR sensor as they come in, using the
    //     // identical string format required here, so you can just
    //     // copy and paste codes from the IR window into this list.
    //     //
    //     // IR: [
    //     //     "03.02.7F3A21D0",   // turn on the first TV
    //     //     "07.00.6321",       // turn on the second TV
    //     // ],
    //
    //     // Relay port.  You can hard-wire your TV's ON button to
    //     // a relay, and use one of the output ports to control the
    //     // relay.  If you do this, you have to tell the TV ON system
    //     // which port is wired to the relay, which you do here.
    //     // Set 'port' to the logical output port number from the
    //     // 'outputs:' array where the relay is attached.
    //     // 
    //     // relay: {
    //     //     port: 1,         // use the first logical output port
    //     //     pulseTime: 100,  // length of relay ON pulse, in milliseconds
    //     // },
    // },


    // ---------------------------------------------------------------------
    //
    // RGB Status LED.  If desired, you can connect an RGB LED to the
    // Pico, via three GPIO ports (one per color channel), to display
    // the Pinscape software's current status.  If you're using an
    // Expansion Board system with the Pico, it might come with an LED
    // wired up for this purpose.
    //
    // The RGB LED is a supplement to the Pico's built-in LED, which
    // Pinscape uses to display a simple "heartbeat" to show that the
    // software is still running (if the Pico's LED is flashing, the
    // software is running).  The on-board LED is mere monochrome, so it
    // can't convey very much information, which is why we bother making
    // this provision for a separate full-color LED.
    //
    // rgbStatusLight: {
    //     red: 13,      // GPIO port of RED color channel connection
    //     green: 14,    // GPIO port of GREEN color channel connection
    //     blue: 15,     // GPIO port of BLUE color channel connection
    //     
    //     // Polarity:  "high" -> active high -> LED ON when GPIO is at 3.3V;
    //     // "low" -> active low -> LED ON when GPIO is at GND.  Most RGB
    //     // LEDs use the "common anode" configuration, where the positive
    //     // terminal is shared among all three channels, and each channel's
    //     // negative terminal is tied to a separate GPIO, which makes them
    //     // active low for the GPIO control.  The Pinscape Pico reference
    //     // expansion board likewise uses active low.
    //     active: "low",
    // },


    // -------------------------------------------------------------------
    //
    // Hardware setup.  Pinscape Pico has support for numerous external
    // peripheral chips, including accelerometers, plunger position
    // sensors, GPIO expanders, shift registers, and PWM controllers.
    // Pinscape lets you attach each chip in numerous different ways,
    // too, in order to accommodate many different combinations of
    // chips.  That flexibility does come with a small cost, though,
    // which is that you have to tell Pinscape how you're wiring things,
    // because Pinscape doesn't have any hard-coded assumptions about
    // the wiring setup.
    //


    // I2C buses.  Many of the chips that Pinscape Pico can interface
    // with use the I2C bus protocol, which is a scheme that allows you
    // to connect several chips to the Pico while using only two GPIO
    // ports on the Pico.  All of the chips on a bus connect to the SAME
    // TWO GPIO PORTS, which is what makes it a "bus" - a common wire
    // connection shared by multiple devices.
    //
    // The Pico itself has support for TWO I2C buses, each on its own
    // pair of GPIO pins.  If you use both buses, you'll have to
    // dedicate four GPIO pins to the task.  If you put everything on
    // one bus, you save GPIO ports.  The reason you might want to
    // splurge on the extra ports is that cramming all of the chips onto
    // one bus might slow things down if any of the chips has to
    // transmit a high volume of data to or from the Pico, or has to
    // transmit data very frequently.  The main places where this might
    // matter in a pinball controller are the button inputs, which you
    // want to be very low latency, and the accelerometer, which
    // generates frequent data samples.  I'd recommend placing the
    // accelerometer on one I2C bus, and any button-input chips (such as
    // GPIO extenders) on the other.
    //
    // We have to configured the two buses separately, via the i2c0 and
    // i2c1 properties.
    //
    // Nearly all of the Pico ports can be used as I2C pins, but with
    // the restriction that any given pin is limited to a particular I2C
    // unit and a particular role (SDA or SCL):
    //
    // I2C0
    //   SDA must be one of GPIO 0, 4, 8, 12, 16, or 20
    //   SCL must be one of GPIO 1, 5, 9, 13, 17, or 21
    //
    // I2C1
    //   SDA must be one of GPIO 2, 6, 10, 14, 18, or 26
    //   SCL must be one of GPIO 3, 7, 11, 15, 19, or 27
    //
    // i2c0: {
    //     sda: 0,           // GPIO port of I2C0 SDA (serial data) connection
    //     scl: 1,           // GPIO port of I2C0 SCL (serial clock) connection
    //     speed: 400000,    // bus speed, bits per second
    // },
    //
    // i2c1: {
    //     sda: 18,
    //     scl: 19,
    //     speed: 100000,
    // },


    // PCA9555 GPIO extender.  This chip can be used to add simple
    // digital IN and OUT ports to the Pico, which is especially useful
    // to add more button inputs.  Each PCA9555 comes with 16 ports that
    // can be programmed as inputs or outputs, so each chip can add 16
    // button inputs.  The PCA9555 is an I2C chip, so it only takes up
    // two Pico GPIO pins, and what's more, you can attach up to 8
    // PCA9555 chips to the same I2C bus - so you can turn just two Pico
    // GPIO ports into as many as 128 button inputs.
    //
    // To configure a PCA9555, you have to configure the I2C bus first,
    // using the i2c0 or i2c1 property outlined above.  Then you just
    // set which bus to use, and the I2C address that you've selected
    // for the chip.  The I2C address of a given chip is determined by
    // connecting some of the pins on the chip to GND or VCC.  This lets
    // you make up a pattern of 3 bits of the address (which is where
    // the "up to 8 chips on a bus" limit comes from: you can make 8
    // different addresses with 3 bits).
    //
    // The PCA9555 has an INTERRUPT output pin that can alert the Pico
    // when it has new data to send, such as when you press a button
    // connected to a PCA9555 input.  Pinscape is happy with or without
    // the INTERRUPT connection.  If you do wire it, it takes up an
    // additional GPIO port, with the bonus that multiple PCA9555 chips
    // can all have their INTERRUPT lines connected together to a single
    // GPIO port.  (They can also use separate ports.)  If you DON'T
    // wire the interrupt line, Pinscape will poll the chip at regular
    // intervals to ask it for new data.  If you DO wire the interrupt,
    // Pinscape can skip all of that extra polling, which might speed
    // things up slightly for OTHER chips sharing the same bus.  It also
    // might slightly reduce the latency by letting Pinscape know
    // exactly when it needs to read new data, rather than waiting for
    // the next polling interval to roll around.
    //
    // Since we can connect many of these chips to the system, we have
    // to use an array, to define an entry for each individual chip.
    //
    // pca9555: [
    //     // first chip
    //     {
    //         i2c: 0,         // which Pico I2C bus it's connected to, 0 for I2C0, 1 for I2C1
    //         addr: 0x20,     // the chip's address set by its pin inputs, always 0x20 to 0x27
    //         interrupt: 3,   // GPIO port where the chip's INTERRUPT pin is connected, or -1 if not connected
    //     },
    //
    //     // second chip
    //     {
    //         i2c: 0,
    //         addr: 0x21,
    //         interrupt: 3,
    //     },
    // ],


    // 74HC165 Input Shift Register chip.  This is a classic shift
    // register input chip, with 8 input ports that the Pico can read
    // via three GPIO ports.  What's more, the chip can be
    // daisy-chained, with any number of these chips connected together
    // in a series, with the whole chain only using the same three GPIO
    // ports on the Pico.  So you can connect dozens or even hundreds of
    // buttons to the Pico through just three GPIOs.
    //
    // The loadPolarity option is there to support some NON-74HC165
    // chips that are ALMOST identical to 74HC165 except for inverted
    // logic on their Shift/Load pins.  Set this to true if using one of
    // the 74H165-like chips that has positive logic on that pin.  For
    // actual 74HC165 chips, this is always set to false.
    //
    // Note that quotes are required around the "74hc165"
    // property name because of the initial digit in the name.
    //
    // "74hc165": {
    //     nChips: 2,       // the numer of chips chained together in the daisy chain
    //     shld: 6,         // GPIO port number connected to 74HC165 SH/LD (shift/load) pin
    //     clk: 7,          // GPIO port number connected to 74HC165 CLK (serial clock) pin
    //     ser: 8,          // GPIO port number connected to 74HC165 SER (serial data) pin
    //     loadPolarity: false,   // SH/LD logical level; always false for 74HC165
    // },


    // TLC59116 PWM controller.  This is an I2C-connected chip that can
    // drive up to 16 LEDs with PWM, with 8-bit resolution (256
    // brightness steps).  This is an I2C chip, so it only takes up two
    // GPIO pins on the Pico.  And up to 14 of the chips can be
    // connected to the same bus, since you can set the I2C address of
    // each chip to one of 14 values, by wiring certain of the pins on
    // the chip to either GND or VCC.
    //
    // Pinscape lets you use these chips for DOF output ports.  The
    // chip's ports can directly drive small LEDs, but you can also
    // connect them to transistor drivers to switch higher power devices
    // like motors and solenoids.
    //
    // The TLC59116 has a RESET pin that must be connected to a Pico
    // GPIO.  If you have multiple TLC59116 chips in the system, they
    // can all share a single GPIO, simply by connecting all of their
    // RESET lines together.  The RESET signal ensures glitch-free
    // startup, by ensuring that all ports are turned off until the
    // system is initialized.
    //
    // Since we can have several of these chips connected, we have to
    // use an array to define it - one chip per array element
    //
    // tlc59116: [
    //     // first chip
    //     {
    //         i2c: 0,       // I2C bus the chip is connected to, 0 for I2C0, 1 for I2C1
    //         addr: 0x61,   // I2C bus address, 0x60 to 0x6F, excluding 0x68 and 0x6B, set via pin inputs on the chip
    //         reset: 4,     // RESET signal GPIO number
    //     },
    //
    //     // second chip
    //     {
    //         i2c: 0,
    //         addr: 0x62,
    //         reset: 4,
    //     },
    // ],


    // PCA9685 PWM controller.  This is an I2C PWM controller chip that
    // can drive 16 LEDs with 12-bit PWM resolution (4096 brightness
    // levels).  It has a configurable I2C address that allows up to
    // 62 (!!!) of the chips to be connected to a single bus.
    //
    // This chip has a very similar setup to the TLC59116.  The one
    // extra feature is that its output ports can be configured with two
    // different "drive" modes.  Totem-pole drive means that the chip
    // drives its output ports to VCC when on, GND when off, which
    // allows it to directly drive small LEDs.  Open Drain drive means
    // that the chip connects its output to GND when on, and leaves it
    // in high-impedance state (essentially unconnected) when off.  The
    // choice is a matter of the physical wiring you're using, so the
    // software lets you specify which one to use.
    //
    // pca9685: [
    //     // first chip
    //     {
    //         i2c: 0,        // I2C bus number
    //         addr: 0x40,    // I2C address, 0x40 to 0x7F
    //         oe: 8,         // GPIO port connected to chip's OE (Output Enable) pin
    //         drive: "od",   // Output port drive type: "totem" (totem-pole) or "od" (open-drain)
    //     },
    //
    //     // second chip
    //     {
    //         i2c: 0,
    //         addr: 0x41,
    //         oe: 8,
    //         drive: "od",
    //     },
    // ],


    // TLC5940 PWM controller chip.  This is yet another PWM controller
    // chip, with 16 output ports and 12-bit (4096-step) resolution.
    // This chip connects to the Pico through five GPIO ports, so it's a
    // bit of a port hog compared to the I2C chips.  But you can connect
    // any number of these chips together in a daisy chain, so you still
    // only need five GPIO ports for two, five, or ten of the chips.
    //
    // These were the chips used in the original KL25Z Pinscape
    // Expansion Boards.  TI stopped making the through-hole DIP verison
    // of the chip many years ago, but they still make a couple of SMD
    // versions of the chip, so it's still a very useful chip.  One
    // reason to consider this chip is that it doesn't tie up any I2C
    // bus resources.  The Pico can drive it with practically no CPU
    // effort and without taking away I2C bus bandwidth from any of your
    // I2C chips.  It's worth considering if you're designing your own
    // expansion boards.
    //
    // Note that there are some constraintson the pins you can assign
    // to this chip:
    //
    // - SCLK and GSCLK must be consecutive GPIO ports (e.g., GP7 and GP8)
    // - BLANK and XLAT must be consecutive GPIO ports (e.g., GP9 and GP10)
    //
    // The PWM rate is limited to 7324 Hz by the physical hardware design
    // of the chip.  You can choose any rate up to that limit.  Lower
    // rates are more forgiving of electrical noise in the wiring, so if
    // you have long trace lengths on your boards, or cables between
    // boards, you might have to lower the rate to get a stable signal.
    // Higher rates reduce flicker when LEDs are attached, but you really
    // only have to get the rate above about 200 Hz to eliminate flicker.
    // The case where higher frequencies are useful is when you're driving
    // mechanical devices like motors and solenoids.  PWM drive will often
    // make mechanical devices vibrate at the PWM frequency, which can
    // manifest as acoustic buzzing or whining.  When that produces enough
    // noise to be annoying, you can sometimes cure it, or at least
    // mitigate it, by increasing the PWM frequency.  The ideal is to
    // increase the frequency to something above 20 kHz, above the human
    // hearing range, but unfortunately these chips can't go that fast.
    // Even so, adjusting the frequency within the chip's limits might
    // still help, since the problem is sometimes worse at certain
    // frequencies due to accidental resonances with the device's
    // mechanical features.
    //
    // tlc5940: {
    //     nChips: 2,     // number of chips on the daisy chain
    //     sclk: 5,       // GPIO port connected to SCLK pin on TLC9540
    //     gsclk: 6,      // GPIO port connected to GSCLK pin; MUST BE sclk+1
    //     sin: 7,        // GPIO port conected to SIN
    //     blank: 8,      // GPIO port connected to BLANK
    //     xlat: 9,       // GPIO port connected to XLAT; MUST BE blank+1
    //     pwmFreq: 7000, // PWM frequency in Hz, up to 7324
    // },


    // 74HC595 Output Shift Register chip.  This is a classic shift
    // register output chip, which provides 8 digital output ports that
    // can be controlled with as few as three GPIO ports on the Pico
    // (although a full implementation requires five GPIOs).  These
    // chips can be chained together in a daisy chain of arbitrary
    // length, so you can add dozens or even hundreds of output ports
    // while still only using the same 3-5 GPIO ports required for a
    // single chip.
    //
    // Pinscape can use this chip to implement DOF output ports.  This
    // chip can only handle digital ON/OFF output, not PWM, so it's not
    // suitable for driving LEDs that you want to modulate in
    // brightness, motors that you want to modulate in speed, etc.  It's
    // fine for driving simple on/off devices like solenoids, though.
    //
    // This chip has a constraints on its GPIO connections: the LATCH
    // pin must always be the next GPIO conseuctively from SHIFT.  So
    // if SHIFT is GPIO 10, LATCH must be GPIO 11.
    //
    // The RESET and ENABLE pin connections are optional.  I recommend
    // connecting them, because it allows Pinscape to ensure the ports
    // are turned off during the power-up process, for glitch-free
    // startup.  If these pins aren't connected, the outputs might flash
    // on momentarily during power-up, which can be alarming if noisy
    // devices like solenoids are attached.
    //
    // Note that quotes are required around the property name because
    // of the digit at the start of the name.
    //
    // "74h595": {
    //     nChips: 2,     // number of chips on daisy chain
    //     shift: 10,     // GPIO pin connected to shift clock pin (SHCP)
    //     latch: 11,     // GPIO pin connected to latch (STCP); MUST BE shift+1
    //     data: 12,      // GPIO pin of serial data pin (DS)
    //     reset: 13,     // GPIO of master reset pin (/MR); optional, set to -1 if not connected
    //     enable: 14,    // GPIO of enable pin (/OE); optional, set to -1 if not connected
    // },
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment