diff --git a/fcore/constants.sml b/fcore/constants.sml index 30fa814..43d49b2 100644 --- a/fcore/constants.sml +++ b/fcore/constants.sml @@ -10,7 +10,7 @@ struct (* constants for player *) val playerWidth = 96 - val playerHeight = 96 + val playerHeight = 84 val playerWidthReal: Real32.real = 48.0 val playerHeightReal: Real32.real = 60.0 diff --git a/fcore/level/player/player-vec.sml b/fcore/level/player/player-vec.sml index 7fa6182..15a45fa 100644 --- a/fcore/level/player/player-vec.sml +++ b/fcore/level/player/player-vec.sml @@ -44,9 +44,9 @@ struct fun getIdle (player, rx, ry, dw, dh, ww, wh) = case #facing player of FACING_RIGHT => - PlayerStandingRight.lerp (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) + PlayerStandingRight.lerp (rx, ry, 3.0, ww, wh) | FACING_LEFT => - PlayerStandLeft.lerp (rx, ry, 4.0, ww, wh) + PlayerStandingLeft.lerp (rx, ry, 3.0, ww, wh) fun getWalk (rx, ry, dw, dh, ww, wh, walkFrames, animTimer) = let @@ -130,15 +130,11 @@ struct fun getWhenAttacked (player, amt, rx, ry, dw, dh, ww, wh) = case #facing player of FACING_RIGHT => - if amt mod 5 = 0 then - PlayerStandingRight.lerp (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) - else - PlayerStandingRight.lerp (rx, ry, dw, dh, ww, wh, 1.0, 0.75, 0.75) + (* todo: hurt sprite/animation if amt mod 5 = 0 then *) + PlayerStandingRight.lerp (rx, ry, 3.0, ww, wh) | FACING_LEFT => - if amt mod 5 = 0 then - PlayerStandingLeft.lerp (rx, ry, dw, dh, ww, wh, 1.0, 1.0, 1.0) - else - PlayerStandingLeft.lerp (rx, ry, dw, dh, ww, wh, 1.0, 0.75, 0.75) + (* todo: hurt sprite/animation if amt mod 5 = 0 then *) + PlayerStandingLeft.lerp (rx, ry, 3.0, ww, wh) fun helpGet (player: player, rx, ry, drawWidth, drawHeight, windowWidth, windowHeight) = diff --git a/fcore/level/player/sprites/player-standing-left.sml b/fcore/level/player/sprites/player-standing-left.sml index 7fbced0..11adf0f 100644 --- a/fcore/level/player/sprites/player-standing-left.sml +++ b/fcore/level/player/sprites/player-standing-left.sml @@ -1,313 +1,5417 @@ structure PlayerStandingLeft = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 0.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end diff --git a/fcore/level/player/sprites/player-standing-right.sml b/fcore/level/player/sprites/player-standing-right.sml index 2c899fe..043976e 100644 --- a/fcore/level/player/sprites/player-standing-right.sml +++ b/fcore/level/player/sprites/player-standing-right.sml @@ -1,314 +1,5357 @@ structure PlayerStandingRight = struct - fun lerp (startX, startY, drawWidth, drawHeight, windowWidth, windowHeight, r, - g, b) : Real32.real vector = + fun xToNdc (xOffset, xpos, scale, halfWidth) = + ((xpos * scale + xOffset) - halfWidth) / halfWidth + + fun yToNdc (yOffset, ypos, scale, halfHeight) = + ~(((ypos * scale + yOffset) - halfHeight) / halfHeight) + + fun lerp (xOffset: Real32.real, yOffset, scale, windowWidth, windowHeight) = let - val endY = windowHeight - startY - val startY = windowHeight - (startY + drawHeight) - val endX = startX + drawWidth - val windowHeight = windowHeight / 2.0 - val windowWidth = windowWidth / 2.0 + val halfWidth = windowWidth / 2.0 + val halfHeight = windowHeight / 2.0 in - #[ (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, r, g, b, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.5)) + (endX * 0.5)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.375)) + (endX * 0.375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.700000047684)) + (endY * 0.700000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.625)) + (endX * 0.625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.799999952316)) + (endY * 0.799999952316)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.25)) + (endX * 0.25)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.3125)) + (endX * 0.3125)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.75)) + (endX * 0.75)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.6875)) + (endX * 0.6875)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.0)) + (endY * 0.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.950000047684)) + (endY * 0.950000047684)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.9375)) + (endX * 0.9375)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 1.0)) + (endX * 1.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.25)) + (endY * 0.25)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0625)) + (endX * 0.0625)) / windowWidth) - 1.0, - (((startY * (1.0 - 0.200000017881)) + (endY * 0.200000017881)) / windowHeight) - 1.0, -0.0, -0.0, -0.0, - (((startX * (1.0 - 0.0)) + (endX * 0.0)) / windowWidth) - 1.0, - (((startY * (1.0 - 1.0)) + (endY * 1.0)) / windowHeight) - 1.0, -0.0, -0.0, -0.0 - ] - end + #[ +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 1.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 2.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 3.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 4.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 5.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 6.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.250980392156863, +0.376470588235294, +0.721568627450980, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 7.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 8.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 6.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 9.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 0.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 25.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 10.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 11.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 8.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 12.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 13.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 14.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 15.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 10.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 28.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 16.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 32.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 1.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 11.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 14.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 24.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 17.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 18.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 2.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 23.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 19.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.941176470588235, +0.972549019607843, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 20.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 30.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 3.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 22.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 21.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 31.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 29.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 4.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 13.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 22.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 5.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 23.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 7.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.407843137254902, +0.501960784313725, +0.847058823529412, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 24.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 21.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 9.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 15.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 25.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.470588235294118, +0.596078431372549, +0.909803921568627, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 18.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 17.000000000000000, scale, halfHeight), +0.721568627450980, +0.847058823529412, +0.972549019607843, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 26.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 20.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 27.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 19.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000, +xToNdc (xOffset, 28.000000000000000, scale, halfWidth), +yToNdc (yOffset, 16.000000000000000, scale, halfHeight), +0.000000000000000, +0.000000000000000, +0.000000000000000 + ] + end end