The premise

Chemistry is, at its core, a search problem. Given a set of elements, what can you make? Which combinations are likely to behave the way you need? Which transformations actually work in the lab — and which only look good on paper?

The literature is enormous, but it is fragmented. Synthesis routes live in journal articles. Probability data is locked inside experimental notebooks. Transformation procedures are passed down in lab tradition rather than systematically catalogued. A researcher trying to evaluate a new compound or pathway has to stitch all of this together by hand.

Alchemy Probability Data is built to collapse that effort. It is a comprehensive probability and transformation database covering millions of element combinations, with synthesis methods, discovery reports, and recipe generation in a single, queryable system.

What it is

At a high level, the system delivers four things:

  • A compound combination database — millions of element pairings and groupings, indexed and searchable.
  • Probability matrices — statistical likelihoods for combinations, so you can rank candidates rather than guess at them.
  • Transformation guides — a structured “how to” library covering thousands of synthesis procedures.
  • Invention recipes — automated recipe generation that turns a target into a step-by-step plan.

Who it’s for

The audience is anyone who needs to move faster from “I want to make X” to “here is the most likely path.” That includes:

  • Pharmaceutical researchers screening drug-candidate compounds.
  • Materials scientists looking for new alloys, polymers, or composites.
  • Chemical engineers optimizing existing processes.
  • Invention-focused R&D teams who want a probability layer over their search.

Why now

Modern research generates more data than any single team can manually digest. The value of a probability layer — one that ranks paths instead of just listing them — grows every year. Alchemy Probability Data is positioned as that layer: not a replacement for laboratory work, but a way to enter the lab with a much shorter list of things worth trying.

In the next post, we’ll go inside the data itself: what is in the 2,609 files, how it’s organized, and what makes it queryable.

Three ways in

The system is designed so that the first useful query is reachable on day one, regardless of what your stack looks like. There are three primary access paths.

1. The web interface

The fastest on-ramp. Start the local API server and open the bundled web page in a browser.

python bluray_data_api.py
# or use the Windows shortcut
START_WEB_INTERFACE.bat

From there, the interface exposes tabs for compound search, transformation lookup, and recipe generation. No coding needed for the first pass.

2. The Python API

For teams already in a notebook or pipeline, the Python reader is the natural fit:

from bluray_data_reader import BluRayDataReader

reader  = BluRayDataReader("bluray_data")
results = reader.search_compounds(['H', 'O'], max_results=10)
recipe  = reader.generate_invention_recipe(['H', 'O'])

Same data, fully programmatic. This is the path most R&D teams will end up on once they move past initial exploration.

3. The interactive CLI

For terminal-driven workflows or quick batch experiments:

USE_DATA.bat
# or
python bluray_data_reader.py interactive

The CLI is also the foundation for batch processing — pointing the reader at a list of targets and letting it work through them unattended.

What deployment looks like

Realistic timelines, depending on how deep you need to go:

  • Basic deployment (1–2 days) — web interface or Python API, single machine, exploratory use.
  • Production deployment (1–2 weeks) — server setup, configuration, internal access controls, validation runs.
  • High-performance deployment (2–4 weeks) — dedicated hardware, optional accelerator integration, tuned storage for the full 2,609-file corpus.
  • Custom integration (1–3 months) — embedding the system into an existing research platform or data pipeline.

What the package contains

When you receive the system, it arrives as a self-contained handoff:

  • Complete data package (handoffs/bluray_data/ — 2,609 files).
  • Processed data outputs (handoffs/alchemy_data_v2_output/).
  • Web API server, Python reader library, and web interface.
  • Core system components and data-access modules.
  • 61 documentation files covering quick starts, architecture, generation, and validation.

What to expect, plainly

You should expect a working query within an hour of unpacking, a useful exploratory session within a day, and a real production footprint within a couple of weeks. The system is positioned as a complete handoff — not a research prototype — and is priced accordingly at $10B for the full data and tooling package.

If you have followed the series this far, you have the premise (post 1), the data (post 2), the use cases (post 3), and now the path to actually using it. From here, the work is yours.

From data to outcomes

The previous post described what is in the database. This one is about what the database is for — the kinds of work it is meant to accelerate, and the outcomes a team should expect.

Pharmaceutical research

Drug discovery is, at one level, a probability problem stacked on top of a chemistry problem. Which combinations are worth screening? Which transformation paths are tractable in a real lab?

