- Created backBuffer canvas (same size as visible) - All tile drawing now uses bbCtx (backBuffer context) - Single ctx.drawImage(backBuffer) blit at frame end - Eliminates tearing and square artifacts from partial renders - BackBuffer resized in sync with visible canvas Technical: Classic double buffering pattern - compose entire frame offscreen, then atomic copy to display buffer. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1542 lines
207 KiB
HTML
1542 lines
207 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="fr"><head>
|
||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||
<meta charset="UTF-8">
|
||
<title>MAGIC·CHESS·360</title>
|
||
<style>
|
||
* { margin:0; padding:0; box-sizing:border-box; }
|
||
html, body { width:100%; height:100%; overflow:hidden; background:#000; cursor:none; }
|
||
#canvas-wrapper {
|
||
position:fixed; top:0; left:0; width:100vw; height:100vh;
|
||
overflow:hidden; perspective:1200px; perspective-origin:50% 50%;
|
||
}
|
||
canvas {
|
||
position:absolute; top:50%; left:50%;
|
||
image-rendering:pixelated; image-rendering:crisp-edges;
|
||
filter:saturate(1.3) brightness(1.1);
|
||
transform-style:preserve-3d; transform-origin:50% 50%;
|
||
will-change:transform;
|
||
}
|
||
/* FFT HISTOGRAM - colorset mapped */
|
||
#fft-hist {
|
||
position:fixed; bottom:32px; left:50%; transform:translateX(-50%);
|
||
width:60%; max-width:600px; height:40px;
|
||
display:flex; gap:2px; align-items:flex-end;
|
||
z-index:5; pointer-events:none;
|
||
opacity:0.8;
|
||
}
|
||
.fft-bar {
|
||
flex:1; min-width:4px; height:100%;
|
||
border-radius:2px 2px 0 0;
|
||
transform-origin:bottom;
|
||
transition:transform 0.05s ease-out;
|
||
}
|
||
body.ui-hidden #fft-hist { opacity:0; }
|
||
body.ui-visible #fft-hist { opacity:0.9; }
|
||
|
||
/* AUTO-HIDE UI */
|
||
.ui-layer {
|
||
transition: opacity 0.4s ease, transform 0.3s ease;
|
||
}
|
||
body.ui-hidden .ui-layer {
|
||
opacity: 0 !important;
|
||
pointer-events: none;
|
||
}
|
||
body.ui-visible .ui-layer {
|
||
opacity: 1;
|
||
}
|
||
body.ui-visible #hud,
|
||
body.ui-visible #colorsets,
|
||
body.ui-visible #controls,
|
||
body.ui-visible #bar {
|
||
opacity: 1;
|
||
}
|
||
body.ui-hidden #hud,
|
||
body.ui-hidden #colorsets,
|
||
body.ui-hidden #controls,
|
||
body.ui-hidden #bar {
|
||
opacity: 0;
|
||
pointer-events: none;
|
||
}
|
||
|
||
/* ENHANCED READABILITY */
|
||
body.ui-visible .hb {
|
||
font-size: 9px;
|
||
color: rgba(255,255,255,.7);
|
||
background: rgba(0,0,0,.6);
|
||
border-color: rgba(255,255,255,.2);
|
||
padding: 5px 10px;
|
||
backdrop-filter: blur(4px);
|
||
}
|
||
body.ui-visible .bl {
|
||
font-size: 9px;
|
||
text-shadow: 0 0 8px currentColor;
|
||
}
|
||
body.ui-visible .cs {
|
||
width: 28px;
|
||
height: 28px;
|
||
opacity: 0.85;
|
||
box-shadow: 0 0 12px rgba(0,0,0,.5);
|
||
}
|
||
body.ui-visible #joystick {
|
||
box-shadow: inset 0 0 25px rgba(0,0,0,.6), 0 0 25px rgba(0,255,255,.25);
|
||
}
|
||
body.ui-visible #joystick-knob {
|
||
box-shadow: 0 0 15px rgba(0,255,255,.5), inset 0 0 8px rgba(0,255,255,.3);
|
||
}
|
||
body.ui-visible #depth-knob {
|
||
box-shadow: 0 0 12px rgba(255,0,255,.5);
|
||
}
|
||
body.ui-visible #pixel-ring {
|
||
box-shadow: 0 0 12px rgba(255,215,0,.4);
|
||
}
|
||
body.ui-visible #joystick-label,
|
||
body.ui-visible #depth-label,
|
||
body.ui-visible #pixel-label,
|
||
body.ui-visible #auto-label,
|
||
body.ui-visible #color-label {
|
||
font-size: 7px;
|
||
color: rgba(255,255,255,.5);
|
||
}
|
||
body.ui-visible #joystick-coords {
|
||
font-size: 9px;
|
||
color: rgba(0,255,255,.7);
|
||
}
|
||
body.ui-visible #depth-val {
|
||
font-size: 9px;
|
||
color: rgba(255,0,255,.7);
|
||
}
|
||
body.ui-visible #csLabel {
|
||
font-size: 8px;
|
||
color: rgba(255,255,255,.5);
|
||
}
|
||
body.ui-visible #auto-btn,
|
||
body.ui-visible #color-btn {
|
||
width: 32px;
|
||
height: 32px;
|
||
font-size: 14px;
|
||
}
|
||
|
||
@keyframes taoPrism { 0%{filter:hue-rotate(0deg) saturate(1.3)} 100%{filter:hue-rotate(360deg) saturate(1.3)} }
|
||
|
||
#hud {
|
||
position:fixed; bottom:12px; right:14px;
|
||
transition: opacity 0.4s ease;
|
||
display:flex; gap:5px; align-items:center; z-index:10;
|
||
}
|
||
.hb {
|
||
font-family:'Courier New',monospace; font-size:7px; letter-spacing:2px;
|
||
color:rgba(255,255,255,.2); background:rgba(0,0,0,.25);
|
||
border:1px solid rgba(255,255,255,.07); padding:3px 7px;
|
||
cursor:pointer; border-radius:1px; transition:all .15s;
|
||
}
|
||
.hb:hover { color:rgba(255,255,255,.6); border-color:rgba(255,255,255,.25); }
|
||
|
||
#bar {
|
||
position:fixed; bottom:0; left:0;
|
||
transition: opacity 0.4s ease; right:0; height:28px;
|
||
display:flex; align-items:center; gap:14px; padding:0 14px;
|
||
background:linear-gradient(transparent, rgba(0,0,0,.4));
|
||
pointer-events:none;
|
||
}
|
||
.bl { font-family:'Courier New',monospace; font-size:7px;
|
||
letter-spacing:2px; text-transform:uppercase; white-space:nowrap; }
|
||
#bA { color:rgba(255,149,0,.5); }
|
||
#bB { color:rgba(204,0,255,.5); }
|
||
#bStep { color:rgba(255,255,255,.15); font-size:6px; }
|
||
#bZoom { color:rgba(0,255,255,.3); font-size:6px; margin-left:auto; }
|
||
#bAud { color:rgba(255,215,0,.5); font-size:6px; }
|
||
#btnMic { color:rgba(255,0,102,.6); }
|
||
#btnMic.active { color:rgba(0,255,255,.9); border-color:rgba(0,255,255,.4); }
|
||
|
||
/* COLORSET SELECTOR */
|
||
#colorsets {
|
||
position:fixed; top:12px; left:14px;
|
||
transition: opacity 0.4s ease; z-index:10;
|
||
display:flex; gap:6px; align-items:center;
|
||
}
|
||
.cs {
|
||
width:22px; height:22px; border-radius:50%; cursor:pointer;
|
||
border:2px solid transparent; transition:all .2s;
|
||
opacity:0.6;
|
||
}
|
||
.cs:hover { opacity:1; transform:scale(1.15); }
|
||
.cs.active { border-color:rgba(255,255,255,.8); opacity:1; box-shadow:0 0 10px currentColor; }
|
||
.cs[data-set="default"] { background:linear-gradient(135deg,#ff0066,#ffff00,#00ffff); }
|
||
.cs[data-set="alchy"] { background:linear-gradient(135deg,#7cb342,#ab47bc,#ffd54f); }
|
||
.cs[data-set="emojiz"] { background:linear-gradient(135deg,#ff9800,#e91e63,#00bcd4); }
|
||
.cs[data-set="punk"] { background:linear-gradient(135deg,#ff0066,#00ffff,#ff00ff); }
|
||
.cs[data-set="hollistique"] { background:linear-gradient(135deg,#8d6e63,#4db6ac,#a1887f); }
|
||
.cs[data-set="tantrique"] { background:linear-gradient(135deg,#c62828,#8e24aa,#ff5252); }
|
||
.cs[data-set="cosmique"] { background:linear-gradient(135deg,#7c4dff,#448aff,#b388ff); }
|
||
.cs[data-set="solarix"] { background:linear-gradient(135deg,#ff6f00,#ffd54f,#ff8f00); }
|
||
.cs[data-set="oceanique"] { background:linear-gradient(135deg,#00acc1,#4dd0e1,#006064); }
|
||
|
||
.cs[data-set="rainbow"] { background:linear-gradient(135deg,#ff0000,#ff7f00,#ffff00,#00ff00,#0000ff,#8b00ff); }
|
||
.cs[data-set="fluo"] { background:linear-gradient(135deg,#39ff14,#ff073a,#ffff00); }
|
||
.cs[data-set="phospho"] { background:linear-gradient(135deg,#00ff00,#00ffaa,#aaffaa); }
|
||
.cs[data-set="vintage"] { background:linear-gradient(135deg,#d4a574,#8b7355,#c9b896); }
|
||
.cs[data-set="tao"] { background:linear-gradient(135deg,#000000,#ffffff,#888888); }
|
||
.cs[data-set="rgb"] { background:linear-gradient(135deg,#ff0000,#00ff00,#0000ff); }
|
||
.cs[data-set="merkaba"] { background:linear-gradient(135deg,#ffd700,#4169e1,#9400d3); }
|
||
|
||
/* 2D/3D JOYSTICK CONTROLS */
|
||
#controls {
|
||
position:fixed; bottom:40px; left:14px;
|
||
transition: opacity 0.4s ease; z-index:10;
|
||
display:flex; gap:14px; align-items:flex-end;
|
||
}
|
||
|
||
/* Main 2D Joystick Pad */
|
||
#joystick {
|
||
width:90px; height:90px;
|
||
background:radial-gradient(circle at center, rgba(20,20,30,.9) 0%, rgba(10,10,15,.95) 100%);
|
||
border:1px solid rgba(255,255,255,.1);
|
||
border-radius:8px;
|
||
position:relative;
|
||
cursor:crosshair;
|
||
box-shadow:inset 0 0 20px rgba(0,0,0,.5), 0 0 15px rgba(0,255,255,.1);
|
||
}
|
||
#joystick::before {
|
||
content:'';
|
||
position:absolute;
|
||
left:50%; top:50%;
|
||
width:1px; height:100%;
|
||
background:linear-gradient(transparent, rgba(255,255,255,.1), transparent);
|
||
transform:translateX(-50%);
|
||
}
|
||
#joystick::after {
|
||
content:'';
|
||
position:absolute;
|
||
left:0; top:50%;
|
||
width:100%; height:1px;
|
||
background:linear-gradient(to right, transparent, rgba(255,255,255,.1), transparent);
|
||
}
|
||
#joystick-knob {
|
||
position:absolute;
|
||
width:16px; height:16px;
|
||
background:radial-gradient(circle at 30% 30%, rgba(0,255,255,.9), rgba(0,200,255,.6));
|
||
border:2px solid rgba(255,255,255,.4);
|
||
border-radius:50%;
|
||
left:50%; top:50%;
|
||
transform:translate(-50%, -50%);
|
||
cursor:grab;
|
||
box-shadow:0 0 12px rgba(0,255,255,.6), inset 0 0 4px rgba(255,255,255,.3);
|
||
transition:box-shadow .15s;
|
||
z-index:2;
|
||
}
|
||
#joystick-knob:hover, #joystick-knob.active {
|
||
box-shadow:0 0 20px rgba(0,255,255,1), inset 0 0 6px rgba(255,255,255,.5);
|
||
}
|
||
#joystick-knob.active { cursor:grabbing; }
|
||
#joystick-label {
|
||
position:absolute;
|
||
bottom:-14px; left:0; right:0;
|
||
text-align:center;
|
||
font-family:'Courier New',monospace;
|
||
font-size:6px; letter-spacing:1px;
|
||
color:rgba(0,255,255,.4);
|
||
text-transform:uppercase;
|
||
}
|
||
#joystick-coords {
|
||
position:absolute;
|
||
top:-12px; left:0; right:0;
|
||
text-align:center;
|
||
font-family:'Courier New',monospace;
|
||
font-size:6px;
|
||
color:rgba(255,255,255,.25);
|
||
}
|
||
|
||
/* Vertical Zoom/Depth Slider */
|
||
#depth-control {
|
||
display:flex; flex-direction:column; align-items:center; gap:4px;
|
||
}
|
||
#depth-slider {
|
||
width:20px; height:80px;
|
||
background:linear-gradient(to top, rgba(255,0,102,.3), rgba(0,255,255,.3));
|
||
border:1px solid rgba(255,255,255,.1);
|
||
border-radius:4px;
|
||
position:relative;
|
||
cursor:ns-resize;
|
||
}
|
||
#depth-knob {
|
||
position:absolute;
|
||
width:24px; height:10px;
|
||
background:linear-gradient(to bottom, rgba(255,255,255,.8), rgba(200,200,200,.6));
|
||
border-radius:3px;
|
||
left:50%; top:50%;
|
||
transform:translate(-50%, -50%);
|
||
cursor:grab;
|
||
box-shadow:0 2px 6px rgba(0,0,0,.4);
|
||
}
|
||
#depth-label {
|
||
font-family:'Courier New',monospace;
|
||
font-size:6px; letter-spacing:1px;
|
||
color:rgba(255,0,255,.4);
|
||
text-transform:uppercase;
|
||
}
|
||
#depth-val {
|
||
font-family:'Courier New',monospace;
|
||
font-size:7px;
|
||
color:rgba(255,0,255,.5);
|
||
}
|
||
|
||
/* Pixel Size Ring */
|
||
#pixel-ring {
|
||
width:50px; height:50px;
|
||
border:2px solid rgba(255,215,0,.3);
|
||
border-radius:50%;
|
||
position:relative;
|
||
cursor:pointer;
|
||
}
|
||
#pixel-ring::before {
|
||
content:attr(data-px);
|
||
position:absolute;
|
||
inset:0;
|
||
display:flex; align-items:center; justify-content:center;
|
||
font-family:'Courier New',monospace;
|
||
font-size:10px; font-weight:bold;
|
||
color:rgba(255,215,0,.7);
|
||
}
|
||
#pixel-ring:hover { border-color:rgba(255,215,0,.6); }
|
||
#pixel-label {
|
||
position:absolute;
|
||
bottom:-12px; left:0; right:0;
|
||
text-align:center;
|
||
font-family:'Courier New',monospace;
|
||
font-size:6px;
|
||
color:rgba(255,215,0,.4);
|
||
text-transform:uppercase;
|
||
}
|
||
|
||
/* Auto-rotate toggle */
|
||
#auto-rotate {
|
||
display:flex; flex-direction:column; align-items:center; gap:4px;
|
||
}
|
||
#color-btn {
|
||
width:28px; height:28px;
|
||
background:rgba(20,20,30,.8);
|
||
border:1px solid rgba(255,255,255,.15);
|
||
border-radius:50%;
|
||
color:rgba(255,255,255,.4);
|
||
font-size:10px;
|
||
cursor:pointer;
|
||
transition:all .2s;
|
||
}
|
||
#color-btn:hover { border-color:rgba(255,100,255,.5); color:rgba(255,100,255,.8); }
|
||
#color-btn.active {
|
||
background:rgba(255,100,255,.2);
|
||
border-color:rgba(255,100,255,.6);
|
||
color:rgba(255,100,255,1);
|
||
animation:pulse-color 1.5s ease-in-out infinite;
|
||
}
|
||
@keyframes pulse-color { 0%,100%{opacity:1} 50%{opacity:0.6} }
|
||
#color-label {
|
||
font-family:'Courier New',monospace;
|
||
font-size:5px;
|
||
color:rgba(255,255,255,.3);
|
||
text-transform:uppercase;
|
||
}
|
||
#auto-btn {
|
||
width:28px; height:28px;
|
||
background:rgba(20,20,30,.8);
|
||
border:1px solid rgba(255,255,255,.15);
|
||
border-radius:50%;
|
||
color:rgba(255,255,255,.4);
|
||
font-size:12px;
|
||
cursor:pointer;
|
||
transition:all .2s;
|
||
}
|
||
#auto-btn:hover { border-color:rgba(0,255,255,.5); color:rgba(0,255,255,.8); }
|
||
#auto-btn.active {
|
||
background:rgba(0,255,255,.2);
|
||
border-color:rgba(0,255,255,.6);
|
||
color:rgba(0,255,255,1);
|
||
animation:spin 3s linear infinite;
|
||
}
|
||
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
|
||
#auto-label {
|
||
font-family:'Courier New',monospace;
|
||
font-size:5px;
|
||
color:rgba(255,255,255,.3);
|
||
text-transform:uppercase;
|
||
}
|
||
#csLabel { font-family:'Courier New',monospace; font-size:6px; color:rgba(255,255,255,.3); letter-spacing:1px; margin-left:6px; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
<div id="colorsets">
|
||
<div class="cs active" data-set="default" title="Default Tao" onclick="setColorset('default')"></div>
|
||
<div class="cs" data-set="alchy" title="Alchimie" onclick="setColorset('alchy')"></div>
|
||
<div class="cs" data-set="emojiz" title="Emojiz" onclick="setColorset('emojiz')"></div>
|
||
<div class="cs" data-set="punk" title="Cyberpunk" onclick="setColorset('punk')"></div>
|
||
<div class="cs" data-set="hollistique" title="Holistique" onclick="setColorset('hollistique')"></div>
|
||
<div class="cs" data-set="tantrique" title="Tantrique" onclick="setColorset('tantrique')"></div>
|
||
<div class="cs" data-set="cosmique" title="Cosmique" onclick="setColorset('cosmique')"></div>
|
||
<div class="cs" data-set="solarix" title="Solarix" onclick="setColorset('solarix')"></div>
|
||
<div class="cs" data-set="oceanique" title="Océanique" onclick="setColorset('oceanique')"></div>
|
||
|
||
<div class="cs" data-set="rainbow" title="Rainbow" onclick="setColorset('rainbow')"></div>
|
||
<div class="cs" data-set="fluo" title="Fluo" onclick="setColorset('fluo')"></div>
|
||
<div class="cs" data-set="phospho" title="Phospho" onclick="setColorset('phospho')"></div>
|
||
<div class="cs" data-set="vintage" title="Vintage" onclick="setColorset('vintage')"></div>
|
||
<div class="cs" data-set="tao" title="Tao" onclick="setColorset('tao')"></div>
|
||
<div class="cs" data-set="rgb" title="RGB" onclick="setColorset('rgb')"></div>
|
||
<div class="cs" data-set="merkaba" title="Merkaba" onclick="setColorset('merkaba')"></div>
|
||
<span id="csLabel">RGB</span>
|
||
</div>
|
||
|
||
<a href="https://www.youtube.com/watch?v=cDEE82XARps" target="_blank" title="▶ Playlist YouTube" style="
|
||
position:fixed; top:12px; right:14px; z-index:999;
|
||
display:flex; align-items:center; justify-content:center;
|
||
width:44px; height:44px; border-radius:50%;
|
||
background:rgba(0,0,0,0.55); border:1px solid rgba(255,0,102,0.5);
|
||
text-decoration:none; transition:background .2s, transform .2s;
|
||
box-shadow:0 0 12px rgba(255,0,102,0.35);
|
||
" onmouseover="this.style.background='rgba(255,0,102,0.75)';this.style.transform='scale(1.12)'"
|
||
onmouseout="this.style.background='rgba(0,0,0,0.55)';this.style.transform='scale(1)'">
|
||
<svg width="22" height="16" viewBox="0 0 22 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||
<rect width="22" height="16" rx="4" fill="#FF0000"/>
|
||
<polygon points="9,4 9,12 16,8" fill="white"/>
|
||
</svg>
|
||
</a>
|
||
<div id="canvas-wrapper"><canvas id="cv"></canvas></div>
|
||
|
||
<div id="controls">
|
||
<!-- 2D Rotation/Perspective Joystick -->
|
||
<div id="joystick">
|
||
<div id="joystick-knob"></div>
|
||
<span id="joystick-coords">0, 0</span>
|
||
<span id="joystick-label">3D Tilt</span>
|
||
</div>
|
||
|
||
<!-- Depth/Zoom Slider -->
|
||
<div id="depth-control">
|
||
<span id="depth-val">1.0x</span>
|
||
<div id="depth-slider">
|
||
<div id="depth-knob"></div>
|
||
</div>
|
||
<span id="depth-label">Depth</span>
|
||
</div>
|
||
|
||
<!-- Pixel Size Ring -->
|
||
<div style="position:relative">
|
||
<div id="pixel-ring" data-px="6" onclick="cyclePixelRing()"></div>
|
||
<span id="pixel-label">Pixel</span>
|
||
</div>
|
||
|
||
<!-- Color Cycle Toggle -->
|
||
<div id="color-cycle">
|
||
<button id="color-btn" onclick="toggleColorCycle()">🎨</button>
|
||
<span id="color-label">Cycle</span>
|
||
</div>
|
||
|
||
<!-- Auto-rotate Toggle -->
|
||
<div id="auto-rotate">
|
||
<button id="auto-btn" onclick="toggleAutoRotate()">↻</button>
|
||
<span id="auto-label">Auto</span>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="fft-hist"></div>
|
||
<div id="bar">
|
||
<span class="bl" id="bA">—</span>
|
||
<span class="bl" style="color:rgba(255,255,255,.1)">+</span>
|
||
<span class="bl" id="bB">KRE·PAR3 ●</span>
|
||
<span class="bl" id="bStep">SOLOB 10</span>
|
||
<span class="bl" id="bZoom">Z 1.00</span><span class="bl" id="bAud">— BPM</span>
|
||
</div>
|
||
<div id="aud" style="
|
||
position:fixed; bottom:32px; left:0; right:0; height:3px;
|
||
display:flex; gap:1px; padding:0 8px; pointer-events:none; z-index:9;
|
||
">
|
||
<!-- barres FFT mini — remplies dynamiquement -->
|
||
</div>
|
||
<div id="hud">
|
||
<button class="hb" id="btnMic" onclick="toggleMic()" title="Sync audio micro">🎙</button>
|
||
<button class="hb" id="btnPlay" onclick="togglePlay()">⏸</button>
|
||
<button class="hb" onclick="slower()">−</button>
|
||
<button class="hb" id="btnSpd">120ms</button>
|
||
<button class="hb" onclick="faster()">+</button>
|
||
<button class="hb" onclick="cycleSize()">px</button>
|
||
</div>
|
||
|
||
<script>
|
||
const APP_DATA = {"series":{"KRE-360-PAR2-YANG-YANG-MUT-X-YANG":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,238,40,124],[5,7,238,40,124],[6,4,238,40,124],[6,7,238,40,124],[7,5,102,44,145],[7,6,102,44,145],[0,1,238,40,124],[0,10,238,40,124],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,238,40,124],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,238,40,124],[4,8,238,40,124],[7,3,238,40,124],[7,8,238,40,124],[8,4,102,44,145],[8,7,102,44,145],[1,2,238,40,124],[1,9,238,40,124],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,238,40,124],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,238,40,124],[5,8,238,40,124],[6,3,238,40,124],[6,8,238,40,124],[8,5,102,44,145],[8,6,102,44,145],[0,2,238,40,124],[0,9,238,40,124],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,238,40,124],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,238,40,124],[5,9,238,40,124],[6,2,238,40,124],[6,9,238,40,124],[9,5,102,44,145],[9,6,102,44,145],[0,3,238,40,124],[0,8,238,40,124],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,238,40,124],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,238,40,124],[4,9,238,40,124],[7,2,238,40,124],[7,9,238,40,124],[9,4,102,44,145],[9,7,102,44,145],[1,3,238,40,124],[1,8,238,40,124],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,238,40,124],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,102,44,145],[5,1,238,40,124],[5,10,238,40,124],[6,1,238,40,124],[6,10,238,40,124],[10,5,102,44,145],[10,6,102,44,145],[0,4,238,40,124],[0,7,238,40,124],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,238,40,124],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR2-YANG-YANG-MUT-X-YANG-MUT":[[[4,5,238,40,124],[4,6,238,40,124],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,238,40,124],[7,6,238,40,124],[0,1,102,44,145],[0,10,102,44,145],[1,0,238,40,124],[1,11,238,40,124],[10,0,238,40,124],[10,11,238,40,124],[11,1,102,44,145],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,238,40,124],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,238,40,124],[8,7,238,40,124],[1,2,102,44,145],[1,9,102,44,145],[2,1,238,40,124],[2,10,238,40,124],[9,1,238,40,124],[9,10,238,40,124],[10,2,102,44,145],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,238,40,124],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,238,40,124],[8,6,238,40,124],[0,2,102,44,145],[0,9,102,44,145],[2,0,238,40,124],[2,11,238,40,124],[9,0,238,40,124],[9,11,238,40,124],[11,2,102,44,145],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,238,40,124],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,238,40,124],[9,6,238,40,124],[0,3,102,44,145],[0,8,102,44,145],[3,0,238,40,124],[3,11,238,40,124],[8,0,238,40,124],[8,11,238,40,124],[11,3,102,44,145],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,238,40,124],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,238,40,124],[9,7,238,40,124],[1,3,102,44,145],[1,8,102,44,145],[3,1,238,40,124],[3,10,238,40,124],[8,1,238,40,124],[8,10,238,40,124],[10,3,102,44,145],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,238,40,124],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,238,40,124],[10,6,238,40,124],[0,4,102,44,145],[0,7,102,44,145],[4,0,238,40,124],[4,11,238,40,124],[7,0,238,40,124],[7,11,238,40,124],[11,4,102,44,145],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR2-YANG-YANG-MUT-X-YIN":[[[4,5,251,176,64],[4,6,251,176,64],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,251,176,64],[7,6,251,176,64],[0,1,102,44,145],[0,10,102,44,145],[1,0,251,176,64],[1,11,251,176,64],[10,0,251,176,64],[10,11,251,176,64],[11,1,102,44,145],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,251,176,64],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,251,176,64],[8,7,251,176,64],[1,2,102,44,145],[1,9,102,44,145],[2,1,251,176,64],[2,10,251,176,64],[9,1,251,176,64],[9,10,251,176,64],[10,2,102,44,145],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,251,176,64],[3,6,251,176,64],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,251,176,64],[8,6,251,176,64],[0,2,102,44,145],[0,9,102,44,145],[2,0,251,176,64],[2,11,251,176,64],[9,0,251,176,64],[9,11,251,176,64],[11,2,102,44,145],[11,9,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,251,176,64],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,251,176,64],[9,6,251,176,64],[0,3,102,44,145],[0,8,102,44,145],[3,0,251,176,64],[3,11,251,176,64],[8,0,251,176,64],[8,11,251,176,64],[11,3,102,44,145],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,251,176,64],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,251,176,64],[9,7,251,176,64],[1,3,102,44,145],[1,8,102,44,145],[3,1,251,176,64],[3,10,251,176,64],[8,1,251,176,64],[8,10,251,176,64],[10,3,102,44,145],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,251,176,64],[1,6,251,176,64],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,251,176,64],[10,6,251,176,64],[0,4,102,44,145],[0,7,102,44,145],[4,0,251,176,64],[4,11,251,176,64],[7,0,251,176,64],[7,11,251,176,64],[11,4,102,44,145],[11,7,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR2-YANG-YANG-MUT-X-YIN-MUT":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,251,176,64],[5,7,251,176,64],[6,4,251,176,64],[6,7,251,176,64],[7,5,102,44,145],[7,6,102,44,145],[0,1,251,176,64],[0,10,251,176,64],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,251,176,64],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,251,176,64],[4,8,251,176,64],[7,3,251,176,64],[7,8,251,176,64],[8,4,102,44,145],[8,7,102,44,145],[1,2,251,176,64],[1,9,251,176,64],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,251,176,64],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,251,176,64],[0,9,251,176,64],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,251,176,64],[11,9,251,176,64],[3,5,102,44,145],[3,6,102,44,145],[5,3,251,176,64],[5,8,251,176,64],[6,3,251,176,64],[6,8,251,176,64],[8,5,102,44,145],[8,6,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,251,176,64],[5,9,251,176,64],[6,2,251,176,64],[6,9,251,176,64],[9,5,102,44,145],[9,6,102,44,145],[0,3,251,176,64],[0,8,251,176,64],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,251,176,64],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,251,176,64],[4,9,251,176,64],[7,2,251,176,64],[7,9,251,176,64],[9,4,102,44,145],[9,7,102,44,145],[1,3,251,176,64],[1,8,251,176,64],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,251,176,64],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,251,176,64],[0,7,251,176,64],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,251,176,64],[11,7,251,176,64],[1,5,102,44,145],[1,6,102,44,145],[5,1,251,176,64],[5,10,251,176,64],[6,1,251,176,64],[6,10,251,176,64],[10,5,102,44,145],[10,6,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR2-YANG-YING-MUT-X-YANG":[[[4,5,238,40,124],[4,6,238,40,124],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,238,40,124],[7,6,238,40,124],[0,1,238,40,124],[0,10,238,40,124],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,238,40,124],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,238,40,124],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,238,40,124],[8,7,238,40,124],[1,2,238,40,124],[1,9,238,40,124],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,238,40,124],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,238,40,124],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,238,40,124],[8,6,238,40,124],[0,2,238,40,124],[0,9,238,40,124],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,238,40,124],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,238,40,124],[5,9,238,40,124],[6,2,238,40,124],[6,9,238,40,124],[9,5,102,44,145],[9,6,102,44,145],[0,3,102,44,145],[0,8,102,44,145],[3,0,238,40,124],[3,11,238,40,124],[8,0,238,40,124],[8,11,238,40,124],[11,3,102,44,145],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,238,40,124],[4,9,238,40,124],[7,2,238,40,124],[7,9,238,40,124],[9,4,102,44,145],[9,7,102,44,145],[1,3,102,44,145],[1,8,102,44,145],[3,1,238,40,124],[3,10,238,40,124],[8,1,238,40,124],[8,10,238,40,124],[10,3,102,44,145],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,102,44,145],[5,1,238,40,124],[5,10,238,40,124],[6,1,238,40,124],[6,10,238,40,124],[10,5,102,44,145],[10,6,102,44,145],[0,4,102,44,145],[0,7,102,44,145],[4,0,238,40,124],[4,11,238,40,124],[7,0,238,40,124],[7,11,238,40,124],[11,4,102,44,145],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR2-YANG-YING-MUT-X-YANG-MUT":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,238,40,124],[5,7,238,40,124],[6,4,238,40,124],[6,7,238,40,124],[7,5,102,44,145],[7,6,102,44,145],[0,1,102,44,145],[0,10,102,44,145],[1,0,238,40,124],[1,11,238,40,124],[10,0,238,40,124],[10,11,238,40,124],[11,1,102,44,145],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,238,40,124],[4,8,238,40,124],[7,3,238,40,124],[7,8,238,40,124],[8,4,102,44,145],[8,7,102,44,145],[1,2,102,44,145],[1,9,102,44,145],[2,1,238,40,124],[2,10,238,40,124],[9,1,238,40,124],[9,10,238,40,124],[10,2,102,44,145],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,238,40,124],[5,8,238,40,124],[6,3,238,40,124],[6,8,238,40,124],[8,5,102,44,145],[8,6,102,44,145],[0,2,102,44,145],[0,9,102,44,145],[2,0,238,40,124],[2,11,238,40,124],[9,0,238,40,124],[9,11,238,40,124],[11,2,102,44,145],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,238,40,124],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,238,40,124],[9,6,238,40,124],[0,3,238,40,124],[0,8,238,40,124],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,238,40,124],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,238,40,124],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,238,40,124],[9,7,238,40,124],[1,3,238,40,124],[1,8,238,40,124],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,238,40,124],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,238,40,124],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,238,40,124],[10,6,238,40,124],[0,4,238,40,124],[0,7,238,40,124],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,238,40,124],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR2-YANG-YING-MUT-X-YIN":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,251,176,64],[5,7,251,176,64],[6,4,251,176,64],[6,7,251,176,64],[7,5,102,44,145],[7,6,102,44,145],[0,1,102,44,145],[0,10,102,44,145],[1,0,251,176,64],[1,11,251,176,64],[10,0,251,176,64],[10,11,251,176,64],[11,1,102,44,145],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,251,176,64],[4,8,251,176,64],[7,3,251,176,64],[7,8,251,176,64],[8,4,102,44,145],[8,7,102,44,145],[1,2,102,44,145],[1,9,102,44,145],[2,1,251,176,64],[2,10,251,176,64],[9,1,251,176,64],[9,10,251,176,64],[10,2,102,44,145],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,251,176,64],[5,8,251,176,64],[6,3,251,176,64],[6,8,251,176,64],[8,5,102,44,145],[8,6,102,44,145],[0,2,102,44,145],[0,9,102,44,145],[2,0,251,176,64],[2,11,251,176,64],[9,0,251,176,64],[9,11,251,176,64],[11,2,102,44,145],[11,9,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,251,176,64],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,251,176,64],[9,6,251,176,64],[0,3,251,176,64],[0,8,251,176,64],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,251,176,64],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,251,176,64],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,251,176,64],[9,7,251,176,64],[1,3,251,176,64],[1,8,251,176,64],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,251,176,64],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,251,176,64],[1,6,251,176,64],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,251,176,64],[10,6,251,176,64],[0,4,251,176,64],[0,7,251,176,64],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,251,176,64],[11,7,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR2-YANG-YING-MUT-X-YIN-MUT":[[[4,5,251,176,64],[4,6,251,176,64],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,251,176,64],[7,6,251,176,64],[0,1,251,176,64],[0,10,251,176,64],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,251,176,64],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,251,176,64],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,251,176,64],[8,7,251,176,64],[1,2,251,176,64],[1,9,251,176,64],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,251,176,64],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,251,176,64],[0,9,251,176,64],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,251,176,64],[11,9,251,176,64],[3,5,251,176,64],[3,6,251,176,64],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,251,176,64],[8,6,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,251,176,64],[5,9,251,176,64],[6,2,251,176,64],[6,9,251,176,64],[9,5,102,44,145],[9,6,102,44,145],[0,3,102,44,145],[0,8,102,44,145],[3,0,251,176,64],[3,11,251,176,64],[8,0,251,176,64],[8,11,251,176,64],[11,3,102,44,145],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,251,176,64],[4,9,251,176,64],[7,2,251,176,64],[7,9,251,176,64],[9,4,102,44,145],[9,7,102,44,145],[1,3,102,44,145],[1,8,102,44,145],[3,1,251,176,64],[3,10,251,176,64],[8,1,251,176,64],[8,10,251,176,64],[10,3,102,44,145],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,102,44,145],[0,7,102,44,145],[4,0,251,176,64],[4,11,251,176,64],[7,0,251,176,64],[7,11,251,176,64],[11,4,102,44,145],[11,7,102,44,145],[1,5,102,44,145],[1,6,102,44,145],[5,1,251,176,64],[5,10,251,176,64],[6,1,251,176,64],[6,10,251,176,64],[10,5,102,44,145],[10,6,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR2-YIN-YANG-X-YANG":[[[4,5,238,40,124],[4,6,102,44,145],[5,4,102,44,145],[5,7,238,40,124],[6,4,238,40,124],[6,7,102,44,145],[7,5,102,44,145],[7,6,238,40,124],[0,1,238,40,124],[0,10,102,44,145],[1,0,102,44,145],[1,11,238,40,124],[10,0,238,40,124],[10,11,102,44,145],[11,1,102,44,145],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,102,44,145],[4,3,102,44,145],[4,8,238,40,124],[7,3,238,40,124],[7,8,102,44,145],[8,4,102,44,145],[8,7,238,40,124],[1,2,238,40,124],[1,9,102,44,145],[2,1,102,44,145],[2,10,238,40,124],[9,1,238,40,124],[9,10,102,44,145],[10,2,102,44,145],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,102,44,145],[5,3,102,44,145],[5,8,238,40,124],[6,3,238,40,124],[6,8,102,44,145],[8,5,102,44,145],[8,6,238,40,124],[0,2,238,40,124],[0,9,102,44,145],[2,0,102,44,145],[2,11,238,40,124],[9,0,238,40,124],[9,11,102,44,145],[11,2,102,44,145],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,102,44,145],[5,2,102,44,145],[5,9,238,40,124],[6,2,238,40,124],[6,9,102,44,145],[9,5,102,44,145],[9,6,238,40,124],[0,3,238,40,124],[0,8,102,44,145],[3,0,102,44,145],[3,11,238,40,124],[8,0,238,40,124],[8,11,102,44,145],[11,3,102,44,145],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,102,44,145],[4,2,102,44,145],[4,9,238,40,124],[7,2,238,40,124],[7,9,102,44,145],[9,4,102,44,145],[9,7,238,40,124],[1,3,238,40,124],[1,8,102,44,145],[3,1,102,44,145],[3,10,238,40,124],[8,1,238,40,124],[8,10,102,44,145],[10,3,102,44,145],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,102,44,145],[5,1,102,44,145],[5,10,238,40,124],[6,1,238,40,124],[6,10,102,44,145],[10,5,102,44,145],[10,6,238,40,124],[0,4,238,40,124],[0,7,102,44,145],[4,0,102,44,145],[4,11,238,40,124],[7,0,238,40,124],[7,11,102,44,145],[11,4,102,44,145],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR2-YIN-YANG-X-YANG-MUT":[[[4,5,102,44,145],[4,6,238,40,124],[5,4,238,40,124],[5,7,102,44,145],[6,4,102,44,145],[6,7,238,40,124],[7,5,238,40,124],[7,6,102,44,145],[0,1,102,44,145],[0,10,238,40,124],[1,0,238,40,124],[1,11,102,44,145],[10,0,102,44,145],[10,11,238,40,124],[11,1,238,40,124],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,238,40,124],[4,3,238,40,124],[4,8,102,44,145],[7,3,102,44,145],[7,8,238,40,124],[8,4,238,40,124],[8,7,102,44,145],[1,2,102,44,145],[1,9,238,40,124],[2,1,238,40,124],[2,10,102,44,145],[9,1,102,44,145],[9,10,238,40,124],[10,2,238,40,124],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,238,40,124],[5,3,238,40,124],[5,8,102,44,145],[6,3,102,44,145],[6,8,238,40,124],[8,5,238,40,124],[8,6,102,44,145],[0,2,102,44,145],[0,9,238,40,124],[2,0,238,40,124],[2,11,102,44,145],[9,0,102,44,145],[9,11,238,40,124],[11,2,238,40,124],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,238,40,124],[5,2,238,40,124],[5,9,102,44,145],[6,2,102,44,145],[6,9,238,40,124],[9,5,238,40,124],[9,6,102,44,145],[0,3,102,44,145],[0,8,238,40,124],[3,0,238,40,124],[3,11,102,44,145],[8,0,102,44,145],[8,11,238,40,124],[11,3,238,40,124],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,238,40,124],[4,2,238,40,124],[4,9,102,44,145],[7,2,102,44,145],[7,9,238,40,124],[9,4,238,40,124],[9,7,102,44,145],[1,3,102,44,145],[1,8,238,40,124],[3,1,238,40,124],[3,10,102,44,145],[8,1,102,44,145],[8,10,238,40,124],[10,3,238,40,124],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,238,40,124],[5,1,238,40,124],[5,10,102,44,145],[6,1,102,44,145],[6,10,238,40,124],[10,5,238,40,124],[10,6,102,44,145],[0,4,102,44,145],[0,7,238,40,124],[4,0,238,40,124],[4,11,102,44,145],[7,0,102,44,145],[7,11,238,40,124],[11,4,238,40,124],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR2-YIN-YANG-X-YIN":[[[4,5,102,44,145],[4,6,251,176,64],[5,4,251,176,64],[5,7,102,44,145],[6,4,102,44,145],[6,7,251,176,64],[7,5,251,176,64],[7,6,102,44,145],[0,1,102,44,145],[0,10,251,176,64],[1,0,251,176,64],[1,11,102,44,145],[10,0,102,44,145],[10,11,251,176,64],[11,1,251,176,64],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,251,176,64],[4,3,251,176,64],[4,8,102,44,145],[7,3,102,44,145],[7,8,251,176,64],[8,4,251,176,64],[8,7,102,44,145],[1,2,102,44,145],[1,9,251,176,64],[2,1,251,176,64],[2,10,102,44,145],[9,1,102,44,145],[9,10,251,176,64],[10,2,251,176,64],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,102,44,145],[3,6,251,176,64],[5,3,251,176,64],[5,8,102,44,145],[6,3,102,44,145],[6,8,251,176,64],[8,5,251,176,64],[8,6,102,44,145],[0,2,102,44,145],[0,9,251,176,64],[2,0,251,176,64],[2,11,102,44,145],[9,0,102,44,145],[9,11,251,176,64],[11,2,251,176,64],[11,9,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,251,176,64],[5,2,251,176,64],[5,9,102,44,145],[6,2,102,44,145],[6,9,251,176,64],[9,5,251,176,64],[9,6,102,44,145],[0,3,102,44,145],[0,8,251,176,64],[3,0,251,176,64],[3,11,102,44,145],[8,0,102,44,145],[8,11,251,176,64],[11,3,251,176,64],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,251,176,64],[4,2,251,176,64],[4,9,102,44,145],[7,2,102,44,145],[7,9,251,176,64],[9,4,251,176,64],[9,7,102,44,145],[1,3,102,44,145],[1,8,251,176,64],[3,1,251,176,64],[3,10,102,44,145],[8,1,102,44,145],[8,10,251,176,64],[10,3,251,176,64],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,102,44,145],[1,6,251,176,64],[5,1,251,176,64],[5,10,102,44,145],[6,1,102,44,145],[6,10,251,176,64],[10,5,251,176,64],[10,6,102,44,145],[0,4,102,44,145],[0,7,251,176,64],[4,0,251,176,64],[4,11,102,44,145],[7,0,102,44,145],[7,11,251,176,64],[11,4,251,176,64],[11,7,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR2-YIN-YANG-X-YIN-MUT":[[[4,5,251,176,64],[4,6,102,44,145],[5,4,102,44,145],[5,7,251,176,64],[6,4,251,176,64],[6,7,102,44,145],[7,5,102,44,145],[7,6,251,176,64],[0,1,251,176,64],[0,10,102,44,145],[1,0,102,44,145],[1,11,251,176,64],[10,0,251,176,64],[10,11,102,44,145],[11,1,102,44,145],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,102,44,145],[4,3,102,44,145],[4,8,251,176,64],[7,3,251,176,64],[7,8,102,44,145],[8,4,102,44,145],[8,7,251,176,64],[1,2,251,176,64],[1,9,102,44,145],[2,1,102,44,145],[2,10,251,176,64],[9,1,251,176,64],[9,10,102,44,145],[10,2,102,44,145],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,251,176,64],[0,9,102,44,145],[2,0,102,44,145],[2,11,251,176,64],[9,0,251,176,64],[9,11,102,44,145],[11,2,102,44,145],[11,9,251,176,64],[3,5,251,176,64],[3,6,102,44,145],[5,3,102,44,145],[5,8,251,176,64],[6,3,251,176,64],[6,8,102,44,145],[8,5,102,44,145],[8,6,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,102,44,145],[5,2,102,44,145],[5,9,251,176,64],[6,2,251,176,64],[6,9,102,44,145],[9,5,102,44,145],[9,6,251,176,64],[0,3,251,176,64],[0,8,102,44,145],[3,0,102,44,145],[3,11,251,176,64],[8,0,251,176,64],[8,11,102,44,145],[11,3,102,44,145],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,102,44,145],[4,2,102,44,145],[4,9,251,176,64],[7,2,251,176,64],[7,9,102,44,145],[9,4,102,44,145],[9,7,251,176,64],[1,3,251,176,64],[1,8,102,44,145],[3,1,102,44,145],[3,10,251,176,64],[8,1,251,176,64],[8,10,102,44,145],[10,3,102,44,145],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,251,176,64],[0,7,102,44,145],[4,0,102,44,145],[4,11,251,176,64],[7,0,251,176,64],[7,11,102,44,145],[11,4,102,44,145],[11,7,251,176,64],[1,5,251,176,64],[1,6,102,44,145],[5,1,102,44,145],[5,10,251,176,64],[6,1,251,176,64],[6,10,102,44,145],[10,5,102,44,145],[10,6,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR2-YIN-YING-MUT-X-YANG":[[[4,5,238,40,124],[4,6,102,44,145],[5,4,238,40,124],[5,7,102,44,145],[6,4,102,44,145],[6,7,238,40,124],[7,5,102,44,145],[7,6,238,40,124],[0,1,238,40,124],[0,10,102,44,145],[1,0,238,40,124],[1,11,102,44,145],[10,0,102,44,145],[10,11,238,40,124],[11,1,102,44,145],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,102,44,145],[4,3,238,40,124],[4,8,102,44,145],[7,3,102,44,145],[7,8,238,40,124],[8,4,102,44,145],[8,7,238,40,124],[1,2,238,40,124],[1,9,102,44,145],[2,1,238,40,124],[2,10,102,44,145],[9,1,102,44,145],[9,10,238,40,124],[10,2,102,44,145],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,102,44,145],[5,3,238,40,124],[5,8,102,44,145],[6,3,102,44,145],[6,8,238,40,124],[8,5,102,44,145],[8,6,238,40,124],[0,2,238,40,124],[0,9,102,44,145],[2,0,238,40,124],[2,11,102,44,145],[9,0,102,44,145],[9,11,238,40,124],[11,2,102,44,145],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,238,40,124],[5,2,102,44,145],[5,9,238,40,124],[6,2,238,40,124],[6,9,102,44,145],[9,5,238,40,124],[9,6,102,44,145],[0,3,102,44,145],[0,8,238,40,124],[3,0,102,44,145],[3,11,238,40,124],[8,0,238,40,124],[8,11,102,44,145],[11,3,238,40,124],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,238,40,124],[4,2,102,44,145],[4,9,238,40,124],[7,2,238,40,124],[7,9,102,44,145],[9,4,238,40,124],[9,7,102,44,145],[1,3,102,44,145],[1,8,238,40,124],[3,1,102,44,145],[3,10,238,40,124],[8,1,238,40,124],[8,10,102,44,145],[10,3,238,40,124],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,238,40,124],[5,1,102,44,145],[5,10,238,40,124],[6,1,238,40,124],[6,10,102,44,145],[10,5,238,40,124],[10,6,102,44,145],[0,4,102,44,145],[0,7,238,40,124],[4,0,102,44,145],[4,11,238,40,124],[7,0,238,40,124],[7,11,102,44,145],[11,4,238,40,124],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR2-YIN-YING-MUT-X-YANG-MUT":[[[4,5,102,44,145],[4,6,238,40,124],[5,4,102,44,145],[5,7,238,40,124],[6,4,238,40,124],[6,7,102,44,145],[7,5,238,40,124],[7,6,102,44,145],[0,1,102,44,145],[0,10,238,40,124],[1,0,102,44,145],[1,11,238,40,124],[10,0,238,40,124],[10,11,102,44,145],[11,1,238,40,124],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,238,40,124],[4,3,102,44,145],[4,8,238,40,124],[7,3,238,40,124],[7,8,102,44,145],[8,4,238,40,124],[8,7,102,44,145],[1,2,102,44,145],[1,9,238,40,124],[2,1,102,44,145],[2,10,238,40,124],[9,1,238,40,124],[9,10,102,44,145],[10,2,238,40,124],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,238,40,124],[5,3,102,44,145],[5,8,238,40,124],[6,3,238,40,124],[6,8,102,44,145],[8,5,238,40,124],[8,6,102,44,145],[0,2,102,44,145],[0,9,238,40,124],[2,0,102,44,145],[2,11,238,40,124],[9,0,238,40,124],[9,11,102,44,145],[11,2,238,40,124],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,102,44,145],[5,2,238,40,124],[5,9,102,44,145],[6,2,102,44,145],[6,9,238,40,124],[9,5,102,44,145],[9,6,238,40,124],[0,3,238,40,124],[0,8,102,44,145],[3,0,238,40,124],[3,11,102,44,145],[8,0,102,44,145],[8,11,238,40,124],[11,3,102,44,145],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,102,44,145],[4,2,238,40,124],[4,9,102,44,145],[7,2,102,44,145],[7,9,238,40,124],[9,4,102,44,145],[9,7,238,40,124],[1,3,238,40,124],[1,8,102,44,145],[3,1,238,40,124],[3,10,102,44,145],[8,1,102,44,145],[8,10,238,40,124],[10,3,102,44,145],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,102,44,145],[5,1,238,40,124],[5,10,102,44,145],[6,1,102,44,145],[6,10,238,40,124],[10,5,102,44,145],[10,6,238,40,124],[0,4,238,40,124],[0,7,102,44,145],[4,0,238,40,124],[4,11,102,44,145],[7,0,102,44,145],[7,11,238,40,124],[11,4,102,44,145],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR2-YIN-YING-MUT-X-YIN":[[[4,5,102,44,145],[4,6,251,176,64],[5,4,102,44,145],[5,7,251,176,64],[6,4,251,176,64],[6,7,102,44,145],[7,5,251,176,64],[7,6,102,44,145],[0,1,102,44,145],[0,10,251,176,64],[1,0,102,44,145],[1,11,251,176,64],[10,0,251,176,64],[10,11,102,44,145],[11,1,251,176,64],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,251,176,64],[4,3,102,44,145],[4,8,251,176,64],[7,3,251,176,64],[7,8,102,44,145],[8,4,251,176,64],[8,7,102,44,145],[1,2,102,44,145],[1,9,251,176,64],[2,1,102,44,145],[2,10,251,176,64],[9,1,251,176,64],[9,10,102,44,145],[10,2,251,176,64],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,102,44,145],[3,6,251,176,64],[5,3,102,44,145],[5,8,251,176,64],[6,3,251,176,64],[6,8,102,44,145],[8,5,251,176,64],[8,6,102,44,145],[0,2,102,44,145],[0,9,251,176,64],[2,0,102,44,145],[2,11,251,176,64],[9,0,251,176,64],[9,11,102,44,145],[11,2,251,176,64],[11,9,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,102,44,145],[5,2,251,176,64],[5,9,102,44,145],[6,2,102,44,145],[6,9,251,176,64],[9,5,102,44,145],[9,6,251,176,64],[0,3,251,176,64],[0,8,102,44,145],[3,0,251,176,64],[3,11,102,44,145],[8,0,102,44,145],[8,11,251,176,64],[11,3,102,44,145],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,102,44,145],[4,2,251,176,64],[4,9,102,44,145],[7,2,102,44,145],[7,9,251,176,64],[9,4,102,44,145],[9,7,251,176,64],[1,3,251,176,64],[1,8,102,44,145],[3,1,251,176,64],[3,10,102,44,145],[8,1,102,44,145],[8,10,251,176,64],[10,3,102,44,145],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,251,176,64],[1,6,102,44,145],[5,1,251,176,64],[5,10,102,44,145],[6,1,102,44,145],[6,10,251,176,64],[10,5,102,44,145],[10,6,251,176,64],[0,4,251,176,64],[0,7,102,44,145],[4,0,251,176,64],[4,11,102,44,145],[7,0,102,44,145],[7,11,251,176,64],[11,4,102,44,145],[11,7,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR2-YIN-YING-MUT-X-YIN-MUT":[[[4,5,251,176,64],[4,6,102,44,145],[5,4,251,176,64],[5,7,102,44,145],[6,4,102,44,145],[6,7,251,176,64],[7,5,102,44,145],[7,6,251,176,64],[0,1,251,176,64],[0,10,102,44,145],[1,0,251,176,64],[1,11,102,44,145],[10,0,102,44,145],[10,11,251,176,64],[11,1,102,44,145],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,102,44,145],[4,3,251,176,64],[4,8,102,44,145],[7,3,102,44,145],[7,8,251,176,64],[8,4,102,44,145],[8,7,251,176,64],[1,2,251,176,64],[1,9,102,44,145],[2,1,251,176,64],[2,10,102,44,145],[9,1,102,44,145],[9,10,251,176,64],[10,2,102,44,145],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,251,176,64],[0,9,102,44,145],[2,0,251,176,64],[2,11,102,44,145],[9,0,102,44,145],[9,11,251,176,64],[11,2,102,44,145],[11,9,251,176,64],[3,5,251,176,64],[3,6,102,44,145],[5,3,251,176,64],[5,8,102,44,145],[6,3,102,44,145],[6,8,251,176,64],[8,5,102,44,145],[8,6,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,251,176,64],[5,2,102,44,145],[5,9,251,176,64],[6,2,251,176,64],[6,9,102,44,145],[9,5,251,176,64],[9,6,102,44,145],[0,3,102,44,145],[0,8,251,176,64],[3,0,102,44,145],[3,11,251,176,64],[8,0,251,176,64],[8,11,102,44,145],[11,3,251,176,64],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,251,176,64],[4,2,102,44,145],[4,9,251,176,64],[7,2,251,176,64],[7,9,102,44,145],[9,4,251,176,64],[9,7,102,44,145],[1,3,102,44,145],[1,8,251,176,64],[3,1,102,44,145],[3,10,251,176,64],[8,1,251,176,64],[8,10,102,44,145],[10,3,251,176,64],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,102,44,145],[0,7,251,176,64],[4,0,102,44,145],[4,11,251,176,64],[7,0,251,176,64],[7,11,102,44,145],[11,4,251,176,64],[11,7,102,44,145],[1,5,102,44,145],[1,6,251,176,64],[5,1,102,44,145],[5,10,251,176,64],[6,1,251,176,64],[6,10,102,44,145],[10,5,251,176,64],[10,6,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR3-SANS-YANG-MUT-X-YANG":[[[4,5,102,44,145],[4,6,238,40,124],[5,4,238,40,124],[5,7,102,44,145],[6,4,102,44,145],[6,7,238,40,124],[7,5,238,40,124],[7,6,102,44,145],[0,1,102,44,145],[0,10,238,40,124],[1,0,238,40,124],[1,11,102,44,145],[10,0,102,44,145],[10,11,238,40,124],[11,1,238,40,124],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,238,40,124],[4,3,238,40,124],[4,8,102,44,145],[7,3,102,44,145],[7,8,238,40,124],[8,4,238,40,124],[8,7,102,44,145],[1,2,102,44,145],[1,9,238,40,124],[2,1,238,40,124],[2,10,102,44,145],[9,1,102,44,145],[9,10,238,40,124],[10,2,238,40,124],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,238,40,124],[5,3,238,40,124],[5,8,102,44,145],[6,3,102,44,145],[6,8,238,40,124],[8,5,238,40,124],[8,6,102,44,145],[0,2,102,44,145],[0,9,238,40,124],[2,0,238,40,124],[2,11,102,44,145],[9,0,102,44,145],[9,11,238,40,124],[11,2,238,40,124],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,102,44,145],[5,2,102,44,145],[5,9,238,40,124],[6,2,238,40,124],[6,9,102,44,145],[9,5,102,44,145],[9,6,238,40,124],[0,3,238,40,124],[0,8,102,44,145],[3,0,102,44,145],[3,11,238,40,124],[8,0,238,40,124],[8,11,102,44,145],[11,3,102,44,145],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,102,44,145],[4,2,102,44,145],[4,9,238,40,124],[7,2,238,40,124],[7,9,102,44,145],[9,4,102,44,145],[9,7,238,40,124],[1,3,238,40,124],[1,8,102,44,145],[3,1,102,44,145],[3,10,238,40,124],[8,1,238,40,124],[8,10,102,44,145],[10,3,102,44,145],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,102,44,145],[5,1,102,44,145],[5,10,238,40,124],[6,1,238,40,124],[6,10,102,44,145],[10,5,102,44,145],[10,6,238,40,124],[0,4,238,40,124],[0,7,102,44,145],[4,0,102,44,145],[4,11,238,40,124],[7,0,238,40,124],[7,11,102,44,145],[11,4,102,44,145],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR3-SANS-YANG-MUT-X-YANG-MUT":[[[4,5,238,40,124],[4,6,102,44,145],[5,4,102,44,145],[5,7,238,40,124],[6,4,238,40,124],[6,7,102,44,145],[7,5,102,44,145],[7,6,238,40,124],[0,1,238,40,124],[0,10,102,44,145],[1,0,102,44,145],[1,11,238,40,124],[10,0,238,40,124],[10,11,102,44,145],[11,1,102,44,145],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,102,44,145],[4,3,102,44,145],[4,8,238,40,124],[7,3,238,40,124],[7,8,102,44,145],[8,4,102,44,145],[8,7,238,40,124],[1,2,238,40,124],[1,9,102,44,145],[2,1,102,44,145],[2,10,238,40,124],[9,1,238,40,124],[9,10,102,44,145],[10,2,102,44,145],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,102,44,145],[5,3,102,44,145],[5,8,238,40,124],[6,3,238,40,124],[6,8,102,44,145],[8,5,102,44,145],[8,6,238,40,124],[0,2,238,40,124],[0,9,102,44,145],[2,0,102,44,145],[2,11,238,40,124],[9,0,238,40,124],[9,11,102,44,145],[11,2,102,44,145],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,238,40,124],[5,2,238,40,124],[5,9,102,44,145],[6,2,102,44,145],[6,9,238,40,124],[9,5,238,40,124],[9,6,102,44,145],[0,3,102,44,145],[0,8,238,40,124],[3,0,238,40,124],[3,11,102,44,145],[8,0,102,44,145],[8,11,238,40,124],[11,3,238,40,124],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,238,40,124],[4,2,238,40,124],[4,9,102,44,145],[7,2,102,44,145],[7,9,238,40,124],[9,4,238,40,124],[9,7,102,44,145],[1,3,102,44,145],[1,8,238,40,124],[3,1,238,40,124],[3,10,102,44,145],[8,1,102,44,145],[8,10,238,40,124],[10,3,238,40,124],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,238,40,124],[5,1,238,40,124],[5,10,102,44,145],[6,1,102,44,145],[6,10,238,40,124],[10,5,238,40,124],[10,6,102,44,145],[0,4,102,44,145],[0,7,238,40,124],[4,0,238,40,124],[4,11,102,44,145],[7,0,102,44,145],[7,11,238,40,124],[11,4,238,40,124],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR3-SANS-YANG-MUT-X-YIN":[[[4,5,251,176,64],[4,6,102,44,145],[5,4,102,44,145],[5,7,251,176,64],[6,4,251,176,64],[6,7,102,44,145],[7,5,102,44,145],[7,6,251,176,64],[0,1,251,176,64],[0,10,102,44,145],[1,0,102,44,145],[1,11,251,176,64],[10,0,251,176,64],[10,11,102,44,145],[11,1,102,44,145],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,102,44,145],[4,3,102,44,145],[4,8,251,176,64],[7,3,251,176,64],[7,8,102,44,145],[8,4,102,44,145],[8,7,251,176,64],[1,2,251,176,64],[1,9,102,44,145],[2,1,102,44,145],[2,10,251,176,64],[9,1,251,176,64],[9,10,102,44,145],[10,2,102,44,145],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,251,176,64],[3,6,102,44,145],[5,3,102,44,145],[5,8,251,176,64],[6,3,251,176,64],[6,8,102,44,145],[8,5,102,44,145],[8,6,251,176,64],[0,2,251,176,64],[0,9,102,44,145],[2,0,102,44,145],[2,11,251,176,64],[9,0,251,176,64],[9,11,102,44,145],[11,2,102,44,145],[11,9,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,251,176,64],[5,2,251,176,64],[5,9,102,44,145],[6,2,102,44,145],[6,9,251,176,64],[9,5,251,176,64],[9,6,102,44,145],[0,3,102,44,145],[0,8,251,176,64],[3,0,251,176,64],[3,11,102,44,145],[8,0,102,44,145],[8,11,251,176,64],[11,3,251,176,64],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,251,176,64],[4,2,251,176,64],[4,9,102,44,145],[7,2,102,44,145],[7,9,251,176,64],[9,4,251,176,64],[9,7,102,44,145],[1,3,102,44,145],[1,8,251,176,64],[3,1,251,176,64],[3,10,102,44,145],[8,1,102,44,145],[8,10,251,176,64],[10,3,251,176,64],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,102,44,145],[1,6,251,176,64],[5,1,251,176,64],[5,10,102,44,145],[6,1,102,44,145],[6,10,251,176,64],[10,5,251,176,64],[10,6,102,44,145],[0,4,102,44,145],[0,7,251,176,64],[4,0,251,176,64],[4,11,102,44,145],[7,0,102,44,145],[7,11,251,176,64],[11,4,251,176,64],[11,7,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR3-SANS-YANG-MUT-X-YIN-MUT":[[[4,5,102,44,145],[4,6,251,176,64],[5,4,251,176,64],[5,7,102,44,145],[6,4,102,44,145],[6,7,251,176,64],[7,5,251,176,64],[7,6,102,44,145],[0,1,102,44,145],[0,10,251,176,64],[1,0,251,176,64],[1,11,102,44,145],[10,0,102,44,145],[10,11,251,176,64],[11,1,251,176,64],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,251,176,64],[4,3,251,176,64],[4,8,102,44,145],[7,3,102,44,145],[7,8,251,176,64],[8,4,251,176,64],[8,7,102,44,145],[1,2,102,44,145],[1,9,251,176,64],[2,1,251,176,64],[2,10,102,44,145],[9,1,102,44,145],[9,10,251,176,64],[10,2,251,176,64],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,102,44,145],[0,9,251,176,64],[2,0,251,176,64],[2,11,102,44,145],[9,0,102,44,145],[9,11,251,176,64],[11,2,251,176,64],[11,9,102,44,145],[3,5,102,44,145],[3,6,251,176,64],[5,3,251,176,64],[5,8,102,44,145],[6,3,102,44,145],[6,8,251,176,64],[8,5,251,176,64],[8,6,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,102,44,145],[5,2,102,44,145],[5,9,251,176,64],[6,2,251,176,64],[6,9,102,44,145],[9,5,102,44,145],[9,6,251,176,64],[0,3,251,176,64],[0,8,102,44,145],[3,0,102,44,145],[3,11,251,176,64],[8,0,251,176,64],[8,11,102,44,145],[11,3,102,44,145],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,102,44,145],[4,2,102,44,145],[4,9,251,176,64],[7,2,251,176,64],[7,9,102,44,145],[9,4,102,44,145],[9,7,251,176,64],[1,3,251,176,64],[1,8,102,44,145],[3,1,102,44,145],[3,10,251,176,64],[8,1,251,176,64],[8,10,102,44,145],[10,3,102,44,145],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,251,176,64],[0,7,102,44,145],[4,0,102,44,145],[4,11,251,176,64],[7,0,251,176,64],[7,11,102,44,145],[11,4,102,44,145],[11,7,251,176,64],[1,5,251,176,64],[1,6,102,44,145],[5,1,102,44,145],[5,10,251,176,64],[6,1,251,176,64],[6,10,102,44,145],[10,5,102,44,145],[10,6,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR3-SANS-YANG-X-YANG":[[[4,5,238,40,124],[4,6,102,44,145],[5,4,238,40,124],[5,7,102,44,145],[6,4,102,44,145],[6,7,238,40,124],[7,5,102,44,145],[7,6,238,40,124],[0,1,102,44,145],[0,10,238,40,124],[1,0,102,44,145],[1,11,238,40,124],[10,0,238,40,124],[10,11,102,44,145],[11,1,238,40,124],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,102,44,145],[4,3,238,40,124],[4,8,102,44,145],[7,3,102,44,145],[7,8,238,40,124],[8,4,102,44,145],[8,7,238,40,124],[1,2,102,44,145],[1,9,238,40,124],[2,1,102,44,145],[2,10,238,40,124],[9,1,238,40,124],[9,10,102,44,145],[10,2,238,40,124],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,102,44,145],[5,3,238,40,124],[5,8,102,44,145],[6,3,102,44,145],[6,8,238,40,124],[8,5,102,44,145],[8,6,238,40,124],[0,2,102,44,145],[0,9,238,40,124],[2,0,102,44,145],[2,11,238,40,124],[9,0,238,40,124],[9,11,102,44,145],[11,2,238,40,124],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,238,40,124],[5,2,102,44,145],[5,9,238,40,124],[6,2,238,40,124],[6,9,102,44,145],[9,5,238,40,124],[9,6,102,44,145],[0,3,238,40,124],[0,8,102,44,145],[3,0,238,40,124],[3,11,102,44,145],[8,0,102,44,145],[8,11,238,40,124],[11,3,102,44,145],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,238,40,124],[4,2,102,44,145],[4,9,238,40,124],[7,2,238,40,124],[7,9,102,44,145],[9,4,238,40,124],[9,7,102,44,145],[1,3,238,40,124],[1,8,102,44,145],[3,1,238,40,124],[3,10,102,44,145],[8,1,102,44,145],[8,10,238,40,124],[10,3,102,44,145],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,238,40,124],[5,1,102,44,145],[5,10,238,40,124],[6,1,238,40,124],[6,10,102,44,145],[10,5,238,40,124],[10,6,102,44,145],[0,4,238,40,124],[0,7,102,44,145],[4,0,238,40,124],[4,11,102,44,145],[7,0,102,44,145],[7,11,238,40,124],[11,4,102,44,145],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR3-SANS-YANG-X-YANG-MUT":[[[4,5,102,44,145],[4,6,238,40,124],[5,4,102,44,145],[5,7,238,40,124],[6,4,238,40,124],[6,7,102,44,145],[7,5,238,40,124],[7,6,102,44,145],[0,1,238,40,124],[0,10,102,44,145],[1,0,238,40,124],[1,11,102,44,145],[10,0,102,44,145],[10,11,238,40,124],[11,1,102,44,145],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,238,40,124],[4,3,102,44,145],[4,8,238,40,124],[7,3,238,40,124],[7,8,102,44,145],[8,4,238,40,124],[8,7,102,44,145],[1,2,238,40,124],[1,9,102,44,145],[2,1,238,40,124],[2,10,102,44,145],[9,1,102,44,145],[9,10,238,40,124],[10,2,102,44,145],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,238,40,124],[5,3,102,44,145],[5,8,238,40,124],[6,3,238,40,124],[6,8,102,44,145],[8,5,238,40,124],[8,6,102,44,145],[0,2,238,40,124],[0,9,102,44,145],[2,0,238,40,124],[2,11,102,44,145],[9,0,102,44,145],[9,11,238,40,124],[11,2,102,44,145],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,102,44,145],[5,2,238,40,124],[5,9,102,44,145],[6,2,102,44,145],[6,9,238,40,124],[9,5,102,44,145],[9,6,238,40,124],[0,3,102,44,145],[0,8,238,40,124],[3,0,102,44,145],[3,11,238,40,124],[8,0,238,40,124],[8,11,102,44,145],[11,3,238,40,124],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,102,44,145],[4,2,238,40,124],[4,9,102,44,145],[7,2,102,44,145],[7,9,238,40,124],[9,4,102,44,145],[9,7,238,40,124],[1,3,102,44,145],[1,8,238,40,124],[3,1,102,44,145],[3,10,238,40,124],[8,1,238,40,124],[8,10,102,44,145],[10,3,238,40,124],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,102,44,145],[5,1,238,40,124],[5,10,102,44,145],[6,1,102,44,145],[6,10,238,40,124],[10,5,102,44,145],[10,6,238,40,124],[0,4,102,44,145],[0,7,238,40,124],[4,0,102,44,145],[4,11,238,40,124],[7,0,238,40,124],[7,11,102,44,145],[11,4,238,40,124],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR3-SANS-YANG-X-YIN":[[[4,5,102,44,145],[4,6,251,176,64],[5,4,102,44,145],[5,7,251,176,64],[6,4,251,176,64],[6,7,102,44,145],[7,5,251,176,64],[7,6,102,44,145],[0,1,251,176,64],[0,10,102,44,145],[1,0,251,176,64],[1,11,102,44,145],[10,0,102,44,145],[10,11,251,176,64],[11,1,102,44,145],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,251,176,64],[4,3,102,44,145],[4,8,251,176,64],[7,3,251,176,64],[7,8,102,44,145],[8,4,251,176,64],[8,7,102,44,145],[1,2,251,176,64],[1,9,102,44,145],[2,1,251,176,64],[2,10,102,44,145],[9,1,102,44,145],[9,10,251,176,64],[10,2,102,44,145],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,102,44,145],[3,6,251,176,64],[5,3,102,44,145],[5,8,251,176,64],[6,3,251,176,64],[6,8,102,44,145],[8,5,251,176,64],[8,6,102,44,145],[0,2,251,176,64],[0,9,102,44,145],[2,0,251,176,64],[2,11,102,44,145],[9,0,102,44,145],[9,11,251,176,64],[11,2,102,44,145],[11,9,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,102,44,145],[5,2,251,176,64],[5,9,102,44,145],[6,2,102,44,145],[6,9,251,176,64],[9,5,102,44,145],[9,6,251,176,64],[0,3,102,44,145],[0,8,251,176,64],[3,0,102,44,145],[3,11,251,176,64],[8,0,251,176,64],[8,11,102,44,145],[11,3,251,176,64],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,102,44,145],[4,2,251,176,64],[4,9,102,44,145],[7,2,102,44,145],[7,9,251,176,64],[9,4,102,44,145],[9,7,251,176,64],[1,3,102,44,145],[1,8,251,176,64],[3,1,102,44,145],[3,10,251,176,64],[8,1,251,176,64],[8,10,102,44,145],[10,3,251,176,64],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,251,176,64],[1,6,102,44,145],[5,1,251,176,64],[5,10,102,44,145],[6,1,102,44,145],[6,10,251,176,64],[10,5,102,44,145],[10,6,251,176,64],[0,4,102,44,145],[0,7,251,176,64],[4,0,102,44,145],[4,11,251,176,64],[7,0,251,176,64],[7,11,102,44,145],[11,4,251,176,64],[11,7,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR3-SANS-YANG-X-YIN-MUT":[[[4,5,251,176,64],[4,6,102,44,145],[5,4,251,176,64],[5,7,102,44,145],[6,4,102,44,145],[6,7,251,176,64],[7,5,102,44,145],[7,6,251,176,64],[0,1,102,44,145],[0,10,251,176,64],[1,0,102,44,145],[1,11,251,176,64],[10,0,251,176,64],[10,11,102,44,145],[11,1,251,176,64],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,102,44,145],[4,3,251,176,64],[4,8,102,44,145],[7,3,102,44,145],[7,8,251,176,64],[8,4,102,44,145],[8,7,251,176,64],[1,2,102,44,145],[1,9,251,176,64],[2,1,102,44,145],[2,10,251,176,64],[9,1,251,176,64],[9,10,102,44,145],[10,2,251,176,64],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,102,44,145],[0,9,251,176,64],[2,0,102,44,145],[2,11,251,176,64],[9,0,251,176,64],[9,11,102,44,145],[11,2,251,176,64],[11,9,102,44,145],[3,5,251,176,64],[3,6,102,44,145],[5,3,251,176,64],[5,8,102,44,145],[6,3,102,44,145],[6,8,251,176,64],[8,5,102,44,145],[8,6,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,251,176,64],[5,2,102,44,145],[5,9,251,176,64],[6,2,251,176,64],[6,9,102,44,145],[9,5,251,176,64],[9,6,102,44,145],[0,3,251,176,64],[0,8,102,44,145],[3,0,251,176,64],[3,11,102,44,145],[8,0,102,44,145],[8,11,251,176,64],[11,3,102,44,145],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,251,176,64],[4,2,102,44,145],[4,9,251,176,64],[7,2,251,176,64],[7,9,102,44,145],[9,4,251,176,64],[9,7,102,44,145],[1,3,251,176,64],[1,8,102,44,145],[3,1,251,176,64],[3,10,102,44,145],[8,1,102,44,145],[8,10,251,176,64],[10,3,102,44,145],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,251,176,64],[0,7,102,44,145],[4,0,251,176,64],[4,11,102,44,145],[7,0,102,44,145],[7,11,251,176,64],[11,4,102,44,145],[11,7,251,176,64],[1,5,102,44,145],[1,6,251,176,64],[5,1,102,44,145],[5,10,251,176,64],[6,1,251,176,64],[6,10,102,44,145],[10,5,251,176,64],[10,6,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR3-SANS-YIN-MUT-X-YANG":[[[4,5,102,44,145],[4,6,238,40,124],[5,4,238,40,124],[5,7,102,44,145],[6,4,102,44,145],[6,7,238,40,124],[7,5,238,40,124],[7,6,102,44,145],[0,1,238,40,124],[0,10,102,44,145],[1,0,102,44,145],[1,11,238,40,124],[10,0,238,40,124],[10,11,102,44,145],[11,1,102,44,145],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,238,40,124],[4,3,238,40,124],[4,8,102,44,145],[7,3,102,44,145],[7,8,238,40,124],[8,4,238,40,124],[8,7,102,44,145],[1,2,238,40,124],[1,9,102,44,145],[2,1,102,44,145],[2,10,238,40,124],[9,1,238,40,124],[9,10,102,44,145],[10,2,102,44,145],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,238,40,124],[5,3,238,40,124],[5,8,102,44,145],[6,3,102,44,145],[6,8,238,40,124],[8,5,238,40,124],[8,6,102,44,145],[0,2,238,40,124],[0,9,102,44,145],[2,0,102,44,145],[2,11,238,40,124],[9,0,238,40,124],[9,11,102,44,145],[11,2,102,44,145],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,238,40,124],[5,2,238,40,124],[5,9,102,44,145],[6,2,102,44,145],[6,9,238,40,124],[9,5,238,40,124],[9,6,102,44,145],[0,3,238,40,124],[0,8,102,44,145],[3,0,102,44,145],[3,11,238,40,124],[8,0,238,40,124],[8,11,102,44,145],[11,3,102,44,145],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,238,40,124],[4,2,238,40,124],[4,9,102,44,145],[7,2,102,44,145],[7,9,238,40,124],[9,4,238,40,124],[9,7,102,44,145],[1,3,238,40,124],[1,8,102,44,145],[3,1,102,44,145],[3,10,238,40,124],[8,1,238,40,124],[8,10,102,44,145],[10,3,102,44,145],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,238,40,124],[5,1,238,40,124],[5,10,102,44,145],[6,1,102,44,145],[6,10,238,40,124],[10,5,238,40,124],[10,6,102,44,145],[0,4,238,40,124],[0,7,102,44,145],[4,0,102,44,145],[4,11,238,40,124],[7,0,238,40,124],[7,11,102,44,145],[11,4,102,44,145],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR3-SANS-YIN-MUT-X-YANG-MUT":[[[4,5,238,40,124],[4,6,102,44,145],[5,4,102,44,145],[5,7,238,40,124],[6,4,238,40,124],[6,7,102,44,145],[7,5,102,44,145],[7,6,238,40,124],[0,1,102,44,145],[0,10,238,40,124],[1,0,238,40,124],[1,11,102,44,145],[10,0,102,44,145],[10,11,238,40,124],[11,1,238,40,124],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,102,44,145],[4,3,102,44,145],[4,8,238,40,124],[7,3,238,40,124],[7,8,102,44,145],[8,4,102,44,145],[8,7,238,40,124],[1,2,102,44,145],[1,9,238,40,124],[2,1,238,40,124],[2,10,102,44,145],[9,1,102,44,145],[9,10,238,40,124],[10,2,238,40,124],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,102,44,145],[5,3,102,44,145],[5,8,238,40,124],[6,3,238,40,124],[6,8,102,44,145],[8,5,102,44,145],[8,6,238,40,124],[0,2,102,44,145],[0,9,238,40,124],[2,0,238,40,124],[2,11,102,44,145],[9,0,102,44,145],[9,11,238,40,124],[11,2,238,40,124],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,102,44,145],[5,2,102,44,145],[5,9,238,40,124],[6,2,238,40,124],[6,9,102,44,145],[9,5,102,44,145],[9,6,238,40,124],[0,3,102,44,145],[0,8,238,40,124],[3,0,238,40,124],[3,11,102,44,145],[8,0,102,44,145],[8,11,238,40,124],[11,3,238,40,124],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,102,44,145],[4,2,102,44,145],[4,9,238,40,124],[7,2,238,40,124],[7,9,102,44,145],[9,4,102,44,145],[9,7,238,40,124],[1,3,102,44,145],[1,8,238,40,124],[3,1,238,40,124],[3,10,102,44,145],[8,1,102,44,145],[8,10,238,40,124],[10,3,238,40,124],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,102,44,145],[5,1,102,44,145],[5,10,238,40,124],[6,1,238,40,124],[6,10,102,44,145],[10,5,102,44,145],[10,6,238,40,124],[0,4,102,44,145],[0,7,238,40,124],[4,0,238,40,124],[4,11,102,44,145],[7,0,102,44,145],[7,11,238,40,124],[11,4,238,40,124],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR3-SANS-YIN-MUT-X-YIN":[[[4,5,251,176,64],[4,6,102,44,145],[5,4,102,44,145],[5,7,251,176,64],[6,4,251,176,64],[6,7,102,44,145],[7,5,102,44,145],[7,6,251,176,64],[0,1,102,44,145],[0,10,251,176,64],[1,0,251,176,64],[1,11,102,44,145],[10,0,102,44,145],[10,11,251,176,64],[11,1,251,176,64],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,102,44,145],[4,3,102,44,145],[4,8,251,176,64],[7,3,251,176,64],[7,8,102,44,145],[8,4,102,44,145],[8,7,251,176,64],[1,2,102,44,145],[1,9,251,176,64],[2,1,251,176,64],[2,10,102,44,145],[9,1,102,44,145],[9,10,251,176,64],[10,2,251,176,64],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,251,176,64],[3,6,102,44,145],[5,3,102,44,145],[5,8,251,176,64],[6,3,251,176,64],[6,8,102,44,145],[8,5,102,44,145],[8,6,251,176,64],[0,2,102,44,145],[0,9,251,176,64],[2,0,251,176,64],[2,11,102,44,145],[9,0,102,44,145],[9,11,251,176,64],[11,2,251,176,64],[11,9,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,102,44,145],[5,2,102,44,145],[5,9,251,176,64],[6,2,251,176,64],[6,9,102,44,145],[9,5,102,44,145],[9,6,251,176,64],[0,3,102,44,145],[0,8,251,176,64],[3,0,251,176,64],[3,11,102,44,145],[8,0,102,44,145],[8,11,251,176,64],[11,3,251,176,64],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,102,44,145],[4,2,102,44,145],[4,9,251,176,64],[7,2,251,176,64],[7,9,102,44,145],[9,4,102,44,145],[9,7,251,176,64],[1,3,102,44,145],[1,8,251,176,64],[3,1,251,176,64],[3,10,102,44,145],[8,1,102,44,145],[8,10,251,176,64],[10,3,251,176,64],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,251,176,64],[1,6,102,44,145],[5,1,102,44,145],[5,10,251,176,64],[6,1,251,176,64],[6,10,102,44,145],[10,5,102,44,145],[10,6,251,176,64],[0,4,102,44,145],[0,7,251,176,64],[4,0,251,176,64],[4,11,102,44,145],[7,0,102,44,145],[7,11,251,176,64],[11,4,251,176,64],[11,7,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR3-SANS-YIN-MUT-X-YIN-MUT":[[[4,5,102,44,145],[4,6,251,176,64],[5,4,251,176,64],[5,7,102,44,145],[6,4,102,44,145],[6,7,251,176,64],[7,5,251,176,64],[7,6,102,44,145],[0,1,251,176,64],[0,10,102,44,145],[1,0,102,44,145],[1,11,251,176,64],[10,0,251,176,64],[10,11,102,44,145],[11,1,102,44,145],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,251,176,64],[4,3,251,176,64],[4,8,102,44,145],[7,3,102,44,145],[7,8,251,176,64],[8,4,251,176,64],[8,7,102,44,145],[1,2,251,176,64],[1,9,102,44,145],[2,1,102,44,145],[2,10,251,176,64],[9,1,251,176,64],[9,10,102,44,145],[10,2,102,44,145],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,251,176,64],[0,9,102,44,145],[2,0,102,44,145],[2,11,251,176,64],[9,0,251,176,64],[9,11,102,44,145],[11,2,102,44,145],[11,9,251,176,64],[3,5,102,44,145],[3,6,251,176,64],[5,3,251,176,64],[5,8,102,44,145],[6,3,102,44,145],[6,8,251,176,64],[8,5,251,176,64],[8,6,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,251,176,64],[5,2,251,176,64],[5,9,102,44,145],[6,2,102,44,145],[6,9,251,176,64],[9,5,251,176,64],[9,6,102,44,145],[0,3,251,176,64],[0,8,102,44,145],[3,0,102,44,145],[3,11,251,176,64],[8,0,251,176,64],[8,11,102,44,145],[11,3,102,44,145],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,251,176,64],[4,2,251,176,64],[4,9,102,44,145],[7,2,102,44,145],[7,9,251,176,64],[9,4,251,176,64],[9,7,102,44,145],[1,3,251,176,64],[1,8,102,44,145],[3,1,102,44,145],[3,10,251,176,64],[8,1,251,176,64],[8,10,102,44,145],[10,3,102,44,145],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,251,176,64],[0,7,102,44,145],[4,0,102,44,145],[4,11,251,176,64],[7,0,251,176,64],[7,11,102,44,145],[11,4,102,44,145],[11,7,251,176,64],[1,5,102,44,145],[1,6,251,176,64],[5,1,251,176,64],[5,10,102,44,145],[6,1,102,44,145],[6,10,251,176,64],[10,5,251,176,64],[10,6,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR3-SANS-YIN-X-YANG":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,238,40,124],[5,7,238,40,124],[6,4,238,40,124],[6,7,238,40,124],[7,5,102,44,145],[7,6,102,44,145],[0,1,238,40,124],[0,10,238,40,124],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,238,40,124],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,238,40,124],[4,8,238,40,124],[7,3,238,40,124],[7,8,238,40,124],[8,4,102,44,145],[8,7,102,44,145],[1,2,238,40,124],[1,9,238,40,124],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,238,40,124],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,238,40,124],[5,8,238,40,124],[6,3,238,40,124],[6,8,238,40,124],[8,5,102,44,145],[8,6,102,44,145],[0,2,238,40,124],[0,9,238,40,124],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,238,40,124],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,238,40,124],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,238,40,124],[9,6,238,40,124],[0,3,102,44,145],[0,8,102,44,145],[3,0,238,40,124],[3,11,238,40,124],[8,0,238,40,124],[8,11,238,40,124],[11,3,102,44,145],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,238,40,124],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,238,40,124],[9,7,238,40,124],[1,3,102,44,145],[1,8,102,44,145],[3,1,238,40,124],[3,10,238,40,124],[8,1,238,40,124],[8,10,238,40,124],[10,3,102,44,145],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,238,40,124],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,238,40,124],[10,6,238,40,124],[0,4,102,44,145],[0,7,102,44,145],[4,0,238,40,124],[4,11,238,40,124],[7,0,238,40,124],[7,11,238,40,124],[11,4,102,44,145],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR3-SANS-YIN-X-YANG-MUT":[[[4,5,238,40,124],[4,6,238,40,124],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,238,40,124],[7,6,238,40,124],[0,1,102,44,145],[0,10,102,44,145],[1,0,238,40,124],[1,11,238,40,124],[10,0,238,40,124],[10,11,238,40,124],[11,1,102,44,145],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,238,40,124],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,238,40,124],[8,7,238,40,124],[1,2,102,44,145],[1,9,102,44,145],[2,1,238,40,124],[2,10,238,40,124],[9,1,238,40,124],[9,10,238,40,124],[10,2,102,44,145],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,238,40,124],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,238,40,124],[8,6,238,40,124],[0,2,102,44,145],[0,9,102,44,145],[2,0,238,40,124],[2,11,238,40,124],[9,0,238,40,124],[9,11,238,40,124],[11,2,102,44,145],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,238,40,124],[5,9,238,40,124],[6,2,238,40,124],[6,9,238,40,124],[9,5,102,44,145],[9,6,102,44,145],[0,3,238,40,124],[0,8,238,40,124],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,238,40,124],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,238,40,124],[4,9,238,40,124],[7,2,238,40,124],[7,9,238,40,124],[9,4,102,44,145],[9,7,102,44,145],[1,3,238,40,124],[1,8,238,40,124],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,238,40,124],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,102,44,145],[5,1,238,40,124],[5,10,238,40,124],[6,1,238,40,124],[6,10,238,40,124],[10,5,102,44,145],[10,6,102,44,145],[0,4,238,40,124],[0,7,238,40,124],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,238,40,124],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"KRE-360-PAR3-SANS-YIN-X-YIN":[[[4,5,251,176,64],[4,6,251,176,64],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,251,176,64],[7,6,251,176,64],[0,1,102,44,145],[0,10,102,44,145],[1,0,251,176,64],[1,11,251,176,64],[10,0,251,176,64],[10,11,251,176,64],[11,1,102,44,145],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,251,176,64],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,251,176,64],[8,7,251,176,64],[1,2,102,44,145],[1,9,102,44,145],[2,1,251,176,64],[2,10,251,176,64],[9,1,251,176,64],[9,10,251,176,64],[10,2,102,44,145],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,251,176,64],[3,6,251,176,64],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,251,176,64],[8,6,251,176,64],[0,2,102,44,145],[0,9,102,44,145],[2,0,251,176,64],[2,11,251,176,64],[9,0,251,176,64],[9,11,251,176,64],[11,2,102,44,145],[11,9,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,251,176,64],[5,9,251,176,64],[6,2,251,176,64],[6,9,251,176,64],[9,5,102,44,145],[9,6,102,44,145],[0,3,251,176,64],[0,8,251,176,64],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,251,176,64],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,251,176,64],[4,9,251,176,64],[7,2,251,176,64],[7,9,251,176,64],[9,4,102,44,145],[9,7,102,44,145],[1,3,251,176,64],[1,8,251,176,64],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,251,176,64],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,102,44,145],[1,6,102,44,145],[5,1,251,176,64],[5,10,251,176,64],[6,1,251,176,64],[6,10,251,176,64],[10,5,102,44,145],[10,6,102,44,145],[0,4,251,176,64],[0,7,251,176,64],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,251,176,64],[11,7,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"KRE-360-PAR3-SANS-YIN-X-YIN-MUT":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,251,176,64],[5,7,251,176,64],[6,4,251,176,64],[6,7,251,176,64],[7,5,102,44,145],[7,6,102,44,145],[0,1,251,176,64],[0,10,251,176,64],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,251,176,64],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,251,176,64],[4,8,251,176,64],[7,3,251,176,64],[7,8,251,176,64],[8,4,102,44,145],[8,7,102,44,145],[1,2,251,176,64],[1,9,251,176,64],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,251,176,64],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,251,176,64],[0,9,251,176,64],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,251,176,64],[11,9,251,176,64],[3,5,102,44,145],[3,6,102,44,145],[5,3,251,176,64],[5,8,251,176,64],[6,3,251,176,64],[6,8,251,176,64],[8,5,102,44,145],[8,6,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,251,176,64],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,251,176,64],[9,6,251,176,64],[0,3,102,44,145],[0,8,102,44,145],[3,0,251,176,64],[3,11,251,176,64],[8,0,251,176,64],[8,11,251,176,64],[11,3,102,44,145],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,251,176,64],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,251,176,64],[9,7,251,176,64],[1,3,102,44,145],[1,8,102,44,145],[3,1,251,176,64],[3,10,251,176,64],[8,1,251,176,64],[8,10,251,176,64],[10,3,102,44,145],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,102,44,145],[0,7,102,44,145],[4,0,251,176,64],[4,11,251,176,64],[7,0,251,176,64],[7,11,251,176,64],[11,4,102,44,145],[11,7,102,44,145],[1,5,251,176,64],[1,6,251,176,64],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,251,176,64],[10,6,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-BASES-YANG-MUT-YANG":[[[4,5,238,40,124],[4,6,238,40,124],[5,4,238,40,124],[5,7,238,40,124],[6,4,238,40,124],[6,7,238,40,124],[7,5,238,40,124],[7,6,238,40,124],[0,1,102,44,145],[0,10,102,44,145],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,102,44,145],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,238,40,124],[4,3,238,40,124],[4,8,238,40,124],[7,3,238,40,124],[7,8,238,40,124],[8,4,238,40,124],[8,7,238,40,124],[1,2,102,44,145],[1,9,102,44,145],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,102,44,145],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,238,40,124],[5,3,238,40,124],[5,8,238,40,124],[6,3,238,40,124],[6,8,238,40,124],[8,5,238,40,124],[8,6,238,40,124],[0,2,102,44,145],[0,9,102,44,145],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,102,44,145],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,238,40,124],[5,2,238,40,124],[5,9,238,40,124],[6,2,238,40,124],[6,9,238,40,124],[9,5,238,40,124],[9,6,238,40,124],[0,3,102,44,145],[0,8,102,44,145],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,102,44,145],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,238,40,124],[4,2,238,40,124],[4,9,238,40,124],[7,2,238,40,124],[7,9,238,40,124],[9,4,238,40,124],[9,7,238,40,124],[1,3,102,44,145],[1,8,102,44,145],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,102,44,145],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,238,40,124],[5,1,238,40,124],[5,10,238,40,124],[6,1,238,40,124],[6,10,238,40,124],[10,5,238,40,124],[10,6,238,40,124],[0,4,102,44,145],[0,7,102,44,145],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,102,44,145],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-BASES-YANG-MUT-YANG-MUT":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,102,44,145],[7,6,102,44,145],[0,1,238,40,124],[0,10,238,40,124],[1,0,238,40,124],[1,11,238,40,124],[10,0,238,40,124],[10,11,238,40,124],[11,1,238,40,124],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,102,44,145],[8,7,102,44,145],[1,2,238,40,124],[1,9,238,40,124],[2,1,238,40,124],[2,10,238,40,124],[9,1,238,40,124],[9,10,238,40,124],[10,2,238,40,124],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,102,44,145],[8,6,102,44,145],[0,2,238,40,124],[0,9,238,40,124],[2,0,238,40,124],[2,11,238,40,124],[9,0,238,40,124],[9,11,238,40,124],[11,2,238,40,124],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,102,44,145],[9,6,102,44,145],[0,3,238,40,124],[0,8,238,40,124],[3,0,238,40,124],[3,11,238,40,124],[8,0,238,40,124],[8,11,238,40,124],[11,3,238,40,124],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,102,44,145],[9,7,102,44,145],[1,3,238,40,124],[1,8,238,40,124],[3,1,238,40,124],[3,10,238,40,124],[8,1,238,40,124],[8,10,238,40,124],[10,3,238,40,124],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,102,44,145],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,102,44,145],[10,6,102,44,145],[0,4,238,40,124],[0,7,238,40,124],[4,0,238,40,124],[4,11,238,40,124],[7,0,238,40,124],[7,11,238,40,124],[11,4,238,40,124],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-BASES-YANG-MUT-YIN":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,102,44,145],[7,6,102,44,145],[0,1,251,176,64],[0,10,251,176,64],[1,0,251,176,64],[1,11,251,176,64],[10,0,251,176,64],[10,11,251,176,64],[11,1,251,176,64],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,102,44,145],[8,7,102,44,145],[1,2,251,176,64],[1,9,251,176,64],[2,1,251,176,64],[2,10,251,176,64],[9,1,251,176,64],[9,10,251,176,64],[10,2,251,176,64],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,102,44,145],[8,6,102,44,145],[0,2,251,176,64],[0,9,251,176,64],[2,0,251,176,64],[2,11,251,176,64],[9,0,251,176,64],[9,11,251,176,64],[11,2,251,176,64],[11,9,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,102,44,145],[9,6,102,44,145],[0,3,251,176,64],[0,8,251,176,64],[3,0,251,176,64],[3,11,251,176,64],[8,0,251,176,64],[8,11,251,176,64],[11,3,251,176,64],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,102,44,145],[9,7,102,44,145],[1,3,251,176,64],[1,8,251,176,64],[3,1,251,176,64],[3,10,251,176,64],[8,1,251,176,64],[8,10,251,176,64],[10,3,251,176,64],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,102,44,145],[1,6,102,44,145],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,102,44,145],[10,6,102,44,145],[0,4,251,176,64],[0,7,251,176,64],[4,0,251,176,64],[4,11,251,176,64],[7,0,251,176,64],[7,11,251,176,64],[11,4,251,176,64],[11,7,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-BASES-YANG-MUT-YIN-MUT":[[[4,5,251,176,64],[4,6,251,176,64],[5,4,251,176,64],[5,7,251,176,64],[6,4,251,176,64],[6,7,251,176,64],[7,5,251,176,64],[7,6,251,176,64],[0,1,102,44,145],[0,10,102,44,145],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,102,44,145],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,251,176,64],[4,3,251,176,64],[4,8,251,176,64],[7,3,251,176,64],[7,8,251,176,64],[8,4,251,176,64],[8,7,251,176,64],[1,2,102,44,145],[1,9,102,44,145],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,102,44,145],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,102,44,145],[0,9,102,44,145],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,102,44,145],[11,9,102,44,145],[3,5,251,176,64],[3,6,251,176,64],[5,3,251,176,64],[5,8,251,176,64],[6,3,251,176,64],[6,8,251,176,64],[8,5,251,176,64],[8,6,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,251,176,64],[5,2,251,176,64],[5,9,251,176,64],[6,2,251,176,64],[6,9,251,176,64],[9,5,251,176,64],[9,6,251,176,64],[0,3,102,44,145],[0,8,102,44,145],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,102,44,145],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,251,176,64],[4,2,251,176,64],[4,9,251,176,64],[7,2,251,176,64],[7,9,251,176,64],[9,4,251,176,64],[9,7,251,176,64],[1,3,102,44,145],[1,8,102,44,145],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,102,44,145],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,102,44,145],[0,7,102,44,145],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,102,44,145],[11,7,102,44,145],[1,5,251,176,64],[1,6,251,176,64],[5,1,251,176,64],[5,10,251,176,64],[6,1,251,176,64],[6,10,251,176,64],[10,5,251,176,64],[10,6,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-BASES-YANG-YANG":[[[4,5,238,40,124],[4,6,238,40,124],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,238,40,124],[7,6,238,40,124],[0,1,238,40,124],[0,10,238,40,124],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,238,40,124],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,238,40,124],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,238,40,124],[8,7,238,40,124],[1,2,238,40,124],[1,9,238,40,124],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,238,40,124],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,238,40,124],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,238,40,124],[8,6,238,40,124],[0,2,238,40,124],[0,9,238,40,124],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,238,40,124],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,238,40,124],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,238,40,124],[9,6,238,40,124],[0,3,238,40,124],[0,8,238,40,124],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,238,40,124],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,238,40,124],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,238,40,124],[9,7,238,40,124],[1,3,238,40,124],[1,8,238,40,124],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,238,40,124],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,238,40,124],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,238,40,124],[10,6,238,40,124],[0,4,238,40,124],[0,7,238,40,124],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,238,40,124],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-BASES-YANG-YANG-MUT":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,238,40,124],[5,7,238,40,124],[6,4,238,40,124],[6,7,238,40,124],[7,5,102,44,145],[7,6,102,44,145],[0,1,102,44,145],[0,10,102,44,145],[1,0,238,40,124],[1,11,238,40,124],[10,0,238,40,124],[10,11,238,40,124],[11,1,102,44,145],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,238,40,124],[4,8,238,40,124],[7,3,238,40,124],[7,8,238,40,124],[8,4,102,44,145],[8,7,102,44,145],[1,2,102,44,145],[1,9,102,44,145],[2,1,238,40,124],[2,10,238,40,124],[9,1,238,40,124],[9,10,238,40,124],[10,2,102,44,145],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,238,40,124],[5,8,238,40,124],[6,3,238,40,124],[6,8,238,40,124],[8,5,102,44,145],[8,6,102,44,145],[0,2,102,44,145],[0,9,102,44,145],[2,0,238,40,124],[2,11,238,40,124],[9,0,238,40,124],[9,11,238,40,124],[11,2,102,44,145],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,238,40,124],[5,9,238,40,124],[6,2,238,40,124],[6,9,238,40,124],[9,5,102,44,145],[9,6,102,44,145],[0,3,102,44,145],[0,8,102,44,145],[3,0,238,40,124],[3,11,238,40,124],[8,0,238,40,124],[8,11,238,40,124],[11,3,102,44,145],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,238,40,124],[4,9,238,40,124],[7,2,238,40,124],[7,9,238,40,124],[9,4,102,44,145],[9,7,102,44,145],[1,3,102,44,145],[1,8,102,44,145],[3,1,238,40,124],[3,10,238,40,124],[8,1,238,40,124],[8,10,238,40,124],[10,3,102,44,145],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,102,44,145],[5,1,238,40,124],[5,10,238,40,124],[6,1,238,40,124],[6,10,238,40,124],[10,5,102,44,145],[10,6,102,44,145],[0,4,102,44,145],[0,7,102,44,145],[4,0,238,40,124],[4,11,238,40,124],[7,0,238,40,124],[7,11,238,40,124],[11,4,102,44,145],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-BASES-YANG-YING":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,251,176,64],[5,7,251,176,64],[6,4,251,176,64],[6,7,251,176,64],[7,5,102,44,145],[7,6,102,44,145],[0,1,102,44,145],[0,10,102,44,145],[1,0,251,176,64],[1,11,251,176,64],[10,0,251,176,64],[10,11,251,176,64],[11,1,102,44,145],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,251,176,64],[4,8,251,176,64],[7,3,251,176,64],[7,8,251,176,64],[8,4,102,44,145],[8,7,102,44,145],[1,2,102,44,145],[1,9,102,44,145],[2,1,251,176,64],[2,10,251,176,64],[9,1,251,176,64],[9,10,251,176,64],[10,2,102,44,145],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,251,176,64],[5,8,251,176,64],[6,3,251,176,64],[6,8,251,176,64],[8,5,102,44,145],[8,6,102,44,145],[0,2,102,44,145],[0,9,102,44,145],[2,0,251,176,64],[2,11,251,176,64],[9,0,251,176,64],[9,11,251,176,64],[11,2,102,44,145],[11,9,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,251,176,64],[5,9,251,176,64],[6,2,251,176,64],[6,9,251,176,64],[9,5,102,44,145],[9,6,102,44,145],[0,3,102,44,145],[0,8,102,44,145],[3,0,251,176,64],[3,11,251,176,64],[8,0,251,176,64],[8,11,251,176,64],[11,3,102,44,145],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,251,176,64],[4,9,251,176,64],[7,2,251,176,64],[7,9,251,176,64],[9,4,102,44,145],[9,7,102,44,145],[1,3,102,44,145],[1,8,102,44,145],[3,1,251,176,64],[3,10,251,176,64],[8,1,251,176,64],[8,10,251,176,64],[10,3,102,44,145],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,102,44,145],[1,6,102,44,145],[5,1,251,176,64],[5,10,251,176,64],[6,1,251,176,64],[6,10,251,176,64],[10,5,102,44,145],[10,6,102,44,145],[0,4,102,44,145],[0,7,102,44,145],[4,0,251,176,64],[4,11,251,176,64],[7,0,251,176,64],[7,11,251,176,64],[11,4,102,44,145],[11,7,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-BASES-YANG-YING-MUT":[[[4,5,251,176,64],[4,6,251,176,64],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,251,176,64],[7,6,251,176,64],[0,1,251,176,64],[0,10,251,176,64],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,251,176,64],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,251,176,64],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,251,176,64],[8,7,251,176,64],[1,2,251,176,64],[1,9,251,176,64],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,251,176,64],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,251,176,64],[0,9,251,176,64],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,251,176,64],[11,9,251,176,64],[3,5,251,176,64],[3,6,251,176,64],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,251,176,64],[8,6,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,251,176,64],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,251,176,64],[9,6,251,176,64],[0,3,251,176,64],[0,8,251,176,64],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,251,176,64],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,251,176,64],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,251,176,64],[9,7,251,176,64],[1,3,251,176,64],[1,8,251,176,64],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,251,176,64],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,251,176,64],[0,7,251,176,64],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,251,176,64],[11,7,251,176,64],[1,5,251,176,64],[1,6,251,176,64],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,251,176,64],[10,6,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-BASES-YIN-MUT-YANG":[[[4,5,238,40,124],[4,6,238,40,124],[5,4,238,40,124],[5,7,238,40,124],[6,4,238,40,124],[6,7,238,40,124],[7,5,238,40,124],[7,6,238,40,124],[0,1,238,40,124],[0,10,238,40,124],[1,0,238,40,124],[1,11,238,40,124],[10,0,238,40,124],[10,11,238,40,124],[11,1,238,40,124],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,238,40,124],[4,3,238,40,124],[4,8,238,40,124],[7,3,238,40,124],[7,8,238,40,124],[8,4,238,40,124],[8,7,238,40,124],[1,2,238,40,124],[1,9,238,40,124],[2,1,238,40,124],[2,10,238,40,124],[9,1,238,40,124],[9,10,238,40,124],[10,2,238,40,124],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,238,40,124],[5,3,238,40,124],[5,8,238,40,124],[6,3,238,40,124],[6,8,238,40,124],[8,5,238,40,124],[8,6,238,40,124],[0,2,238,40,124],[0,9,238,40,124],[2,0,238,40,124],[2,11,238,40,124],[9,0,238,40,124],[9,11,238,40,124],[11,2,238,40,124],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,102,44,145],[9,6,102,44,145],[0,3,102,44,145],[0,8,102,44,145],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,102,44,145],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,102,44,145],[9,7,102,44,145],[1,3,102,44,145],[1,8,102,44,145],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,102,44,145],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,102,44,145],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,102,44,145],[10,6,102,44,145],[0,4,102,44,145],[0,7,102,44,145],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,102,44,145],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-BASES-YIN-MUT-YANG-MUT":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,102,44,145],[7,6,102,44,145],[0,1,102,44,145],[0,10,102,44,145],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,102,44,145],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,102,44,145],[8,7,102,44,145],[1,2,102,44,145],[1,9,102,44,145],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,102,44,145],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,102,44,145],[8,6,102,44,145],[0,2,102,44,145],[0,9,102,44,145],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,102,44,145],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,238,40,124],[5,2,238,40,124],[5,9,238,40,124],[6,2,238,40,124],[6,9,238,40,124],[9,5,238,40,124],[9,6,238,40,124],[0,3,238,40,124],[0,8,238,40,124],[3,0,238,40,124],[3,11,238,40,124],[8,0,238,40,124],[8,11,238,40,124],[11,3,238,40,124],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,238,40,124],[4,2,238,40,124],[4,9,238,40,124],[7,2,238,40,124],[7,9,238,40,124],[9,4,238,40,124],[9,7,238,40,124],[1,3,238,40,124],[1,8,238,40,124],[3,1,238,40,124],[3,10,238,40,124],[8,1,238,40,124],[8,10,238,40,124],[10,3,238,40,124],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,238,40,124],[5,1,238,40,124],[5,10,238,40,124],[6,1,238,40,124],[6,10,238,40,124],[10,5,238,40,124],[10,6,238,40,124],[0,4,238,40,124],[0,7,238,40,124],[4,0,238,40,124],[4,11,238,40,124],[7,0,238,40,124],[7,11,238,40,124],[11,4,238,40,124],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-BASES-YIN-MUT-YIN":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,102,44,145],[7,6,102,44,145],[0,1,102,44,145],[0,10,102,44,145],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,102,44,145],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,102,44,145],[8,7,102,44,145],[1,2,102,44,145],[1,9,102,44,145],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,102,44,145],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,102,44,145],[8,6,102,44,145],[0,2,102,44,145],[0,9,102,44,145],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,102,44,145],[11,9,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,251,176,64],[5,2,251,176,64],[5,9,251,176,64],[6,2,251,176,64],[6,9,251,176,64],[9,5,251,176,64],[9,6,251,176,64],[0,3,251,176,64],[0,8,251,176,64],[3,0,251,176,64],[3,11,251,176,64],[8,0,251,176,64],[8,11,251,176,64],[11,3,251,176,64],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,251,176,64],[4,2,251,176,64],[4,9,251,176,64],[7,2,251,176,64],[7,9,251,176,64],[9,4,251,176,64],[9,7,251,176,64],[1,3,251,176,64],[1,8,251,176,64],[3,1,251,176,64],[3,10,251,176,64],[8,1,251,176,64],[8,10,251,176,64],[10,3,251,176,64],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,251,176,64],[1,6,251,176,64],[5,1,251,176,64],[5,10,251,176,64],[6,1,251,176,64],[6,10,251,176,64],[10,5,251,176,64],[10,6,251,176,64],[0,4,251,176,64],[0,7,251,176,64],[4,0,251,176,64],[4,11,251,176,64],[7,0,251,176,64],[7,11,251,176,64],[11,4,251,176,64],[11,7,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-BASES-YIN-MUT-YIN-MUT":[[[4,5,251,176,64],[4,6,251,176,64],[5,4,251,176,64],[5,7,251,176,64],[6,4,251,176,64],[6,7,251,176,64],[7,5,251,176,64],[7,6,251,176,64],[0,1,251,176,64],[0,10,251,176,64],[1,0,251,176,64],[1,11,251,176,64],[10,0,251,176,64],[10,11,251,176,64],[11,1,251,176,64],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,251,176,64],[4,3,251,176,64],[4,8,251,176,64],[7,3,251,176,64],[7,8,251,176,64],[8,4,251,176,64],[8,7,251,176,64],[1,2,251,176,64],[1,9,251,176,64],[2,1,251,176,64],[2,10,251,176,64],[9,1,251,176,64],[9,10,251,176,64],[10,2,251,176,64],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,251,176,64],[0,9,251,176,64],[2,0,251,176,64],[2,11,251,176,64],[9,0,251,176,64],[9,11,251,176,64],[11,2,251,176,64],[11,9,251,176,64],[3,5,251,176,64],[3,6,251,176,64],[5,3,251,176,64],[5,8,251,176,64],[6,3,251,176,64],[6,8,251,176,64],[8,5,251,176,64],[8,6,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,102,44,145],[9,6,102,44,145],[0,3,102,44,145],[0,8,102,44,145],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,102,44,145],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,102,44,145],[9,7,102,44,145],[1,3,102,44,145],[1,8,102,44,145],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,102,44,145],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,102,44,145],[0,7,102,44,145],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,102,44,145],[11,7,102,44,145],[1,5,102,44,145],[1,6,102,44,145],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,102,44,145],[10,6,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-BASES-YIN-YANG":[[[4,5,102,44,145],[4,6,238,40,124],[5,4,102,44,145],[5,7,238,40,124],[6,4,238,40,124],[6,7,102,44,145],[7,5,238,40,124],[7,6,102,44,145],[0,1,102,44,145],[0,10,238,40,124],[1,0,102,44,145],[1,11,238,40,124],[10,0,238,40,124],[10,11,102,44,145],[11,1,238,40,124],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,238,40,124],[4,3,102,44,145],[4,8,238,40,124],[7,3,238,40,124],[7,8,102,44,145],[8,4,238,40,124],[8,7,102,44,145],[1,2,102,44,145],[1,9,238,40,124],[2,1,102,44,145],[2,10,238,40,124],[9,1,238,40,124],[9,10,102,44,145],[10,2,238,40,124],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,238,40,124],[5,3,102,44,145],[5,8,238,40,124],[6,3,238,40,124],[6,8,102,44,145],[8,5,238,40,124],[8,6,102,44,145],[0,2,102,44,145],[0,9,238,40,124],[2,0,102,44,145],[2,11,238,40,124],[9,0,238,40,124],[9,11,102,44,145],[11,2,238,40,124],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,238,40,124],[5,2,102,44,145],[5,9,238,40,124],[6,2,238,40,124],[6,9,102,44,145],[9,5,238,40,124],[9,6,102,44,145],[0,3,102,44,145],[0,8,238,40,124],[3,0,102,44,145],[3,11,238,40,124],[8,0,238,40,124],[8,11,102,44,145],[11,3,238,40,124],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,238,40,124],[4,2,102,44,145],[4,9,238,40,124],[7,2,238,40,124],[7,9,102,44,145],[9,4,238,40,124],[9,7,102,44,145],[1,3,102,44,145],[1,8,238,40,124],[3,1,102,44,145],[3,10,238,40,124],[8,1,238,40,124],[8,10,102,44,145],[10,3,238,40,124],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,238,40,124],[5,1,102,44,145],[5,10,238,40,124],[6,1,238,40,124],[6,10,102,44,145],[10,5,238,40,124],[10,6,102,44,145],[0,4,102,44,145],[0,7,238,40,124],[4,0,102,44,145],[4,11,238,40,124],[7,0,238,40,124],[7,11,102,44,145],[11,4,238,40,124],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-BASES-YIN-YANG-MUT":[[[4,5,238,40,124],[4,6,102,44,145],[5,4,238,40,124],[5,7,102,44,145],[6,4,102,44,145],[6,7,238,40,124],[7,5,102,44,145],[7,6,238,40,124],[0,1,238,40,124],[0,10,102,44,145],[1,0,238,40,124],[1,11,102,44,145],[10,0,102,44,145],[10,11,238,40,124],[11,1,102,44,145],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,102,44,145],[4,3,238,40,124],[4,8,102,44,145],[7,3,102,44,145],[7,8,238,40,124],[8,4,102,44,145],[8,7,238,40,124],[1,2,238,40,124],[1,9,102,44,145],[2,1,238,40,124],[2,10,102,44,145],[9,1,102,44,145],[9,10,238,40,124],[10,2,102,44,145],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,102,44,145],[5,3,238,40,124],[5,8,102,44,145],[6,3,102,44,145],[6,8,238,40,124],[8,5,102,44,145],[8,6,238,40,124],[0,2,238,40,124],[0,9,102,44,145],[2,0,238,40,124],[2,11,102,44,145],[9,0,102,44,145],[9,11,238,40,124],[11,2,102,44,145],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,102,44,145],[5,2,238,40,124],[5,9,102,44,145],[6,2,102,44,145],[6,9,238,40,124],[9,5,102,44,145],[9,6,238,40,124],[0,3,238,40,124],[0,8,102,44,145],[3,0,238,40,124],[3,11,102,44,145],[8,0,102,44,145],[8,11,238,40,124],[11,3,102,44,145],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,102,44,145],[4,2,238,40,124],[4,9,102,44,145],[7,2,102,44,145],[7,9,238,40,124],[9,4,102,44,145],[9,7,238,40,124],[1,3,238,40,124],[1,8,102,44,145],[3,1,238,40,124],[3,10,102,44,145],[8,1,102,44,145],[8,10,238,40,124],[10,3,102,44,145],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,102,44,145],[5,1,238,40,124],[5,10,102,44,145],[6,1,102,44,145],[6,10,238,40,124],[10,5,102,44,145],[10,6,238,40,124],[0,4,238,40,124],[0,7,102,44,145],[4,0,238,40,124],[4,11,102,44,145],[7,0,102,44,145],[7,11,238,40,124],[11,4,102,44,145],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-BASES-YIN-YIN":[[[4,5,251,176,64],[4,6,102,44,145],[5,4,251,176,64],[5,7,102,44,145],[6,4,102,44,145],[6,7,251,176,64],[7,5,102,44,145],[7,6,251,176,64],[0,1,251,176,64],[0,10,102,44,145],[1,0,251,176,64],[1,11,102,44,145],[10,0,102,44,145],[10,11,251,176,64],[11,1,102,44,145],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,102,44,145],[4,3,251,176,64],[4,8,102,44,145],[7,3,102,44,145],[7,8,251,176,64],[8,4,102,44,145],[8,7,251,176,64],[1,2,251,176,64],[1,9,102,44,145],[2,1,251,176,64],[2,10,102,44,145],[9,1,102,44,145],[9,10,251,176,64],[10,2,102,44,145],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,251,176,64],[3,6,102,44,145],[5,3,251,176,64],[5,8,102,44,145],[6,3,102,44,145],[6,8,251,176,64],[8,5,102,44,145],[8,6,251,176,64],[0,2,251,176,64],[0,9,102,44,145],[2,0,251,176,64],[2,11,102,44,145],[9,0,102,44,145],[9,11,251,176,64],[11,2,102,44,145],[11,9,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,102,44,145],[5,2,251,176,64],[5,9,102,44,145],[6,2,102,44,145],[6,9,251,176,64],[9,5,102,44,145],[9,6,251,176,64],[0,3,251,176,64],[0,8,102,44,145],[3,0,251,176,64],[3,11,102,44,145],[8,0,102,44,145],[8,11,251,176,64],[11,3,102,44,145],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,102,44,145],[4,2,251,176,64],[4,9,102,44,145],[7,2,102,44,145],[7,9,251,176,64],[9,4,102,44,145],[9,7,251,176,64],[1,3,251,176,64],[1,8,102,44,145],[3,1,251,176,64],[3,10,102,44,145],[8,1,102,44,145],[8,10,251,176,64],[10,3,102,44,145],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,251,176,64],[1,6,102,44,145],[5,1,251,176,64],[5,10,102,44,145],[6,1,102,44,145],[6,10,251,176,64],[10,5,102,44,145],[10,6,251,176,64],[0,4,251,176,64],[0,7,102,44,145],[4,0,251,176,64],[4,11,102,44,145],[7,0,102,44,145],[7,11,251,176,64],[11,4,102,44,145],[11,7,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-BASES-YIN-YIN-MUT":[[[4,5,102,44,145],[4,6,251,176,64],[5,4,102,44,145],[5,7,251,176,64],[6,4,251,176,64],[6,7,102,44,145],[7,5,251,176,64],[7,6,102,44,145],[0,1,102,44,145],[0,10,251,176,64],[1,0,102,44,145],[1,11,251,176,64],[10,0,251,176,64],[10,11,102,44,145],[11,1,251,176,64],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,251,176,64],[4,3,102,44,145],[4,8,251,176,64],[7,3,251,176,64],[7,8,102,44,145],[8,4,251,176,64],[8,7,102,44,145],[1,2,102,44,145],[1,9,251,176,64],[2,1,102,44,145],[2,10,251,176,64],[9,1,251,176,64],[9,10,102,44,145],[10,2,251,176,64],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,102,44,145],[0,9,251,176,64],[2,0,102,44,145],[2,11,251,176,64],[9,0,251,176,64],[9,11,102,44,145],[11,2,251,176,64],[11,9,102,44,145],[3,5,102,44,145],[3,6,251,176,64],[5,3,102,44,145],[5,8,251,176,64],[6,3,251,176,64],[6,8,102,44,145],[8,5,251,176,64],[8,6,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,251,176,64],[5,2,102,44,145],[5,9,251,176,64],[6,2,251,176,64],[6,9,102,44,145],[9,5,251,176,64],[9,6,102,44,145],[0,3,102,44,145],[0,8,251,176,64],[3,0,102,44,145],[3,11,251,176,64],[8,0,251,176,64],[8,11,102,44,145],[11,3,251,176,64],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,251,176,64],[4,2,102,44,145],[4,9,251,176,64],[7,2,251,176,64],[7,9,102,44,145],[9,4,251,176,64],[9,7,102,44,145],[1,3,102,44,145],[1,8,251,176,64],[3,1,102,44,145],[3,10,251,176,64],[8,1,251,176,64],[8,10,102,44,145],[10,3,251,176,64],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,102,44,145],[0,7,251,176,64],[4,0,102,44,145],[4,11,251,176,64],[7,0,251,176,64],[7,11,102,44,145],[11,4,251,176,64],[11,7,102,44,145],[1,5,102,44,145],[1,6,251,176,64],[5,1,102,44,145],[5,10,251,176,64],[6,1,251,176,64],[6,10,102,44,145],[10,5,251,176,64],[10,6,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-NB-2026-YIN&YANG-YANG":[[[4,5,238,40,124],[4,6,102,44,145],[5,4,102,44,145],[5,7,238,40,124],[6,4,238,40,124],[6,7,102,44,145],[7,5,102,44,145],[7,6,238,40,124],[0,1,102,44,145],[0,10,238,40,124],[1,0,238,40,124],[1,11,102,44,145],[10,0,102,44,145],[10,11,238,40,124],[11,1,238,40,124],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,102,44,145],[4,3,102,44,145],[4,8,238,40,124],[7,3,238,40,124],[7,8,102,44,145],[8,4,102,44,145],[8,7,238,40,124],[1,2,102,44,145],[1,9,238,40,124],[2,1,238,40,124],[2,10,102,44,145],[9,1,102,44,145],[9,10,238,40,124],[10,2,238,40,124],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,102,44,145],[5,3,102,44,145],[5,8,238,40,124],[6,3,238,40,124],[6,8,102,44,145],[8,5,102,44,145],[8,6,238,40,124],[0,2,102,44,145],[0,9,238,40,124],[2,0,238,40,124],[2,11,102,44,145],[9,0,102,44,145],[9,11,238,40,124],[11,2,238,40,124],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,238,40,124],[5,2,238,40,124],[5,9,102,44,145],[6,2,102,44,145],[6,9,238,40,124],[9,5,238,40,124],[9,6,102,44,145],[0,3,238,40,124],[0,8,102,44,145],[3,0,102,44,145],[3,11,238,40,124],[8,0,238,40,124],[8,11,102,44,145],[11,3,102,44,145],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,238,40,124],[4,2,238,40,124],[4,9,102,44,145],[7,2,102,44,145],[7,9,238,40,124],[9,4,238,40,124],[9,7,102,44,145],[1,3,238,40,124],[1,8,102,44,145],[3,1,102,44,145],[3,10,238,40,124],[8,1,238,40,124],[8,10,102,44,145],[10,3,102,44,145],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,238,40,124],[5,1,238,40,124],[5,10,102,44,145],[6,1,102,44,145],[6,10,238,40,124],[10,5,238,40,124],[10,6,102,44,145],[0,4,238,40,124],[0,7,102,44,145],[4,0,102,44,145],[4,11,238,40,124],[7,0,238,40,124],[7,11,102,44,145],[11,4,102,44,145],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-NB-2026-YIN&YANG-YANG-MUT":[[[4,5,102,44,145],[4,6,238,40,124],[5,4,238,40,124],[5,7,102,44,145],[6,4,102,44,145],[6,7,238,40,124],[7,5,238,40,124],[7,6,102,44,145],[0,1,238,40,124],[0,10,102,44,145],[1,0,102,44,145],[1,11,238,40,124],[10,0,238,40,124],[10,11,102,44,145],[11,1,102,44,145],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,238,40,124],[4,3,238,40,124],[4,8,102,44,145],[7,3,102,44,145],[7,8,238,40,124],[8,4,238,40,124],[8,7,102,44,145],[1,2,238,40,124],[1,9,102,44,145],[2,1,102,44,145],[2,10,238,40,124],[9,1,238,40,124],[9,10,102,44,145],[10,2,102,44,145],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,238,40,124],[5,3,238,40,124],[5,8,102,44,145],[6,3,102,44,145],[6,8,238,40,124],[8,5,238,40,124],[8,6,102,44,145],[0,2,238,40,124],[0,9,102,44,145],[2,0,102,44,145],[2,11,238,40,124],[9,0,238,40,124],[9,11,102,44,145],[11,2,102,44,145],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,102,44,145],[5,2,102,44,145],[5,9,238,40,124],[6,2,238,40,124],[6,9,102,44,145],[9,5,102,44,145],[9,6,238,40,124],[0,3,102,44,145],[0,8,238,40,124],[3,0,238,40,124],[3,11,102,44,145],[8,0,102,44,145],[8,11,238,40,124],[11,3,238,40,124],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,102,44,145],[4,2,102,44,145],[4,9,238,40,124],[7,2,238,40,124],[7,9,102,44,145],[9,4,102,44,145],[9,7,238,40,124],[1,3,102,44,145],[1,8,238,40,124],[3,1,238,40,124],[3,10,102,44,145],[8,1,102,44,145],[8,10,238,40,124],[10,3,238,40,124],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,102,44,145],[5,1,102,44,145],[5,10,238,40,124],[6,1,238,40,124],[6,10,102,44,145],[10,5,102,44,145],[10,6,238,40,124],[0,4,102,44,145],[0,7,238,40,124],[4,0,238,40,124],[4,11,102,44,145],[7,0,102,44,145],[7,11,238,40,124],[11,4,238,40,124],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-NB-2026-YIN&YANG-YIN":[[[4,5,102,44,145],[4,6,251,176,64],[5,4,251,176,64],[5,7,102,44,145],[6,4,102,44,145],[6,7,251,176,64],[7,5,251,176,64],[7,6,102,44,145],[0,1,251,176,64],[0,10,102,44,145],[1,0,102,44,145],[1,11,251,176,64],[10,0,251,176,64],[10,11,102,44,145],[11,1,102,44,145],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,251,176,64],[4,3,251,176,64],[4,8,102,44,145],[7,3,102,44,145],[7,8,251,176,64],[8,4,251,176,64],[8,7,102,44,145],[1,2,251,176,64],[1,9,102,44,145],[2,1,102,44,145],[2,10,251,176,64],[9,1,251,176,64],[9,10,102,44,145],[10,2,102,44,145],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,102,44,145],[3,6,251,176,64],[5,3,251,176,64],[5,8,102,44,145],[6,3,102,44,145],[6,8,251,176,64],[8,5,251,176,64],[8,6,102,44,145],[0,2,251,176,64],[0,9,102,44,145],[2,0,102,44,145],[2,11,251,176,64],[9,0,251,176,64],[9,11,102,44,145],[11,2,102,44,145],[11,9,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,102,44,145],[5,2,102,44,145],[5,9,251,176,64],[6,2,251,176,64],[6,9,102,44,145],[9,5,102,44,145],[9,6,251,176,64],[0,3,102,44,145],[0,8,251,176,64],[3,0,251,176,64],[3,11,102,44,145],[8,0,102,44,145],[8,11,251,176,64],[11,3,251,176,64],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,102,44,145],[4,2,102,44,145],[4,9,251,176,64],[7,2,251,176,64],[7,9,102,44,145],[9,4,102,44,145],[9,7,251,176,64],[1,3,102,44,145],[1,8,251,176,64],[3,1,251,176,64],[3,10,102,44,145],[8,1,102,44,145],[8,10,251,176,64],[10,3,251,176,64],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,251,176,64],[1,6,102,44,145],[5,1,102,44,145],[5,10,251,176,64],[6,1,251,176,64],[6,10,102,44,145],[10,5,102,44,145],[10,6,251,176,64],[0,4,102,44,145],[0,7,251,176,64],[4,0,251,176,64],[4,11,102,44,145],[7,0,102,44,145],[7,11,251,176,64],[11,4,251,176,64],[11,7,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-NB-2026-YIN&YANG-YIN-MUT":[[[4,5,251,176,64],[4,6,102,44,145],[5,4,102,44,145],[5,7,251,176,64],[6,4,251,176,64],[6,7,102,44,145],[7,5,102,44,145],[7,6,251,176,64],[0,1,102,44,145],[0,10,251,176,64],[1,0,251,176,64],[1,11,102,44,145],[10,0,102,44,145],[10,11,251,176,64],[11,1,251,176,64],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,102,44,145],[4,3,102,44,145],[4,8,251,176,64],[7,3,251,176,64],[7,8,102,44,145],[8,4,102,44,145],[8,7,251,176,64],[1,2,102,44,145],[1,9,251,176,64],[2,1,251,176,64],[2,10,102,44,145],[9,1,102,44,145],[9,10,251,176,64],[10,2,251,176,64],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,102,44,145],[0,9,251,176,64],[2,0,251,176,64],[2,11,102,44,145],[9,0,102,44,145],[9,11,251,176,64],[11,2,251,176,64],[11,9,102,44,145],[3,5,251,176,64],[3,6,102,44,145],[5,3,102,44,145],[5,8,251,176,64],[6,3,251,176,64],[6,8,102,44,145],[8,5,102,44,145],[8,6,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,251,176,64],[5,2,251,176,64],[5,9,102,44,145],[6,2,102,44,145],[6,9,251,176,64],[9,5,251,176,64],[9,6,102,44,145],[0,3,251,176,64],[0,8,102,44,145],[3,0,102,44,145],[3,11,251,176,64],[8,0,251,176,64],[8,11,102,44,145],[11,3,102,44,145],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,251,176,64],[4,2,251,176,64],[4,9,102,44,145],[7,2,102,44,145],[7,9,251,176,64],[9,4,251,176,64],[9,7,102,44,145],[1,3,251,176,64],[1,8,102,44,145],[3,1,102,44,145],[3,10,251,176,64],[8,1,251,176,64],[8,10,102,44,145],[10,3,102,44,145],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,251,176,64],[0,7,102,44,145],[4,0,102,44,145],[4,11,251,176,64],[7,0,251,176,64],[7,11,102,44,145],[11,4,102,44,145],[11,7,251,176,64],[1,5,102,44,145],[1,6,251,176,64],[5,1,251,176,64],[5,10,102,44,145],[6,1,102,44,145],[6,10,251,176,64],[10,5,251,176,64],[10,6,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YANG":[[[4,5,238,40,124],[4,6,238,40,124],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,238,40,124],[7,6,238,40,124],[0,1,238,40,124],[0,10,238,40,124],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,238,40,124],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,238,40,124],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,238,40,124],[8,7,238,40,124],[1,2,238,40,124],[1,9,238,40,124],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,238,40,124],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,238,40,124],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,238,40,124],[8,6,238,40,124],[0,2,238,40,124],[0,9,238,40,124],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,238,40,124],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,238,40,124],[5,9,238,40,124],[6,2,238,40,124],[6,9,238,40,124],[9,5,102,44,145],[9,6,102,44,145],[0,3,102,44,145],[0,8,102,44,145],[3,0,238,40,124],[3,11,238,40,124],[8,0,238,40,124],[8,11,238,40,124],[11,3,102,44,145],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,238,40,124],[4,9,238,40,124],[7,2,238,40,124],[7,9,238,40,124],[9,4,102,44,145],[9,7,102,44,145],[1,3,102,44,145],[1,8,102,44,145],[3,1,238,40,124],[3,10,238,40,124],[8,1,238,40,124],[8,10,238,40,124],[10,3,102,44,145],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,102,44,145],[5,1,238,40,124],[5,10,238,40,124],[6,1,238,40,124],[6,10,238,40,124],[10,5,102,44,145],[10,6,102,44,145],[0,4,102,44,145],[0,7,102,44,145],[4,0,238,40,124],[4,11,238,40,124],[7,0,238,40,124],[7,11,238,40,124],[11,4,102,44,145],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YANG-MUT":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,238,40,124],[5,7,238,40,124],[6,4,238,40,124],[6,7,238,40,124],[7,5,102,44,145],[7,6,102,44,145],[0,1,102,44,145],[0,10,102,44,145],[1,0,238,40,124],[1,11,238,40,124],[10,0,238,40,124],[10,11,238,40,124],[11,1,102,44,145],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,238,40,124],[4,8,238,40,124],[7,3,238,40,124],[7,8,238,40,124],[8,4,102,44,145],[8,7,102,44,145],[1,2,102,44,145],[1,9,102,44,145],[2,1,238,40,124],[2,10,238,40,124],[9,1,238,40,124],[9,10,238,40,124],[10,2,102,44,145],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,238,40,124],[5,8,238,40,124],[6,3,238,40,124],[6,8,238,40,124],[8,5,102,44,145],[8,6,102,44,145],[0,2,102,44,145],[0,9,102,44,145],[2,0,238,40,124],[2,11,238,40,124],[9,0,238,40,124],[9,11,238,40,124],[11,2,102,44,145],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,238,40,124],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,238,40,124],[9,6,238,40,124],[0,3,238,40,124],[0,8,238,40,124],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,238,40,124],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,238,40,124],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,238,40,124],[9,7,238,40,124],[1,3,238,40,124],[1,8,238,40,124],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,238,40,124],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,238,40,124],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,238,40,124],[10,6,238,40,124],[0,4,238,40,124],[0,7,238,40,124],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,238,40,124],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YIN":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,251,176,64],[5,7,251,176,64],[6,4,251,176,64],[6,7,251,176,64],[7,5,102,44,145],[7,6,102,44,145],[0,1,102,44,145],[0,10,102,44,145],[1,0,251,176,64],[1,11,251,176,64],[10,0,251,176,64],[10,11,251,176,64],[11,1,102,44,145],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,251,176,64],[4,8,251,176,64],[7,3,251,176,64],[7,8,251,176,64],[8,4,102,44,145],[8,7,102,44,145],[1,2,102,44,145],[1,9,102,44,145],[2,1,251,176,64],[2,10,251,176,64],[9,1,251,176,64],[9,10,251,176,64],[10,2,102,44,145],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,251,176,64],[5,8,251,176,64],[6,3,251,176,64],[6,8,251,176,64],[8,5,102,44,145],[8,6,102,44,145],[0,2,102,44,145],[0,9,102,44,145],[2,0,251,176,64],[2,11,251,176,64],[9,0,251,176,64],[9,11,251,176,64],[11,2,102,44,145],[11,9,102,44,145],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,251,176,64],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,251,176,64],[9,6,251,176,64],[0,3,251,176,64],[0,8,251,176,64],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,251,176,64],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,251,176,64],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,251,176,64],[9,7,251,176,64],[1,3,251,176,64],[1,8,251,176,64],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,251,176,64],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,251,176,64],[1,6,251,176,64],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,251,176,64],[10,6,251,176,64],[0,4,251,176,64],[0,7,251,176,64],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,251,176,64],[11,7,251,176,64],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YIN-MUT":[[[4,5,251,176,64],[4,6,251,176,64],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,251,176,64],[7,6,251,176,64],[0,1,251,176,64],[0,10,251,176,64],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,251,176,64],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,251,176,64],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,251,176,64],[8,7,251,176,64],[1,2,251,176,64],[1,9,251,176,64],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,251,176,64],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,251,176,64],[0,9,251,176,64],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,251,176,64],[11,9,251,176,64],[3,5,251,176,64],[3,6,251,176,64],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,251,176,64],[8,6,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,251,176,64],[5,9,251,176,64],[6,2,251,176,64],[6,9,251,176,64],[9,5,102,44,145],[9,6,102,44,145],[0,3,102,44,145],[0,8,102,44,145],[3,0,251,176,64],[3,11,251,176,64],[8,0,251,176,64],[8,11,251,176,64],[11,3,102,44,145],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,251,176,64],[4,9,251,176,64],[7,2,251,176,64],[7,9,251,176,64],[9,4,102,44,145],[9,7,102,44,145],[1,3,102,44,145],[1,8,102,44,145],[3,1,251,176,64],[3,10,251,176,64],[8,1,251,176,64],[8,10,251,176,64],[10,3,102,44,145],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,102,44,145],[0,7,102,44,145],[4,0,251,176,64],[4,11,251,176,64],[7,0,251,176,64],[7,11,251,176,64],[11,4,102,44,145],[11,7,102,44,145],[1,5,102,44,145],[1,6,102,44,145],[5,1,251,176,64],[5,10,251,176,64],[6,1,251,176,64],[6,10,251,176,64],[10,5,102,44,145],[10,6,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YANG":[[[4,5,238,40,124],[4,6,238,40,124],[5,4,238,40,124],[5,7,238,40,124],[6,4,238,40,124],[6,7,238,40,124],[7,5,238,40,124],[7,6,238,40,124],[0,1,102,44,145],[0,10,102,44,145],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,102,44,145],[11,10,102,44,145],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,238,40,124],[3,7,238,40,124],[4,3,238,40,124],[4,8,238,40,124],[7,3,238,40,124],[7,8,238,40,124],[8,4,238,40,124],[8,7,238,40,124],[1,2,102,44,145],[1,9,102,44,145],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,102,44,145],[10,9,102,44,145],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,238,40,124],[3,6,238,40,124],[5,3,238,40,124],[5,8,238,40,124],[6,3,238,40,124],[6,8,238,40,124],[8,5,238,40,124],[8,6,238,40,124],[0,2,102,44,145],[0,9,102,44,145],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,102,44,145],[11,9,102,44,145],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,102,44,145],[9,6,102,44,145],[0,3,238,40,124],[0,8,238,40,124],[3,0,238,40,124],[3,11,238,40,124],[8,0,238,40,124],[8,11,238,40,124],[11,3,238,40,124],[11,8,238,40,124],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,102,44,145],[9,7,102,44,145],[1,3,238,40,124],[1,8,238,40,124],[3,1,238,40,124],[3,10,238,40,124],[8,1,238,40,124],[8,10,238,40,124],[10,3,238,40,124],[10,8,238,40,124],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,102,44,145],[1,6,102,44,145],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,102,44,145],[10,6,102,44,145],[0,4,238,40,124],[0,7,238,40,124],[4,0,238,40,124],[4,11,238,40,124],[7,0,238,40,124],[7,11,238,40,124],[11,4,238,40,124],[11,7,238,40,124],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YANG-MUT":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,102,44,145],[7,6,102,44,145],[0,1,238,40,124],[0,10,238,40,124],[1,0,238,40,124],[1,11,238,40,124],[10,0,238,40,124],[10,11,238,40,124],[11,1,238,40,124],[11,10,238,40,124],[5,5,251,176,64],[5,6,251,176,64],[6,5,251,176,64],[6,6,251,176,64],[0,0,251,176,64],[0,11,251,176,64],[11,0,251,176,64],[11,11,251,176,64]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,102,44,145],[8,7,102,44,145],[1,2,238,40,124],[1,9,238,40,124],[2,1,238,40,124],[2,10,238,40,124],[9,1,238,40,124],[9,10,238,40,124],[10,2,238,40,124],[10,9,238,40,124],[1,1,251,176,64],[1,10,251,176,64],[10,1,251,176,64],[10,10,251,176,64],[4,4,251,176,64],[4,7,251,176,64],[7,4,251,176,64],[7,7,251,176,64]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,102,44,145],[8,6,102,44,145],[0,2,238,40,124],[0,9,238,40,124],[2,0,238,40,124],[2,11,238,40,124],[9,0,238,40,124],[9,11,238,40,124],[11,2,238,40,124],[11,9,238,40,124],[3,3,251,176,64],[3,8,251,176,64],[8,3,251,176,64],[8,8,251,176,64],[2,2,251,176,64],[2,9,251,176,64],[9,2,251,176,64],[9,9,251,176,64]],[[2,5,238,40,124],[2,6,238,40,124],[5,2,238,40,124],[5,9,238,40,124],[6,2,238,40,124],[6,9,238,40,124],[9,5,238,40,124],[9,6,238,40,124],[0,3,102,44,145],[0,8,102,44,145],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,102,44,145],[11,8,102,44,145],[2,3,251,176,64],[2,8,251,176,64],[3,2,251,176,64],[3,9,251,176,64],[8,2,251,176,64],[8,9,251,176,64],[9,3,251,176,64],[9,8,251,176,64]],[[2,4,238,40,124],[2,7,238,40,124],[4,2,238,40,124],[4,9,238,40,124],[7,2,238,40,124],[7,9,238,40,124],[9,4,238,40,124],[9,7,238,40,124],[1,3,102,44,145],[1,8,102,44,145],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,102,44,145],[10,8,102,44,145],[1,4,251,176,64],[1,7,251,176,64],[4,1,251,176,64],[4,10,251,176,64],[7,1,251,176,64],[7,10,251,176,64],[10,4,251,176,64],[10,7,251,176,64]],[[1,5,238,40,124],[1,6,238,40,124],[5,1,238,40,124],[5,10,238,40,124],[6,1,238,40,124],[6,10,238,40,124],[10,5,238,40,124],[10,6,238,40,124],[0,4,102,44,145],[0,7,102,44,145],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,102,44,145],[11,7,102,44,145],[0,5,251,176,64],[0,6,251,176,64],[5,0,251,176,64],[5,11,251,176,64],[6,0,251,176,64],[6,11,251,176,64],[11,5,251,176,64],[11,6,251,176,64]]],"MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YIN":[[[4,5,102,44,145],[4,6,102,44,145],[5,4,102,44,145],[5,7,102,44,145],[6,4,102,44,145],[6,7,102,44,145],[7,5,102,44,145],[7,6,102,44,145],[0,1,251,176,64],[0,10,251,176,64],[1,0,251,176,64],[1,11,251,176,64],[10,0,251,176,64],[10,11,251,176,64],[11,1,251,176,64],[11,10,251,176,64],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,102,44,145],[3,7,102,44,145],[4,3,102,44,145],[4,8,102,44,145],[7,3,102,44,145],[7,8,102,44,145],[8,4,102,44,145],[8,7,102,44,145],[1,2,251,176,64],[1,9,251,176,64],[2,1,251,176,64],[2,10,251,176,64],[9,1,251,176,64],[9,10,251,176,64],[10,2,251,176,64],[10,9,251,176,64],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[3,5,102,44,145],[3,6,102,44,145],[5,3,102,44,145],[5,8,102,44,145],[6,3,102,44,145],[6,8,102,44,145],[8,5,102,44,145],[8,6,102,44,145],[0,2,251,176,64],[0,9,251,176,64],[2,0,251,176,64],[2,11,251,176,64],[9,0,251,176,64],[9,11,251,176,64],[11,2,251,176,64],[11,9,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,251,176,64],[2,6,251,176,64],[5,2,251,176,64],[5,9,251,176,64],[6,2,251,176,64],[6,9,251,176,64],[9,5,251,176,64],[9,6,251,176,64],[0,3,102,44,145],[0,8,102,44,145],[3,0,102,44,145],[3,11,102,44,145],[8,0,102,44,145],[8,11,102,44,145],[11,3,102,44,145],[11,8,102,44,145],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,251,176,64],[2,7,251,176,64],[4,2,251,176,64],[4,9,251,176,64],[7,2,251,176,64],[7,9,251,176,64],[9,4,251,176,64],[9,7,251,176,64],[1,3,102,44,145],[1,8,102,44,145],[3,1,102,44,145],[3,10,102,44,145],[8,1,102,44,145],[8,10,102,44,145],[10,3,102,44,145],[10,8,102,44,145],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[1,5,251,176,64],[1,6,251,176,64],[5,1,251,176,64],[5,10,251,176,64],[6,1,251,176,64],[6,10,251,176,64],[10,5,251,176,64],[10,6,251,176,64],[0,4,102,44,145],[0,7,102,44,145],[4,0,102,44,145],[4,11,102,44,145],[7,0,102,44,145],[7,11,102,44,145],[11,4,102,44,145],[11,7,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]],"MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YIN-MUT":[[[4,5,251,176,64],[4,6,251,176,64],[5,4,251,176,64],[5,7,251,176,64],[6,4,251,176,64],[6,7,251,176,64],[7,5,251,176,64],[7,6,251,176,64],[0,1,102,44,145],[0,10,102,44,145],[1,0,102,44,145],[1,11,102,44,145],[10,0,102,44,145],[10,11,102,44,145],[11,1,102,44,145],[11,10,102,44,145],[5,5,238,40,124],[5,6,238,40,124],[6,5,238,40,124],[6,6,238,40,124],[0,0,238,40,124],[0,11,238,40,124],[11,0,238,40,124],[11,11,238,40,124]],[[3,4,251,176,64],[3,7,251,176,64],[4,3,251,176,64],[4,8,251,176,64],[7,3,251,176,64],[7,8,251,176,64],[8,4,251,176,64],[8,7,251,176,64],[1,2,102,44,145],[1,9,102,44,145],[2,1,102,44,145],[2,10,102,44,145],[9,1,102,44,145],[9,10,102,44,145],[10,2,102,44,145],[10,9,102,44,145],[1,1,238,40,124],[1,10,238,40,124],[10,1,238,40,124],[10,10,238,40,124],[4,4,238,40,124],[4,7,238,40,124],[7,4,238,40,124],[7,7,238,40,124]],[[0,2,102,44,145],[0,9,102,44,145],[2,0,102,44,145],[2,11,102,44,145],[9,0,102,44,145],[9,11,102,44,145],[11,2,102,44,145],[11,9,102,44,145],[3,5,251,176,64],[3,6,251,176,64],[5,3,251,176,64],[5,8,251,176,64],[6,3,251,176,64],[6,8,251,176,64],[8,5,251,176,64],[8,6,251,176,64],[3,3,238,40,124],[3,8,238,40,124],[8,3,238,40,124],[8,8,238,40,124],[2,2,238,40,124],[2,9,238,40,124],[9,2,238,40,124],[9,9,238,40,124]],[[2,5,102,44,145],[2,6,102,44,145],[5,2,102,44,145],[5,9,102,44,145],[6,2,102,44,145],[6,9,102,44,145],[9,5,102,44,145],[9,6,102,44,145],[0,3,251,176,64],[0,8,251,176,64],[3,0,251,176,64],[3,11,251,176,64],[8,0,251,176,64],[8,11,251,176,64],[11,3,251,176,64],[11,8,251,176,64],[2,3,238,40,124],[2,8,238,40,124],[3,2,238,40,124],[3,9,238,40,124],[8,2,238,40,124],[8,9,238,40,124],[9,3,238,40,124],[9,8,238,40,124]],[[2,4,102,44,145],[2,7,102,44,145],[4,2,102,44,145],[4,9,102,44,145],[7,2,102,44,145],[7,9,102,44,145],[9,4,102,44,145],[9,7,102,44,145],[1,3,251,176,64],[1,8,251,176,64],[3,1,251,176,64],[3,10,251,176,64],[8,1,251,176,64],[8,10,251,176,64],[10,3,251,176,64],[10,8,251,176,64],[1,4,238,40,124],[1,7,238,40,124],[4,1,238,40,124],[4,10,238,40,124],[7,1,238,40,124],[7,10,238,40,124],[10,4,238,40,124],[10,7,238,40,124]],[[0,4,251,176,64],[0,7,251,176,64],[4,0,251,176,64],[4,11,251,176,64],[7,0,251,176,64],[7,11,251,176,64],[11,4,251,176,64],[11,7,251,176,64],[1,5,102,44,145],[1,6,102,44,145],[5,1,102,44,145],[5,10,102,44,145],[6,1,102,44,145],[6,10,102,44,145],[10,5,102,44,145],[10,6,102,44,145],[0,5,238,40,124],[0,6,238,40,124],[5,0,238,40,124],[5,11,238,40,124],[6,0,238,40,124],[6,11,238,40,124],[11,5,238,40,124],[11,6,238,40,124]]]},"series_names":["KRE-360-PAR2-YANG-YANG-MUT-X-YANG","KRE-360-PAR2-YANG-YANG-MUT-X-YANG-MUT","KRE-360-PAR2-YANG-YANG-MUT-X-YIN","KRE-360-PAR2-YANG-YANG-MUT-X-YIN-MUT","KRE-360-PAR2-YANG-YING-MUT-X-YANG","KRE-360-PAR2-YANG-YING-MUT-X-YANG-MUT","KRE-360-PAR2-YANG-YING-MUT-X-YIN","KRE-360-PAR2-YANG-YING-MUT-X-YIN-MUT","KRE-360-PAR2-YIN-YANG-X-YANG","KRE-360-PAR2-YIN-YANG-X-YANG-MUT","KRE-360-PAR2-YIN-YANG-X-YIN","KRE-360-PAR2-YIN-YANG-X-YIN-MUT","KRE-360-PAR2-YIN-YING-MUT-X-YANG","KRE-360-PAR2-YIN-YING-MUT-X-YANG-MUT","KRE-360-PAR2-YIN-YING-MUT-X-YIN","KRE-360-PAR2-YIN-YING-MUT-X-YIN-MUT","KRE-360-PAR3-SANS-YANG-MUT-X-YANG","KRE-360-PAR3-SANS-YANG-MUT-X-YANG-MUT","KRE-360-PAR3-SANS-YANG-MUT-X-YIN","KRE-360-PAR3-SANS-YANG-MUT-X-YIN-MUT","KRE-360-PAR3-SANS-YANG-X-YANG","KRE-360-PAR3-SANS-YANG-X-YANG-MUT","KRE-360-PAR3-SANS-YANG-X-YIN","KRE-360-PAR3-SANS-YANG-X-YIN-MUT","KRE-360-PAR3-SANS-YIN-MUT-X-YANG","KRE-360-PAR3-SANS-YIN-MUT-X-YANG-MUT","KRE-360-PAR3-SANS-YIN-MUT-X-YIN","KRE-360-PAR3-SANS-YIN-MUT-X-YIN-MUT","KRE-360-PAR3-SANS-YIN-X-YANG","KRE-360-PAR3-SANS-YIN-X-YANG-MUT","KRE-360-PAR3-SANS-YIN-X-YIN","KRE-360-PAR3-SANS-YIN-X-YIN-MUT","MAGIC-CHESS-360-BASES-YANG-MUT-YANG","MAGIC-CHESS-360-BASES-YANG-MUT-YANG-MUT","MAGIC-CHESS-360-BASES-YANG-MUT-YIN","MAGIC-CHESS-360-BASES-YANG-MUT-YIN-MUT","MAGIC-CHESS-360-BASES-YANG-YANG","MAGIC-CHESS-360-BASES-YANG-YANG-MUT","MAGIC-CHESS-360-BASES-YANG-YING","MAGIC-CHESS-360-BASES-YANG-YING-MUT","MAGIC-CHESS-360-BASES-YIN-MUT-YANG","MAGIC-CHESS-360-BASES-YIN-MUT-YANG-MUT","MAGIC-CHESS-360-BASES-YIN-MUT-YIN","MAGIC-CHESS-360-BASES-YIN-MUT-YIN-MUT","MAGIC-CHESS-360-BASES-YIN-YANG","MAGIC-CHESS-360-BASES-YIN-YANG-MUT","MAGIC-CHESS-360-BASES-YIN-YIN","MAGIC-CHESS-360-BASES-YIN-YIN-MUT","MAGIC-CHESS-360-NB-2026-YIN&YANG-YANG","MAGIC-CHESS-360-NB-2026-YIN&YANG-YANG-MUT","MAGIC-CHESS-360-NB-2026-YIN&YANG-YIN","MAGIC-CHESS-360-NB-2026-YIN&YANG-YIN-MUT","MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YANG","MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YANG-MUT","MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YIN","MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YIN-MUT","MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YANG","MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YANG-MUT","MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YIN","MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YIN-MUT"],"families":{"KRE-PAR2":["KRE-360-PAR2-YANG-YANG-MUT-X-YANG","KRE-360-PAR2-YANG-YANG-MUT-X-YANG-MUT","KRE-360-PAR2-YANG-YANG-MUT-X-YIN","KRE-360-PAR2-YANG-YANG-MUT-X-YIN-MUT","KRE-360-PAR2-YANG-YING-MUT-X-YANG","KRE-360-PAR2-YANG-YING-MUT-X-YANG-MUT","KRE-360-PAR2-YANG-YING-MUT-X-YIN","KRE-360-PAR2-YANG-YING-MUT-X-YIN-MUT","KRE-360-PAR2-YIN-YANG-X-YANG","KRE-360-PAR2-YIN-YANG-X-YANG-MUT","KRE-360-PAR2-YIN-YANG-X-YIN","KRE-360-PAR2-YIN-YANG-X-YIN-MUT","KRE-360-PAR2-YIN-YING-MUT-X-YANG","KRE-360-PAR2-YIN-YING-MUT-X-YANG-MUT","KRE-360-PAR2-YIN-YING-MUT-X-YIN","KRE-360-PAR2-YIN-YING-MUT-X-YIN-MUT"],"KRE-PAR3":["KRE-360-PAR3-SANS-YANG-MUT-X-YANG","KRE-360-PAR3-SANS-YANG-MUT-X-YANG-MUT","KRE-360-PAR3-SANS-YANG-MUT-X-YIN","KRE-360-PAR3-SANS-YANG-MUT-X-YIN-MUT","KRE-360-PAR3-SANS-YANG-X-YANG","KRE-360-PAR3-SANS-YANG-X-YANG-MUT","KRE-360-PAR3-SANS-YANG-X-YIN","KRE-360-PAR3-SANS-YANG-X-YIN-MUT","KRE-360-PAR3-SANS-YIN-MUT-X-YANG","KRE-360-PAR3-SANS-YIN-MUT-X-YANG-MUT","KRE-360-PAR3-SANS-YIN-MUT-X-YIN","KRE-360-PAR3-SANS-YIN-MUT-X-YIN-MUT","KRE-360-PAR3-SANS-YIN-X-YANG","KRE-360-PAR3-SANS-YIN-X-YANG-MUT","KRE-360-PAR3-SANS-YIN-X-YIN","KRE-360-PAR3-SANS-YIN-X-YIN-MUT"],"MC-BASES":["MAGIC-CHESS-360-BASES-YANG-MUT-YANG","MAGIC-CHESS-360-BASES-YANG-MUT-YANG-MUT","MAGIC-CHESS-360-BASES-YANG-MUT-YIN","MAGIC-CHESS-360-BASES-YANG-MUT-YIN-MUT","MAGIC-CHESS-360-BASES-YANG-YANG","MAGIC-CHESS-360-BASES-YANG-YANG-MUT","MAGIC-CHESS-360-BASES-YANG-YING","MAGIC-CHESS-360-BASES-YANG-YING-MUT","MAGIC-CHESS-360-BASES-YIN-MUT-YANG","MAGIC-CHESS-360-BASES-YIN-MUT-YANG-MUT","MAGIC-CHESS-360-BASES-YIN-MUT-YIN","MAGIC-CHESS-360-BASES-YIN-MUT-YIN-MUT","MAGIC-CHESS-360-BASES-YIN-YANG","MAGIC-CHESS-360-BASES-YIN-YANG-MUT","MAGIC-CHESS-360-BASES-YIN-YIN","MAGIC-CHESS-360-BASES-YIN-YIN-MUT"],"MC-NB2026":["MAGIC-CHESS-360-NB-2026-YIN&YANG-YANG","MAGIC-CHESS-360-NB-2026-YIN&YANG-YANG-MUT","MAGIC-CHESS-360-NB-2026-YIN&YANG-YIN","MAGIC-CHESS-360-NB-2026-YIN&YANG-YIN-MUT"],"MC-PAR2":["MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YANG","MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YANG-MUT","MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YIN","MAGIC-CHESS-360-PAR2-YANG-YIN-MUT-X-YIN-MUT","MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YANG","MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YANG-MUT","MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YIN","MAGIC-CHESS-360-PAR2-YIN-MUT-YANG-MUT-X-YIN-MUT"]}};
|
||
</script>
|
||
<script>
|
||
// ══════════════════════════════════════════════════════════════
|
||
// WALLPAPER v10 — ZOOM NERVEUX / GLITCH — 4 EFFETS SIMULTANÉS
|
||
//
|
||
// COUCHE 1 — BREATH : sin composé lent, respiration permanente
|
||
// COUCHE 2 — PULSE : kick ±zoom à chaque step(), décroissance raide
|
||
// COUCHE 3 — MOUSE : parallaxe pan + zoom radial selon dist. centre
|
||
// COUCHE 4 — GLITCH : dezoom brutal aux transitions + per-tile scale
|
||
// + glitch spontané aléatoire + décalage XY
|
||
//
|
||
// Touche G = glitch forcé
|
||
// ══════════════════════════════════════════════════════════════
|
||
|
||
const GRID = 12;
|
||
const CELL_SIZES = [3,4,6,8,10,12,16,20,28,40];
|
||
let cellIdx = 3;
|
||
|
||
const FAM = {
|
||
'KRE·PAR2': APP_DATA.series_names.filter(s=>s.startsWith('KRE-360-PAR2')),
|
||
'KRE·PAR3': APP_DATA.series_names.filter(s=>s.startsWith('KRE-360-PAR3')),
|
||
'MC·BASES': APP_DATA.series_names.filter(s=>s.includes('BASES')),
|
||
'MC·NB2026': APP_DATA.series_names.filter(s=>s.includes('NB-2026')),
|
||
'MC·PAR2': APP_DATA.series_names.filter(s=>s.startsWith('MAGIC-CHESS-360-PAR2')),
|
||
};
|
||
const FNAMES = Object.keys(FAM);
|
||
const STEPS_SOLO=12, STEPS_CROSS=10;
|
||
|
||
|
||
// ══════════════════════════════════════════════════════════════
|
||
// MOTEUR AUDIO v1 — WEB AUDIO API + FFT + BPM DETECT
|
||
//
|
||
// SOURCE : getUserMedia (micro / line-in)
|
||
// ANALYSE : AnalyserNode 1024 bins → 4 bandes
|
||
//
|
||
// BANDE 0 : SUB/KICK 20– 80 Hz → PULSE dezoom brutal
|
||
// BANDE 1 : BASS 80–250 Hz → PULSE additionnel
|
||
// BANDE 2 : MID/SNR 250–2500 Hz → GLITCH per-tile
|
||
// BANDE 3 : HIGH 2500–8k Hz → vitesse step()
|
||
//
|
||
// GLOBAL : RMS energie → BA1/BA2 (amplitude breath)
|
||
//
|
||
// BPM : détection onset sur bande SUB, fenêtre 4s
|
||
// horloge BPM → pulses synchronisés
|
||
// ══════════════════════════════════════════════════════════════
|
||
|
||
let audioCtx = null, analyser = null, micStream = null;
|
||
let audioActive = false;
|
||
const FFT_SIZE = 1024;
|
||
const AUDIO_BUF = new Float32Array(FFT_SIZE / 2); // fréquence magnitude
|
||
|
||
// ── Bandes de fréquences (indices FFT à 44100Hz, fftSize=1024) ──
|
||
// bin = freq * fftSize / sampleRate
|
||
// Pour 44100Hz : bin = freq * 512 / 22050 ≈ freq / 43.06
|
||
function freqBin(hz){ return Math.round(hz * (FFT_SIZE/2) / (audioCtx ? audioCtx.sampleRate/2 : 22050)); }
|
||
|
||
// ── État audio → visuel ─────────────────────────────────────
|
||
let audEnergy = 0; // RMS global lissé [0..1]
|
||
let audKick = 0; // énergie SUB lissée
|
||
let audBass = 0; // énergie BASS lissée
|
||
let audMid = 0; // énergie MID lissée
|
||
let audHigh = 0; // énergie HIGH lissée
|
||
let audKickPrev = 0; // pour détection onset
|
||
let audMidPrev = 0;
|
||
|
||
// ── BPM detection ──────────────────────────────────────────
|
||
const BPM_WIN = 4000; // ms de fenêtre d'analyse
|
||
const BPM_MIN = 60, BPM_MAX = 180;
|
||
let bpmOnsets = []; // timestamps des onsets kick
|
||
let bpmEstimate= 0; // BPM courant estimé
|
||
let bpmInterval= 0; // ms entre beats
|
||
let bpmPhase = 0; // phase courante (ms depuis dernier beat)
|
||
let bpmLastBeat= 0; // timestamp du dernier beat détecté
|
||
let bpmClockT = 0; // temps du dernier tick horloge BPM
|
||
|
||
// Seuils onset (lowered for better sensitivity)
|
||
const ONSET_KICK_THR = 0.03; // seuil relatif sur la bande kick
|
||
const ONSET_KICK_FLUX = 0.08; // flux minimal
|
||
const ONSET_MID_THR = 0.03;
|
||
const ONSET_MID_FLUX = 0.06;
|
||
let adaptiveKickThr = 0.03; // adaptive threshold
|
||
|
||
// ── Corrections aux constantes BREATH ─────────────────────
|
||
// On va multiplier BA1/BA2 dynamiquement depuis l'audio
|
||
let audioBreathMult = 1.0; // multiplicateur sur les amplitudes de respiration
|
||
|
||
// ── Band average helper ────────────────────────────────────
|
||
function bandRMS(lo, hi){
|
||
let sum = 0, n = 0;
|
||
for(let i = lo; i <= hi && i < AUDIO_BUF.length; i++){
|
||
sum += AUDIO_BUF[i] * AUDIO_BUF[i]; n++;
|
||
}
|
||
return n > 0 ? Math.sqrt(sum/n) : 0;
|
||
}
|
||
|
||
// ── Mini visualiseur FFT ────────────────────────────────────
|
||
let fftBars = [];
|
||
function buildFFTBars(){
|
||
const el = document.getElementById('aud');
|
||
el.innerHTML = '';
|
||
fftBars = [];
|
||
const N = 48;
|
||
for(let i=0;i<N;i++){
|
||
const b = document.createElement('div');
|
||
b.style.cssText = 'flex:1;height:3px;background:rgba(0,255,255,0);border-radius:1px;transform-origin:bottom;transition:background 0.05s';
|
||
el.appendChild(b);
|
||
fftBars.push(b);
|
||
}
|
||
}
|
||
function updateFFTBars(){
|
||
if(!fftBars.length || !audioActive) return;
|
||
const N = fftBars.length;
|
||
const bins = AUDIO_BUF.length;
|
||
// mapping log
|
||
for(let i=0;i<N;i++){
|
||
const t = i/N;
|
||
const bin = Math.floor(Math.pow(t,1.5)*bins*0.6);
|
||
const v = Math.min(1, AUDIO_BUF[bin]*4);
|
||
const g = Math.floor(80 + v*175);
|
||
const r = Math.floor(v*255);
|
||
fftBars[i].style.background = `hsl(${i*7.5}, 100%, ${30+v*50}%)`;
|
||
fftBars[i].style.transform = `scaleY(${0.2+v*4})`;
|
||
}
|
||
}
|
||
|
||
|
||
// ── FFT COLORSET PULSE MODULATION ─────────────────────────
|
||
let fftColorEnergy = new Array(16).fill(0); // Energy per colorset color
|
||
let fftHistBars = [];
|
||
|
||
function buildFFTHist(){
|
||
const el = document.getElementById('fft-hist');
|
||
if(!el) return;
|
||
el.innerHTML = '';
|
||
fftHistBars = [];
|
||
const N = TAO_SPECTRUM.length; // Match colorset size
|
||
for(let i=0;i<N;i++){
|
||
const bar = document.createElement('div');
|
||
bar.className = 'fft-bar';
|
||
const [r,g,b] = TAO_SPECTRUM[i];
|
||
bar.style.background = `rgb(${r},${g},${b})`;
|
||
bar.style.boxShadow = `0 0 8px rgba(${r},${g},${b},0.5)`;
|
||
el.appendChild(bar);
|
||
fftHistBars.push(bar);
|
||
}
|
||
}
|
||
|
||
function updateFFTHist(){
|
||
if(!fftHistBars.length || !audioActive) return;
|
||
const N = fftHistBars.length;
|
||
const bins = AUDIO_BUF.length;
|
||
|
||
for(let i=0;i<N;i++){
|
||
// Map each colorset color to a frequency band
|
||
const t = i / N;
|
||
const binStart = Math.floor(Math.pow(t, 1.4) * bins * 0.7);
|
||
const binEnd = Math.floor(Math.pow((i+1)/N, 1.4) * bins * 0.7);
|
||
|
||
// Average energy in this band
|
||
let energy = 0, count = 0;
|
||
for(let b = binStart; b <= binEnd && b < bins; b++){
|
||
energy += AUDIO_BUF[b];
|
||
count++;
|
||
}
|
||
energy = count > 0 ? energy / count : 0;
|
||
|
||
// Smooth the energy
|
||
fftColorEnergy[i] = fftColorEnergy[i] * 0.7 + energy * 0.3;
|
||
const v = Math.min(1, fftColorEnergy[i] * 3);
|
||
|
||
// Update bar height and glow
|
||
const [r,g,b] = TAO_SPECTRUM[i % TAO_SPECTRUM.length];
|
||
const bright = Math.floor(50 + v * 50);
|
||
fftHistBars[i].style.transform = `scaleY(${0.1 + v * 0.9})`;
|
||
fftHistBars[i].style.background = `rgb(${Math.min(255,r+v*50)},${Math.min(255,g+v*50)},${Math.min(255,b+v*50)})`;
|
||
fftHistBars[i].style.boxShadow = `0 0 ${8+v*15}px rgba(${r},${g},${b},${0.3+v*0.5})`;
|
||
}
|
||
}
|
||
|
||
// Rebuild histogram when colorset changes
|
||
const _origSetColorset = setColorset;
|
||
setColorset = function(name) {
|
||
_origSetColorset(name);
|
||
buildFFTHist();
|
||
};
|
||
|
||
// ── Analyse audio — appelée dans rafLoop ───────────────────
|
||
function analyseAudio(now){
|
||
if(!audioActive || !analyser) return;
|
||
|
||
analyser.getFloatFrequencyData(AUDIO_BUF);
|
||
// Convertir dB → linéaire normalisé [0..1]
|
||
for(let i=0;i<AUDIO_BUF.length;i++){
|
||
AUDIO_BUF[i] = Math.max(0, (AUDIO_BUF[i] + 100) / 100); // -100dB..0dB → 0..1
|
||
}
|
||
|
||
// Calcul des bandes
|
||
const binK0 = freqBin(20), binK1 = freqBin(80);
|
||
const binB0 = freqBin(80), binB1 = freqBin(250);
|
||
const binM0 = freqBin(250), binM1 = freqBin(2500);
|
||
const binH0 = freqBin(2500),binH1 = freqBin(8000);
|
||
|
||
const kick = bandRMS(binK0, binK1);
|
||
const bass = bandRMS(binB0, binB1);
|
||
const mid = bandRMS(binM0, binM1);
|
||
const high = bandRMS(binH0, binH1);
|
||
|
||
// Lissage exponentiel rapide (tau ~30ms)
|
||
const LP = 0.18;
|
||
audKick = audKick*(1-LP) + kick*LP;
|
||
audBass = audBass*(1-LP) + bass*LP;
|
||
audMid = audMid*(1-LP) + mid*LP;
|
||
audHigh = audHigh*(1-LP) + high*LP;
|
||
|
||
// RMS global
|
||
let rms=0; for(let i=0;i<AUDIO_BUF.length;i++) rms+=AUDIO_BUF[i]*AUDIO_BUF[i];
|
||
rms=Math.sqrt(rms/AUDIO_BUF.length);
|
||
audEnergy = audEnergy*0.85 + rms*0.15;
|
||
|
||
// ── Flux spectral (onset) ─────────────────────────────────
|
||
const kickFlux = Math.max(0, kick - audKickPrev);
|
||
const midFlux = Math.max(0, mid - audMidPrev);
|
||
audKickPrev = kick;
|
||
audMidPrev = mid;
|
||
|
||
// ── Adaptive threshold (tracks average energy) ────────────
|
||
adaptiveKickThr = adaptiveKickThr * 0.995 + kick * 0.005;
|
||
const dynamicThr = Math.max(ONSET_KICK_THR, adaptiveKickThr * 1.5);
|
||
|
||
// ── MAPPING 1 : KICK → PULSE brutal ──────────────────────
|
||
if(kick > dynamicThr && kickFlux > ONSET_KICK_FLUX){
|
||
const amp = Math.min(0.6, kick * 2.5);
|
||
// Dezoom brutal : signe aléatoire biaisé vers zoom
|
||
const sign = Math.random() < 0.3 ? -1 : 1;
|
||
pulse += sign * amp;
|
||
pulse = Math.max(-0.45, Math.min(0.8, pulse));
|
||
|
||
// BPM: enregistrer onset (minimum 200ms between onsets = max 300 BPM)
|
||
if(bpmOnsets.length === 0 || now - bpmOnsets[bpmOnsets.length-1] > 200){
|
||
bpmOnsets.push(now);
|
||
// Purger les anciens
|
||
while(bpmOnsets.length > 0 && now - bpmOnsets[0] > BPM_WIN)
|
||
bpmOnsets.shift();
|
||
// Recalculer BPM si >= 3 onsets (faster detection)
|
||
if(bpmOnsets.length >= 3){
|
||
const intervals = [];
|
||
for(let i=1;i<bpmOnsets.length;i++)
|
||
intervals.push(bpmOnsets[i]-bpmOnsets[i-1]);
|
||
// Médiane
|
||
intervals.sort((a,b)=>a-b);
|
||
const med = intervals[Math.floor(intervals.length/2)];
|
||
const bpmRaw = 60000/med;
|
||
if(bpmRaw >= BPM_MIN && bpmRaw <= BPM_MAX){
|
||
// More responsive smoothing
|
||
const alpha = bpmEstimate === 0 ? 1.0 : 0.4;
|
||
bpmEstimate = bpmEstimate*(1-alpha) + bpmRaw*alpha;
|
||
bpmInterval = 60000/bpmEstimate;
|
||
bpmLastBeat = now;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// ── MAPPING 2 : MID/SNR → GLITCH per-tile ────────────────
|
||
if(mid > ONSET_MID_THR && midFlux > ONSET_MID_FLUX){
|
||
const amp = rnd(-0.15, 0.30) * (mid / ONSET_MID_THR);
|
||
triggerGlitch(amp, true);
|
||
// Glitch plus court que la transition de phase
|
||
glitchDur = rnd(20, 80);
|
||
}
|
||
|
||
// ── MAPPING 3 : ENERGIE GLOBALE → amplitude breath ───────
|
||
// On fait varier audioBreathMult entre 0.5 et 2.5 selon rms
|
||
audioBreathMult = 0.5 + audEnergy * 6.0;
|
||
audioBreathMult = Math.max(0.3, Math.min(3.0, audioBreathMult));
|
||
|
||
// ── MAPPING 4 : HIGH → vitesse step() ────────────────────
|
||
// Plus les hautes fréquences sont présentes, plus on accélère
|
||
// audHigh typiquement entre 0..0.5
|
||
if(audHigh > 0.02){
|
||
const targetSpeed = SPEEDS[si] * (1.0 - audHigh * 1.5);
|
||
const clampedSpeed = Math.max(16, Math.min(SPEEDS[si], targetSpeed));
|
||
// Application douce
|
||
speed = speed * 0.9 + clampedSpeed * 0.1;
|
||
}
|
||
|
||
// ── BPM CLOCK → pulse synchronisé ────────────────────────
|
||
if(bpmInterval > 0 && now - bpmLastBeat < 8000){
|
||
bpmPhase = (now - bpmLastBeat) % bpmInterval;
|
||
// Sur le beat (dans une fenêtre de 30ms)
|
||
const beatWindow = 30;
|
||
if(bpmPhase < beatWindow && now - bpmClockT > bpmInterval * 0.8){
|
||
bpmClockT = now;
|
||
// Pulse synchronisé avec le BPM
|
||
pulse += 0.25;
|
||
pulse = Math.min(0.8, pulse);
|
||
}
|
||
}
|
||
|
||
updateFFTBars();
|
||
updateFFTHist();
|
||
|
||
// ── HUD audio ─────────────────────────────────────────────
|
||
const bpmStr = bpmEstimate > 0 ? Math.round(bpmEstimate)+'BPM' : '—BPM';
|
||
document.getElementById('bAud').textContent =
|
||
bpmStr + ' E'+audEnergy.toFixed(2)+' K'+audKick.toFixed(2);
|
||
}
|
||
|
||
// ── toggleMic ─────────────────────────────────────────────
|
||
async function toggleMic(){
|
||
if(audioActive){
|
||
// Arrêt
|
||
audioActive = false;
|
||
if(micStream) micStream.getTracks().forEach(t=>t.stop());
|
||
if(audioCtx) audioCtx.close();
|
||
audioCtx = null; analyser = null; micStream = null;
|
||
document.getElementById('btnMic').classList.remove('active');
|
||
document.getElementById('bAud').textContent = '— BPM';
|
||
fftBars.forEach(b=>b.style.background='rgba(0,255,255,0)');
|
||
// Restore breath amplitudes
|
||
audioBreathMult = 1.0;
|
||
bpmEstimate = 0; bpmInterval = 0;
|
||
return;
|
||
}
|
||
try {
|
||
audioCtx = new (window.AudioContext || window.webkitAudioContext)();
|
||
micStream = await navigator.mediaDevices.getUserMedia({
|
||
audio: { echoCancellation: false, noiseSuppression: false, autoGainControl: false }
|
||
});
|
||
const source = audioCtx.createMediaStreamSource(micStream);
|
||
analyser = audioCtx.createAnalyser();
|
||
analyser.fftSize = FFT_SIZE;
|
||
analyser.smoothingTimeConstant = 0.6;
|
||
source.connect(analyser);
|
||
// NE PAS connecter à destination → pas de feedback
|
||
audioActive = true;
|
||
buildFFTBars();
|
||
document.getElementById('btnMic').classList.add('active');
|
||
} catch(e){
|
||
console.error('Mic error:', e);
|
||
alert('Micro inaccessible:\n'+e.message);
|
||
}
|
||
}
|
||
|
||
// ── ÉTAT SÉRIES ───────────────────────────────────────────
|
||
let famA=0,serA='',showA=true;
|
||
let famB=0,serB='',showB=false;
|
||
let phase='soloA',phaseStep=0;
|
||
let playing=true,speed=120,timer=null;
|
||
let cellPx=CELL_SIZES[cellIdx],motifPx=GRID*cellPx;
|
||
|
||
// ── ZOOM — COUCHE 1 : BREATH ──────────────────────────────
|
||
let breathT = Math.random()*2000;
|
||
// deux fréquences composées = respiration irrégulière
|
||
const BF1=0.00025, BA1=0.07;
|
||
const BF2=0.00009, BA2=0.04;
|
||
|
||
// ── ZOOM — COUCHE 2 : PULSE ───────────────────────────────
|
||
let pulse=0;
|
||
const PULSE_KICK=0.32, PULSE_DECAY=0.96;
|
||
|
||
// ── ZOOM — COUCHE 3 : MOUSE ───────────────────────────────
|
||
let mx=0.5,my=0.5;
|
||
let panX=0,panY=0,panXt=0,panYt=0;
|
||
const PAN_STR=0.5; // fraction motifPx
|
||
const MOUSE_Z=0.10; // zoom max depuis le bord
|
||
|
||
// ── ZOOM — COUCHE 4 : GLITCH ──────────────────────────────
|
||
let glitch=0; // ajout direct au zoom final
|
||
let glitchX=0,glitchY=0;// décalage du tiling en px
|
||
let glitchDur=0; // ms de maintien du décalage
|
||
// Per-tile : tableau de scales individuels pour chaque tuile
|
||
let tileScales=[];
|
||
let tileTTL=0; // frames restantes du per-tile
|
||
const TILE_TTL=4;
|
||
|
||
function rnd(a,b){return a+Math.random()*(b-a);}
|
||
|
||
function triggerGlitch(amp,withTile){
|
||
glitch += amp;
|
||
glitch = Math.max(-0.5,Math.min(0.8,glitch));
|
||
glitchX = rnd(-motifPx*0.12,motifPx*0.12);
|
||
glitchY = rnd(-motifPx*0.05,motifPx*0.05);
|
||
glitchDur = rnd(40,180);
|
||
if(withTile) buildTileScales();
|
||
}
|
||
|
||
function buildTileScales(){
|
||
const cols=Math.ceil(cv.width /motifPx)+5;
|
||
const rows=Math.ceil(cv.height/motifPx)+5;
|
||
tileScales=[];
|
||
for(let i=0;i<cols*rows;i++)
|
||
tileScales.push(Math.random()<0.28 ? rnd(0.72,1.32) : 1.0);
|
||
tileTTL=TILE_TTL;
|
||
}
|
||
|
||
// ── CANVAS ────────────────────────────────────────────────
|
||
const off=document.createElement('canvas');
|
||
const offCtx=off.getContext('2d');
|
||
const cv=document.getElementById('cv');
|
||
const ctx=cv.getContext('2d');
|
||
|
||
// ── TRUE DOUBLE BUFFERING ─────────────────────────────────
|
||
// BackBuffer: compose entire frame offscreen, then blit to visible
|
||
const backBuffer = document.createElement('canvas');
|
||
const bbCtx = backBuffer.getContext('2d');
|
||
let lastT=performance.now(),rafId=null;
|
||
|
||
// ── HELPERS ───────────────────────────────────────────────
|
||
function applySize(){
|
||
cellPx=CELL_SIZES[cellIdx]; motifPx=GRID*cellPx;
|
||
off.width=off.height=motifPx; tileScales=[]; tileTTL=0;
|
||
}
|
||
function pickOther(fi){
|
||
let r; do{r=Math.floor(Math.random()*FNAMES.length);}while(r===fi&&FNAMES.length>1);
|
||
return r;
|
||
}
|
||
function pickSer(fi){
|
||
const p=FAM[FNAMES[fi]]; return p[Math.floor(Math.random()*p.length)];
|
||
}
|
||
|
||
// ── OFFSCREEN ─────────────────────────────────────────────
|
||
// ══════════════════════════════════════════════════════════════
|
||
// TAO PRISM COLOR REMAPPING - Animated rainbow substitution
|
||
// Original colors: (102,44,145) (238,40,124) (251,176,64)
|
||
// ══════════════════════════════════════════════════════════════
|
||
|
||
const TAO_ORIGINALS = [
|
||
[102, 44, 145], // Violet original
|
||
[238, 40, 124], // Magenta original
|
||
[251, 176, 64] // Gold original
|
||
];
|
||
|
||
// Tao prism spectrum (7 colors cycling)
|
||
// COLORSET DEFINITIONS
|
||
const COLORSETS = {
|
||
default: [
|
||
[255, 0, 102], // Fire/Magenta
|
||
[255, 102, 0], // Orange
|
||
[255, 255, 0], // Earth/Yellow
|
||
[0, 255, 136], // Wood/Green
|
||
[0, 255, 255], // Yin/Cyan
|
||
[0, 102, 255], // Water/Blue
|
||
[204, 0, 255] // Metal/Violet
|
||
],
|
||
alchy: [
|
||
[124, 179, 66], // Vert alchimique
|
||
[171, 71, 188], // Violet mystique
|
||
[255, 213, 79], // Or philosophal
|
||
[76, 175, 80], // Émeraude
|
||
[156, 39, 176], // Améthyste
|
||
[255, 183, 77], // Soufre
|
||
[129, 199, 132] // Mercure végétal
|
||
],
|
||
emojiz: [
|
||
[255, 152, 0], // Orange vif
|
||
[233, 30, 99], // Rose
|
||
[0, 188, 212], // Cyan
|
||
[255, 235, 59], // Jaune
|
||
[156, 39, 176], // Violet
|
||
[76, 175, 80], // Vert
|
||
[244, 67, 54] // Rouge
|
||
],
|
||
punk: [
|
||
[255, 0, 102], // Magenta néon
|
||
[0, 255, 255], // Cyan électrique
|
||
[255, 0, 255], // Violet punk
|
||
[0, 255, 102], // Vert matrix
|
||
[255, 255, 0], // Jaune glitch
|
||
[255, 0, 0], // Rouge sang
|
||
[0, 102, 255] // Bleu chrome
|
||
],
|
||
hollistique: [
|
||
[141, 110, 99], // Terre
|
||
[77, 182, 172], // Eau turquoise
|
||
[161, 136, 127], // Sable
|
||
[139, 195, 74], // Feuille
|
||
[255, 224, 178], // Lumière
|
||
[120, 144, 156], // Pierre
|
||
[165, 214, 167] // Mousse
|
||
],
|
||
tantrique: [
|
||
[198, 40, 40], // Rouge sacré
|
||
[142, 36, 170], // Violet kundalini
|
||
[255, 82, 82], // Corail passion
|
||
[186, 104, 200], // Lilas
|
||
[244, 143, 177], // Rose lotus
|
||
[213, 0, 0], // Rubis
|
||
[123, 31, 162] // Améthyste profond
|
||
],
|
||
cosmique: [
|
||
[124, 77, 255], // Violet nébuleux
|
||
[68, 138, 255], // Bleu stellaire
|
||
[179, 136, 255], // Lavande
|
||
[130, 177, 255], // Ciel profond
|
||
[234, 128, 252], // Rose cosmique
|
||
[63, 81, 181], // Indigo
|
||
[149, 117, 205] // Améthyste
|
||
],
|
||
solarix: [
|
||
[255, 111, 0], // Orange soleil
|
||
[255, 213, 79], // Doré
|
||
[255, 143, 0], // Ambre
|
||
[255, 171, 64], // Pêche
|
||
[255, 87, 34], // Flamme
|
||
[255, 241, 118], // Lumière
|
||
[255, 167, 38] // Miel
|
||
],
|
||
oceanique: [
|
||
[0, 172, 193], // Cyan profond
|
||
[77, 208, 225], // Aqua
|
||
[0, 96, 100], // Abyssal
|
||
[128, 222, 234], // Écume
|
||
[0, 151, 167], // Turquoise
|
||
[38, 198, 218], // Lagon
|
||
[0, 131, 143] // Mer profonde
|
||
],
|
||
|
||
rainbow: [
|
||
[255, 0, 0], // Rouge
|
||
[255, 127, 0], // Orange
|
||
[255, 255, 0], // Jaune
|
||
[0, 255, 0], // Vert
|
||
[0, 0, 255], // Bleu
|
||
[75, 0, 130], // Indigo
|
||
[139, 0, 255] // Violet
|
||
],
|
||
fluo: [
|
||
[57, 255, 20], // Vert fluo
|
||
[255, 7, 58], // Rose fluo
|
||
[255, 255, 0], // Jaune fluo
|
||
[0, 255, 255], // Cyan fluo
|
||
[255, 0, 255], // Magenta fluo
|
||
[255, 165, 0], // Orange fluo
|
||
[127, 255, 0] // Chartreuse fluo
|
||
],
|
||
phospho: [
|
||
[0, 255, 0], // Vert phospho
|
||
[0, 255, 170], // Vert-cyan phospho
|
||
[170, 255, 170], // Vert pâle phospho
|
||
[0, 255, 127], // Vert printemps
|
||
[127, 255, 127], // Vert clair
|
||
[0, 200, 100], // Vert émeraude
|
||
[100, 255, 150] // Vert menthe
|
||
],
|
||
vintage: [
|
||
[212, 165, 116], // Sépia
|
||
[139, 115, 85], // Brun vintage
|
||
[201, 184, 150], // Crème
|
||
[169, 132, 103], // Caramel
|
||
[188, 158, 130], // Beige rosé
|
||
[156, 138, 112], // Taupe
|
||
[221, 196, 159] // Ivoire
|
||
],
|
||
tao: [
|
||
[255, 255, 255], // Yang (blanc)
|
||
[0, 0, 0], // Yin (noir)
|
||
[128, 128, 128], // Équilibre
|
||
[200, 200, 200], // Yang clair
|
||
[55, 55, 55], // Yin profond
|
||
[170, 170, 170], // Gris clair
|
||
[85, 85, 85] // Gris foncé
|
||
],
|
||
rgb: [
|
||
[255, 0, 0], // Rouge pur
|
||
[0, 255, 0], // Vert pur
|
||
[0, 0, 255], // Bleu pur
|
||
[255, 255, 0], // Jaune (R+G)
|
||
[255, 0, 255], // Magenta (R+B)
|
||
[0, 255, 255], // Cyan (G+B)
|
||
[255, 255, 255] // Blanc (R+G+B)
|
||
],
|
||
merkaba: [
|
||
[255, 215, 0], // Or divin
|
||
[65, 105, 225], // Bleu royal
|
||
[148, 0, 211], // Violet sacré
|
||
[255, 140, 0], // Orange flamme
|
||
[0, 191, 255], // Bleu céleste
|
||
[218, 165, 32], // Or antique
|
||
[138, 43, 226] // Bleu-violet
|
||
]
|
||
};
|
||
|
||
let currentColorset = 'default';
|
||
let TAO_SPECTRUM = COLORSETS.rgb;
|
||
|
||
function setColorset(name) {
|
||
if (!COLORSETS[name]) return;
|
||
currentColorset = name;
|
||
TAO_SPECTRUM = COLORSETS[name];
|
||
// Update UI
|
||
document.querySelectorAll('.cs').forEach(el => {
|
||
el.classList.toggle('active', el.dataset.set === name);
|
||
});
|
||
document.getElementById('csLabel').textContent = name.toUpperCase();
|
||
// Save preference
|
||
try { localStorage.setItem('wall-colorset', name); } catch(e) {}
|
||
}
|
||
|
||
// Load saved colorset
|
||
try {
|
||
const saved = localStorage.getItem('wall-colorset');
|
||
if (saved && COLORSETS[saved]) setColorset(saved);
|
||
} catch(e) {}
|
||
|
||
// Keyboard shortcuts 1-9
|
||
|
||
|
||
|
||
// ══════════════════════════════════════════════════════════════
|
||
// AUTO-HIDE UI ON MOUSE IDLE
|
||
// ══════════════════════════════════════════════════════════════
|
||
let uiTimeout = null;
|
||
const UI_HIDE_DELAY = 2500; // ms before hiding UI
|
||
|
||
function showUI() {
|
||
document.body.classList.remove('ui-hidden');
|
||
document.body.classList.add('ui-visible');
|
||
clearTimeout(uiTimeout);
|
||
uiTimeout = setTimeout(hideUI, UI_HIDE_DELAY);
|
||
}
|
||
|
||
function hideUI() {
|
||
document.body.classList.remove('ui-visible');
|
||
document.body.classList.add('ui-hidden');
|
||
}
|
||
|
||
// Show on any mouse movement
|
||
document.addEventListener('mousemove', showUI);
|
||
document.addEventListener('mousedown', showUI);
|
||
document.addEventListener('touchstart', showUI);
|
||
document.addEventListener('keydown', showUI);
|
||
|
||
// Initialize as visible
|
||
showUI();
|
||
|
||
// ══════════════════════════════════════════════════════════════
|
||
// 2D/3D JOYSTICK CONTROLS
|
||
// ══════════════════════════════════════════════════════════════
|
||
|
||
let perspAngleX = 0; // X-axis rotation (from joystick)
|
||
let perspAngleY = 0; // Y-axis rotation (from joystick)
|
||
let perspAngle = 0; // Combined/legacy angle
|
||
let perspSpeed = 0; // Auto-rotate speed
|
||
let autoRotate = false;
|
||
// Color cycle toggle
|
||
let autoColorCycle = false;
|
||
|
||
function toggleColorCycle() {
|
||
autoColorCycle = !autoColorCycle;
|
||
document.getElementById('color-btn').classList.toggle('active', autoColorCycle);
|
||
renderOff(); // Re-render with new state
|
||
}
|
||
|
||
// Auto-rotate toggle
|
||
let depthZoom = 1.0; // Depth/zoom multiplier
|
||
|
||
// Joystick state
|
||
let joystickPanX = 0, joystickPanY = 0; // Pan offset from joystick
|
||
let joystickActive = false;
|
||
let joystickX = 0, joystickY = 0; // -1 to 1
|
||
|
||
const joystick = document.getElementById('joystick');
|
||
const knob = document.getElementById('joystick-knob');
|
||
const coordsDisplay = document.getElementById('joystick-coords');
|
||
|
||
function updateKnobPosition() {
|
||
const rect = joystick.getBoundingClientRect();
|
||
const centerX = rect.width / 2;
|
||
const centerY = rect.height / 2;
|
||
const maxDist = centerX - 8; // knob radius
|
||
|
||
const x = centerX + joystickX * maxDist;
|
||
const y = centerY + joystickY * maxDist;
|
||
|
||
knob.style.left = x + 'px';
|
||
knob.style.top = y + 'px';
|
||
|
||
coordsDisplay.textContent = joystickX.toFixed(2) + ', ' + joystickY.toFixed(2);
|
||
|
||
// Apply to perspective
|
||
perspAngleX = joystickX * 0.3; // ±0.3 radians
|
||
perspAngleY = joystickY * 0.3;
|
||
// Apply 3D CSS perspective transform to canvas (limited for 2x coverage)
|
||
const cv = document.getElementById('cv');
|
||
const rotY = joystickX * 12; // ±12 degrees horizontal (safe for 2x)
|
||
const rotX = -joystickY * 10; // ±10 degrees vertical (safe for 2x)
|
||
cv.style.transform = 'rotateX(' + rotX + 'deg) rotateY(' + rotY + 'deg)';
|
||
}
|
||
|
||
joystick.addEventListener('mousedown', (e) => {
|
||
joystickActive = true;
|
||
knob.classList.add('active');
|
||
updateJoystickFromEvent(e);
|
||
});
|
||
|
||
document.addEventListener('mousemove', (e) => {
|
||
if (!joystickActive) return;
|
||
updateJoystickFromEvent(e);
|
||
});
|
||
|
||
document.addEventListener('mouseup', () => {
|
||
if (joystickActive) {
|
||
joystickActive = false;
|
||
knob.classList.remove('active');
|
||
// Optional: return to center with animation
|
||
// joystickX = 0; joystickY = 0; updateKnobPosition();
|
||
}
|
||
});
|
||
|
||
function updateJoystickFromEvent(e) {
|
||
const rect = joystick.getBoundingClientRect();
|
||
const centerX = rect.left + rect.width / 2;
|
||
const centerY = rect.top + rect.height / 2;
|
||
const maxDist = rect.width / 2 - 8;
|
||
|
||
let dx = e.clientX - centerX;
|
||
let dy = e.clientY - centerY;
|
||
|
||
// Clamp to circle
|
||
const dist = Math.sqrt(dx*dx + dy*dy);
|
||
if (dist > maxDist) {
|
||
dx = dx / dist * maxDist;
|
||
dy = dy / dist * maxDist;
|
||
}
|
||
|
||
joystickX = dx / maxDist;
|
||
joystickY = dy / maxDist;
|
||
updateKnobPosition();
|
||
}
|
||
|
||
// Depth slider
|
||
const depthSlider = document.getElementById('depth-slider');
|
||
const depthKnob = document.getElementById('depth-knob');
|
||
const depthVal = document.getElementById('depth-val');
|
||
let depthActive = false;
|
||
|
||
depthSlider.addEventListener('mousedown', (e) => {
|
||
depthActive = true;
|
||
updateDepthFromEvent(e);
|
||
});
|
||
|
||
document.addEventListener('mousemove', (e) => {
|
||
if (depthActive) updateDepthFromEvent(e);
|
||
});
|
||
|
||
document.addEventListener('mouseup', () => { depthActive = false; });
|
||
|
||
function updateDepthFromEvent(e) {
|
||
const rect = depthSlider.getBoundingClientRect();
|
||
let y = (e.clientY - rect.top) / rect.height;
|
||
y = Math.max(0, Math.min(1, y));
|
||
|
||
// Invert: top = more zoom
|
||
depthZoom = 0.5 + (1 - y) * 1.5; // 0.5x to 2x
|
||
|
||
depthKnob.style.top = (y * 100) + '%';
|
||
depthVal.textContent = depthZoom.toFixed(2) + 'x';
|
||
}
|
||
|
||
// Pixel ring
|
||
function cyclePixelRing() {
|
||
cellIdx = (cellIdx + 1) % CELL_SIZES.length;
|
||
applySize();
|
||
renderOff();
|
||
document.getElementById('pixel-ring').setAttribute('data-px', cellPx);
|
||
}
|
||
|
||
// Auto-rotate toggle
|
||
function toggleAutoRotate() {
|
||
autoRotate = !autoRotate;
|
||
document.getElementById('auto-btn').classList.toggle('active', autoRotate);
|
||
if (autoRotate) perspSpeed = 0.008;
|
||
else perspSpeed = 0;
|
||
}
|
||
|
||
// Initialize
|
||
window.PAN_STR_MULT = 1.0;
|
||
updateKnobPosition();
|
||
|
||
document.addEventListener('keydown', e => {
|
||
const sets = Object.keys(COLORSETS);
|
||
const idx = parseInt(e.key) - 1;
|
||
if (idx >= 0 && idx < sets.length) setColorset(sets[idx]);
|
||
});
|
||
|
||
let taoPhase = 0;
|
||
const TAO_SPEED = 0.0003; // radians per ms
|
||
|
||
function taoRemap(r, g, b, now) {
|
||
// Check which original color this matches (with tolerance)
|
||
let idx = -1;
|
||
for (let i = 0; i < TAO_ORIGINALS.length; i++) {
|
||
const [or, og, ob] = TAO_ORIGINALS[i];
|
||
if (Math.abs(r - or) < 8 && Math.abs(g - og) < 8 && Math.abs(b - ob) < 8) {
|
||
idx = i;
|
||
break;
|
||
}
|
||
}
|
||
|
||
if (idx === -1) return `rgb(${r},${g},${b})`; // Not a target color
|
||
|
||
// Animate through spectrum - each original gets offset phase
|
||
// If color cycle disabled, use fixed phase based on index only
|
||
const phase = autoColorCycle
|
||
? (now * TAO_SPEED + idx * 2.094) % (Math.PI * 2)
|
||
: (idx * 2.094) % (Math.PI * 2); // Fixed distribution
|
||
const specIdx = phase / (Math.PI * 2) * TAO_SPECTRUM.length;
|
||
|
||
// Interpolate between spectrum colors
|
||
const i0 = Math.floor(specIdx) % TAO_SPECTRUM.length;
|
||
const i1 = (i0 + 1) % TAO_SPECTRUM.length;
|
||
const t = specIdx - Math.floor(specIdx);
|
||
|
||
const [r0, g0, b0] = TAO_SPECTRUM[i0];
|
||
const [r1, g1, b1] = TAO_SPECTRUM[i1];
|
||
|
||
const nr = Math.round(r0 + (r1 - r0) * t);
|
||
const ng = Math.round(g0 + (g1 - g0) * t);
|
||
const nb = Math.round(b0 + (b1 - b0) * t);
|
||
|
||
return `rgb(${nr},${ng},${nb})`;
|
||
}
|
||
function renderOff(){
|
||
offCtx.fillStyle='#000';
|
||
offCtx.fillRect(0,0,motifPx,motifPx);
|
||
function draw(ser){
|
||
if(!ser) return;
|
||
const fr=APP_DATA.series[ser]; if(!fr) return;
|
||
for(let i=0;i<6;i++)
|
||
if(fr[i]) for(const [row,col,r,g,b] of fr[i]){
|
||
offCtx.fillStyle=taoRemap(r,g,b,performance.now());
|
||
offCtx.fillRect(col*cellPx,row*cellPx,cellPx,cellPx);
|
||
}
|
||
}
|
||
if(showA) draw(serA);
|
||
if(showB) draw(serB);
|
||
}
|
||
|
||
// ── RAF ───────────────────────────────────────────────────
|
||
function rafLoop(now){
|
||
const dt=Math.min(now-lastT,64); lastT=now;
|
||
const W=cv.width, H=cv.height;
|
||
|
||
// AUDIO ANALYSE — avant calcul des effets
|
||
analyseAudio(now);
|
||
|
||
// BREATH — amplitude modulée par l'énergie audio
|
||
breathT+=dt;
|
||
const _ba1 = BA1 * (audioActive ? audioBreathMult : 1.0);
|
||
const _ba2 = BA2 * (audioActive ? audioBreathMult : 1.0);
|
||
const breath = 1.0
|
||
+ Math.sin(breathT*BF1*Math.PI*2)*_ba1
|
||
+ Math.sin(breathT*BF2*Math.PI*2)*_ba2;
|
||
|
||
// PULSE decay
|
||
pulse*=Math.pow(PULSE_DECAY,dt/16);
|
||
if(Math.abs(pulse)<0.001) pulse=0;
|
||
|
||
// MOUSE
|
||
const dist=Math.hypot(mx-0.5,my-0.5); // 0..~0.7
|
||
const mouseZ=1.0+dist*MOUSE_Z;
|
||
panXt=(mx-0.5)*motifPx*PAN_STR*(window.PAN_STR_MULT||1);
|
||
panYt=(my-0.5)*motifPx*PAN_STR*(window.PAN_STR_MULT||1);
|
||
const lp=1-Math.pow(0.02,dt/180);
|
||
panX+=(panXt-panX)*lp;
|
||
panY+=(panYt-panY)*lp;
|
||
|
||
// GLITCH decay
|
||
glitch*=Math.pow(0.80,dt/16);
|
||
if(Math.abs(glitch)<0.003) glitch=0;
|
||
if(glitchDur>0){ glitchDur-=dt; }
|
||
else{
|
||
glitchX*=Math.pow(0.65,dt/16);
|
||
glitchY*=Math.pow(0.65,dt/16);
|
||
if(Math.abs(glitchX)<0.3) glitchX=0;
|
||
if(Math.abs(glitchY)<0.3) glitchY=0;
|
||
}
|
||
// Glitch spontané
|
||
if(Math.random()<0.009*(dt/16)){
|
||
triggerGlitch(rnd(-0.18,0.22)*( Math.random()<0.35?-1:1), true);
|
||
}
|
||
if(tileTTL>0) tileTTL--;
|
||
|
||
// PERSPECTIVE AUTO-ROTATE
|
||
if (autoRotate && perspSpeed > 0) {
|
||
perspAngle += perspSpeed;
|
||
}
|
||
|
||
// ZOOM FINAL
|
||
let zF = breath*(1+pulse)*mouseZ + glitch;
|
||
zF=Math.max(0.38,Math.min(2.6,zF));
|
||
|
||
// ── DRAW ──
|
||
// ── DOUBLE BUFFER: Draw to backBuffer first ──
|
||
bbCtx.imageSmoothingEnabled=false;
|
||
bbCtx.clearRect(0,0,W,H);
|
||
|
||
const cx=W/2+panX+glitchX;
|
||
const cy=H/2+panY+glitchY;
|
||
const margin=motifPx*3; // Balanced margin for 2x canvas
|
||
|
||
// Origines de tiling (espace non-transformé)
|
||
// On commence assez à gauche/haut pour couvrir après scale
|
||
const startX=cx - Math.ceil((cx+margin)/motifPx)*motifPx;
|
||
const startY=cy - Math.ceil((cy+margin)/motifPx)*motifPx;
|
||
|
||
if(tileTTL>0 && tileScales.length>0){
|
||
// PER-TILE : zoom global + scale individuel par tuile
|
||
bbCtx.save();
|
||
bbCtx.translate(cx,cy);
|
||
bbCtx.scale(zF,zF);
|
||
bbCtx.translate(-cx,-cy);
|
||
|
||
let ti=0;
|
||
for(let y=startY-margin;y<=H+margin*3;y+=motifPx){
|
||
for(let x=startX-margin;x<=W+margin*3;x+=motifPx){
|
||
const ts=tileScales[ti%tileScales.length]??1;
|
||
ti++;
|
||
if(ts===1.0){
|
||
bbCtx.drawImage(off,x,y);
|
||
} else {
|
||
const tcx=x+motifPx/2, tcy=y+motifPx/2;
|
||
bbCtx.save();
|
||
bbCtx.translate(tcx,tcy);
|
||
bbCtx.scale(ts,ts);
|
||
bbCtx.translate(-tcx,-tcy);
|
||
bbCtx.drawImage(off,x,y);
|
||
bbCtx.restore();
|
||
}
|
||
}
|
||
}
|
||
bbCtx.restore();
|
||
} else {
|
||
// ZOOM GLOBAL UNIFORME
|
||
bbCtx.save();
|
||
bbCtx.translate(cx,cy);
|
||
bbCtx.scale(zF,zF);
|
||
bbCtx.translate(-cx,-cy);
|
||
for(let y=startY-margin;y<=H+margin*3;y+=motifPx)
|
||
for(let x=startX-margin;x<=W+margin*3;x+=motifPx)
|
||
bbCtx.drawImage(off,x,y);
|
||
bbCtx.restore();
|
||
}
|
||
|
||
// ── DOUBLE BUFFER: Single blit to visible canvas ──
|
||
ctx.drawImage(backBuffer, 0, 0);
|
||
|
||
document.getElementById('bZoom').textContent=
|
||
'Z'+zF.toFixed(2)
|
||
+' P'+panX.toFixed(0)+','+panY.toFixed(0)
|
||
+(glitch!==0?' GLT':'')
|
||
+(tileTTL>0?' TIL':'');
|
||
|
||
rafId=requestAnimationFrame(rafLoop);
|
||
}
|
||
|
||
// ── STEP ──────────────────────────────────────────────────
|
||
function step(){
|
||
phaseStep++;
|
||
const wasPhase=phase;
|
||
|
||
switch(phase){
|
||
case 'soloA':
|
||
serA=pickSer(famA); showA=true; showB=false;
|
||
if(phaseStep>=STEPS_SOLO){
|
||
famB=pickOther(famA); serB=pickSer(famB); showB=true;
|
||
phase='crossAB'; phaseStep=0;
|
||
}
|
||
break;
|
||
case 'crossAB':
|
||
serB=pickSer(famB); showA=true; showB=true;
|
||
if(phaseStep>=STEPS_CROSS){ showA=false; phase='soloB'; phaseStep=0; }
|
||
break;
|
||
case 'soloB':
|
||
serB=pickSer(famB); showA=false; showB=true;
|
||
if(phaseStep>=STEPS_SOLO){
|
||
famA=pickOther(famB); serA=pickSer(famA); showA=true;
|
||
phase='crossBA'; phaseStep=0;
|
||
}
|
||
break;
|
||
case 'crossBA':
|
||
serA=pickSer(famA); showA=true; showB=true;
|
||
if(phaseStep>=STEPS_CROSS){ showB=false; phase='soloA'; phaseStep=0; }
|
||
break;
|
||
}
|
||
|
||
// PULSE nerveux à chaque step (25% chance dézoom)
|
||
const sign=Math.random()<0.25?-1:1;
|
||
pulse+=sign*PULSE_KICK;
|
||
pulse=Math.max(-0.38,Math.min(0.65,pulse));
|
||
|
||
// GLITCH à la transition de phase
|
||
if(phase!==wasPhase){
|
||
triggerGlitch(rnd(0.20,0.45)*(Math.random()<0.5?-1:1), true);
|
||
tileTTL=TILE_TTL+3; // un peu plus long à la transition
|
||
}
|
||
|
||
renderOff();
|
||
updateBar();
|
||
schedule();
|
||
}
|
||
|
||
// ── TIMER ─────────────────────────────────────────────────
|
||
function schedule(){ clearTimeout(timer); if(playing) timer=setTimeout(step,speed); }
|
||
function startAnim(){ schedule(); if(!rafId) rafId=requestAnimationFrame(rafLoop); }
|
||
function stopAnim(){ clearTimeout(timer); }
|
||
|
||
// ── BAR ───────────────────────────────────────────────────
|
||
function updateBar(){
|
||
document.getElementById('bA').textContent=
|
||
showA?(FNAMES[famA]+(phase==='soloA'?' ●':' ○')):'—';
|
||
document.getElementById('bB').textContent=
|
||
showB?(FNAMES[famB]+(phase==='soloB'?' ●':' ○')):'—';
|
||
document.getElementById('bStep').textContent=phase.toUpperCase()+' '+phaseStep;
|
||
}
|
||
|
||
// ── CONTRÔLES ─────────────────────────────────────────────
|
||
function togglePlay(){
|
||
playing=!playing;
|
||
document.getElementById('btnPlay').textContent=playing?'⏸':'▶';
|
||
playing?startAnim():stopAnim();
|
||
}
|
||
const SPEEDS=[2000,1000,500,300,200,150,100,60,30,16];
|
||
let si=7;
|
||
function faster(){ si=Math.min(si+1,SPEEDS.length-1); applySpeed(); }
|
||
function slower(){ si=Math.max(si-1,0); applySpeed(); }
|
||
function applySpeed(){
|
||
speed=SPEEDS[si];
|
||
document.getElementById('btnSpd').textContent=speed+'ms';
|
||
if(playing) schedule();
|
||
}
|
||
function cycleSize(){ cellIdx=(cellIdx+1)%CELL_SIZES.length; applySize(); renderOff(); }
|
||
function resize(){
|
||
// Oversize canvas 2x - balanced for performance + coverage
|
||
const scale = 2;
|
||
cv.width = Math.ceil(window.innerWidth * scale);
|
||
cv.height = Math.ceil(window.innerHeight * scale);
|
||
// Sync backBuffer size
|
||
backBuffer.width = cv.width;
|
||
backBuffer.height = cv.height;
|
||
// Center the oversized canvas in wrapper
|
||
cv.style.marginLeft = -cv.width/2 + 'px';
|
||
cv.style.marginTop = -cv.height/2 + 'px';
|
||
}
|
||
|
||
document.addEventListener('mousemove',e=>{
|
||
mx=e.clientX/window.innerWidth;
|
||
my=e.clientY/window.innerHeight;
|
||
});
|
||
document.addEventListener('keydown',e=>{
|
||
if(e.code==='Space') { e.preventDefault(); togglePlay(); }
|
||
if(e.code==='ArrowRight'){ faster(); }
|
||
if(e.code==='ArrowLeft') { slower(); }
|
||
if(e.code==='KeyP') { cycleSize(); }
|
||
if(e.code==='Enter') { step(); }
|
||
if(e.code==='KeyG') { triggerGlitch(rnd(-0.5,0.5),true); tileTTL=6; }
|
||
});
|
||
cv.addEventListener('click',()=>step());
|
||
window.addEventListener('resize',resize);
|
||
|
||
// ── INIT ──────────────────────────────────────────────────
|
||
famA=Math.floor(Math.random()*FNAMES.length);
|
||
serA=pickSer(famA);
|
||
famB=pickOther(famA);
|
||
serB=pickSer(famB);
|
||
showA=true; showB=false;
|
||
phase='soloA'; phaseStep=0;
|
||
|
||
applySize(); renderOff(); resize(); updateBar(); buildFFTBars(); buildFFTHist();
|
||
lastT=performance.now();
|
||
rafId=requestAnimationFrame(rafLoop);
|
||
startAnim();
|
||
</script>
|
||
</body></html>
|