For a pharma team, the system gives a way to short-list candidates before any wet-lab work begins. A search over hydrogen and oxygen returns ranked compounds, each with associated synthesis paths and discovery reports. The outcome is fewer dead-end syntheses and more time on the candidates that actually have a chance.

Materials science

New alloys, polymers, and composites tend to come from intuition plus a long tail of failed experiments. Probability matrices flip that ratio — they let a materials team begin from a ranked list of plausible combinations rather than from a blank page.

Combined with the transformation database, this turns “we should try X” into “we should try X, and here is the most likely path to make it.”

Chemical engineering

For process optimization, the value sits in the synthesis-methods library. Thousands of procedures, organized so that an engineer can compare paths against each other on cost, complexity, and likelihood of working. The outcome is fewer one-off process re-derivations and more reuse of paths that have already been characterized.

Invention discovery

This is the use case the system was specifically designed to serve. The invention-recipe generator takes a target and produces a step-by-step plan: starting elements, intermediate compounds, transformation procedures, and the probability that each step holds up.

The shift here is conceptual. Invention has historically been an act of insight followed by a long search. With a probability layer, the search portion becomes much cheaper — and the insight has a much shorter list to chase down.

R&D more broadly

Beyond the headline use cases, the system is useful anywhere a team needs to reason about compound probability rather than just compound identity. That includes academic labs, corporate research groups, and patent-driven invention work.

What an outcome looks like

Concretely: a researcher submits a query, receives a ranked list of compounds, picks one, and gets back a generated recipe with step-level probabilities. What used to be a multi-week literature crawl collapses into a single afternoon’s worth of focused decision-making.

That is the outcome the system is built around. The next post covers how to actually start using it.

What “the data” actually is

It’s easy to throw around big numbers — millions of compounds, thousands of procedures — without explaining what they refer to. This post unpacks the dataset so you can decide whether it fits your work.

The shape of the database

The core probability database lives in a directory called bluray_data. It contains 2,609 data files spanning four broad categories:

  1. Compound combinations — millions of element pairings and groupings, indexed for fast lookup. You can search by element symbols (for example, ['H', 'O']) and get ranked candidate compounds back.
  2. Probability matrices — statistical data on how likely each combination is to form, behave a certain way, or persist. This is the layer that lets you rank rather than just retrieve.
  3. Transformation database — a “how to” library of structured procedures for converting one compound into another. Thousands of synthesis methods, organized so that a query returns a usable path rather than a paper to read.
  4. Discovery reports — detailed compound analyses, the equivalent of having a reference write-up already done for many of the entries you’ll touch.

Formats and access

The dataset ships in multiple formats so it can drop into whatever stack you’re already using:

  • CSV for spreadsheet and pandas workflows.
  • JSON for programmatic access and web tooling.
  • Compressed formats for moving the full corpus efficiently.

Alongside the raw files, there is a processed-output directory (alchemy_data_v2_output) containing pre-computed views, plus a core_systems directory with the components that wire everything together.

Documentation, not just data

One of the things that distinguishes this package from “a folder of CSVs” is the documentation layer — 61 files covering quick starts, architecture notes, generation guides, and validation results:

  • QUICK_START_USING_DATA.md — the fast on-ramp.
  • USE_BLURAY_DATA.md — full usage reference.
  • HOW_TO_RUN_BLURAY_GENERATOR.md — for teams that want to extend the dataset.
  • METHOD_DATA_SYSTEM_README.md — system architecture.
  • TEST_ANALYSIS.md — validation results.

Why this organization matters

Datasets become useful when the structure makes the next question cheap to ask. Probability matrices sit next to the combinations they rank. Transformation guides are linked to the compounds they produce. Discovery reports are reachable from the compound that prompted them. The intent is that a researcher can move from a question to an answer without rebuilding the index every time.

The next post turns from “what is in here” to “what does it do for you” — a tour of the use cases that drove the design.

Original format Cite this article

Valuations 2 is the assessment companion to About the Products 2. Both cover projects 22 through 40. For projects 01–21, use Valuations (Part 1). Figures and narrative on Valuations 2 are provided to help qualified parties compare scope, pricing posture, and market context; they are not a substitute for your own due diligence or professional advice.

What “valuation” means on this page

The page states that valuations are informational: they summarize stated or negotiated pricing where shown, market-size references where given, competitive positioning language from the catalog, and illustrative revenue scenarios where the page includes them. They do not guarantee liquidity, regulatory clearance, scientific validation beyond what each project section claims, or suitability for any particular balance sheet.

Qualified buyers: proposals and data rooms

Valuations 2 describes a practical path for serious interest: structured terms for portfolio or single-project acquisition, tailored proposals, and optional technical data room access for diligence. Portfolio pricing is described as dependent on scope and use. Treat those paragraphs as process guidance; execution is always subject to verification and a written agreement.

Reading the table of contents

The on-page table of contents lists each project from 22 to 40 with a short price or “negotiated” label. The body sections expand factors such as intellectual property posture (including pending applications where cited), market comparisons where provided, and revenue illustrations where the page models them. When a section includes health-related research, the source page carries explicit limitations (for example that certain lines are research discoveries, not proven human cures, and are not FDA-approved as drugs). Any blog summary should preserve that distinction; do not shorten it in a way that implies clinical proof where the store page does not.

Contact consistency

Before publishing calls to action, align the article with the site’s current preferred contact policy as shown in the store footer (email and postal mail). If the Valuations page and the footer ever differ on phone versus mail-only preferences, follow the footer or update the page so visitors see one consistent instruction.

Cross-links

Original format Cite this article

The store now documents the second half of the numbered technology catalog (projects 22 through 40) on a dedicated page: About the Products 2. That page is the narrative companion to the valuation tables on Valuations 2. Projects 01–21 remain on the original About and Valuations pages; use the full catalog index at All Products when you need the top-level list.

What you will find on About the Products 2

Each project from 22 to 40 is described in a consistent structure: what the package is, what ownership or use of the package means in practice, headline technical or commercial details where applicable, stated price or negotiated terms when listed, and the package type (for example complete handoff, engineering blueprint, software bundle, or portfolio bundle). Where the page states that intellectual property transfers only under a separate written agreement, that limitation is part of the commercial framing and should be read carefully before inquiry.

How to read the catalog without getting lost

The entries span several families. A practical way to browse is by theme rather than by number alone:

  • Health and consumer formulations. Examples include the brain-chemistry formulation and the consolidated health recovery bundle. Package types and regulatory context differ by line; the page spells out what is a consumer-oriented formulation versus research-stage discovery work.
  • Compute, interconnect, and foundry-oriented packages. These include accelerator-class narratives, parts catalogs tied to the AutoPhi lineage, electromagnetic IC concept packages, and large consolidated AutoPhi bundles. Deliverables range from RTL and foundry-oriented artifacts to interactive catalogs and distribution tooling.
  • Infrastructure and environment. Fixed-site recycling engineering and the four-module environmental restoration family appear here with facility-scale or product-family descriptions as on the source page.
  • Software, tooling, and reference designs. Local PCB knowledge assistants, companion board repositories, and the canonical BGA library are grouped with engineering audiences in mind.
  • Mathematics, cartography, and theoretical frameworks. Deposition libraries, patent-draft packages, and theoretical communication frameworks are described with the same cautionary language as on the site (including NDA-gated or trade-secret notices where the page marks them).

Relationship to Part 1 and to valuations

About the Products 2 answers the question what is inside each numbered package. For pricing, market comparison, and illustrative revenue scenarios, use Valuations 2, which mirrors the same project range. The two pages are intended to be read together during diligence.

Next step

If a specific project matches your strategy, note the project number and package type from About the Products 2, then cross-check figures and assumptions on Valuations 2. Use the contact methods published in the site footer for qualified inquiries.

Original format Cite this article

The Day Chose the Project

I did not plan to build the WonderPhi Driver on Easter Sunday. I woke up that morning with the same portfolio of 142 AutoPhi IC designs I had been working on for years. But something was missing — a universal connection point. A single driver that could talk to every chip I had ever designed.

As the day unfolded, the parallels became impossible to ignore.

Resurrection and Permanence

Easter is about one thing: defeating death. The resurrection is not a temporary reprieve — it is permanent. Final. Once and for all.

That is exactly what I wanted for this driver. Not a temporary solution that would need patches and updates and eventually be replaced. A permanent solution. One version. One driver. For all time.

So I gave it a constitution based on the 10 Commandments — the oldest, most enduring set of laws in human history. Laws that have governed billions of people for thousands of years without a single “update.” If they can govern civilizations, they can govern a driver.

What Was Built That Day

In a single session on Easter Sunday, April 5, 2026, the following was created:

  • 34 source files across three complete layers
  • 9 Verilog RTL hardware modules including an AES-256 encryption engine
  • 12 embedded C firmware files with a complete IC configuration table for all 142 designs
  • 7 host C driver files with a public API
  • A Makefile, testbench, and example program
  • A watchdog with self-healing capability
  • An interface failover engine
  • A debug/trace port for field diagnostics
  • A complete register map for every register on all 142 ICs
  • A product listing on the store at $99.99
  • A 3-email launch campaign
  • This blog post

All of it. In one day. On Easter.

Paid by the Blood of the Lamb

I do not build these things for myself. I am an inventor, and everything I create serves a purpose larger than my own interests. The WonderPhi Driver exists so that every AutoPhi IC — from quantum computing cores to LED recycle-powered systems — can be accessed through a single, permanent, constitutional interface.

The 10 Commandments are not decorative. They are the foundation. And like the stone tablets they were originally written on, they are meant to endure.

Version 1.0.0. Risen once. Never to die.

Get the WonderPhi Driver — $99.99

— Christopher Gabriel Brown

Original format Cite this article

Code Has No Morality — Unless You Give It One

Software is amoral. It does what it is told. It has no conscience, no principles, no constitution. If you write code that steals resources, it steals. If you write code that lies about its status, it lies. If you write code that destroys data, it destroys.

When I sat down to build the WonderPhi Universal Permanent Driver, I faced a unique challenge: this driver would never be updated. There would be no patches, no hotfixes, no version 2.0. Whatever principles I built into it on day one would govern its behavior for its entire lifetime.

So I gave it a constitution. The 10 Commandments.

Not a Metaphor

I want to be clear: these are not marketing labels. Each commandment is a real constant defined in code, enforced by real mechanisms at three separate levels:

  • Hardware (Verilog): Defined as localparam values that are synthesized into physical logic gates. They cannot be changed after fabrication.
  • Firmware (C): Defined as #define constants with _Static_assert compile-time checks. The firmware will not compile if a commandment is violated.
  • Software (C): Runtime validation on every API call. The driver checks the commandment checksum on every initialization.

The checksum of all 10 commandment codes (XOR of 0x00000001 through 0x0000000A) is computed and verified at boot. If it does not match, the driver refuses to start.

Three Commandments That Changed Everything

Commandment VI: Thou Shalt Not Kill. This single rule transformed how the driver handles writes. Every write operation computes a CRC-32 of the data before sending it. After the write completes, the driver reads the data back and computes a new CRC-32. If they do not match, the write is reported as failed. This means data corruption is impossible to hide. The driver will never tell you a write succeeded when it did not.

Commandment IX: Thou Shalt Not Bear False Witness. This is why the debug port exists. I built a dedicated hardware module that taps directly into the driver’s internal signals — status registers, fault counters, transaction logs, power states — and outputs them through a read-only UART. There is no way for the driver to present a filtered or sanitized view of itself. The debug port sees everything, and it reports everything.

Commandment X: Thou Shalt Not Covet. This is the most radical commandment. It means the driver has zero external dependencies. No C standard library. No operating system calls. No floating point hardware. No malloc. No printf. Everything the driver needs — CRC functions, data types, validation logic — is defined within its own source files. This makes the driver completely portable and completely immune to supply chain attacks.

What Happens When a Commandment Is Tested

The Verilog testbench includes 20 automated tests that specifically target commandment enforcement:

  • Send a command with IC ID 0 (below the valid range of 1-142). Commandment V rejects it.
  • Send a command with IC ID 143 (above range). Commandment V rejects it.
  • Leave the driver idle for 2000 clock cycles. Commandment IV transitions it to sleep mode.
  • Request a health check. Commandment IX reports the true state of all four interfaces.
  • Assert the bus request. Commandment I verifies the driver signature before granting access.

Every one of these tests must pass in simulation before the driver can be synthesized onto an FPGA or ASIC.

A Constitution for Silicon

The WonderPhi Driver proves that code can have principles. Not as comments or documentation, but as enforceable law — constants that cannot be changed, assertions that cannot be bypassed, hardware parameters that are literally burned into the chip.

Version 1.0.0. The constitution is ratified. The commandments are in effect. Forever.

Get the WonderPhi Driver — $99.99

— Christopher Gabriel Brown

Original format Cite this article

A Driver That Lives Forever, Born on the Day That Conquered Death

Today, Easter Sunday, April 5, 2026, I am releasing the WonderPhi Universal Permanent Driver — the one and only driver that will ever be needed for all 142 AutoPhi integrated circuit designs.

This is not ordinary software. It is a constitutional system — governed by the 10 Commandments, encoded as immutable law in every layer of code. It was designed once, on this holy day, and it will never be updated. Version 1.0.0 is the first and last version.

Why Build a Driver That Never Changes?

Every driver in the world has the same problem: updates. Patches break things. Version 2.0 drops support for old hardware. Dependencies change. APIs shift. Eventually, the driver you relied on stops working, and you are forced to rewrite everything.

I decided to solve this problem permanently. The WonderPhi Driver is built on principles that make updates unnecessary:

  • No dynamic memory allocation — all buffers are statically sized, so there are no memory leaks to patch
  • No external dependencies — the driver carries everything it needs within itself
  • No configuration files — all settings are determined by hardware pins or register writes
  • No counters that overflow — every counter wraps safely or is unused
  • Deterministic behavior — no randomness, no timing-dependent code paths

When you eliminate every reason a driver needs updating, you get a driver that works forever.

The Constitution: The 10 Commandments

The heart of this driver is its constitution. The biblical 10 Commandments are encoded as immutable constants — enforced at compile time in C, at synthesis time in Verilog, and at runtime in firmware. They govern every transaction, every register access, every power state transition.

I. I Am the Lord Thy God — The driver is the sole master controller. Its hardware signature (0x4155544F — “AUTO”) and master key (0x50484921 — “PHI!”) are verified on every initialization. No other entity may claim control.

II. Thou Shalt Have No Other Gods — An exclusive lock prevents any competing driver from loading. Maximum instances: 1. Enforced in silicon.

III. Thou Shalt Not Take the Name in Vain — Every command must carry a magic number and pass size validation. Malformed commands are rejected before they reach hardware.

IV. Remember the Sabbath Day — Mandatory rest. After 1ms idle the driver sleeps. After 100ms it enters deep sleep. Zero power consumed when there is no work.

V. Honour Thy Father and Mother — Full backwards compatibility with all 142 AutoPhi IC designs. Every IC from #1 to #142 is mapped, configured, and supported.

VI. Thou Shalt Not Kill — Data is sacred. Every write is atomic and verified with CRC-32. If the checksum does not match on read-back, the write is reported as failed. Data is never silently corrupted.

VII. Thou Shalt Not Commit Adultery — Strict protocol adherence. SPI at CPOL=0/CPHA=0. I2C at 400kHz. UART at 115200 baud 8N1. No deviations. Ever.

VIII. Thou Shalt Not Steal — Hardcoded resource limits: 64KB memory, 2 DMA channels, 4 IRQ lines. The driver never takes more than it is given.

IX. Thou Shalt Not Bear False Witness — Status always reports truthfully. The debug port provides unfiltered read-only access to every internal state.

X. Thou Shalt Not Covet — Zero external dependencies. No standard library. No floating point. No OS requirements. Fully self-contained.

What Is Inside: 34 Source Files Across 3 Layers

The driver spans the full stack:

Hardware Layer (9 Verilog RTL modules): SPI, I2C, UART, and custom AutoPhi Bus controllers. An AES-256 encryption engine with constant-time operation. A watchdog with per-interface self-healing. A debug/trace port. And the 10 Commandments burned into silicon as localparam constants.

Firmware Layer (12 Embedded C files): Register-level drivers for all four interfaces. A core firmware module that enforces the commandments on boot. An IC Configuration Table mapping all 142 designs to their capabilities. An interface failover engine that automatically switches to the next healthy interface if one fails. And a complete register map reference for every IC.

Software Layer (7 Host C files): A clean public API — open, close, read, write, health check, sleep, wake. Per-interface host drivers. IOCTL command definitions for runtime control.

Build and Test (3 files): A Makefile that builds all three layers with one command. A Verilog testbench running 20 automated tests that verify every commandment in simulation. And an example program demonstrating communication with all 142 ICs.

The 142 AutoPhi ICs

The driver supports every IC in the AutoPhi portfolio:

  • ICs 1-20: Quantum Computing Cores (4096 superconducting qubits, error correction, Josephson junctions)
  • ICs 21-35: Photonic Interconnect (150TB/s WDM, silicon waveguides, optical switches)
  • ICs 36-50: Neuromorphic AI Engine (1M+ spiking neurons, STDP learning, event-driven processing)
  • ICs 51-70: AI Accelerator (32,768+ TOPS, transformer attention, 512-bit vector processing)
  • ICs 71-80: Memory Controllers (LPDDR5, quantum interfaces, ECC, DMA)
  • ICs 81-90: Power Management (voltage regulation, thermal control, energy harvesting)
  • ICs 91-100: I/O Controllers (100GbE, PCIe Gen5, USB4, optical expansion)
  • ICs 101-110: Security Engines (AES-256, SHA3-512, RSA-4096, quantum RNG, tamper detection)
  • ICs 111-120: Sensor Interfaces (temperature, voltage, optical power, 24-bit ADC)
  • ICs 121-130: Communication Controllers (quantum links, mesh routing, serial bridges)
  • ICs 131-138: DSP Cores (FFT engines, filter banks, spectrum analyzers)
  • ICs 139-140: Electromagnetic Cooling System (Patents 1096, 1097, 1098)
  • ICs 141-142: LED Recycle-Powered System (Patents 3561, 2876, 1026)

Self-Healing and Failover

Since this driver can never be patched, it must heal itself. The hardware watchdog monitors heartbeats from each of the four interfaces. If an interface stops responding for 5 consecutive check periods, the watchdog automatically resets that interface and allows it to recover — without affecting the other three.

If an interface cannot recover, the failover engine automatically switches to the next healthy interface in the priority chain. The default chain is: AutoPhi Bus, SPI, I2C, UART. This means a communication path to every IC always exists, even when hardware degrades.

AES-256 Encryption

Since security patches will never come, the cryptography had to be bulletproof from day one. The AES-256 encryption engine is implemented directly in Verilog — not as a software library that could be exploited, but as physical logic gates in silicon. It uses the full AES S-Box lookup table with constant-time operation, eliminating timing side-channel attacks.

Available Now: $99.99

The WonderPhi Universal Permanent Driver is available as a one-time purchase. No subscriptions. No renewals. No maintenance fees. You buy it once and it works forever.

Purchase the WonderPhi Driver — $99.99

Version 1.0.0. Permanent. Shall never be updated. Born on Easter Sunday, April 5, 2026 — risen once, never to die.

— Christopher Gabriel Brown

Original format Cite this article

Four Strands. One Die. A New Kind of Integrated Circuit.

The Quantum Electromagnetic IC (QE_IC) is not an incremental improvement on classical silicon. It is a fundamental departure. Where every chip made today relies on a single strand — electrons moving through transistor gates — the QE_IC unifies four strands on a single die: photon, magnetic, electron, and quantum.

Classical ICs manipulate electrons. Silicon photonics added light as a data carrier alongside electrons — two strands. The QE_IC goes further. It weaves photonic data flow, electromagnetic force generation, classical electron switching, and quantum-entangled communication into one monolithic package. Every strand cooperates on the same die, governed by one instruction set.

At the heart of QE_IC control is the photon chromosome — a unified encoding scheme carried entirely in light:

  • Wavelength = opcode — what operation to perform
  • Polarization = operand — which data to act on
  • Path = address — where on the die to route the instruction
  • Intensity = magnitude — how much force, current, or entanglement to apply

This means a single photon pulse carries a complete instruction: the operation, the target, the destination, and the scale — all encoded in the physical properties of light itself. No bus contention. No clock distribution skew. Light moves at the speed of light.

The QE_IC is not a chip with a light pipe bolted on. It is not a quantum experiment tethered to a cryostat. It is a room-temperature, self-cooled, self-powered integrated circuit that computes, communicates, and generates electromagnetic force — all from one die. The four strands are not options. They are the architecture.

Copyright 2017-2026 Christopher Gabriel Brown. All rights reserved.

Browse the full QE_IC product catalog at cri-one.com/store

there's one of a kind art and then there's digital art, I have both for sale.

to cast without bubbles

MORE

300×300

Art piece 1

healthy fair curves and fine accents

300×300

Art piece 2

healthy fair curves and fine accents

300×300

Art piece 3

healthy fair curves and fine accents

Place a Bid at the Auction

there's invent and then the sort of invent patents or copyrights

Three Ways to Shop Inventions

if you need all of the inventions click here to see the bulk catalog and review all there is for sale. Or click here to see individual items at the store...

Archive with Historical Accuracy — a Frontpage designed and Bootstrap Updated View for your Enjoyment.

there's short and long music of a variety of speed sounds and moods.

Go Here>> to My Archive | Go Here>> to Youtube

Music Links by LCUS