diff --git a/AuraGrove/AuraGrove.hm b/AuraGrove/AuraGrove.hm index e9fde34..6dce874 100644 Binary files a/AuraGrove/AuraGrove.hm and b/AuraGrove/AuraGrove.hm differ diff --git a/AuraGrove/Backups/AuraGrove_previousSave.hm b/AuraGrove/Backups/AuraGrove_previousSave.hm index 10b7b41..f7e1679 100644 Binary files a/AuraGrove/Backups/AuraGrove_previousSave.hm and b/AuraGrove/Backups/AuraGrove_previousSave.hm differ diff --git a/AuraGrove/MediaFiles/2D Clouds+.fs b/AuraGrove/MediaFiles/2D Clouds+.fs new file mode 100644 index 0000000..0ec5983 --- /dev/null +++ b/AuraGrove/MediaFiles/2D Clouds+.fs @@ -0,0 +1,221 @@ +/*{ + "DESCRIPTION": "Your shader description", + "CREDIT": "by you", + "CATEGORIES": [ + "Your category" + ], + "INPUTS": [ + { + "NAME": "cloudscale", + "TYPE": "float", + "DEFAULT": 0.95, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "cloudcover", + "TYPE": "float", + "DEFAULT": 0.25, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "cloudlight", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "clouddark", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "cloudalpha", + "TYPE": "float", + "DEFAULT": 0.25, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "skytint", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "skycolor1", + "TYPE": "color", + "DEFAULT": [ + 0.2, + 0.4, + 0.6, + 1.0 + ] + }, + { + "NAME": "skycolor2", + "TYPE": "color", + "DEFAULT": [ + 0.4, + 0.7, + 1.0, + 1.0 + ] + }, + { + "NAME": "detail", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "warp", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.0, + "MAX": 1.0 + } + ] +}*/ + +// Ported and adapted from "2D Clouds" by drift: https://www.shadertoy.com/view/4tdSWr + + +vec3 iResolution = vec3(RENDERSIZE, 1.); +float iGlobalTime = TIME; + +// const float cloudscale = 1.1; +// const float cloudcover = 0.72; +// const float clouddark = 0.5; +// const float cloudlight = 0.13; +// const float cloudalpha = 8.0; +// const float skytint = 0.5; +// const vec3 skycolour1 = vec3(0.2, 0.4, 0.6); +// const vec3 skycolour2 = vec3(0.4, 0.7, 1.0); + +const int maxdetail = 8; +const float speed = 0.03; +const mat2 m = mat2( 1.6, 1.2, -1.2, 1.6 ); + +vec2 hash( vec2 p ) { + p = vec2(dot(p,vec2(127.1,311.7)), dot(p,vec2(269.5,183.3))); + return -1.0 + 2.0*fract(sin(p)*43758.5453123); +} + +float noise( in vec2 p ) { + const float K1 = 0.366025404; // (sqrt(3)-1)/2; + const float K2 = 0.211324865; // (3-sqrt(3))/6; + vec2 i = floor(p + (p.x+p.y)*K1); + vec2 a = p - i + (i.x+i.y)*K2; + vec2 o = (a.x>a.y) ? vec2(1.0,0.0) : vec2(0.0,1.0); //vec2 of = 0.5 + 0.5*vec2(sign(a.x-a.y), sign(a.y-a.x)); + vec2 b = a - o + K2; + vec2 c = a - 1.0 + 2.0*K2; + vec3 h = max(0.5-vec3(dot(a,a), dot(b,b), dot(c,c) ), 0.0 ); + vec3 n = h*h*h*h*vec3( dot(a,hash(i+0.0)), dot(b,hash(i+o)), dot(c,hash(i+1.0))); + return dot(n, vec3(70.0)); +} + +float fbm(vec2 n) { + float total = 0.0, amplitude = 0.1; + for (int i=0; i int(detail)) {break;} + total += noise(n) * amplitude; + n = m * n; + amplitude *= 0.4; + } + return total; +} + +// ----------------------------------------------- + +void mainImage( out vec4 fragColor, in vec2 fragCoord ) { + + float cloudscale = (1.0-cloudscale+.001) * 40.0; + float cloudcover = cloudcover*8.0; + float clouddark = 1.-clouddark; + float cloudalpha = cloudalpha *80.; + vec3 skycolour1 = skycolor1.rgb; + vec3 skycolour2 = skycolor2.rgb; + float detail = detail * float (maxdetail); + + vec2 p = fragCoord.xy / iResolution.xy; + vec2 uv = (.5,.5)-p*(vec2(iResolution.x/iResolution.y,1.0)); + float time = iGlobalTime * speed; + float q = fbm(uv * cloudscale * warp); + + //ridged noise shape + float r = 0.0; + uv *= cloudscale; + uv -= q - time; + float weight = 0.8; + for (int i=0; i int(detail)) {break;} + r += abs(weight*noise( uv )); + uv = m*uv + time; + weight *= 0.7; + } + + //noise shape + float f = 0.0; + uv = uv = (.5,.5)-p*(vec2(iResolution.x/iResolution.y,1.0)); + uv *= cloudscale; + uv -= q - time; + weight = 0.7; + for (int i=0; i int(detail)) {break;} + f += weight*noise( uv ); + uv = m*uv + time; + weight *= 0.6; + } + + f *= (r + f); + + //noise colour + float c = 0.0; + time = iGlobalTime * speed * 2.0; + uv = uv = (.5,.5)-p*(vec2(iResolution.x/iResolution.y,1.0)); + uv *= cloudscale*2.0; + uv -= q - time; + weight = 0.4; + for (int i=0; i int(detail)) {break;} + c += weight*noise( uv ); + uv = m*uv + time; + weight *= 0.6; + } + + //noise ridge colour + float c1 = 0.0; + time = iGlobalTime * speed * 3.0; + uv = uv = (.5,.5)-p*(vec2(iResolution.x/iResolution.y,1.0)); + uv *= cloudscale*3.0; + uv -= q - time; + weight = 0.4; + for (int i=0; i int(detail)) {break;} + c1 += abs(weight*noise( uv )); + uv = m*uv + time; + weight *= 0.6; + } + + c += c1; + + vec3 skycolour = mix(skycolour2, skycolour1, p.y); + vec3 cloudcolour = vec3(1.1, 1.1, 0.9) * clamp((clouddark + cloudlight*c), 0.0, 1.0); + + f = cloudcover + cloudalpha*f*r; + + vec3 result = mix(skycolour, clamp(skytint * skycolour + cloudcolour, 0.0, 1.0), clamp((f + c)/2., 0.0, 1.0)); + + fragColor = vec4( result, 1.0 ); +} + +void main(void) { + mainImage(gl_FragColor, gl_FragCoord.xy); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/3d Grid 2.fs b/AuraGrove/MediaFiles/3d Grid 2.fs new file mode 100644 index 0000000..0426f3f --- /dev/null +++ b/AuraGrove/MediaFiles/3d Grid 2.fs @@ -0,0 +1,234 @@ + +/*{ + "DESCRIPTION": "A converted shader with TIME, camera controls, and a parameter for smooth or hard grid extrusion patterns.", + "CATEGORIES": [ "Raymarching" ], + "INPUTS": [ + { + "NAME": "xPos", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": -10.0, + "MAX": 10.0 + }, + { + "NAME": "yPos", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": 0.1, + "MAX": 1.0 + }, + { + "NAME": "cameraX", + "TYPE": "float", + "MIN": -3.14, + "MAX": 3.14, + "DEFAULT": 0.0 + }, + { + "NAME": "cameraY", + "TYPE": "float", + "MIN": 0.0, + "MAX": 1.57, + "DEFAULT": 1.2 + }, + { + "NAME": "cameraZ", + "TYPE": "float", + "MIN": -3.14, + "MAX": 3.14, + "DEFAULT": 0.0 + }, + { + "NAME": "extrude", + "TYPE": "float", + "MIN": 0.25, + "MAX": 1, + "DEFAULT": 0.8 + }, + { + "NAME": "smoothness", + "TYPE": "float", + "MIN": 0.0, + "MAX": 1.0, + "DEFAULT": 0.5 + }, + { + "NAME": "lineColor", + "TYPE": "color", + "DEFAULT": [1.0, 0.0, 0.1, 1.0], + "DESCRIPTION": "Color of the haze effect." + } + ] +}*/ + +#define MIN_DIST 0.001 +#define MAX_DIST 32.0 +#define MAX_STEPS 96 +#define STEP_MULT 0.9 +#define NORMAL_OFFS 0.01 +#define FOCAL_LENGTH 0.8 + +#define GRID_COLOR_1 vec3(0.00, 0.0, 0.0) +#define GRID_COLOR_2 vec3(1.00, 0.20, 0.60) + +#define GRID_SIZE 0.50 + +#define SKYDOME 0. +#define FLOOR 1. + +float pi = atan(1.0) * 4.0; +float tau = atan(1.0) * 8.0; + +struct MarchResult { + vec3 position; + vec3 normal; + float dist; + float steps; + float id; +}; + +mat3 Rotate(vec3 angles) { + vec3 c = cos(angles); + vec3 s = sin(angles); + + mat3 rotX = mat3(1.0, 0.0, 0.0, 0.0, c.x, s.x, 0.0, -s.x, c.x); + mat3 rotY = mat3(c.y, 0.0, -s.y, 0.0, 1.0, 0.0, s.y, 0.0, c.y); + mat3 rotZ = mat3(c.z, s.z, 0.0, -s.z, c.z, 0.0, 0.0, 0.0, 1.0); + + return rotX * rotY * rotZ; +} + +vec2 opU(vec2 d1, vec2 d2) { + return (d1.x < d2.x) ? d1 : d2; +} + +vec2 opS(vec2 d1, vec2 d2) { + return (-d1.x > d2.x) ? d1 * vec2(-1, 1) : d2; +} + +vec2 sdSphere(vec3 p, float s, float id) { + return vec2(length(p) - s, id); +} + +vec2 sdBox( vec3 p, vec3 b, float id) { + vec3 q = abs(p) - b; + return vec2(length(max(q,0.0)) + min(max(q.x,max(q.y,q.z)),0.0), id); +} + +vec2 sdPlane(vec3 p, vec4 n, float id) { + return vec2(dot(p, n.xyz) + n.w, id); +} + + +float random(vec2 st) { + return fract(sin(dot(st.xy, vec2(12.9898, 78.233))) * 43758.5453123); +} + +// Triangle wave function with noise +float triangleWave(float x) { + return -0.5 + abs(mod(x, 1.0) - 0.5); // Original triangle wave +} + +// Main function that uses the triangle wave with noise +vec2 triWave(vec2 p) { + float smoothF = 1.2; + float smoothComp = (smoothF - smoothness * smoothF); + float gain = extrude * 0.1 * smoothComp; + float x = triangleWave(p.x + p.y); + float y = triangleWave(p.y); + return vec2(x * gain, y * gain); +} + +// Updated heightmapNormal function +vec2 heightmapNormal(vec2 p) { + vec2 squaredW = triWave(p); + vec2 sinW = vec2(sin(p.x) * 0.15 * extrude, sin(p.y) * 0.15 * extrude); + + return mix(squaredW, sinW, 0.5 + smoothness * 0.5); + +} + +vec2 Scene(vec3 p) { + vec2 d = vec2(MAX_DIST, SKYDOME); + + d = opU(sdPlane(p, normalize(vec4(heightmapNormal(p.xy), -1, 0)), FLOOR), d); + + return d; +} + +vec3 Normal(vec3 p) { + vec3 off = vec3(NORMAL_OFFS, 0, 0); + return normalize(vec3( + Scene(p + off.xyz).x - Scene(p - off.xyz).x, + Scene(p + off.zxy).x - Scene(p - off.zxy).x, + Scene(p + off.yzx).x - Scene(p - off.yzx).x + )); +} + +MarchResult MarchRay(vec3 orig, vec3 dir) { + float steps = 0.0; + float dist = 0.0; + float id = 0.0; + + for (int i = 0; i < MAX_STEPS; i++) { + vec2 object = Scene(orig + dir * dist); + + dist += object.x * STEP_MULT; + + id = object.y; + + steps++; + + if (abs(object.x) < MIN_DIST * dist) { + break; + } + } + + MarchResult result; + + result.position = orig + dir * dist; + result.normal = Normal(result.position); + result.dist = dist; + result.steps = steps; + result.id = id; + + return result; +} + +vec3 Shade(MarchResult hit, vec3 direction, vec3 camera) { + vec3 color = vec3(0.0); + + if (hit.id == FLOOR) { + vec2 uv = abs(mod(hit.position.xy + GRID_SIZE / 2.0, GRID_SIZE) - GRID_SIZE / 2.0); + + // Smooth or hard-edged grid + float gridEdge = min(uv.x, uv.y) / GRID_SIZE; + float edge = smoothstep(0., 0.1, gridEdge); + color = mix(GRID_COLOR_1, lineColor.rgb, 1.0 - edge); + } + + // Apply distance fog + color *= 1.0 - smoothstep(0.0, MAX_DIST * 0.5 * (2.0 - yPos), hit.dist); + + return color; +} + +void main() { + vec2 res = RENDERSIZE.xy / RENDERSIZE.y; + vec2 uv = gl_FragCoord.xy / RENDERSIZE.y; + + vec3 angles = vec3(cameraX, cameraY, 0.0); + + mat3 rotate = Rotate(angles.yzx); + + vec3 orig = vec3(xPos, (1.0 - yPos) * 5., -2.0) * rotate; + + vec3 dir = normalize(vec3(uv - res / 2.0, FOCAL_LENGTH)) * rotate; + + MarchResult hit = MarchRay(orig, dir); + + vec3 color = Shade(hit, dir, orig); + + gl_FragColor = vec4(color, 1.0); +} + diff --git a/AuraGrove/MediaFiles/5dTiles.fs b/AuraGrove/MediaFiles/5dTiles.fs new file mode 100644 index 0000000..0f722f7 --- /dev/null +++ b/AuraGrove/MediaFiles/5dTiles.fs @@ -0,0 +1,129 @@ +/*{ + "CREDIT": "by mojovideotech", + "DESCRIPTION": "", + "CATEGORIES": [ + "generator", + "5d", + "tiles" + ], +"INPUTS": [ + { + "NAME" : "scale", + "TYPE" : "float", + "DEFAULT" : 1.5, + "MIN" : 0.5, + "MAX" : 3.0 + }, + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : 0.01, + "MIN" : -0.5, + "MAX" : 0.5 + }, + { + "NAME" : "flip", + "TYPE" : "bool", + "DEFAULT" : false + }, + { + "NAME" : "rot", + "TYPE" : "bool", + "DEFAULT" : true + }, + { + "NAME" : "invert", + "TYPE" : "bool", + "DEFAULT" : true + } + ] +}*/ + + + + +//////////////////////////////////////////////////////////// +// 5dTiles by mojovideotech +// +// based on : +// shadertoy.com/\ltdSz4 by David Crooks +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + +struct vec5 { + vec4 a; + float v; +}; + +vec5 plane5(vec5 origin, vec5 u, vec5 v, vec2 p){ + return vec5(origin.a + p.x*u.a + p.y*v.a, + origin.v + p.x*u.v + p.y*v.v); +} + +vec5 mult5(vec5 p, float multiplier) { + p.a *= multiplier; + p.v *= multiplier; + return p; +} + +vec5 mod5(vec5 p, float m) { return vec5(mod(p.a,m),mod(p.v,m)); } + +vec3 hsv2rgb(vec3 c) { + vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 0.5), c.y); +} + +bool dualTileZoneTest(vec5 p , float value) { + bool down = all(lessThanEqual(vec4(value),p.a)) && value <= p.v && all(lessThanEqual(vec4(value),vec4(1.0)-p.a)) && value <= (1.0-p.v); + bool up = all(greaterThanEqual(vec4(value),p.a)) && value >= p.v && all(greaterThanEqual(vec4(value),vec4(1.0)-p.a)) && value >= (1.0-p.v); + return down || up; +} + +vec3 pattern(vec5 p ){ + + float hueDelta = 0.8; + + p = mod5(p,1.0); + + if(dualTileZoneTest(p , p.a.x)){ + return vec3(0.2, 0.0, 0.7); + } + else if(dualTileZoneTest(p, p.a.y)){ + return vec3(0.1, 0.2, 0.1); + } + else if(dualTileZoneTest(p, p.a.z)){ + return vec3(0.7, 0.6, 0.6); + } + else if(dualTileZoneTest(p, p.a.w)){ + return vec3(0.0, 0.2, 0.9); + } + else if(dualTileZoneTest(p, p.v)){ + return vec3(0.7, 0.2, 0.0); + } + else { + return vec3(0.0); + } +} + +void main() +{ + vec2 p = (gl_FragCoord.xy - 0.5*RENDERSIZE.xy) / RENDERSIZE.y; + if (flip) { p *= -1.0; } + if (rot) { p.xy = -p.yx; } + p /=scale; + float T = rate*TIME; + + vec5 origin = vec5(vec4(T),-T); + + vec5 u = vec5(vec4(-0.511667,0.19544,0.19544,-0.511667),0.632456) ; + vec5 v = vec5(vec4(-0.371748,0.601501,-0.601501,0.371748), 0.0); + + vec5 plane = plane5(origin,u,v,p); + plane = mult5(plane,5.0); + + vec3 color = pattern(plane); + if (invert) { color = 1.0 - color; } + gl_FragColor = vec4(color, 1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/AnotherGridThingy.fs b/AuraGrove/MediaFiles/AnotherGridThingy.fs new file mode 100644 index 0000000..4dad83a --- /dev/null +++ b/AuraGrove/MediaFiles/AnotherGridThingy.fs @@ -0,0 +1,113 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES": [ + "generator" + ], + "INPUTS": [ + { + "NAME": "grid_size", + "TYPE": "point2D", + "DEFAULT": [ + 40, + 40 + ], + "MAX": [ + 360, + 360 + ], + "MIN": [ + 6, + 6 + ] + }, + { + "NAME": "bright", + "TYPE": "float", + "DEFAULT": 0.2, + "MIN": 0.1, + "MAX": 0.5 + }, + { + "NAME": "glow_size", + "TYPE": "float", + "DEFAULT": 2, + "MIN": -20, + "MAX": 20 + }, + { + "NAME": "rate", + "TYPE": "float", + "DEFAULT": 0.16, + "MIN": -2, + "MAX": 2 + }, + { + "NAME": "rndseed", + "TYPE": "point2D", + "DEFAULT": [ + 12.9898, + 78.233 + ], + "MAX": [ + 233, + 377 + ], + "MIN": [ + 5, + 7 + ] + } + ], + "DESCRIPTION": "" +}*/ + + +//////////////////////////////////////////////////////////// +// AnotherGridThingy by mojovideotech +// +// based on : +// glslsandbox/e#22020.0 +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + + + +float rnd(vec2 seed) { + float value = fract(sin(dot(seed,vec2(rndseed)))*43758.5453); + return value; +} + +float step_to(float value, float steps) { + float closest_int = floor(value/steps); + return closest_int * steps; +} + +vec4 dot_grid(vec2 pos, bool with_grid) { + float value = floor(mod(pos.x,grid_size.x))*floor(mod(pos.y,grid_size.y)); + value = clamp(value, 0.0, 1.0); + float c_time = TIME*rate; + vec2 step_pos = vec2(step_to(pos.x,grid_size.x),step_to(pos.y,grid_size.y)); + vec2 norm_pos = step_pos.xy/RENDERSIZE.xy; + norm_pos = vec2(norm_pos.x+rnd(norm_pos),norm_pos.y+rnd(norm_pos )); + float r = fract(sin(norm_pos.x)); + float g = fract(sin(norm_pos.y+abs(c_time))); + float b = abs(r-g); + if(with_grid == false){value = 1.0;} + return vec4(r,g,b,1.0) * value; +} + +vec4 glow(vec2 pos) { + vec4 color = clamp(dot_grid(pos,true)*bright,0.0,1.0); + color += clamp(dot_grid(vec2(pos.x-glow_size,pos.y),false)*bright,0.0,1.0); + color += clamp(dot_grid(vec2(pos.x+glow_size,pos.y),false)*bright,0.0,1.0); + color += clamp(dot_grid(vec2(pos.x,pos.y-glow_size),false)*bright,0.0,1.0); + color += clamp(dot_grid(vec2(pos.x,pos.y+glow_size),false)*bright,0.0,1.0); + return color; +} + +void main( void ) +{ + vec2 position = gl_FragCoord.xy; + gl_FragColor = glow(position); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/BitStreamer.fs b/AuraGrove/MediaFiles/BitStreamer.fs new file mode 100644 index 0000000..797e4c7 --- /dev/null +++ b/AuraGrove/MediaFiles/BitStreamer.fs @@ -0,0 +1,120 @@ +/*{ + "CREDIT": "by mojovideotech", + "DESCRIPTION": "", + "CATEGORIES": [ + "generator", + "2d" + ], + "INPUTS": [ + { + "MAX": [ + 300, + 200 + ], + "MIN": [ + 10, + 6 + ], + "DEFAULT": [ + 100, + 50 + ], + "NAME": "grid", + "TYPE": "point2D" + }, + { + "NAME": "density", + "TYPE": "float", + "DEFAULT": 1000, + "MIN": -900, + "MAX": 1800 + }, + { + "NAME": "rate", + "TYPE": "float", + "DEFAULT": 1, + "MIN": -3, + "MAX": 3 + }, + { + "NAME": "seed1", + "TYPE": "float", + "DEFAULT": 55, + "MIN": 8, + "MAX": 233 + }, + { + "NAME": "seed2", + "TYPE": "float", + "DEFAULT": 89, + "MIN": 55, + "MAX": 987 + }, + { + "NAME": "seed3", + "TYPE": "float", + "DEFAULT": 514229, + "MIN": 75025, + "MAX": 3524578 + }, + { + "NAME": "offset1", + "TYPE": "float", + "DEFAULT": 0, + "MIN": -100, + "MAX": 100 + }, + { + "NAME": "offset2", + "TYPE": "float", + "DEFAULT": 0, + "MIN": -100, + "MAX": 100 + } + ] +}*/ + +/////////////////////////////////////////// +// BitStreamer by mojovideotech +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +// +// based on : +// www.patriciogonzalezvivo.com/2015/thebookofshaders/10/ikeda-03.frag +// +// from : +// thebookofshaders.com by Patricio Gonzalez Vivo +/////////////////////////////////////////// + +float ranf(in float x) { + return fract(sin(x)*1e4); +} + +float rant(in vec2 st) { + return fract(sin(dot(st.xy, vec2(seed1,seed2)))*seed3); +} + +float pattern(vec2 st, vec2 v, float t) { + vec2 p = floor(st+v); + return step(t, rant(100.+p*.000001)+ranf(p.x)*0.5 ); +} + +void main() { + vec2 st = gl_FragCoord.xy/RENDERSIZE.xy; + st.x *= RENDERSIZE.x/RENDERSIZE.y; + st *= grid; + + vec2 ipos = floor(st); + vec2 fpos = fract(st); + vec2 vel = vec2(TIME*rate*max(grid.x,grid.y)); + vel *= vec2(-1.,0.0) * ranf(1.0+ipos.y); + vec2 off1 = vec2(offset1,0.); + vec2 off2 = vec2(offset2,0.); + vec3 color = vec3(0.); + color.r = pattern(st+off1,vel,0.5+density/RENDERSIZE.x); + color.g = pattern(st,vel,0.5+density/RENDERSIZE.x); + color.b = pattern(st-off2,vel,0.5+density/RENDERSIZE.x); + color *= step(0.2,fpos.y); + + gl_FragColor = vec4(color,1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Broken Tesseract (1).fs b/AuraGrove/MediaFiles/Broken Tesseract (1).fs new file mode 100644 index 0000000..cdc229b --- /dev/null +++ b/AuraGrove/MediaFiles/Broken Tesseract (1).fs @@ -0,0 +1,180 @@ +/* +{ + "CATEGORIES": [ + "Automatically Converted" + ], + "INPUTS": [ + { + "NAME": "x_rot", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "y_rot", + "TYPE": "float", + "DEFAULT": 0.3, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "z_rot", + "TYPE": "float", + "DEFAULT": 0.1, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "q_rot", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": 0.0, + "MAX": 1.0 + } + ] +} +*/ + + +// TesseracT by Dima.. + +#ifdef GL_ES +precision mediump float; +#endif + + +mat4 mat = mat4 ( vec4 ( 1.0 , 0.0 , 0.0 , 0.0 ), + vec4 ( 0.0 , 1.0 , 0.0 , 0.0 ), + vec4 ( 1.0 , 0.0 , 1.0 , 0.0 ), + vec4 ( 0.0 , 1.0 , 0.0 , 1.0 ) ); + +vec2 pos; + +vec4 col = vec4 ( 0.4, 0.0, 0.9, 1000.0 ); + +void Rotate ( float angle, float d1, float d2, float d3, float d4); +void Point ( vec4 p ); +void Line4 ( vec4 a, vec4 b ); +void Line2 ( vec2 a, vec2 b ); + +void main( void ) { + + pos = gl_FragCoord.xy / RENDERSIZE.y; + pos.x -= 1. - RENDERSIZE.y / RENDERSIZE.x; + pos -= .5; + + Rotate ( TIME * q_rot, 0.0, 1.0, 1.0, 0.0 ); + Rotate ( TIME * x_rot, 1.0, 0.0, 1.0, 0.0 ); + Rotate ( TIME * y_rot, 1.0, 1.0, 0.0, 0.0 ); + Rotate ( TIME * z_rot, 1.0, 0.0, 0.0, 1.0 ); + + Line4 ( vec4 ( 0.1 , 0.0 , 0.0 , 0.0 ), vec4 (-.3, .2, .2, .2 ) ); + Line4 ( vec4 ( 0.0 , 0.0 , 0.0 , 0.0 ), vec4 ( .2,-.2, .2, .2 ) ); + Line4 ( vec4 ( 0.0 , 0.1 , 0.0 , 0.0 ), vec4 ( -.2, .2,-.2, .2 ) ); + Line4 ( vec4 ( 0.0 , 0.0 , 0.1 , 0.0 ), vec4 ( .2, .2, .2,-.2 ) ); + + Line4 ( vec4 ( .2, .2, .2,-.2 ), vec4 (-.3, .2, .2,-.2 ) ); + Line4 ( vec4 ( .2, .2, .2,-.2 ), vec4 ( .2,-.2, .2,-.2 ) ); + Line4 ( vec4 ( .2, .2, .2,-.2 ), vec4 ( .2, .2,-.2,-.2 ) ); + + Line4 ( vec4 ( .2, .2,-.2, .2 ), vec4 (-.3, .2,-.2, .2 ) ); + Line4 ( vec4 ( .2, .2,-.2, .2 ), vec4 ( .2,-.2,-.2, .2 ) ); + + Line4 ( vec4 ( .2, .2,-.3,-.2 ), vec4 (-.3, .2,-.3,-.2 ) ); + Line4 ( vec4 ( .2, .2,-.3,-.2 ), vec4 ( .2,-.2,.2,-.2 ) ); + Line4 ( vec4 ( .2, .2,-.3,-.2 ), vec4 ( .2, .2,-.2, .2 ) ); + + Line4 ( vec4 ( 0.0 , 0.0 , 0.3 , 0.0 ), vec4 (-.2,.2, .2, .2 ) ); + Line4 ( vec4 ( 0.0 , 0.3 , 0.0 , 0.0 ), vec4 ( .2,-.2,-.2, .2 ) ); + Line4 ( vec4 ( 0.0 , 0.0 , 0.0 , 0.0 ), vec4 ( .2,-.2, .2,-.2 ) ); + + Line4 ( vec4 ( .2,-.2, .2,-.1 ), vec4 (-.2,-.2, .2,-.1) ); + Line4 ( vec4 ( .2,-.2, .2,-.1 ), vec4 ( .2,-.2,-.2,-.2 ) ); + + Line4 ( vec4 ( .2,-.2,-.2, .2 ), vec4 (-.2,-.2,.2, .2 ) ); + Line4 ( vec4 ( -.2,-.2,-.2, .2 ), vec4 ( .2,-.1,-.2,-.2 ) ); + + Line4 ( vec4 ( .2,-.1,-.2,-.2 ), vec4 (-.2,-.2,-.2,-.2 ) ); + + + Line4 ( vec4 (-.3, .2, .2, .2 ), vec4 (-.2,-.2, .2, .2 ) ); + Line4 ( vec4 (-.3, .2, .2, .2 ), vec4 (-.3, .2,-.2, .2 ) ); + Line4 ( vec4 (-.3, .2, .2, .2 ), vec4 (-.3, .2, .2,-.2 ) ); + + Line4 ( vec4 (-.3, .2, .2,-.2 ), vec4 (.2,-.2, .2,-.2 ) ); + Line4 ( vec4 (.3, .2, .2,-.2 ), vec4 (-.3, .2,-.2,-.2 ) ); + + Line4 ( vec4 (-.3, .2,-.2, .2 ), vec4 (-.2,.2,-.2, .2 ) ); + + Line4 ( vec4 (-.3, .2,-.2,-.2 ), vec4 (-.2,-.2,-.2,-.2 ) ); + Line4 ( vec4 (-.3, .2,-.2,-.2 ), vec4 (-.3, .2,-.2, .2 ) ); + + Line4 ( vec4 (-.2,-.2, .2, .2 ), vec4 (.2,-.2,-.2, .2 ) ); + Line4 ( vec4 (.2,-.2, .2, .2 ), vec4 (-.2,-.2, .2,-.2 ) ); + + Line4 ( vec4 (-.2,-.2, .2,-.2 ), vec4 (-.2,-.2,-.2,-.2 ) ); + + Line4 ( vec4 (-.2,-.2,-.2, .2 ), vec4 (-.2,-.1,-.2,-.2 ) ); + + Point ( vec4 ( 0.0 , 0.0 , 0.0 , 0.0 ) ); + Point ( vec4 ( .2, .2, .2,-.2 ) ); + Point ( vec4 ( .2, .2,-.2, .2 ) ); + Point ( vec4 ( .2, .2,-.3,-.2 ) ); + Point ( vec4 ( .1,-.2, .2, .2 ) ); + Point ( vec4 ( .1,-.2, .2,-.2 ) ); + Point ( vec4 ( .1,-.2,-.2, .2 ) ); + Point ( vec4 ( .1,-.2,-.1,-.2 ) ); + + Point ( vec4 (-.3, .2, .2, .2 ) ); + Point ( vec4 (.3, .2, .2,-.2 ) ); + Point ( vec4 (-.3, .2,-.2, .2 ) ); + Point ( vec4 (.3, .2,-.3,-.2 ) ); + Point ( vec4 (-.2,-.2, -.2, .2 ) ); + Point ( vec4 (-.2,-.2, .2,-.2 ) ); + Point ( vec4 (.2,-.2,-.2, .2 ) ); + Point ( vec4 (-.2,-.2,-.2,-.1 ) ); + + //float alpha = max(col.x,max(col.y,col.z)); + float alpha = clamp(col.x+col.y+col.z,0.1,1.0); + + gl_FragColor = vec4( col.xyz, alpha ); + +} + +void Line4 ( vec4 a, vec4 b ) +{ + a = mat * a; + a.xyz /= 1.15 + a.w * 1.5; + b = mat * b; + b.xyz /= 1.25 + b.w * 1.1; + Line2 ( a.xy , b.xy ); +} + +void Line2 ( vec2 a, vec2 b ) +{ + float d = distance ( pos , a ) + distance ( pos , b ) - distance ( a , b ) + 1e-6; + col += max ( 1.0 - pow ( d * 11. , 0.05 ) , -0.005 ); +} + +void Point ( vec4 p ) +{ + p = mat * p; + p.xyz /= 1.0 + p.w * 2.; + + float d = distance ( pos , p.xy ); + + if ( d < .5 ) + if ( p.z < col.a ) { + col.b += max ( 1.0 - pow ( d * 3.0 , 0.01 ) , 0.01 ); + } +} + +void Rotate ( float angle, float d1, float d2, float d3, float d4) +{ + float c = atan (angle), s = cos (angle); + mat *= mat4 ( vec4 ( c*d1+(1.-d1), s * d2 * d1 , -s * d3 * d1 , s * d4 * d1 ), + vec4 ( -s * d1 * d2 , c*d2+(1.-d2), s * d3 * d2 , -s * d3 * d2 ), + vec4 ( s * d1 * d4 , -s * d2 * d3 , c*d3+(1.-d3), s * d4 * d3 ), + vec4 ( -s * d1 * d2 , s * d2 * d4 , -s * d3 * d4 , c*d4+(1.-d4)) ); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/BusyBotCircle.fs b/AuraGrove/MediaFiles/BusyBotCircle.fs new file mode 100644 index 0000000..736d747 --- /dev/null +++ b/AuraGrove/MediaFiles/BusyBotCircle.fs @@ -0,0 +1,111 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES" : [ + "generator", + "circle" + ], + "INPUTS" : [ + { + "NAME" : "radius1", + "TYPE" : "float", + "DEFAULT" : 0.75, + "MIN" : 0.01, + "MAX" : 0.99 + }, + { + "NAME" : "radius2", + "TYPE" : "float", + "DEFAULT" : 0.88, + "MIN" : 0.01, + "MAX" : 0.99 + }, + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : 33.0, + "MIN" : -100.0, + "MAX" : 100.0 + }, + { + "NAME" : "sectors", + "TYPE" : "float", + "DEFAULT" : 19.0, + "MIN" : 12.0, + "MAX" : 180.0 + }, + { + "NAME" : "thickness", + "TYPE" : "float", + "DEFAULT" : 0.83, + "MIN" : 0.1, + "MAX" : 1.0 + }, + { + "NAME" : "edge", + "TYPE" : "float", + "DEFAULT" : 0.03, + "MIN" : 0.01, + "MAX" : 0.9 + }, + { + "NAME" : "blur", + "TYPE" : "float", + "DEFAULT" : 0.25, + "MIN" : 0.1, + "MAX" : 2.0 + }, + { + "NAME" : "tint", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : 0.0, + "MAX" : 1.0 + }, + { + "NAME" : "hue", + "TYPE" : "float", + "DEFAULT" : 0.35, + "MIN" : 0.0, + "MAX" : 1.0 + } + ] +} +*/ + +//////////////////////////////////////////////////////////////////// +// BusyBotCircle by mojovideotech +// +// based on: +// loading circle by Catzpaw 2018 +// glslsandbox.com\/e#46416.0 +// +// License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////////////// + + +#ifdef GL_ES +precision mediump float; +#endif + +#define twpi 6.2831853 // two pi, 2*pi + +vec2 polar(vec2 p) { + float l = pow(length(p), 0.4), a = atan(-p.x, p.y); + return vec2(a, l); +} + +float ribbon(vec2 p, vec2 r) { return smoothstep(r.x,r.x+edge,p.y)*smoothstep(r.y+edge,r.y,p.y); } + +float stripe(vec2 p) { + p.x = mod(p.x + floor(TIME*rate) * twpi/sectors, twpi); + return smoothstep(thickness+blur, thickness, abs(cos(p.x*sectors*0.5)))*(1.0-floor(p.x*sectors/twpi)/sectors);} + +void main(void) +{ + vec2 p = polar((gl_FragCoord.xy*2.0-RENDERSIZE.xy)/min(RENDERSIZE.x,RENDERSIZE.y)); + vec2 r; + if (radius250.0 ) break; + d += h; + vec3 pos = ro+rd*d; + pos.y += 0.5; + float res = map(pos)*7.0; + h = res; + } + return d; +} + +float mapV( vec3 p ){ return clamp(-map(p), 0.0, 1.0); } + +vec4 marchV(in vec3 ro, in vec3 rd, in float t, in vec3 bgc) { + vec4 rz = vec4( 0.0 ); + for( int i=0; i<100; i++ ) { + if(rz.a > 0.99 || t > 200.0) break; + vec3 pos = ro + t*rd; + float den = mapV(pos); + vec4 col = vec4(mix( vec3(0.8,0.75,0.85), vec3(0.0), den ),den); + col.xyz *= mix(bgc*bgc*2.5, mix(vec3(0.1,0.2,0.55),vec3(0.8,0.85,0.9),moy*0.4), clamp( -(den*40.0+0.0)*pos.y*0.03-moy*0.5, 0.0, 1.0)); + col.rgb += clamp((1.0-den*6.0) + pos.y*0.13 +0.55, 0.0, 1.0)*0.35*mix(bgc,vec3(1.0),0.7); //Fringes + col += clamp(den*pos.y*0.15, -0.02, 0.0); //Depth occlusion + col *= smoothstep(0.2+moy*0.05,0.0,mapV(pos+1.0*lgt))*.85+0.15; //Shadows + col.a *= 0.95; + col.rgb *= col.a; + rz = rz + col*(1.0 - rz.a); + t += max(0.3,(2.0-den*30.0)*t*0.011); + } + return clamp(rz, 0.0, 1.0); +} + +mat3 rot_x(float a){float sa = sin(a); float ca = cos(a); return mat3(1.,.0,.0, .0,ca,sa, .0,-sa,ca);} +mat3 rot_y(float a){float sa = sin(a); float ca = cos(a); return mat3(ca,.0,sa, .0,1.,.0, -sa,.0,ca);} +mat3 rot_z(float a){float sa = sin(a); float ca = cos(a); return mat3(ca,sa,.0, -sa,ca,.0, .0,.0,1.);} + +void main() +{ + vec2 q = gl_FragCoord.xy / RENDERSIZE.xy; + vec2 p = q - 0.5; + float asp =RENDERSIZE.x/RENDERSIZE.y; + p.x *= asp; + vec2 mo = center.xy; + moy = mo.y; + float st = sin(T*0.3-1.3)*rot; + vec3 ro = vec3(0.0,-2.0+sin(T*0.3-1.0)*2.0,T*30.0); + ro.x = path(ro.z); + vec3 ta = ro + vec3(0,0,1); + vec3 fw = normalize(ta - ro); + vec3 uu = normalize(cross( vec3(0.0,1.0,0.0), fw)); + vec3 vv = normalize(cross(fw,uu)); + vec3 rd = normalize(p.x*uu + p.y*vv + -zoom*fw); + float rox = sin(T*0.2)*0.6+2.9; + rox += smoothstep(0.6,1.2,sin(T*0.25))*3.5; + float roy = sin(T*0.5)*rot; + mat3 rotation = rot_x(-roy)*rot_y(-rox+st*1.5)*rot_z(st); + mat3 inv_rotation = rot_z(-st)*rot_y(rox-st*1.5)*rot_x(roy); + rd *= rotation; + rd.y -= dot(p,p)*0.06; + rd = normalize(rd); + vec3 col = vec3(0.0); + lgt = normalize(vec3(-mo.x,mo.y+0.1,1.0)); + float rdl = clamp(dot(rd, lgt),0.0,1.0); + vec3 hor = mix(vec3(0.9,0.6,0.7)*0.35, vec3(0.5,0.05,0.05), rdl); + hor = mix(hor, vec3(0.5,0.8,1.0),mo.y); + col += mix( vec3(0.2,0.2,0.6), hor, exp2(-(1.0+ 3.0*(1.0-rdl))*max(abs(rd.y),0.0)))*0.6; + col += 0.8*vec3(1.0,0.9,0.9)*exp2(rdl*650.0-650.0); + col += 0.3*vec3(1.0,1.0,0.1)*exp2(rdl*100.0-100.0); + col += 0.5*vec3(1.0,0.7,0.0)*exp2(rdl*50.0-50.0); + col += 0.4*vec3(1.0,0.0,0.05)*exp2(rdl*10.0-10.0); + vec3 bgc = col; + float rz = march(ro,rd); + if (rz < 70.) { + vec4 res = marchV(ro, rd, rz-5.0, bgc); + col = col*(1.0-res.w) + res.xyz; + } + float g = smoothstep(0.01,0.9,hue); + col = mix(mix(col,col.brg*vec3(1.0,0.75,1.0),clamp(g*2.0,0.0,1.0)), col.bgr, clamp((g-0.5)*2.,0.0,1.0)); + col = clamp(col, 0.0, 1.0); + col = col*0.5 + 0.5*col*col*(3.0-2.0*col); //saturation + col = pow(col, vec3(0.416667))*1.055 - 0.055; //sRGB + gl_FragColor = vec4( col, 1.0 ); +} diff --git a/AuraGrove/MediaFiles/CloudEleven.fs b/AuraGrove/MediaFiles/CloudEleven.fs new file mode 100644 index 0000000..595495f --- /dev/null +++ b/AuraGrove/MediaFiles/CloudEleven.fs @@ -0,0 +1,186 @@ +/*{ + "CREDIT": "by mojovideotech", + "DESCRIPTION": "", + "CATEGORIES": [ + "generator", + "clouds" + ], + "INPUTS" : [ + { + "NAME" : "center", + "TYPE" : "point2D", + "DEFAULT" : [ 0.0, 0.0 ], + "MAX" : [ 1.0, 1.0 ], + "MIN" : [ -1.0, -1.0 ] + }, + { + "NAME" : "seed", + "TYPE" : "float", + "DEFAULT" : 514229, + "MIN" : 75025, + "MAX" : 3524578 + }, + { + "NAME" : "zoom", + "TYPE" : "float", + "DEFAULT" : 0.5, + "MIN" : 0.125, + "MAX" : 1.5 + }, + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : 0.25, + "MIN" : -1.0, + "MAX" : 1.0 + }, + { + "NAME" : "rot", + "TYPE" : "float", + "DEFAULT" : 0.2, + "MIN" : -0.5, + "MAX" : 0.5 + }, + { + "NAME" : "hue", + "TYPE" : "float", + "DEFAULT" : 0.0, + "MIN" : 0.0, + "MAX" : 1.0 + } + ], + "ISFVSN" : 2.0 +} +*/ + +//////////////////////////////////////////////////////////// +// CloudEleven by mojovideotech +// +// based on +// Cloud Ten by nimitz +// shadertoy.com\/XtS3DD +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + + + +#define pi 3.14159265 // pi + +float T = TIME * rate, moy = 0.0; +vec3 lgt = vec3(1.0); + +mat2 mm2(in float a) {float c = cos(a), s = sin(a);return mat2(c,s,-s,c);} + +float noise3D(vec3 p) { + const vec3 s = vec3(17, 377, 1113); + vec3 ip = floor(p); + vec4 h = vec4(0.0, s.yz, s.y + s.z) + dot(ip, s); + p -= ip; + p = p*p*p*(p*(p * 6.0 - 15.0) + 10.0); + h = mix(fract(sin(h)*seed), fract(sin(h + s.x)*seed), p.x); + h.xy = mix(h.xz, h.yw, p.y); + return mix(h.x, h.y, p.z); +} + +float fbm(in vec3 x) { + float rz = 0.0, a = 0.35; + for (int i = 0; i<2; i++) { + rz += noise3D(x)*a; + a*=0.35; + x*= 4.0; + } + return rz; +} + +float path(in float x) { return sin(x*0.01-pi)*28.0+6.5; } + +float map(vec3 p) { + return p.y*0.07 + (fbm(p*0.3)-0.1) + sin(p.x*0.24 + sin(p.z*.01)*7.)*0.22+0.15 + sin(p.z*0.08)*0.05; +} + +float march(in vec3 ro, in vec3 rd) { + float precis = 0.3, h= 1.0, d = 0.0; + for( int i=0; i<17; i++ ) { + if( abs(h)50.0 ) break; + d += h; + vec3 pos = ro+rd*d; + pos.y += 0.5; + float res = map(pos)*7.0; + h = res; + } + return d; +} + +float mapV( vec3 p ){ return clamp(-map(p), 0.0, 1.0); } + +vec4 marchV(in vec3 ro, in vec3 rd, in float t, in vec3 bgc) { + vec4 rz = vec4( 0.0 ); + for( int i=0; i<100; i++ ) { + if(rz.a > 0.99 || t > 200.0) break; + vec3 pos = ro + t*rd; + float den = mapV(pos); + vec4 col = vec4(mix( vec3(0.8,0.75,0.85), vec3(0.0), den ),den); + col.xyz *= mix(bgc*bgc*2.5, mix(vec3(0.1,0.2,0.55),vec3(0.8,0.85,0.9),moy*0.4), clamp( -(den*40.0+0.0)*pos.y*0.03-moy*0.5, 0.0, 1.0)); + col.rgb += clamp((1.0-den*6.0) + pos.y*0.13 +0.55, 0.0, 1.0)*0.35*mix(bgc,vec3(1.0),0.7); //Fringes + col += clamp(den*pos.y*0.15, -0.02, 0.0); //Depth occlusion + col *= smoothstep(0.2+moy*0.05,0.0,mapV(pos+1.0*lgt))*.85+0.15; //Shadows + col.a *= 0.95; + col.rgb *= col.a; + rz = rz + col*(1.0 - rz.a); + t += max(0.3,(2.0-den*30.0)*t*0.011); + } + return clamp(rz, 0.0, 1.0); +} + +mat3 rot_x(float a){float sa = sin(a); float ca = cos(a); return mat3(1.,.0,.0, .0,ca,sa, .0,-sa,ca);} +mat3 rot_y(float a){float sa = sin(a); float ca = cos(a); return mat3(ca,.0,sa, .0,1.,.0, -sa,.0,ca);} +mat3 rot_z(float a){float sa = sin(a); float ca = cos(a); return mat3(ca,sa,.0, -sa,ca,.0, .0,.0,1.);} + +void main() +{ + vec2 q = gl_FragCoord.xy / RENDERSIZE.xy; + vec2 p = q - 0.5; + float asp =RENDERSIZE.x/RENDERSIZE.y; + p.x *= asp; + vec2 mo = center.xy; + moy = mo.y; + float st = sin(T*0.3-1.3)*rot; + vec3 ro = vec3(0.0,-2.0+sin(T*0.3-1.0)*2.0,T*30.0); + ro.x = path(ro.z); + vec3 ta = ro + vec3(0,0,1); + vec3 fw = normalize(ta - ro); + vec3 uu = normalize(cross( vec3(0.0,1.0,0.0), fw)); + vec3 vv = normalize(cross(fw,uu)); + vec3 rd = normalize(p.x*uu + p.y*vv + -zoom*fw); + float rox = sin(T*0.2)*0.6+2.9; + rox += smoothstep(0.6,1.2,sin(T*0.25))*3.5; + float roy = sin(T*0.5)*rot; + mat3 rotation = rot_x(-roy)*rot_y(-rox+st*1.5)*rot_z(st); + mat3 inv_rotation = rot_z(-st)*rot_y(rox-st*1.5)*rot_x(roy); + rd *= rotation; + rd.y -= dot(p,p)*0.06; + rd = normalize(rd); + vec3 col = vec3(0.0); + lgt = normalize(vec3(-mo.x,mo.y+0.1,1.0)); + float rdl = clamp(dot(rd, lgt),0.0,1.0); + vec3 hor = mix(vec3(0.9,0.6,0.7)*0.35, vec3(0.5,0.05,0.05), rdl); + hor = mix(hor, vec3(0.5,0.8,1.0),mo.y); + col += mix( vec3(0.2,0.2,0.6), hor, exp2(-(1.0+ 3.0*(1.0-rdl))*max(abs(rd.y),0.0)))*0.6; + col += 0.8*vec3(1.0,0.9,0.9)*exp2(rdl*650.0-650.0); + col += 0.3*vec3(1.0,1.0,0.1)*exp2(rdl*100.0-100.0); + col += 0.5*vec3(1.0,0.7,0.0)*exp2(rdl*50.0-50.0); + col += 0.4*vec3(1.0,0.0,0.05)*exp2(rdl*10.0-10.0); + vec3 bgc = col; + float rz = march(ro,rd); + if (rz < 70.) { + vec4 res = marchV(ro, rd, rz-5.0, bgc); + col = col*(1.0-res.w) + res.xyz; + } + float g = smoothstep(0.01,0.9,hue); + col = mix(mix(col,col.brg*vec3(1.0,0.75,1.0),clamp(g*2.0,0.0,1.0)), col.bgr, clamp((g-0.5)*2.,0.0,1.0)); + col = clamp(col, 0.0, 1.0); + col = col*0.5 + 0.5*col*col*(3.0-2.0*col); //saturation + col = pow(col, vec3(0.416667))*1.055 - 0.055; //sRGB + gl_FragColor = vec4( col, 1.0 ); +} diff --git a/AuraGrove/MediaFiles/ColorDiffusionFlow.fs b/AuraGrove/MediaFiles/ColorDiffusionFlow.fs new file mode 100644 index 0000000..43f248e --- /dev/null +++ b/AuraGrove/MediaFiles/ColorDiffusionFlow.fs @@ -0,0 +1,111 @@ +/*{ + "CREDIT": "by mojovideotech", + "DESCRIPTION": "from http://glslsandbox.com/e#35553.0", + "CATEGORIES": [ + "fluid", + "liquid" + ], + "INPUTS": [ + { + "NAME" : "rate1", + "TYPE" : "float", + "DEFAULT" : 1.9, + "MIN" : -3.0, + "MAX" : 3.0 + }, + { + "NAME" : "rate2", + "TYPE" : "float", + "DEFAULT" : 0.6, + "MIN" : -3.0, + "MAX" : 3.0 + }, + { + "NAME" : "loopcycle", + "TYPE" : "float", + "DEFAULT" : 85.0, + "MIN" : 20.0, + "MAX" : 100.0 + }, + { + "NAME" : "color1", + "TYPE" : "float", + "DEFAULT" : 0.45, + "MIN" : -2.5, + "MAX" : 2.5 + }, + { + "NAME" : "color2", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : -1.25, + "MAX" : 1.125 + }, + { + "NAME" : "cycle1", + "TYPE" : "float", + "DEFAULT" : 1.33, + "MIN" : 0.01, + "MAX" : 3.1459 + }, + { + "NAME" : "cycle2", + "TYPE" : "float", + "DEFAULT" : 0.22, + "MIN" : -0.497, + "MAX" : 0.497 + }, + { + "NAME" : "nudge", + "TYPE" : "float", + "DEFAULT" : 0.095, + "MIN" : 0.001, + "MAX" : 0.01 + }, + { + "NAME" : "depthX", + "TYPE" : "float", + "DEFAULT" : 0.85, + "MIN" : 0.001, + "MAX" : 0.9 + }, + { + "NAME" : "depthY", + "TYPE" : "float", + "DEFAULT" : 0.25, + "MIN" : 0.001, + "MAX" : 0.9 + } + ] +}*/ + +/////////////////////////////////////////// +// ColorDiffusionFlow by mojovideotech +// +// based on : +// glslsandbox.com/\e#35553.0 +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +/////////////////////////////////////////// + + +#ifdef GL_ES +precision mediump float; +#endif + +#define pi 3.141592653589793 // pi + +void main() { + float T = TIME * rate1; + float TT = TIME * rate2; + vec2 p=(2.*isf_FragNormCoord); + for(int i=1;i<11;i++) { + vec2 newp=p; + float ii = float(i); + newp.x+=depthX/ii*sin(ii*pi*p.y+T*nudge+cos((TT/(5.0*ii))*ii)); + newp.y+=depthY/ii*cos(ii*pi*p.x+TT+nudge+sin((T/(5.0*ii))*ii)); + p=newp+log(DATE.w)/loopcycle; + } + vec3 col=vec3(cos(p.x+p.y+3.0*color1)*0.5+0.5,sin(p.x+p.y+6.0*cycle1)*0.5+0.5,(sin(p.x+p.y+9.0*color2)+cos(p.x+p.y+12.0*cycle2))*0.25+.5); + gl_FragColor=vec4(col*col, 1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Cos Orbit.fs b/AuraGrove/MediaFiles/Cos Orbit.fs new file mode 100644 index 0000000..68a9bfa --- /dev/null +++ b/AuraGrove/MediaFiles/Cos Orbit.fs @@ -0,0 +1,111 @@ +/*{ + "DESCRIPTION": "Converted ISF version of wave and point shader with custom controls.", + "CATEGORIES": [ "Generator" ], + "INPUTS": [ + { + "NAME": "phase", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "lineThickness", + "TYPE": "float", + "DEFAULT": 0.1, + "MIN": 0.01, + "MAX": 1.0 + }, + { + "NAME": "pointThickness", + "TYPE": "float", + "DEFAULT": 0.3, + "MIN": 0.01, + "MAX": 1.0 + }, + { + "NAME": "pitch", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "yaw", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "glow", + "TYPE": "float", + "DEFAULT": 0.45, + "MIN": 0.1, + "MAX": 0.5 + }, + + { + "NAME": "waveScale", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": 1.0, + "MAX": 5.0 + } + + ] +}*/ + + +// slightly modded and parametirized (is that a word?) version of +// https://www.shadertoy.com/view/XfXGz4 by the great ChunderFPV + + +#define A(v) mat2(cos(m.v + radians(vec4(0.0, -90.0, 90.0, 0.0)))) // rotate +#define W(v) length(vec3(p.yz - v(p.x + vec2(0.0, pi_2) + t), 0.0)) - lineThickness // wave +#define P(v) length(p - vec3(0.0, v(t), v(t + pi_2))) - pointThickness // point + +void main() { + float pi = 3.1416; + float pi2 = pi * 2.0; + float pi_2 = pi / 2.0; + float t = pi * phase * 2.; + float s = 1.0, d = 0.0, i = d; + + vec2 R = RENDERSIZE.xy; + vec2 m = vec2(pitch * pi * 2., yaw * pi * 2.); + + vec3 o = vec3(0.0, 0.0, -7.0); // cam + vec3 u = normalize(vec3((gl_FragCoord.xy - 0.5 * R) / R.y, 1.0)); + vec3 c = vec3(0.0), k = c, p; + + // Set rotation matrices for pitch and yaw + mat2 v = A(y); + mat2 h = A(x); + + // Raymarch 25 + for (float i = 0.; i < 35.0; i++) { + p = o + u * d; + p.yz *= v; + p.xz *= h; + //p.x -= 13.0; // Slide objects to the right a bit + + // Reflect into negative y + //if (p.y < -1.5) p.y = 2.0 / p.y; + + // Calculate wave and point distances + k.x = min(max(p.x * 1. + lineThickness, W(sin)), P(sin)) * waveScale; // Sine wave + k.y = min(max(p.x * 1. + lineThickness, W(cos)), P(cos)) * waveScale; // Cosine wave + s = min(s, min(k.x, k.y)); // Blend + + // Break condition for raymarching + if (s < 0.001 || d > 100.0) break; + d += s * 0.5; + } + + // Add and color the scene + c = max(cos(d * pi2) - s * sqrt(d * (0.6 - glow) ) - k, 0.0); + c.gb += 0.01; + c = c * 0.2 + c.brg * 0.9 + c * c; + gl_FragColor = vec4(c * c, 1.0); +} diff --git a/AuraGrove/MediaFiles/CosmicJourney (1).fs b/AuraGrove/MediaFiles/CosmicJourney (1).fs new file mode 100644 index 0000000..17b84db --- /dev/null +++ b/AuraGrove/MediaFiles/CosmicJourney (1).fs @@ -0,0 +1,74 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES": [ + "Automatically Converted" + ], + "DESCRIPTION": "Automatically converted from http://glslsandbox.com/e#9377.0", + "INPUTS": [ + + ] +} +*/ + + +// ported from https://www.shadertoy.com/view/lslGWr +// Added some stars: Thanks to http://glsl.heroku.com/e#6904.0 + +#ifdef GL_ES +precision mediump float; +#endif + + +// http://www.fractalforums.com/new-theories-and-research/very-simple-formula-for-fractal-patterns/ +float field(in vec3 p) { + float strength = 7. + .03 * log(1.e-6 + fract(sin(TIME) * 4373.11)); + float accum = 0.; + float prev = 0.; + float tw = 0.; + for (int i = 0; i < 32; ++i) { + float mag = dot(p, p); + p = abs(p) / mag + vec3(-.51, -.4, -1.3); + float w = exp(-float(i) / 7.); + accum += w * exp(-strength * pow(abs(mag - prev), 2.3)); + tw += w; + prev = mag; + } + return max(0., 5. * accum / tw - .7); +} + +vec3 nrand3( vec2 co ) +{ + vec3 a = fract( cos( co.x*8.3e-3 + co.y )*vec3(1.3e5, 4.7e5, 2.9e5) ); + vec3 b = fract( sin( co.x*0.3e-3 + co.y )*vec3(8.1e5, 1.0e5, 0.1e5) ); + vec3 c = mix(a, b, 0.5); + return c; +} + +void main() { + vec2 uv = 1.0 * gl_FragCoord.xy / RENDERSIZE.xy - 1.0; + vec2 uvs = uv * RENDERSIZE.xy / max(RENDERSIZE.x, RENDERSIZE.y); + + vec3 p = vec3(uvs / 4., 0) + vec3(2., -1.3, -1.); + p += 0.15 * vec3(sin(TIME / 16.), sin(TIME / 12.), sin(TIME / 128.)); + + vec3 p2 = vec3(uvs / (4.+sin(TIME*0.11)*0.2+0.2+sin(TIME*0.15)*0.3+0.4), 1.5) + vec3(2., -1.3, -1.); + p2 += 0.15 * vec3(sin(TIME / 16.), sin(TIME / 12.), sin(TIME / 128.)); + + vec3 p3 = vec3(uvs / (4.+sin(TIME*0.14)*0.23+0.23+sin(TIME*0.19)*0.31+0.31), 0.5) + vec3(2., -1.3, -1.); + p3 += 0.15 * vec3(sin(TIME / 16.), sin(TIME / 12.), sin(TIME / 128.)); + + float t = field(p); + float t2 = field(p2); + float t3 = field(p3); + + float v = (1. - exp((abs(uv.x) - 1.) * 6.)) * (1. - exp((abs(uv.y) - 1.) * 6.)); + + vec4 c1 = mix(.4, 1., v) * vec4(1.8 * t * t * t, 1.4 * t * t, t, 1.0); + vec4 c2 = mix(.4, 1., v) * vec4(1.4 * t2 * t2 * t2, 1.8 * t2 * t2, t2, 1.0); + vec4 c3 = mix(.4, 1., v) * vec4(1.4 * t3 * t3 * t3, 1.8 * t3 * t3, t3, 1.0); + c1.b *= mod(gl_FragCoord.y+1.0, 2.0)*1.4; + c2.r *= mod(gl_FragCoord.y, 2.0)*3.4; + c3.g *= mod(gl_FragCoord.y, 2.0)*2.4; + gl_FragColor = c1*0.7 + c2*0.5 + c3*0.3; + +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Cosplay.fs b/AuraGrove/MediaFiles/Cosplay.fs new file mode 100644 index 0000000..533ae68 --- /dev/null +++ b/AuraGrove/MediaFiles/Cosplay.fs @@ -0,0 +1,149 @@ +// SaturdayShader Week 21 : Cosplay +// by Joseph Fiola (http://www.joefiola.com) +// 2016-01-09 + +/*{ + "CREDIT": "Joseph Fiola", + "DESCRIPTION": "", + "CATEGORIES": [ + "Generator" + ], + "INPUTS": [ + { + "NAME": "dotSize", + "TYPE": "float", + "DEFAULT": 0.01, + "MIN": 0, + "MAX": 0.1 + }, + { + "NAME": "iteration", + "TYPE": "float", + "DEFAULT": 100, + "MIN": 0, + "MAX": 100 + }, + { + "NAME": "xAmp", + "TYPE": "float", + "DEFAULT": 0.3, + "MIN": -1, + "MAX": 1 + }, + { + "NAME": "yAmp", + "TYPE": "float", + "DEFAULT": 0.1, + "MIN": -1, + "MAX": 1 + }, + { + "NAME": "xFactor", + "TYPE": "float", + "DEFAULT": 0.2, + "MIN": 0, + "MAX": 10 + }, + { + "NAME": "yFactor", + "TYPE": "float", + "DEFAULT": 0.2, + "MIN": 0, + "MAX": 10 + }, + { + "NAME": "speed", + "TYPE": "float", + "DEFAULT": 0.05, + "MIN": 0, + "MAX": 0.1 + }, + { + "NAME": "rotateCanvas", + "TYPE": "float", + "DEFAULT": 0, + "MIN": -3.141592653589793, + "MAX": 3.141592653589793 + }, + { + "NAME": "rotateParticles", + "TYPE": "float", + "DEFAULT": 1, + "MIN": -1.5707963267948966, + "MAX": 1.5707963267948966 + }, + { + "NAME": "rotateMultiplier", + "TYPE": "float", + "DEFAULT": 10, + "MIN": 0.01, + "MAX": 10 + }, + { + "NAME": "pos", + "TYPE": "point2D", + "DEFAULT": [ + 0.5, + 0.5 + ], + "MIN": [ + 0, + 0 + ], + "MAX": [ + 1, + 1 + ] + } + ] +}*/ + + +//rotation +vec2 rot(vec2 uv,float a){ + return vec2( + uv.x * cos(a) - uv.y * sin(a), + uv.y * cos(a) + uv.x * sin(a) + ); +} + +float circle(vec2 uv, float size){ + return length(uv) > size?0.0:1.0; +} + + +void main(){ + + vec2 uv = gl_FragCoord.xy/RENDERSIZE; + uv -= vec2(pos); + uv.x *= RENDERSIZE.x/RENDERSIZE.y; + + vec3 color = vec3(0); + + //rotate canvas + uv=rot(uv,rotateCanvas); + + + float i = 0.0; + + for (int _i = 0; _i<100; _i++) { // for loop fix on Intel - and possible others - by Imimot @imimothq + + i = float(_i); + + // set max number of iterations + if (iteration < i) break; + + // sin() cos() animation + vec2 st = uv - vec2(cos(i * xFactor * (TIME*speed)) * xAmp, sin(i * yFactor * (TIME*speed)) * yAmp); + + // set dotSize + float dots = circle((st), dotSize * (i * 0.01)); + + //rotate particles + uv=rot(uv,rotateParticles*rotateMultiplier); + + color += dots; + } + + gl_FragColor = vec4(vec3(color),1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Cubes.fs b/AuraGrove/MediaFiles/Cubes.fs new file mode 100644 index 0000000..a7b5b18 --- /dev/null +++ b/AuraGrove/MediaFiles/Cubes.fs @@ -0,0 +1,181 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES" : [ + "Generator", + "voxels" + ], + "DESCRIPTION" : "Simple to reuse, fast voxel engine.", + "INPUTS" : [ + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : 0.0, + "MAX" : 3.0 + }, + { + "NAME" : "rot", + "TYPE" : "float", + "DEFAULT" : 0.025, + "MIN" : -0.25, + "MAX" : 0.25 + }, + { + "NAME" : "light", + "TYPE" : "point2D", + "DEFAULT" : [ -0.3, -0.2 ], + "MAX" : [ 1.0, 1.0 ], + "MIN" : [ -1.0, -1.0] + }, + { + "NAME" : "tilt", + "TYPE" : "float", + "MIN" : 1.01, + "MAX" : 1.99, + "DEFAULT" : 1.88 + }, + { + "NAME" : "dof", + "TYPE" : "float", + "MIN" : 0.01, + "MAX" : 5.0, + "DEFAULT" : 0.88 + }, + { + "NAME" : "zoom", + "TYPE" : "float", + "MIN" : 6.0, + "MAX" : 50.0, + "DEFAULT" : 30.0 + }, + { + "NAME" : "grow", + "TYPE" : "float", + "MIN" : 0.0, + "MAX" : 8.0, + "DEFAULT" : 4.5 + }, + { + "NAME" : "seed1", + "TYPE" : "float", + "MIN" : 1.0, + "MAX" : 24.0, + "DEFAULT" : 6.84 + }, + { + "NAME" : "seed2", + "TYPE" : "float", + "MIN" : -12.0, + "MAX" : 12.0, + "DEFAULT" : -7.16 + }, + { + "NAME" : "seed3", + "TYPE" : "float", + "MIN" : 0.0, + "MAX" : 1.0, + "DEFAULT" : 0.53 + }, + { + "NAME" : "color", + "TYPE" : "float", + "DEFAULT" : 8.65, + "MIN" : -8.0, + "MAX" : 16.0 + }, + { + "NAME" : "loops", + "TYPE" : "float", + "DEFAULT" : 23.0, + "MIN" : 8.0, + "MAX" : 80.0 + }, + { + "NAME" : "c1", + "TYPE" : "color", + "DEFAULT" : [ 1.0, 0.0, 0.0, 1.0 ] + }, + { + "NAME" : "c2", + "TYPE" : "color", + "DEFAULT" : [ 0.7, 1.0, 0.1, 1.0 ] + } + ], + "ISFVSN" : 2.0 +} +*/ + +//////////////////////////////////////////////////////////////////// +// VoxelEngine by mojovideotech +// +// based on : +// shadertoy.com\/view\/4tlfDn +// +// License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////////////// + +#define twpi 6.2831853 // two pi, 2*pi + +const vec3 backgroundColor = vec3(0.0, 0.0, 0.0); +const float shadow = 4.5; + +float setCamera(out vec3 eye, out vec3 center) { + vec2 m = vec2(rot * TIME, 0.5); + m *= twpi * vec2(3.0, tilt); + center = vec3(0.0); + float D = 50.0 - zoom; + eye = center + vec3(D * sin(m.x) * sin(m.y), D * cos(m.x) * sin(m.y), D * cos(m.y)); + return dof; +} + +bool voxelHit(vec3 pos) { + vec3 hash = fract(pos * vec3(28.657, 51.4229, 1.597)); + hash = mix(hash, dot(hash.zxy, hash.yzx)-hash, seed3); + return length(pos) + seed2 * fract((hash.x + hash.y) * hash.z) < seed1 + grow * sin(TIME * rate); +} + +vec3 voxelColor(vec3 pos, vec3 norm) { return mix(c1.rgb, c2.rgb, (length(floor(pos*fract(seed2))) - color)/seed1); } + +float castRay(vec3 eye, vec3 ray, out float dist, out vec3 norm) { + vec3 pos = floor(eye); + vec3 ri = 1.0 / ray; + vec3 rs = sign(ray); + vec3 ris = ri * rs; + vec3 dis = (pos - eye + 0.5 + rs * 0.5) * ri; + vec3 dim = vec3(0.0); + float II = 0.0; + for (int i = 0; i < 80; ++i) { + if(II>=loops) { break; } + if (voxelHit(pos)) { + dist = dot(dis - ris, dim); + norm = -dim * rs; + return 1.0; + } + dim = step(dis, dis.yzx); + dim *= (1.0 - dim.zxy); + dis += dim * ris; + pos += dim * rs; + II += 1.0; + } + return 0.0; +} + +void main() { + float dist; + vec3 eye, center, norm; + float zoom = setCamera(eye, center); + vec3 lightDir = vec3(light.xy, 0.8); + vec3 forward = normalize(center - eye); + vec3 right = normalize(cross(forward, vec3(0.0, 0.0, 1.0))); + vec3 up = cross(right, forward); + vec2 xy = 2.0 * gl_FragCoord.xy - RENDERSIZE.xy; + vec3 ray = normalize(xy.x * right + xy.y * up + zoom * forward * RENDERSIZE.y); + float hit = castRay(eye, ray, dist, norm); + vec3 pos = eye + dist * ray; + vec3 col = voxelColor(pos - 0.001 * norm, norm); + float shade = dot(norm, lightDir); + float illuminated = 1.0 - castRay(pos + 0.001 * norm, lightDir, dist, norm); + float light = (3.0 + shadow * (illuminated * max(shade, 0.0) - 1.0)) * (1.0 - max(-shade, 0.0)); + + gl_FragColor = vec4(mix(backgroundColor, light * col, hit), 1.0); +} diff --git a/AuraGrove/MediaFiles/CubicMatrixModulatorRedux.fs b/AuraGrove/MediaFiles/CubicMatrixModulatorRedux.fs new file mode 100644 index 0000000..2e0a237 --- /dev/null +++ b/AuraGrove/MediaFiles/CubicMatrixModulatorRedux.fs @@ -0,0 +1,182 @@ +/*{ + "CREDIT": "by mojovideotech", + "DESCRIPTION": "", + "CATEGORIES": [ + "generator" + ], + "INPUTS": [ + { + "MAX": [ + 2, + 2 + ], + "MIN": [ + -2, + -2 + ], + "NAME": "center", + "TYPE": "point2D" + }, + { + "MAX": 3, + "MIN": -3.14, + "DEFAULT": -3.11, + "NAME": "cubesize", + "TYPE": "float" + }, + { + "MAX": 20, + "MIN": 3, + "DEFAULT": 5.3, + "NAME": "vanishingpoint", + "TYPE": "float" + }, + { + "MAX": 0.9, + "MIN": 0.01, + "DEFAULT": 0.15, + "NAME": "brightness", + "TYPE": "float" + }, + { + "MAX": 2, + "MIN": -2, + "DEFAULT": 0.6, + "NAME": "rate", + "TYPE": "float" + }, + { + "MAX": 0.8, + "MIN": 0.05, + "DEFAULT": 0.47, + "NAME": "tint", + "TYPE": "float" + }, + { + "MAX": 3, + "MIN": -6, + "DEFAULT": -1.73, + "NAME": "stretchx", + "TYPE": "float" + }, + { + "MAX": 3, + "MIN": 0.01, + "DEFAULT": 2.6, + "NAME": "stretchy", + "TYPE": "float" + }, + { + "MAX": 3.5, + "MIN": 0.95, + "DEFAULT": 1.83, + "NAME": "stretchz", + "TYPE": "float" + }, + { + "MAX": 0.99, + "MIN": 0.01, + "DEFAULT": 0.49, + "NAME": "overdrive", + "TYPE": "float" + }, + { + "MAX": 5, + "MIN": 0, + "DEFAULT": 2.77, + "NAME": "pov", + "TYPE": "float" + } + ] +}*/ + + + +//////////////////////////////////////////////////////////// +// CubicMatrixModulatorRedux by mojovideotech +// +// based on : +// shadertoy/\XsB3Rm +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + +#define pi 3.141592653589793 // pi +#define qtpi 0.78539816339745 // quarter pi, pi/4, 45ยบ + +const int max_iterations = 150; +const float stop_threshold = 0.001; +const float grad_step = 0.01; +const float clip_far = 300.0; + +float dist_field(vec3 p) { + p = mod(p, 8.0) - 4.0; + p = abs(p); + float cube = length(max(p - 0.0667, 0.5)); + float xd = max(p.y-dot(-stretchz,stretchx),p.z); + float yd = max(p.x-pow(stretchy,-stretchz),p.z); + float zd = mix(p.x,p.y,stretchz); + float beams = min(zd*cubesize, max(xd, yd)/mix(stretchz,stretchx,stretchy)) - cos(cubesize); + beams *= min(zd/sin(cubesize), max(xd, yd)/mod(stretchx,-stretchy)+log2(cubesize)); + beams += min(zd, min(xd, yd)) /-rate; + return min(beams, cube); +} + +vec3 shading( vec3 v, vec3 eye ) { + float s = v.x + v.y + v.z; + s -= eye.x + eye.y * v.z; + return vec3(mod(floor (s * 99.0),0.0+overdrive)-brightness); +} + +float ray_marching( vec3 origin, vec3 dir, float start, float end ) { + float depth = start; + for ( int i = 0; i < max_iterations; i++ ) { + float dist = dist_field( origin + dir * depth ); + if ( dist < stop_threshold ) { + return depth; + } + depth += dist; + if ( depth >= end) { + return end; + } + } + return end; +} + +vec3 ray_dir( float fov, vec2 size, vec2 pos ) { + vec2 xy = pos - size * center.xy; + float cot_half_fov = tan( mod((( 270.0 - fov * 0.25 ) * pi - qtpi), (( 60.0 - fov * 0.5 ) * pos.x))); + float z = size.y * 0.67 * pow(pov,cot_half_fov); + return normalize( vec3( xy, -z ) ); +} + +mat3 rotationXY( vec2 angle ) { + vec2 c = cos( angle*stretchx ); + vec2 s = sin( angle*stretchy ); + return mat3( + c.y , 0.0, -s.y, + s.y * s.x, c.x, c.y * s.x, + s.y * c.x, -s.x, c.y * c.x + ); +} + +void main(void) +{ + vec3 dir = ray_dir( stretchx, RENDERSIZE.xy, gl_FragCoord.xy); + vec3 eye = vec3( 0.0, 0.0, 0.0 ); + float TT = TIME * rate; + mat3 rot = rotationXY( vec2(TT * 0.005, TT * 0.0125)); + dir = rot * dir; + eye = rot * eye; + eye.z -= mod(TT * 4.0, 8.0); + eye.y = eye.x = 0.0; + float depth = ray_marching( eye, dir, 1.75, clip_far); + if ( depth >= clip_far ) { gl_FragColor = vec4(1.0); } + else { + vec3 pos = eye + dir * depth; + gl_FragColor = vec4( shading( pos, eye ) , 1.0 ); + gl_FragColor += depth/clip_far * vanishingpoint; + } + gl_FragColor = vec4(vec3(0.9-tint, 0.1+tint, 1.0-abs(tint/3.0)) - gl_FragColor.zyx, 1.0); + gl_FragColor += vec4(vec3(0.0+brightness, 0.3, 0.1+tint), 1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Difference Strokes.fs b/AuraGrove/MediaFiles/Difference Strokes.fs new file mode 100644 index 0000000..5fe4568 --- /dev/null +++ b/AuraGrove/MediaFiles/Difference Strokes.fs @@ -0,0 +1,233 @@ +// SaturdayShader Week 22 : Difference Strokes +// by Joseph Fiola (http://www.joefiola.com) +// 2016-01-16 + +// circle function from "Simple Circle" shadertoy - https://www.shadertoy.com/view/XsjGDt by @jonobr1 + + +/*{ + "CREDIT": "Joseph Fiola", + "DESCRIPTION": "", + "CATEGORIES": [ + "Generator" + ], + "INPUTS": [ + + { + "NAME": "invert", + "TYPE": "bool" + }, + { + "NAME": "difference", + "TYPE": "bool", + "DEFAULT": true + }, + { + "NAME": "shape", + "TYPE": "long", + "VALUES": [ + 0, + 1, + 2, + 3 + ], + "LABELS": [ + "circle solid", + "circle outlines", + "rect solid", + "rect outlines" + ], + "DEFAULT": 0 + }, + { + "NAME": "dotSize", + "TYPE": "float", + "DEFAULT": 0.1, + "MIN": 0.0, + "MAX": 0.5 + }, + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": 0.25, + "MAX": 4.0 + }, + { + "NAME": "iteration", + "TYPE": "float", + "DEFAULT": 25.0, + "MIN": 0.0, + "MAX": 50.0 + }, + { + "NAME": "xAmp", + "TYPE": "float", + "DEFAULT": 0.1, + "MIN": -0.5, + "MAX": 0.5 + }, + { + "NAME": "yAmp", + "TYPE": "float", + "DEFAULT": -0.2, + "MIN": -0.5, + "MAX": 0.5 + }, + { + "NAME": "xFactor", + "TYPE": "float", + "DEFAULT": 0.2, + "MIN": 0.0, + "MAX": 10.0 + }, + { + "NAME": "yFactor", + "TYPE": "float", + "DEFAULT": 0.2, + "MIN": 0.0, + "MAX": 10.0 + }, + { + "NAME": "speed", + "TYPE": "float", + "DEFAULT": 0.1, + "MIN": 0.0, + "MAX": 0.1 + }, + { + "NAME": "rotateCanvas", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": -1.0, + "MAX": 1.0 + }, + { + "NAME": "rotateParticles", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": -1.0, + "MAX": 1.0 + }, + { + "NAME": "rotateMultiplier", + "TYPE": "float", + "DEFAULT": 10.0, + "MIN": 0.01, + "MAX": 10 + }, + { + "NAME": "pos", + "TYPE": "point2D", + "DEFAULT": [ + 0.5, + 0.5 + ], + "MIN": [ + 0.0, + 0.0 + ], + "MAX": [ + 1.0, + 1.0 + ] + } + ] +}*/ + + +#define PI 3.14159265358979323846 +#define TWO_PI 6.28318530718 + + + +//rotation function +vec2 rot(vec2 uv,float a){ + return vec2(uv.x*cos(a)-uv.y*sin(a),uv.y*cos(a)+uv.x*sin(a)); +} + +// circle function from https://www.shadertoy.com/view/XsjGDt by @jonobr1 +vec3 circle(vec2 uv, vec2 pos, float rad) { + float d = length(pos - uv) - rad; + float t = clamp(d, 0.0, 1.0); + return vec3(vec3(1.0-t)); +} + +vec3 rectangle(vec2 uv, vec2 pos, float width, float height) { + float t = 0.0; + if ((uv.x > pos.x - width / 2.0) && (uv.x < pos.x + width / 2.0) + && (uv.y > pos.y - height / 2.0) && (uv.y < pos.y + height / 2.0)) { + t = 1.0; + } + return vec3(t); +} + + vec3 invertColor(vec3 color) { + return vec3(color *-1.0 + 1.0); + } + + + +void main(){ + + vec2 uv = gl_FragCoord.xy; + uv -= vec2(pos * RENDERSIZE); + + uv *= zoom; + + //rotate canvas + uv=rot(uv,rotateCanvas * PI); + + vec3 color = vec3(0.0); + + // prevents background from flashing when +/- iteration value + if (difference) { + if (mod(iteration, 2.0) < 1.0) color = invertColor(color); + } + + + float radius = dotSize * RENDERSIZE.x; + + for (float i = 0.0; i<=50.0; i++){ + + // set max number of iterations + if (iteration < i) break; + + vec2 offset = pos; + offset += vec2( cos( i * xFactor * (TIME * speed)) * (xAmp * RENDERSIZE.x), + sin( i * yFactor * (TIME * speed)) * (yAmp * RENDERSIZE.y)); + + radius += i * 0.002; + + //DRAW SHAPES + //draw circle solid + if (shape == 0 || shape == 1) color += circle(uv, offset, radius); + + //draw circle outline + if (shape == 1){ + if (difference) color -= circle(uv, offset, radius + 2.0); + if (!difference) color -= circle(uv, offset, radius - 2.0); + } + + //draw rectangle solid + if (shape == 2 || shape == 3) color += rectangle(uv, offset, radius*2.0, radius*2.0); + + //draw rect outline + if (shape == 3) { + if (difference) color -= rectangle(uv, offset, radius*2.0 + 4.0, radius*2.0 + 4.0); + if (!difference) color -= rectangle(uv, offset, radius*2.0 - 4.0, radius*2.0 - 4.0); + } + + + if (difference) color = invertColor(color); + + //rotate particles + uv=rot(uv,rotateParticles * PI * rotateMultiplier); + + } + + //invert colors + if (invert) color = invertColor(color); + + gl_FragColor = vec4(color, 1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Digital Clock.fs b/AuraGrove/MediaFiles/Digital Clock.fs new file mode 100644 index 0000000..793aab1 --- /dev/null +++ b/AuraGrove/MediaFiles/Digital Clock.fs @@ -0,0 +1,186 @@ +/* +{ + "CATEGORIES" : [ + "Generator" + ], + "DESCRIPTION" : "Shows the current time of day or time since the composition started", + "ISFVSN" : "2", + "INPUTS" : [ + { + "NAME" : "colorInput", + "TYPE" : "color", + "DEFAULT" : [ + 1, + 0.5899132640831176, + 0, + 1 + ], + "LABEL" : "Color" + }, + { + "VALUES" : [ + 0, + 1, + 2 + ], + "NAME" : "clockMode", + "TYPE" : "long", + "DEFAULT" : 0, + "LABEL" : "Clock Mode", + "LABELS" : [ + "Time", + "Countdown", + "Counter" + ] + }, + { + "NAME" : "yOffset", + "TYPE" : "float", + "MAX" : 1, + "DEFAULT" : 0, + "MIN" : -1, + "LABEL" : "Y Offset" + }, + { + "NAME" : "blinkingColons", + "TYPE" : "bool", + "DEFAULT" : 1, + "LABEL" : "Blink" + }, + { + "NAME" : "twentyFourHourStyle", + "TYPE" : "bool", + "LABEL" : "24 Hour" + } + ], + "PASSES" : [ + { + + } + ], + "CREDIT" : "VIDVOX" +} +*/ + + + +float segment(vec2 uv, bool On) { + return (On) ? (1.0 - smoothstep(0.05,0.15,abs(uv.x))) * + (1.-smoothstep(0.35,0.55,abs(uv.y)+abs(uv.x))) + : 0.; +} + +float digit(vec2 uv,int num) { + float seg= 0.; + seg += segment(uv.yx+vec2(-1., 0.),num!=-1 && num!=1 && num!=4 ); + seg += segment(uv.xy+vec2(-.5,-.5),num!=-1 && num!=1 && num!=2 && num!=3 && num!=7); + seg += segment(uv.xy+vec2( .5,-.5),num!=-1 && num!=5 && num!=6 ); + seg += segment(uv.yx+vec2( 0., 0.),num!=-1 && num!=0 && num!=1 && num!=7 ); + seg += segment(uv.xy+vec2(-.5, .5),num==0 || num==2 || num==6 || num==8 ); + seg += segment(uv.xy+vec2( .5, .5),num!=-1 && num!=2 ); + seg += segment(uv.yx+vec2( 1., 0.),num!=-1 && num!=1 && num!=4 && num!=7 ); + return seg; +} + +float showNum(vec2 uv,int nr, bool zeroTrim) { // nr: 2 digits + sgn . zeroTrim: trim leading "0" + if (abs(uv.x)>2.*1.5 || abs(uv.y)>1.2) return 0.; + + if (nr<0) { + nr = -nr; + if (uv.x>1.5) { + uv.x -= 2.; + return segment(uv.yx,true); // minus sign. + } + } + + if (uv.x>0.) { + nr /= 10; if (nr==0 && zeroTrim) nr = -1; + uv -= vec2(.75,0.); + } else { + uv += vec2(.75,0.); + nr = int(mod(float(nr),10.)); + } + + return digit(uv,nr); +} + +float colon(vec2 uv, vec2 cCenter, float cRadius) { + float returnMe = distance(uv,cCenter); + if (returnMe > cRadius) + returnMe = 0.0; + else + returnMe = 1.0 - pow(returnMe / cRadius,4.0); + return returnMe; +} + + + +// a simplfied version of the number drawing from http://www.interactiveshaderformat.com/sketches/120 + + + + +void main() { + vec4 returnMe = vec4(0.0); + vec2 uv = isf_FragNormCoord; + float adjustedOffset = (yOffset*1.2*(RENDERSIZE.y/RENDERSIZE.x)); + vec2 loc = uv; + loc.y = loc.y - adjustedOffset; + + // The first element of the vector is the year, the second element is the month, + // the third element is the day, and the fourth element is the time (in seconds) within the day. + vec4 currentDate = DATE; + if (clockMode == 1) + currentDate.a = 86400.0 - currentDate.a; + else if (clockMode == 2) + currentDate = vec4(TIME); + + float tmpVal = currentDate.a; + float h = 0.0; + float m = 0.0; + float s = 0.0; + + s = mod(tmpVal,60.0); + tmpVal = tmpVal / 60.0; + m = mod(tmpVal,60.0); + tmpVal = tmpVal / 60.0; + h = mod(tmpVal,60.0); + if ((!twentyFourHourStyle)&&(clockMode == 0)) { + h = mod(h,12.0); + if (h < 1.0) + h = 12.0; + } + + float seg = 0.0; + int displayTime = 0; + + if (loc.x < 0.3) { + loc.x = 1.0 - (loc.x + 0.37); + loc = (loc * 3.0 - 1.5) * 4.0; + displayTime = int(h); + } + else if (loc.x < 0.6) { + loc.x = 1.0 - (loc.x+0.05); + loc = (loc * 3.0 - 1.5) * 4.0; + displayTime = int(m); + } + else { + loc.x = 1.0 - (loc.x - 0.3); + loc = (loc * 3.0 - 1.5) * 4.0; + displayTime = int(s); + } + + seg = showNum(loc,displayTime,false); + + if ((!blinkingColons)||(mod(TIME,1.0)<0.5)) { + seg += colon(uv,vec2(0.293,0.53+adjustedOffset),0.015); + seg += colon(uv,vec2(0.293,0.47+adjustedOffset),0.015); + + seg += colon(uv,vec2(0.633,0.53+adjustedOffset),0.015); + seg += colon(uv,vec2(0.633,0.47+adjustedOffset),0.015); + } + if (seg > 0.0) + returnMe = colorInput * seg; + + gl_FragColor = returnMe; +} diff --git a/AuraGrove/MediaFiles/Discspin.fs b/AuraGrove/MediaFiles/Discspin.fs new file mode 100644 index 0000000..f6c08cf --- /dev/null +++ b/AuraGrove/MediaFiles/Discspin.fs @@ -0,0 +1,183 @@ +// SaturdayShader Week 23 : Discspin +// by Joseph Fiola (http://www.joefiola.com) +// 2016-01-23 + +// Based on "The Power of Sin" by antonOTI - https://www.shadertoy.com/view/XdlSzB + + + +/*{ + "CREDIT": "", + "DESCRIPTION": "", + "CATEGORIES": [ + "Generator" + ], + "INPUTS": [ + { + "NAME": "mirror", + "TYPE": "bool" + }, + { + "NAME": "pattern", + "TYPE": "bool", + "DEFAULT": true + }, + { + "NAME": "iteration", + "TYPE": "float", + "DEFAULT": 35, + "MIN": 0, + "MAX": 35 + }, + { + "NAME": "speed", + "TYPE": "float", + "DEFAULT": 1, + "MIN": -10, + "MAX": 10 + }, + { + "NAME": "radius", + "TYPE": "float", + "DEFAULT": 0.8, + "MIN": 0, + "MAX": 2 + }, + { + "NAME": "centerRadius", + "TYPE": "float", + "DEFAULT": 1, + "MIN": -1, + "MAX": 0 + }, + { + "NAME": "lineThickness", + "TYPE": "float", + "DEFAULT": 0.07, + "MIN": 0.01, + "MAX": 1 + }, + { + "NAME": "smoothEdge", + "TYPE": "float", + "DEFAULT": 0.03, + "MIN": 0.01, + "MAX": 1 + }, + { + "NAME": "yOffset", + "TYPE": "float", + "DEFAULT": 0, + "MIN": -1, + "MAX": 0 + }, + { + "NAME": "xOffset", + "TYPE": "float", + "DEFAULT": 0, + "MIN": -1, + "MAX": 0 + }, + { + "NAME": "startValue", + "TYPE": "float", + "DEFAULT": -1.5, + "MIN": -2, + "MAX": 2 + }, + { + "NAME": "endValue", + "TYPE": "float", + "DEFAULT": 1.5, + "MIN": -2, + "MAX": 2 + }, + { + "NAME": "rotate", + "TYPE": "float", + "DEFAULT": 0, + "MIN": -1, + "MAX": 1 + }, + { + "NAME": "pos", + "TYPE": "point2D", + "DEFAULT": [ + 0.5, + 0.5 + ], + "MIN": [ + 0, + 0 + ], + "MAX": [ + 1, + 1 + ] + } + ] +}*/ + + +#define NB 35. +#define MODE1 +#define PI 3.14159265358979323846 + +float circle(vec2 center , float radius,float thickness,float la,float ha) +{ + float f = length(center); + + float a = atan(center.y,center.x) ; + return(smoothstep(f,f+0.01,radius) * smoothstep(radius - thickness,radius - thickness+0.01,f) * step(la,a) *smoothstep(a-smoothEdge,a+smoothEdge,ha)); +} + +float cable(vec2 p,float dx,float dy,float r,float thick,float la,float ha) +{ + p.x-= dx; + p.y -= dy; + return (circle(p,r,thick,la,ha)); +} + +//rotation function +vec2 rot(vec2 uv,float a){ + return vec2(uv.x*cos(a)-uv.y*sin(a),uv.y*cos(a)+uv.x*sin(a)); +} + +void main() +{ + + vec2 uv = gl_FragCoord.xy / RENDERSIZE.xy; + uv -= vec2(pos - 0.5); + + vec2 p = -1. + 2. * uv; + p.x*=RENDERSIZE.x/RENDERSIZE.y; + + p=rot(p,rotate * PI); + + + + vec2 ap = vec2(0.0); + if (mirror){ + ap = p * vec2(1.,-1.); + } else { + ap = p * vec2(-1.,-1.); + } + + + + float f = 0.; + for(float i = 0.; i < NB; ++i) + { + if (i > iteration) break; + + if (pattern) f *= -1.; // invert values every iteration to create interesting patterns when line thickness overlaps + + float divi = i/iteration * centerRadius; + f += cable(p,xOffset,yOffset,radius - divi,lineThickness,0.,(sin(TIME * speed - divi*5.)*startValue+endValue) * 3.14); + f += cable(ap,xOffset,yOffset,radius - divi,lineThickness,0.,(sin(TIME * speed - divi*5.)*startValue+endValue) * 3.14); + } + vec3 col = mix(vec3(0.,0.,0.),vec3(1.,1.,1.),f); + + gl_FragColor = vec4(col,1.0); +} + diff --git a/AuraGrove/MediaFiles/Dodecahedron (1).fs b/AuraGrove/MediaFiles/Dodecahedron (1).fs new file mode 100644 index 0000000..1e9b588 --- /dev/null +++ b/AuraGrove/MediaFiles/Dodecahedron (1).fs @@ -0,0 +1,355 @@ +/*{ + "CATEGORIES": [ + "Automatically Converted", + "Shadertoy" + ], + "DESCRIPTION": "Automatically converted from https://www.shadertoy.com/view/MdS3Rw by gltracy. Idea arises from Miloyip's artwork.\nArticle reference : http://mars.wne.edu/~thull/fit.html", + "IMPORTED": { + }, + "INPUTS": [ + { + "DEFAULT": 1, + "MAX": 10, + "MIN": 0, + "NAME": "een", + "TYPE": "float" + }, + { + "DEFAULT": 5, + "MAX": 10, + "MIN": 0, + "NAME": "twee", + "TYPE": "float" + }, + { + "DEFAULT": 5, + "MAX": 10, + "MIN": 0, + "NAME": "drie", + "TYPE": "float" + }, + { + "DEFAULT": 1, + "MAX": 3, + "MIN": 0, + "NAME": "vier", + "TYPE": "float" + }, + { + "DEFAULT": 4.4, + "MAX": 8, + "MIN": 0, + "NAME": "vijf", + "TYPE": "float" + }, + { + "DEFAULT": 1, + "MAX": 2, + "MIN": 0, + "NAME": "zes", + "TYPE": "float" + }, + { + "DEFAULT": 1, + "MAX": 2, + "MIN": 0, + "NAME": "zeven", + "TYPE": "float" + }, + { + "DEFAULT": 1, + "MAX": 5, + "MIN": 0, + "NAME": "acht", + "TYPE": "float" + }, + { + "DEFAULT": 1, + "MAX": 2, + "MIN": 0, + "NAME": "Zoom", + "TYPE": "float" + } + ], + "ISFVSN": "2" +} +*/ + + +// ray marching +const int max_iterations = 128; +const float stop_threshold = 0.001; +const float grad_step = 0.01; + float clip_far = 1000.0; + +// ao +const int ao_iterations = 5; +const float ao_step = 0.2; +const float ao_scale = 1.46; + +// math +const float PI = 3.14159265359; + float DEG_TO_RAD = PI / 180.0*Zoom; + float GOLDEN = 1.6180339887499*acht; + +const float r = 1.0 * 2.0 * 1.414214 / 1.732051; +const vec2 h = vec2( r, 0.01 ); +const vec2 h2 = h * vec2( 0.73, 4.0 ); + + vec3 cc0 = vec3( 0.333333*een, -0.333333, -0.333333 ); +const vec3 cx0 = vec3( 0.707107, 0.000000, 0.707107 ); + vec3 cy0 = vec3( 0.408248, 0.816496*zes, -0.408248 ); + vec3 cz0 = vec3( -0.577350*acht, 0.577350, 0.577350 ); + + vec3 cc1 = vec3( -0.333333, -0.333333*een, 0.333333 ); + vec3 cx1 = vec3( 0.707107*acht, 0.000000, 0.707107 ); + vec3 cy1 = vec3( -0.408248, 0.816496*zes, 0.408248 ); +const vec3 cz1 = vec3( -0.577350, -0.577350, 0.577350 ); + + vec3 cc2 = vec3( -0.333333, 0.333333, -0.333333*een ); + vec3 cx2 = vec3( 0.707107, 0.707107/acht, 0.000000 ); + vec3 cy2 = vec3( -0.408248, 0.408248*acht, 0.816496 ); +const vec3 cz2 = vec3( 0.577350, -0.577350, 0.577350 ); + + vec3 cc3 = vec3( 0.333333*een, 0.333333, 0.333333 ); +const vec3 cx3 = vec3( 0.000000, 0.707107, -0.707107 ); +const vec3 cy3 = vec3( -0.816496, 0.408248, 0.408248 ); +const vec3 cz3 = vec3( 0.577350, 0.577350, 0.577350 ); + + vec3 c0 = vec3( 0.333333, 0.333333*een, -0.333333 ); +const vec3 x0 = vec3( 0.572061, 0.218508, 0.790569 ); + vec3 y0 = vec3( -0.582591*zes, 0.786715, 0.204124 ); + vec3 z0 = vec3( -0.577350, -0.577350, 0.577350*zes ); + +const vec3 c1 = vec3( 0.206011, -0.539344, 0.000000 ); + vec3 x1 = vec3( 0.572061, 0.218508*acht, 0.790569 ); + vec3 y1 = vec3( -0.738528, -0.282093, 0.612372*een ); +const vec3 z1 = vec3( 0.356822, -0.934172, 0.000000 ); + +const vec3 c2 = vec3( -0.539344, 0.000000, -0.206011 ); + vec3 x2 = vec3( -0.218508, 0.790569*zes, 0.572061 ); + vec3 y2 = vec3( -0.282093, -0.612372*acht, 0.738528 ); +const vec3 z2 = vec3( 0.934172, 0.000000, 0.356822 ); + +const vec3 c3 = vec3( 0.000000, 0.206011, 0.539344 ); + vec3 x3 = vec3( -0.790569, 0.572061, -0.218508/acht ); + vec3 y3 = vec3( -0.612372*zes, -0.738528, 0.282093 ); + vec3 z3 = vec3( -0.000000, 0.356822, 0.934172*zes ); + +// distance function + +// iq's Signed Triangular Prism distance function +float dist_triXY( vec3 p, vec2 h ) { + vec3 q = abs(p); + return max(q.z-h.y,max(q.x*0.866025+p.y*0.5,-p.y)-h.x*0.5*vier*zeven); +} + +float dist_tri( vec3 v, vec3 c, vec3 x, vec3 y, vec3 z ) { + v -= c; + v = vec3( dot( v, x ), dot( v, y ), dot( v, z ) ); + return max( dist_triXY( v, h ), -dist_triXY( v, h2 ) ); +} + +float dist_field( vec3 v ) { + float b0, b1, b2, b3, b4; + + // cube + { + float d0 = dist_tri( v, cc0, cx0, cy0, cz0 ); + float d1 = dist_tri( v, cc1, cx1, cy1, cz1 ); + float d2 = dist_tri( v, cc2, cx2, cy2, cz2 ); + float d3 = dist_tri( v, cc3, cx3, cy3, cz3 ); + b0 = min( min( d0, d1 ), min( d2, d3 ) ); + } + + // xyz + { + float d0 = dist_tri( v, c0, x0, y0, z0 ); + float d1 = dist_tri( v, c1, x1, y1, z1 ); + float d2 = dist_tri( v, c2, x2, y2, z2 ); + float d3 = dist_tri( v, c3, x3, y3, z3 ); + b1 = min( min( d0, d1 ), min( d2, d3 ) ); + } + + // zx + { + v.zx = -v.zx; + float d0 = dist_tri( v, c0, x0, y0, z0 ); + float d1 = dist_tri( v, c1, x1, y1, z1 ); + float d2 = dist_tri( v, c2, x2, y2, z2 ); + float d3 = dist_tri( v, c3, x3, y3, z3 ); + v.zx = -v.zx; + b2 = min( min( d0, d1 ), min( d2, d3 ) ); + } + + // yz + { + v.yz = -v.yz; + float d0 = dist_tri( v, c0, x0, y0, z0 ); + float d1 = dist_tri( v, c1, x1, y1, z1 ); + float d2 = dist_tri( v, c2, x2, y2, z2 ); + float d3 = dist_tri( v, c3, x3, y3, z3 ); + v.yz = -v.yz; + b3 = min( min( d0, d1 ), min( d2, d3 ) ); + } + + // xy + { + v.xy = -v.xy; + float d0 = dist_tri( v, c0, x0, y0, z0 ); + float d1 = dist_tri( v, c1, x1, y1, z1 ); + float d2 = dist_tri( v, c2, x2, y2, z2 ); + float d3 = dist_tri( v, c3, x3, y3, z3 ); + v.xy = -v.xy; + b4 = min( min( d0, d1 ), min( d2, d3 ) ); + } + + return min( b0, min( min( b1, b2 ), min( b3, b4 ) ) ); +} + +// ao +float ao( vec3 v, vec3 n ) { + float sum = 0.0; + float att = 1.0; + float len = ao_step; + for ( int i = 0; i < ao_iterations; i++ ) { + sum += ( len - dist_field( v + n * len ) ) * att; + + len += ao_step; + + att *= 0.5; + } + + return max( 1.0 - sum * ao_scale, 0.0 ); +} + + +// get gradient in the world +vec3 gradient( vec3 v ) { + const vec3 dx = vec3( grad_step, 0.0, 0.0 ); + const vec3 dy = vec3( 0.0, grad_step, 0.0 ); + const vec3 dz = vec3( 0.0, 0.0, grad_step ); + return normalize ( + vec3( + dist_field( v + dx ) - dist_field( v - dx ), + dist_field( v + dy ) - dist_field( v - dy ), + dist_field( v + dz ) - dist_field( v - dz ) + ) + ); +} + +// ray marching +float ray_marching( vec3 origin, vec3 dir, float start, float end ) { + float depth = start; + for ( int i = 0; i < max_iterations; i++ ) { + float dist = dist_field( origin + dir * depth ); + if ( dist < stop_threshold ) { + return depth; + } + depth += dist; + if ( depth >= end) { + return end; + } + } + return end; +} + +// shadow +float shadow( vec3 v, vec3 light ) { + vec3 lv = v - light; + float end = length( lv ); + lv /= end; + + float depth = ray_marching( light, lv, 0.0, end ); + + return step( end - depth, 0.02 ); +} + +// phong shading +vec3 shading( vec3 v, vec3 n, vec3 eye ) { + // ...add lights here... + + vec3 final = vec3( 0.0 ); + + vec3 ev = normalize( v - eye ); + vec3 ref_ev = reflect( ev, n ); + + // light 0 + { + vec3 light_pos = vec3( 5.0 ); + + vec3 vl = normalize( light_pos - v ); + + float diffuse = max( 0.0, dot( vl, n ) ); + float specular = max( 0.0, dot( vl, ref_ev ) ); + specular = pow( specular, 12.0 ); + + final += vec3( 0.9 ) * ( diffuse * 0.4 + specular * 0.9 ) * shadow( v, light_pos ); + } + + // light 1 + { + vec3 light_pos = vec3( -5.0 ); + + vec3 vl = normalize( light_pos - v ); + + float diffuse = max( 0.0, dot( vl, n ) ); + float specular = max( 0.0, dot( vl, ref_ev ) ); + specular = pow( specular, 64.0 ); + + final += vec3( 0.1 ) * ( diffuse * 0.4 + specular * 0.9 ); + } + + final += ao( v, n ) * vec3( 0.15 ); + + return final; +} + +// pitch, yaw +mat3 rot3xy( vec2 angle ) { + vec2 c = cos( angle ); + vec2 s = sin( angle ); + + return mat3( + c.y , 0.0, -s.y, + s.y * s.x, c.x, c.y * s.x, + s.y * c.x, -s.x, c.y * c.x + ); +} + +// get ray direction +vec3 ray_dir( float fov, vec2 size, vec2 pos ) { + vec2 xy = pos - size * 0.5; + + float cot_half_fov = tan( ( 90.0 - fov * 0.5 ) * DEG_TO_RAD ); + float z = size.y * 0.5 * cot_half_fov; + + return normalize( vec3( xy, -z ) ); +} + +void main() { + +float hit = 0.0; + + // default ray dir + vec3 dir = ray_dir( 45.0, RENDERSIZE.xy, gl_FragCoord.xy ); + + // default ray origin + vec3 eye = vec3( 0.0, 0.0, vijf ); + // rotate camera + mat3 rot = rot3xy( vec2( -DEG_TO_RAD * 30.0*drie, twee ) ); + dir = rot * dir; + eye = rot * eye; + + // ray marching + float depth = ray_marching( eye, dir, 0.0, clip_far ); + if ( depth >= clip_far ) { + gl_FragColor = vec4( 0.0, 0.0, 0.0, hit ); + } else { + // shading + vec3 pos = eye + dir * depth; + vec3 n = gradient( pos ); + hit = 1.0; + gl_FragColor = vec4( shading( pos, n, eye ) * 2.0, hit ); + } +} diff --git a/AuraGrove/MediaFiles/Down The Roots.fs b/AuraGrove/MediaFiles/Down The Roots.fs new file mode 100644 index 0000000..9c284f1 --- /dev/null +++ b/AuraGrove/MediaFiles/Down The Roots.fs @@ -0,0 +1,204 @@ +/*{ + "DESCRIPTION": "Marble with integrated cracks", + "CREDIT": "Original Shadertoy shader by user, converted to ISF", + "ISFVSN": "2", + "CATEGORIES": [ + "Tile Effect", + "Generator" + ], + "INPUTS": [ + { + "NAME": "zebra", + "TYPE": "float", + "DEFAULT": 1.0 + }, + { + "NAME": "move", + "TYPE": "float", + "DEFAULT": 1.0 + }, + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 0.5 + }, + { + "NAME": "blend", + "TYPE": "float", + "DEFAULT": 1.0 + }, + { + "NAME": "speed", + "TYPE": "float", + "MIN": -1.0, + "MAX": 1.0, + "DEFAULT": -0.2 + } + ] +}*/ + +// Forked and modified from FabriceNeycets (as always) awesome work +// https://www.shadertoy.com/view/Xd3fRN + +vec3 hash3(vec3 x) { + const float A = 1103515245.0; + const float B = 0.0000001; + const float M = 2.0; + + return mod(x * A, M) / M + B; +} + +#define hash22(p) fract( 18.5453 * sin( p * mat2(127.1,311.7,269.5,183.3)) ) +#define disp(p) ( -ofs + (1.+2.*ofs) * hash22(p) ) +#define ofs 0.5 +#define hash21(p) fract(sin(dot(p, vec2(127.1,311.7))) * 43758.5453123) +#define rot(a) mat2(cos(a),-sin(a),sin(a),cos(a)) + + +int MOD = 1; +float RATIO = 1.0, + CRACK_depth = 3.0, + CRACK_zebra_scale = 1.0, + CRACK_zebra_amp = 0.67, + CRACK_profile = 1.0, + CRACK_slope = 50.0, + CRACK_width = 0.0; + +float modInt(float x, float y) { + return mod(x, y); // Use built-in mod function for float +} + +float dnoise2(vec2 p) { + vec2 i = floor(p); + vec2 f = fract(p); + f = f * f * (3.0 - 2.0 * f); + + float hash00 = hash21(i + vec2(0.0, 0.0)); // Hash value for bottom-left corner + float hash10 = hash21(i + vec2(1.0, 0.0)); // Hash value for bottom-right corner + float hash01 = hash21(i + vec2(0.0, 1.0)); // Hash value for top-left corner + float hash11 = hash21(i + vec2(1.0, 1.0)); // Hash value for top-right corner + + // Interpolate along the x axis + float interpX0 = mix(hash00, hash10, f.x); // Interpolation for the bottom row + float interpX1 = mix(hash01, hash11, f.x); // Interpolation for the top row + + // Interpolate along the y axis + float result = mix(interpX0, interpX1, f.y); // Final interpolation + + return result;} + +vec2 dnoise22(vec2 p) { + vec2 p2 = p + vec2(17.7); + float y = dnoise2(p2); + float x = dnoise2(p); + return vec2(x, y); // Corrected arguments here +} + + +float fbm2(vec2 p) { + float v = 0.0; + float a = 0.5; + mat2 R = rot(0.37); + + for (int i = 0; i < 5; i++) { + p = R * (p * 2.0); + v += a * dnoise2(p); + a *= 0.5; + } + + return v; +} + +vec2 fbm22(vec2 p) { + vec2 v = vec2(0.0); + float a = 0.5; + mat2 R = rot(0.37); + + for (int i = 0; i < 5; i++) { + p = R * (p * 2.0); + v += a * dnoise22(p); + a *= 0.5; + } + + return v; +} + + + +int modInt(int x, int y) { + return x - y * (x / y); // Replace mod with faster alternative +} + +vec3 voronoi(vec2 u) { + vec2 iu = floor(u); + vec2 v; + float m = 1e9, d; + + vec2 p = iu + vec2(3, 2); + vec2 o = disp(p); + vec2 r = p - u + o; + d = dot(r, r); + if (d < m) { + m = d; + v = r; + } + + return vec3(sqrt(m), v + u); +} + +vec3 voronoiB(vec2 u) { + vec2 iu = floor(u); + vec2 C, P; + float m = 1e9, d; + + for (int k = 0; k < 19; k++) { + vec2 p = iu + vec2(modInt(k, 5) - 2, k / 5 - 2); + vec2 o = disp(p); + vec2 r = p - u + o; + d = dot(r, r); + if (d < m) { + m = d; + C = p - iu; + P = r; + } + } + + m = 1e9; + + for (int k = 0; k < 15; k++) { + vec2 p = iu + C + vec2(modInt(k, 5) - 2, k / 5 - 2); + vec2 o = disp(p); + vec2 r = p - u + o; + + float dot_diff = dot(P - r, P - r); + if (dot_diff > 1e-5) { + m = min(m, 0.5 * dot((P + r), normalize(r - P))); + } + } + + return vec3(m, P + u); +} + +void main() { + vec2 U = gl_FragCoord.xy * 4.0 / RENDERSIZE.y; + vec3 H0 = vec3(0.0); + vec4 O = vec4(0.0); + + for (float i = 0.0; i < 3.0; i++) { + float layerFactor = (4.0 - i) * 0.25; // Foreground layers move faster + + vec2 layerU = U + vec2(0.0, TIME * speed * layerFactor); + vec2 V = layerU / vec2(RATIO, 1.0); + vec2 D = CRACK_zebra_amp * fbm22(layerU / CRACK_zebra_scale * zebra * 2.) * CRACK_zebra_scale + (move * 0.2); + vec3 H = voronoiB(V + D); + if (i == 0.0) H0 = H; + float d = H.x; + d = min(1.0, CRACK_slope * pow(max(0.0, d - CRACK_width), CRACK_profile)); + + O += vec4(1.0 - d) / exp2(i / (0.01 + blend)); + + U = (U - 0.5 * layerFactor) * (1.0 + zoom) + 0.5; + } + + gl_FragColor = vec4(O.rgb, 1.0); +} diff --git a/AuraGrove/MediaFiles/Equirec_MengerTunnel.fs b/AuraGrove/MediaFiles/Equirec_MengerTunnel.fs new file mode 100644 index 0000000..1eef5d7 --- /dev/null +++ b/AuraGrove/MediaFiles/Equirec_MengerTunnel.fs @@ -0,0 +1,77 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES": [ + "equirectangular", + "menger", + "tunnel" + ], + "INPUTS": [ + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : -1.0, + "MIN" : -2.0, + "MAX" : 2.0 + }, + { + "NAME" : "depth", + "TYPE" : "float", + "DEFAULT" : 5.0, + "MIN" : 1.0, + "MAX" : 12.0 + }, + { + "NAME" : "colorCycle", + "TYPE" : "float", + "DEFAULT" : -0.5, + "MIN" : -3.0, + "MAX" : 3.0 + } + ] +}*/ + +//////////////////////////////////////////////////////////// +// Equirec_MengerTunnel by mojovideotech +// +// based on : shadertoy/lsjcWV +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + + +#define twpi 6.283185307179586 // two pi, 2*pi +#define pi 3.141592653589793 // pi + +float mid(vec3 p) { p = min(p, p.yzx); return max( max(p.x, p.y), p.z); } + +void main( ) { + float T = TIME * rate; + vec2 v = (gl_FragCoord.xy / RENDERSIZE.xy) + RENDERSIZE.y; + v.y -= 0.5; + float th = v.y * pi, ph = v.x * twpi; + vec3 sp = vec3( sin(ph) * cos(th), sin(th), cos(ph) * cos(th) ); + vec3 pos = vec3( pi, pi, T); + vec3 dir = normalize(sp); + vec3 signdir = sign(dir); + float stepsize = 1.0; + float dist = 0.0; + vec3 normal; + for (int i = 0; i < 20; i++) { + vec3 p = mod(pos, twpi * stepsize) - pi * stepsize; + vec3 num = (stepsize - p * signdir) * step( abs(p), vec3(stepsize) ) / dir * signdir; + float len = mid(num); + if (len < 0.01) { + if (stepsize < 0.05) break; + stepsize /= depth; + } else normal = vec3( equal( vec3(len), num) ); + pos += dir*len; + dist += len; + } + gl_FragColor = vec4((( sin(pos - T * colorCycle) * 0.5 + 0.5) + 0.25 * normal) * 1.0 / dist, 1.0); +} + + + + + + diff --git a/AuraGrove/MediaFiles/Equirec_SpiralIntersect.fs b/AuraGrove/MediaFiles/Equirec_SpiralIntersect.fs new file mode 100644 index 0000000..c3fdcca --- /dev/null +++ b/AuraGrove/MediaFiles/Equirec_SpiralIntersect.fs @@ -0,0 +1,101 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES" : [ + "generator", + "equirectangular" + ], + "DESCRIPTION" : "", + "INPUTS" : [ + { + "NAME" : "rate", + "TYPE" : "float", + "MAX" : 3, + "DEFAULT" : 1, + "MIN" : -3 + }, + { + "NAME" : "g1", + "TYPE" : "float", + "MAX" : 40, + "DEFAULT" : 24, + "MIN" : 4 + }, + { + "NAME" : "g2", + "TYPE" : "float", + "MAX" : 40, + "DEFAULT" : 16, + "MIN" : 4 + }, + { + "NAME" : "rot1", + "TYPE" : "float", + "MAX" : 16, + "DEFAULT" : 8, + "MIN" : 1 + }, + { + "NAME" : "rot2", + "TYPE" : "float", + "MAX" : 16, + "DEFAULT" : 4, + "MIN" : 1 + }, + { + "NAME" : "colors", + "TYPE" : "float", + "MAX" : 10, + "DEFAULT" : 4, + "MIN" : 1 + }, + { + "NAME" : "flip", + "TYPE" : "bool", + "DEFAULT" : false + }, + { + "NAME" : "flop", + "TYPE" : "bool", + "DEFAULT" : false + } + ], + "ISFVSN" : "2" +} +*/ + +//////////////////////////////////////////////////////////// +// Equirec_SpiralIntersect by mojovideotech +// +// mod of +// shadertoy.com\/4dyfW1 by iridule +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + + +#define twpi 6.283185307179586 // two pi, 2*pi +#define pi 3.141592653589793 // pi + +#define rotate(a) mat2(cos(a), sin(a), -sin(a), cos(a)) +#define spiral(u, a, r, t, d) abs(sin(t + r * length(u) + a * (d * atan(u.y, u.x)))) +#define sinp(a) 0.5 + sin(a) * 0.5 + +void main() +{ + vec3 col; + float T = TIME*rate; + vec2 uv = gl_FragCoord.xy / RENDERSIZE.xy; + float th = uv.y * pi, ph = uv.x * twpi; + vec3 st = vec3(sin(th) * cos(ph), -cos(th), sin(th) * sin(ph)); + if (flip) { st.xy = st.yx; } + if (flop) { st.xz = st.zx; } + st.xz *= rotate(-T / rot1); + st.xy *= rotate(T / rot2); + vec2 o = vec2(cos(T / rot1), sin(T / rot2)); + for (int i = 0; i < 3; i++) { + T += 0.3 * spiral(vec2(o + st.zy), g1, 16.0 + 128.0 * o.x - o.y, -T / 100.0, 1.0) + * spiral(vec2(o - st.xz), g2, 16.0 + 64.0 * o.x - o.y, T / 100.0, -1.0); + col[i] = sin(colors * T - length(st.xy) * 10.0 * sinp(T)); + } + gl_FragColor = vec4(col, 1.0); +} diff --git a/AuraGrove/MediaFiles/EyeballQuadTree.fs b/AuraGrove/MediaFiles/EyeballQuadTree.fs new file mode 100644 index 0000000..8878497 --- /dev/null +++ b/AuraGrove/MediaFiles/EyeballQuadTree.fs @@ -0,0 +1,81 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES" : [ + "Generator", + "Quad Tree", + "eyeballs" + ], + "DESCRIPTION" : "", + "INPUTS" : [ + { + "NAME" : "scale", + "TYPE" : "float", + "DEFAULT" : 13.0, + "MIN" : 2.0, + "MAX" : 16.0 + }, + { + "NAME" : "grid", + "TYPE" : "bool", + "DEFAULT" : false + } + ], + "ISFVSN" : 2.0 +} +*/ + + +#define twpi 6.283185307179586 // two pi, 2*pi + +vec2 hash22(vec2 p) { return fract(vec2(22271.0, 72221.0)*sin(dot(p, vec2(16061.0, 10601.0)))); } + +void main() +{ + vec2 uv = (gl_FragCoord.xy - RENDERSIZE.xy*0.5)/RENDERSIZE.y; + vec2 oP = uv*(18.0-scale) + vec2(0.5, TIME*0.5); + vec3 bg = vec3(0.05)*vec3(0.8, 0.5, 1.0); + float pat = clamp(sin((oP.x - oP.y)*twpi*RENDERSIZE.y/50.5) + 0.75, 0.0, 1.0); + vec2 hoP = hash22(oP); + bg *= (hoP.x*0.15 + 1.0)*(pat*0.35 + 0.65); + vec3 col = bg; + vec4 d = vec4(1e5); + float dim = 1.0; + vec2 rndTh[3]; + rndTh[0] = vec2(0.333, 0.667); + rndTh[1] = vec2(0.667, 0.667); + rndTh[2] = vec2(1.0, 0.667); + for(int k=0; k<3; k++){ + vec2 ip = floor(oP*dim); + vec2 rnd = hash22(ip); + if(rnd.x 0.3){ + break; + } + } + + //draw letters + float b = letter(uv, 1.0 / (dims)); + + //fade in + float scrollPos = TIME*scrollSpeed + 0.15; + float showPos = -ij.y + cellRand; + float fade = smoothstep(showPos ,showPos + fade_amp, scrollPos ); + b *= fade; + + + //hide some + //if (cellRand < 0.1) b = 0.0; + + gl_FragColor = vec4(vec3(b), 1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Fractal Blob (1).fs b/AuraGrove/MediaFiles/Fractal Blob (1).fs new file mode 100644 index 0000000..c58bf6a --- /dev/null +++ b/AuraGrove/MediaFiles/Fractal Blob (1).fs @@ -0,0 +1,122 @@ +/* +{ + "IMPORTED" : [ + + ], + "CATEGORIES" : [ + "Fractal" + ], + "DESCRIPTION" : "Automatically converted from https:\/\/www.shadertoy.com\/view\/wdc3zX by leon. An example on how to render stereoscopic anaglyph image.\nIt will be the theme of https:\/\/2019.cookie.paris\/\nAnd the content of the 3rd issue of https:\/\/fanzine.cookie.paris\/", + "INPUTS" : [ + { + "NAME" : "iMouse", + "TYPE" : "point2D" + }, + { + "NAME" : "speed", + "TYPE" : "float", + "DEFAULT" : 0.4 + }, + { + "NAME" : "radius", + "TYPE" : "float", + "DEFAULT" : 0.3 + }, + { + "NAME" : "falloff", + "TYPE" : "float", + "DEFAULT" : 0.0 + }, + { + "NAME" : "divergence", + "TYPE" : "float", + "DEFAULT" : 0.1 + } + ] +} +*/ + + +// Anaglyph Quick Sketch +// An example on how to render stereoscopic anaglyph image +// It will be the theme of https://2019.cookie.paris/ +// And the content of the 3rd issue of https://fanzine.cookie.paris/ +// Leon Denise 2019.09.20 +// Licensed under hippie love conspiracy + +// Using code from +// Inigo Quilez +// Morgan McGuire + +const int count = 5; +const float range = 1.; +const float blend = 1.5; +const float balance = 1.5; +const float grain = .01; +const float fieldOfView = 1.5; + +float random(vec2 p) { return fract(1e4 * sin(17.0 * p.x + p.y * 0.1) * (0.1 + abs(sin(p.y * 13.0 + p.x)))); } +mat2 rot(float a) { float c=cos(a),s=sin(a); return mat2(c,-s,s,c); } +float smoothmin (float a, float b, float r) { float h = clamp(.5+.5*(b-a)/r, 0., 1.); return mix(b, a, h)-r*h*(1.-h); } +vec3 look (vec3 eye, vec3 target, vec2 anchor, float fov) { + vec3 forward = normalize(target-eye); + vec3 right = normalize(cross(forward, vec3(0,1,0))); + vec3 up = normalize(cross(right, forward)); + return normalize(forward * fov + right * anchor.x + up * anchor.y); +} + +vec3 camera (vec3 eye) { + vec2 mouse = iMouse.xy/RENDERSIZE.xy*2.-1.; + if (iMouse.x > 0.5) { + eye.yz *= rot(mouse.y*3.1415); + eye.xz *= rot(mouse.x*3.1415); + } else { + eye.yz *= rot(-3.1415/4.); + eye.xz *= rot(-3.1415/2.); + } + return eye; +} + +float geometry (vec3 pos) { + pos = camera(pos); + float a = 1.0; + float scene = 1.; + float t = speed * (3.141); + float wave = 1.0+0.2*sin(t*8.-length(pos)*2.); + //t = floor(t)+pow(fract(t),.5); + for (int i = count; i > 0; --i) { + pos.xy *= rot(cos(t)); + pos.zy *= rot(sin(t)); + pos.zx *= rot(sin(t)); + pos = abs(pos)-range*a*wave; + scene = smoothmin(scene, length(pos)-radius*a, blend*a); + a /= (1.9 + falloff * 2.); + } + return scene; +} + +float raymarch ( vec3 eye, vec3 ray ) { + float dither = random(ray.xy + TIME); + float total = dither; + const int count = 30; + for (int index = count; index > 0; --index) { + float dist = geometry(eye+ray*total); + dist *= 0.9+.1*dither; + total += dist; + if (dist < 0.001 * total) + return float(index)/float(count); + } + return 0.; +} + +void main() { + + + + vec2 uv = 2.*(gl_FragCoord.xy-0.5*RENDERSIZE.xy)/RENDERSIZE.y; + vec3 eyeLeft = vec3(-divergence,0,5.); + vec3 eyeRight = vec3(divergence,0,5.); + vec3 rayLeft = look(eyeLeft, vec3(0), uv, fieldOfView); + float red = raymarch(eyeLeft, rayLeft); + gl_FragColor = vec4(red,red,red,1); +} diff --git a/AuraGrove/MediaFiles/Fractal Cartoon.fs b/AuraGrove/MediaFiles/Fractal Cartoon.fs new file mode 100644 index 0000000..b36860b --- /dev/null +++ b/AuraGrove/MediaFiles/Fractal Cartoon.fs @@ -0,0 +1,262 @@ +/* +{ + "CATEGORIES": [ + "Generator" + ], + "CREDIT": "by Kali", + "INPUTS": [ + { + "MAX": [ + 1, + 1 + ], + "MIN": [ + 0, + 0 + ], + "NAME": "mouse", + "TYPE": "point2D" + } + ] +} +*/ + + + + +vec3 iResolution = vec3(RENDERSIZE, 1.0); +float iGlobalTime = TIME; +vec4 iMouse = vec4(mouse, 0.0, 1.0); + +// uniform vec3 iResolution; +// uniform float iGlobalTime; +// uniform float iChannelTime[4]; +// uniform vec3 iChannelResolution[4]; +// uniform vec4 iMouse; +// uniform vec4 iDate; + + +// Converted by David Lublin from http://glslsandbox.com/e#14742.0 !!!! + +// "Fractal Cartoon" - former "DE edge detection" by Kali + +// Cartoon-like effect using eiffies's edge detection found here: +// https://www.shadertoy.com/view/4ss3WB +// I used my own method previously but was too complicated and not compiling everywhere. +// Thanks to the suggestion by WouterVanNifterick. + +// There are no lights and no AO, only color by normals and dark edges. + +// update: Nyan Cat cameo, thanks to code from mu6k: https://www.shadertoy.com/view/4dXGWH + + +//#define SHOWONLYEDGES +#define NYAN +#define WAVES +#define BORDER + +#define RAY_STEPS 150 + +#define BRIGHTNESS 1.2 +#define GAMMA 1.4 +#define SATURATION .65 + + +#define detail .001 +#define t iGlobalTime*.5 + + +const vec3 origin=vec3(-1.,.7,0.); +float det=0.0; + + +// 2D rotation function +mat2 rot(float a) { + return mat2(cos(a),sin(a),-sin(a),cos(a)); +} + +// "Amazing Surface" fractal +vec4 formula(vec4 p) { + p.xz = abs(p.xz+1.)-abs(p.xz-1.)-p.xz; + p.y-=.25; + p.xy*=rot(radians(35.)); + p=p*2./clamp(dot(p.xyz,p.xyz),.2,1.); + return p; +} + +// Distance function +float de(vec3 pos) { +#ifdef WAVES + pos.y+=sin(pos.z-t*6.)*.15; //waves! +#endif + float hid=0.; + vec3 tpos=pos; + tpos.z=abs(3.-mod(tpos.z,6.)); + vec4 p=vec4(tpos,1.); + for (int i=0; i<4; i++) {p=formula(p);} + float fr=(length(max(vec2(0.),p.yz-1.5))-1.)/p.w; + float ro=max(abs(pos.x+1.)-.3,pos.y-.35); + ro=max(ro,-max(abs(pos.x+1.)-.1,pos.y-.5)); + pos.z=abs(.25-mod(pos.z,.5)); + ro=max(ro,-max(abs(pos.z)-.2,pos.y-.3)); + ro=max(ro,-max(abs(pos.z)-.01,-pos.y+.32)); + float d=min(fr,ro); + return d; +} + + +// Camera path +vec3 path(float ti) { + ti*=1.5; + vec3 p=vec3(sin(ti),(1.-sin(ti))*.5,-ti*5.)*.5; + return p; +} + +// Calc normals, and here is edge detection, set to variable "edge" + +float edge=0.; +vec3 normal(vec3 p) { + vec3 e = vec3(0.0,det*5.,0.0); + + float d1=de(p-e.yxx),d2=de(p+e.yxx); + float d3=de(p-e.xyx),d4=de(p+e.xyx); + float d5=de(p-e.xxy),d6=de(p+e.xxy); + float d=de(p); + edge=abs(d-0.5*(d2+d1))+abs(d-0.5*(d4+d3))+abs(d-0.5*(d6+d5));//edge finder + edge=min(1.,pow(edge,.5)*15.); + return normalize(vec3(d1-d2,d3-d4,d5-d6)); +} + + +// Used Nyan Cat code by mu6k, with some mods + +vec4 rainbow(vec2 p) +{ + float q = max(p.x,-0.1); + float s = sin(p.x*7.0+t*70.0)*0.08; + p.y+=s; + p.y*=1.1; + + vec4 c; + if (p.x>0.0) c=vec4(0,0,0,0); else + if (0.0/6.00.2) color.a=0.0; + return color; +} + + +// Raymarching and 2D graphics + +vec3 raymarch(in vec3 from, in vec3 dir) + +{ + edge=0.; + vec3 p, norm; + float d=100.; + float totdist=0.; + for (int i=0; idet && totdist<25.0) { + p=from+totdist*dir; + d=de(p); + det=detail*exp(.13*totdist); + totdist+=d; + } + } + vec3 col=vec3(0.); + p-=(det-d)*dir; + norm=normal(p); +#ifdef SHOWONLYEDGES + col=1.-vec3(edge); // show wireframe version +#else + col=(1.-abs(norm))*max(0.,1.-edge*.8); // set normal as color with dark edges +#endif + totdist=clamp(totdist,0.,26.); + dir.y-=.02; + //float vvvv = 1.0 ; // IMG_NORM_PIXEL(iChannel0,vec2(.6,.2)).x + float vvvv = 0.5 * (sin(iGlobalTime) + 1.0); + float sunsize=7.; // -max(0.,vvvv-.4)*5.; // responsive sun size + float an=atan(dir.x,dir.y)+iGlobalTime*1.5; // angle for drawing and rotating sun + float s=pow(clamp(1.0-length(dir.xy)*sunsize-abs(.2-mod(an,.4)),0.,1.),.1); // sun + float sb=pow(clamp(1.0-length(dir.xy)*(sunsize-.3)-abs(.2-mod(an,.4)),0.,1.),.1); // sun border + float sg=pow(clamp(1.0-length(dir.xy)*(sunsize-4.5)-.5*abs(.2-mod(an,.4)),0.,1.),3.); // sun rays + float y=mix(.45,1.2,pow(smoothstep(0.,1.,.75-dir.y),2.))*(1.-sb*.5); // gradient sky + + // set up background with sky and sun + vec3 backg=vec3(0.5,0.,1.)*((1.-s)*(1.-sg)*y+(1.-sb)*sg*vec3(1.,.8,0.15)*3.); + backg+=vec3(1.,.9,.1)*s; + backg=max(backg,sg*vec3(1.,.9,.5)); + + col=mix(vec3(1.,.9,.3),col,exp(-.004*totdist*totdist));// distant fading to sun color + if (totdist>25.) col=backg; // hit background + col=pow(col,vec3(GAMMA))*BRIGHTNESS; + col=mix(vec3(length(col)),col,SATURATION); +#ifdef SHOWONLYEDGES + col=1.-vec3(length(col)); +#else + col*=vec3(1.,.9,.85); +#ifdef NYAN + dir.yx*=rot(dir.x); + vec2 ncatpos=(dir.xy+vec2(-3.+mod(-t,6.),-.27)); + vec4 ncat=nyan(ncatpos*5.); + vec4 rain=rainbow(ncatpos*10.+vec2(.8,.5)); + if (totdist>8.) col=mix(col,max(vec3(.2),rain.xyz),rain.a*.9); + if (totdist>8.) col=mix(col,max(vec3(.2),ncat.xyz),ncat.a*.9); +#endif +#endif + return col; +} + +// get camera position +vec3 move(inout vec3 dir) { + vec3 go=path(t); + vec3 adv=path(t+.7); + float hd=de(adv); + vec3 advec=normalize(adv-go); + float an=adv.x-go.x; an*=min(1.,abs(adv.z-go.z))*sign(adv.z-go.z)*.7; + dir.xy*=mat2(cos(an),sin(an),-sin(an),cos(an)); + an=advec.y*1.7; + dir.yz*=mat2(cos(an),sin(an),-sin(an),cos(an)); + an=atan(advec.x,advec.z); + dir.xz*=mat2(cos(an),sin(an),-sin(an),cos(an)); + return go; +} + +void main(void) +{ + vec2 uv = gl_FragCoord.xy / iResolution.xy*2.-1.; + vec2 oriuv=uv; + uv.y*=iResolution.y/iResolution.x; + vec2 mouse=(iMouse.xy/iResolution.xy-.5)*3.; + if (iMouse.z<1.) mouse=vec2(0.,-0.05); + float fov=.9-max(0.,.7-iGlobalTime*.3); + vec3 dir=normalize(vec3(uv*fov,1.)); + dir.yz*=rot(mouse.y); + dir.xz*=rot(mouse.x); + vec3 from=origin+move(dir); + vec3 color=raymarch(from,dir); + #ifdef BORDER + color=mix(vec3(0.5),color,pow(max(0.,.95-length(oriuv*oriuv*oriuv*vec2(1.05,1.1))),.3)); + #endif + gl_FragColor = vec4(color,1.); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Fractal Folding (1).fs b/AuraGrove/MediaFiles/Fractal Folding (1).fs new file mode 100644 index 0000000..df39ac9 --- /dev/null +++ b/AuraGrove/MediaFiles/Fractal Folding (1).fs @@ -0,0 +1,185 @@ +/* +{ + "CATEGORIES": [ + "Fractal" + ], + "INPUTS" : [ + { + "NAME" : "Ball", + "TYPE" : "float", + "MAX" : 1, + "DEFAULT" : 1, + "MIN" : 0 + }, + { + "NAME" : "RotationIntensityX", + "TYPE" : "float", + "MAX" : 1, + "DEFAULT" : 0, + "MIN" : 0 + }, + { + "NAME" : "RotationIntensityY", + "TYPE" : "float", + "MAX" : 1, + "DEFAULT" : 0, + "MIN" : 0 + }, + { + "MAX" : 1, + "NAME" : "RotationSpeed1", + "TYPE" : "float", + "DEFAULT" : 1, + "MIN" : 0 + }, + { + "MAX" : 1, + "NAME" : "RotationSpeed2", + "TYPE" : "float", + "DEFAULT" : 1 + }, + { + "NAME" : "SizeReductionRate", + "TYPE" : "float", + "DEFAULT" : 0 + }, + { + "MAX" : 10, + "NAME" : "RotationOffset1", + "TYPE" : "float", + "MIN" : 0, + "DEFAULT" : 0 + }, + { + "MAX" : 10, + "NAME" : "RotationOffset2", + "TYPE" : "float", + "DEFAULT" : 0.3, + "MIN" : 0 + }, + { + "NAME" : "PlaneFoldFactor1", + "TYPE" : "float", + "DEFAULT" : 0.3 + }, + { + "NAME" : "PlaneFoldFactor2", + "TYPE" : "float", + "DEFAULT" : 0.1 + }, + { + "NAME" : "CameraZOffset", + "TYPE" : "float", + "MAX" : 15, + "DEFAULT" : 10, + "MIN" : 0 + }, + { + "NAME" : "CameraXOffset", + "TYPE" : "float", + "MAX" : 20, + "DEFAULT" : 10, + "MIN" : 0 + }, + { + "NAME" : "CameraYOffset", + "TYPE" : "float", + "MAX" : 10, + "DEFAULT" : 5, + "MIN" : 0 + } + ], + "ISFVSN" : "2" +} +*/ + +// Code by Flopine +// Thanks to wsmind, leon, XT95, lsdlive, lamogui, Coyhot, Alkama and YX for teaching me +// Thanks LJ for giving me the love of shadercoding :3 + +// Thanks to the Cookie Collective, which build a cozy and safe environment for me +// and other to sprout :) https://twitter.com/CookieDemoparty + +// Mods by @rhythmic.visions + + +float hash21(vec2 x) { + return fract(sin(dot(x, vec2(54.4, 62.1))) * 457.5); +} + +mat2 rot(float a) { + return mat2(cos(a), sin(a * RotationIntensityX), -sin(a * RotationIntensityY), cos(a)); +} + +void mo(inout vec2 p, vec2 d) { + p = abs(p) - d; + if (p.y > p.x) p = p.yx; +} + +float plane(vec3 p, vec3 n) { + return dot(p, normalize(n)); +} + +float cut_ps(vec3 p, float s) { + p *= s; + mo(p.xy, vec2(1.)); + mo(p.yz, vec2(0.6 * PlaneFoldFactor1 + PlaneFoldFactor2)); + mo(p.xz, vec2(0.1 * PlaneFoldFactor1 + PlaneFoldFactor2)); + return plane(p, vec3(1., 1., 4.)) / s; +} + +float prim1(vec3 p, float s) { + float pos = cos(TIME * RotationSpeed1 + RotationOffset1) * 0.4; + p.xz *= rot(pos); + return cut_ps(p, s); +} + +float fractal(vec3 p) { + float size = 1.; + float d = prim1(p, size - SizeReductionRate); + for (int i = 1; i < 5; i++) { + float ratio = float(i) / 2.5; + float pos = cos(TIME * ratio * RotationSpeed2) * 0.4; + p.yz *= rot(pos + RotationOffset2); + size -= 0.2; + d = min(d, prim1(p, size + SizeReductionRate)); + } + return d; +} + +float g1 = 0.; +float SDF(vec3 p) { + float noise = hash21(p.xy * 0.1 + TIME) * 0.01; + float sphe = length(p) - (.8 + noise) * Ball * 2.; + g1 += 0.1 / (0.1 + sphe * sphe); + return max(-length(p + vec3(0., 0., 4.5)) + .8, min(sphe, fractal(p))); +} + +void main() { + vec2 uv = (2. * gl_FragCoord.xy - RENDERSIZE.xy) / RENDERSIZE.y; + float dither = hash21(uv); + + vec3 ro = vec3(0.001 + 10. - CameraXOffset, 0.001 + 5. - CameraYOffset, -4.5 - CameraZOffset), + rd = normalize(vec3(uv, 0.8)), + p = ro, + col = vec3(0.1); + + float shad = 0.; + bool hit = false; + for (float i = 0.; i < 64.; i++) { + float d = SDF(p); + if (d < 0.001) { + hit = true; + shad = i / 64.; + break; + } + d *= 0.8 + dither * 0.1; + p += d * rd; + } + if (hit) { + col = vec3(1. - shad); + col += g1 * vec3(0.15, 0., 0.1); + } + + gl_FragColor = vec4(col, 1.0); +} diff --git a/AuraGrove/MediaFiles/FractilianSpongeOfDoomย  (1).fs b/AuraGrove/MediaFiles/FractilianSpongeOfDoomย  (1).fs new file mode 100644 index 0000000..7cf65c7 --- /dev/null +++ b/AuraGrove/MediaFiles/FractilianSpongeOfDoomย  (1).fs @@ -0,0 +1,174 @@ +/*{ + "CREDIT": "by mojovideotech", + "DESCRIPTION": "", + "CATEGORIES": [ + "generator", + "iterative", + "fractal" + ], + "INPUTS" : [ + { + "NAME" : "scale", + "TYPE" : "float", + "DEFAULT" : 1.5, + "MIN" : 0.5, + "MAX" : 3.0 + }, + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : 3.0, + "MIN" : -5.0, + "MAX" : 5.0 + }, + { + "NAME" : "loops", + "TYPE" : "float", + "DEFAULT" : 20.0, + "MIN" : 6.0, + "MAX" : 40.0 + }, + { + "NAME" : "density", + "TYPE" : "float", + "DEFAULT" : 1.5, + "MIN" : 1.0, + "MAX": 2.5 + }, + { + "NAME" : "depth", + "TYPE" : "float", + "DEFAULT" : 12.0, + "MIN" : 6.0, + "MAX" : 20.0 + }, + { + "NAME" : "detail", + "TYPE" : "float", + "DEFAULT" : 0.001, + "MIN" : 0.0001, + "MAX" : 0.1 + }, + { + "NAME" : "Xr", + "TYPE" : "float", + "DEFAULT" : -0.001, + "MIN" : -0.001, + "MAX" : 0.001 + }, + { + "NAME" : "Yr", + "TYPE" : "float", + "DEFAULT" : 0.003, + "MIN" : -0.001, + "MAX" : 0.001 + }, + { + "NAME" : "Zr", + "TYPE" : "float", + "DEFAULT" : 0.002, + "MIN" : -0.001, + "MAX" : 0.001 + }, + { + "NAME" : "R", + "TYPE" : "float", + "DEFAULT" : 0.05, + "MIN" : 0.0, + "MAX" : 0.75 + }, + { + "NAME" : "G", + "TYPE" : "float", + "DEFAULT" : 0.15, + "MIN" : 0.0, + "MAX" : 0.75 + }, + { + "NAME" : "B", + "TYPE" : "float", + "DEFAULT" : 0.667, + "MIN" : 0.0, + "MAX" : 0.75 + }, + { + "NAME" : "lightpos", + "TYPE" : "point2D", + "DEFAULT" : [ 1.0, -20.0 ], + "MAX" : [ 10.0, -5.0 ], + "MIN" : [ 5.0, -25.0 ] + } + + + ], + "ISFVSN" : "2.0" +} +*/ + +//////////////////////////////////////////////////////////// +// FractilianSpongeOfDoom by mojovideotech +// +// based on +// shadertoy.com\/MdKyRw by wyatt +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + + +vec4 light; +float T; +mat2 m,n,nn; + +float map (vec3 p) { + float t = 2.5, d = length(p-light.xyz)-light.w; + d = min(d,max(10.0-p.z, 0.0)); + for (int i = 0; i < 20; i++) { + if (float (i) >depth) break; + t = t*0.66; + p.xy = m*p.xy; + p.yz = n*p.yz; + p.zx = nn*p.zx; + p.xz = abs(p.xz) - t; + } + d = min(d,length(p)-density*t); + return d; +} + +vec3 norm (vec3 p) { + vec2 e = vec2 (detail, 0.0); + return normalize(vec3( + map(p+e.xyy) - map(p-e.xyy), + map(p+e.yxy) - map(p-e.yxy), + map(p+e.yyx) - map(p-e.yyx))); +} + +vec3 ray (vec3 r, vec3 d) { + for (int i = 0; i < 40; i++) { + if (float (i) >loops) break; + r += d*map(r); + } + return r; +} + +mat2 rot (float s) { return mat2(sin(s),cos(s),-cos(s),sin(s)); } + +void main() +{ + vec2 v = (gl_FragCoord.xy/RENDERSIZE.xy*2.0-1.0)*scale; + v.x *= RENDERSIZE.x/RENDERSIZE.y; + T = rate*TIME*10.0; + m = rot(Xr*T); + n = rot(Yr*T); + nn = rot(Zr*T); + vec3 r = vec3(0.0,0.0,-15.0+2.0*sin(0.01*T)); + light = vec4(10.0*sin(0.01*T),lightpos.xy,1.0); + vec3 d = normalize(vec3(v,5.0)); + vec3 p = ray(r,d); + d = normalize(light.xyz-p); + vec3 no = norm(p); + vec3 col = vec3(R,G,B)+0.25; + vec3 bounce = ray(p+0.01*d,d); + col = mix(col,vec3(0.0),dot(no, normalize(light.xyz-p))); + if (length(bounce-light.xyz) > light.w+0.1) col *= 0.2; + gl_FragColor = vec4(col,1.0); +} diff --git a/AuraGrove/MediaFiles/Grid Matrix.fs b/AuraGrove/MediaFiles/Grid Matrix.fs new file mode 100644 index 0000000..945689a --- /dev/null +++ b/AuraGrove/MediaFiles/Grid Matrix.fs @@ -0,0 +1,119 @@ +/*{ + "DESCRIPTION": "Optimized ISF shader with parameters for speed, color modulation, and tunnel deformation.", + "CREDIT": "Shadertoy", + "ISFVSN": "2", + "INPUTS": [ + { + "NAME": "speed", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": 0.1, + "MAX": 5.5, + "LABEL": "Speed" + }, + { + "NAME": "colorMod", + "TYPE": "color", + "LABEL": "Color Modulation" + } + ] +}*/ + +// Forked and based from +// https://www.shadertoy.com/view/NlsXDH + + +float det = .001, t, boxhit; +vec3 adv, boxp; + +float hash(vec2 p) { + vec3 p3 = fract(vec3(p.xyx) * 0.1031); + p3 += dot(p3, p3.yzx + 33.33); + return fract((p3.x + p3.y) * p3.z); +} + +mat2 rot(float a) { + float s = sin(a), c = cos(a); + return mat2(c, s, -s, c); +} + +vec3 path(float t) { + vec2 pathOffset = vec2(sin(t * 0.1), cos(t * 0.05)) * 10.0; + float xOffset = smoothstep(0.0, 0.5, abs(0.5 - fract(t * 0.02))) * 10.0; + return vec3(pathOffset.x + xOffset, pathOffset.y, t); +} + +float fractal(vec2 p) { + p = abs(5.0 - mod(p * 0.2, 10.0)) - 5.0; + float ot = 1000.0; + for (int i = 0; i < 7; i++) { + p = abs(p) / clamp(p.x * p.y, 0.25, 2.0) - 1.0; + if (i > 0) { + float fractValue = fract(abs(p.y) * 0.05 + t * 0.05 + float(i) * 0.3); + ot = min(ot, abs(p.x) + 0.7 * fractValue); + } + } + return exp(-10.0 * ot); +} + +float box(vec3 p, vec3 l) { + vec3 c = abs(p) - l; + return length(max(vec3(0.0), c)) + min(0.0, max(c.x, max(c.y, c.z))); +} + +float de(vec3 p) { + boxhit = 0.0; + vec3 p2 = p - adv; + p2.xz *= rot(sin(t * 0.5)); // Adding tunnel deformation + p.xy -= path(p.z).xy; + p.y = -abs(p.y) - 3.0 ; + p.z = mod(p.z, 20.0) - 10.0; + + for (int i = 0; i < 5; i++) { + p = abs(p) - 1.0; + p.xz *= rot(radians(-45.0)); + p.yz *= rot(radians(90.0)); + } + + float f = -box(p, vec3(5.0, 5.0, 10.0)); + return f * 0.8; +} + +vec3 march(vec3 from, vec3 dir) { + vec3 g = vec3(0.0); + float td = 0.0; + + for (int i = 0; i < 20; i++) { + vec3 p = from + td * dir; + float d = de(p); // * (1.0 - hash(gl_FragCoord.xy + t) * 0.3); + if (d < det && boxhit < 0.5) break; + td += max(det, abs(d)); + + // Aggregate fractal calculations + float fractalSum = fractal(p.xy) + fractal(p.xz) + fractal(p.yz); + float boxFractalSum = fractal(boxp.xy) + fractal(boxp.xz) + fractal(boxp.yz); + + vec3 colf = vec3(fractalSum) * colorMod.rgb; + + g += colf / (3.0 + d * d * 2.0) * exp(-0.0002 * td * td) * step(5.0, td) * 0.5 * (1.0 - boxhit); + } + + return g; +} + +mat3 lookat(vec3 dir, vec3 up) { + dir = normalize(dir); + vec3 rt = normalize(cross(dir, normalize(up))); + return mat3(rt, cross(rt, dir), dir); +} + +void main() { + vec2 uv = (gl_FragCoord.xy - RENDERSIZE.xy * 0.5) / RENDERSIZE.y; + t = TIME * 7.0 * speed; // Adjusted time with speed parameter + vec3 from = path(t); + adv = path(t + 6.0 + sin(t * 0.1) * 3.0); + vec3 dir = normalize(vec3(uv, 0.7)); + dir = lookat(adv - from, vec3(0.0, 1.0, 0.0)) * dir; + vec3 col = march(from, dir); + gl_FragColor = vec4(col, 1.0); +} diff --git a/AuraGrove/MediaFiles/HAL10000 (1).fs b/AuraGrove/MediaFiles/HAL10000 (1).fs new file mode 100644 index 0000000..4ec00cf --- /dev/null +++ b/AuraGrove/MediaFiles/HAL10000 (1).fs @@ -0,0 +1,195 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES": [ + "generator", + "Retro" + ], + "DESCRIPTION": "based on glslsandbox.com/e#12573.0", + "INPUTS": [ + { + "NAME": "seed1", + "TYPE": "float", + "DEFAULT": 0.77, + "MIN": 0, + "MAX": 1 + }, + { + "NAME": "seed2", + "TYPE": "float", + "DEFAULT": 0.53, + "MIN": 0, + "MAX": 1 + }, + { + "NAME": "seed3", + "TYPE": "float", + "DEFAULT": 1, + "MIN": 0.0001, + "MAX": 9.999 + }, + { + "NAME": "rotation", + "TYPE": "float", + "DEFAULT": 2, + "MIN": 0, + "MAX": 2 + }, + { + "NAME": "rotozoom", + "TYPE": "float", + "DEFAULT": 34.95, + "MIN": -50, + "MAX": 50 + }, + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 48.46, + "MIN": -60, + "MAX": 60 + }, + { + "NAME": "density", + "TYPE": "float", + "DEFAULT": 7.43, + "MIN": -50, + "MAX": 50 + }, + { + "NAME": "pulseRate", + "TYPE": "float", + "DEFAULT": 2.1, + "MIN": 1, + "MAX": 10 + }, + { + "NAME": "glow", + "TYPE": "float", + "DEFAULT": 1.66, + "MIN": 0, + "MAX": 5 + }, + { + "NAME": "baseColor", + "TYPE": "color", + "DEFAULT": [ + 0.1, + 0.1, + 0.9, + 0.5 + ] + }, + { + "NAME": "glowColor", + "TYPE": "color", + "DEFAULT": [ + 0.9, + 0.2, + 0.3, + 0.5 + ] + } + ] +}*/ + + + +//////////////////////////////////////////////////////////// +// HAL10000 by mojovideotech +// +// based on : +// glslsandbox.com/e#12573.0 +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + + +#ifdef GL_ES +precision mediump float; +#endif + +#define pi 3.141592653589793 // pi + + +vec2 rana(in vec2 p) { + return fract(vec2(sin(p.x * 3889. + p.y * 3989.), cos(p.x * 983. + p.y * (17.*seed1)))); +} + +float ranb(vec2 p) { + return fract(sin(dot(p.xy, vec2(139.*seed2, 1213.))) * 514229.); +} + +vec2 ranc(float p) { + return fract(vec2(sin(p * 5557.), cos(p * 4999.)*seed3)); +} + +vec3 voronoi(in vec2 x) { + vec2 n = floor(x); + vec2 f = fract(x); + vec2 mg, mr; + float md = 8.0, md2 = 8.0; + for(int j = -1; j <= 1; j ++) + { + for(int i = -1; i <= 1; i ++) + { + vec2 g = vec2(float(i), float(j)); + vec2 o = rana(n + g); + vec2 r = g + o - f; + float d = max(abs(r.x), abs(r.y)); + if(d < md) + {md2 = md; md = d; mr = r; mg = g;} + else if(d < md2) + {md2 = d;} + } + } + return vec3(n + mg, md2 - md); +} + +mat2 rotate2d(float _angle) { + return mat2(cos(_angle),-sin(_angle), + sin(_angle),cos(_angle)); +} + +vec3 intersect(in vec3 o, in vec3 d, vec3 c, vec3 u, vec3 v) { + vec3 q = o - c; + return vec3( + dot(cross(u, v), q), + dot(cross(q, u), d), + dot(cross(v, q), d)) / dot(cross(v, u), d); +} + +void main( void ) { + vec2 uv = gl_FragCoord.xy / RENDERSIZE.xy; + uv = uv * 4.0 - 2.0 ; + uv.x *= RENDERSIZE.x / RENDERSIZE.y; + uv = vec2(rotate2d(rotation*pi)*uv.xy); + vec3 ro = vec3(10.0, 0.0, 0.0); + vec3 ta = vec3(0.0, 1000.0, 0.0); + vec3 ww = normalize(ro - ta); + vec3 uu = normalize(cross(ww, normalize(vec3(0.0,1.0,0.0)))); + vec3 vv = normalize(cross(uu, ww)); + vec3 rd = normalize(uv.x * uu + uv.y * vv + 0.5 * ww); + vec3 its; + float v, g; + float inten = 0.0; + for(int i = 0; i < 9; i ++) { + float layer = float(i); + its = intersect(ro, rd, vec3(rotozoom, -10.0 - layer * (density*0.1), 0.0), vec3(1.0, 0.0, 0.0), vec3(0.0, 0.0, 1.0)); + if(its.x > 0.0) { + vec3 vo = voronoi((its.xz) * (zoom*0.001) + 10.0 * ranc(float(i))); + v = exp(-100.0 * (vo.z - 0.0367)); + float fx = 0.0; + if(i == 5) { + float T = TIME * pulseRate; + float crd = fract(TIME * T) * 50.0 - 25.0; + float fxi = cos(vo.x * 0.2 + -T * 1.5); //abs(crd - vo.x); + fx = clamp(smoothstep(0.7, 1.0, fxi), 0.0, 0.9) * 1.0 * ranb(vo.xy); + fx *= exp(-2.0 * vo.z) * 3.0; + } + inten += v * 0.1 + fx; + } + } + vec3 col = pow(mix(vec3(inten, (inten * 0.5), inten),baseColor.rgb,0.6), (5.5-glow) * glowColor.gbr); + + gl_FragColor = vec4(col, 1.0); +} diff --git a/AuraGrove/MediaFiles/Heartz.fs b/AuraGrove/MediaFiles/Heartz.fs new file mode 100644 index 0000000..e039781 --- /dev/null +++ b/AuraGrove/MediaFiles/Heartz.fs @@ -0,0 +1,28 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES" : [ + "Automatically Converted", + "GLSLSandbox" + ], + "INPUTS" : [ + + ], + "DESCRIPTION" : "Automatically converted from http:\/\/glslsandbox.com\/e#36754.0" +} +*/ + +// Heartz by mojovideotech +// glslsandbox.com\/e#36754.0 by Catzpaw 2016 + +float heart(float x,float y){return (1e-10>pow(x*x+y*y-1.,3.)-x*x*y*y*y)?1.:0.;} + +vec2 rot(vec2 p,float a){return p*mat2(cos(a),-sin(a),sin(a),cos(a));} + +void main(void){ + vec2 uv=(gl_FragCoord.xy*2.-RENDERSIZE.xy)/min(RENDERSIZE.x,RENDERSIZE.y)*10.; + uv=rot(uv,-TIME*.2); + uv=mod(uv,3.)-1.5; + uv=rot(uv,TIME*.2); + float s=clamp(sin(TIME*6.)*1.2,1.,2.),c=heart(uv.x*s,uv.y*s); + gl_FragColor = vec4(vec3(1,.1,.5)*c,1); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Hoop Dreams.fs b/AuraGrove/MediaFiles/Hoop Dreams.fs new file mode 100644 index 0000000..41627bc --- /dev/null +++ b/AuraGrove/MediaFiles/Hoop Dreams.fs @@ -0,0 +1,188 @@ +// SaturdayShader Week 25 : HoopLoop +// by Joseph Fiola (http://www.joefiola.com) +// 2016-02-06 + + +/*{ + "CREDIT": "Joseph Fiola", + "DESCRIPTION": "", + "CATEGORIES": [ + "Generator" + ], + "INPUTS": [ + { + "NAME": "invert", + "TYPE": "bool", + "DEFAULT": 0.0 + }, + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 2.0, + "MIN": 0.0, + "MAX": 20.0 + }, + { + "NAME": "animate", + "TYPE": "float", + "DEFAULT": 0.3, + "MIN": -3.14159265358979323846, + "MAX": 3.14159265358979323846 + }, + { + "NAME": "size", + "TYPE": "float", + "DEFAULT": 0.35, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "thickness", + "TYPE": "float", + "DEFAULT": 0.001, + "MIN": 0.001, + "MAX": 0.5 + }, + { + "NAME": "lineEffect", + "TYPE": "float", + "DEFAULT": 0.001, + "MIN": 0.0, + "MAX": 0.2 + }, + { + "NAME": "patternOffset", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": -1.0, + "MAX": 1.0 + }, + { + "NAME": "rSin", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": -5.0, + "MAX": 5.0 + }, + { + "NAME": "xCos", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": -5.0, + "MAX": 5.0 + }, + { + "NAME": "ySin", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": -5.0, + "MAX": 5.0 + }, + { + "NAME": "blur", + "TYPE": "float", + "DEFAULT": 0.005, + "MIN": 0.001, + "MAX": 0.5 + }, + { + "NAME": "function", + "TYPE": "long", + "VALUES": [ + 0, + 1 + ], + "LABELS": [ + "abs", + "fract" + ], + "DEFAULT": 0 + }, + { + "NAME": "rotate", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": -1.0, + "MAX": 1.0 + }, + { + "NAME": "pos", + "TYPE": "point2D", + "DEFAULT": [ + 0.5, + 0.5 + ], + "MIN": [ + 0.0, + 0.0 + ], + "MAX": [ + 1.0, + 1.0 + ] + } + ] +}*/ + + +const int NUM_CIRCLES = 50; + +#define PI 3.14159265358979323846 +#define TWO_PI 6.28318530718 + +vec3 drawCircle(vec2 p, vec2 center, float radius, float edgeWidth, vec3 color) +{ + float dist = length(p - center); + vec3 ret; + + float look; + if (function == 0) look = abs(dist -size); + else if (function == 1) look = fract(dist -size); + + ret = color * (1.0 - lineEffect - smoothstep(radius, (radius+edgeWidth), look )); + + return ret; +} + +vec3 invertColor(vec3 color) { + return vec3(color *-1.0 + 1.0); +} + +//rotation function +vec2 rot(vec2 uv,float a){ + return vec2(uv.x*cos(a)-uv.y*sin(a),uv.y*cos(a)+uv.x*sin(a)); +} + + +void main() +{ + + vec2 uv = gl_FragCoord.xy / RENDERSIZE.xy; + uv -= vec2(pos); + uv.x*=RENDERSIZE.x/RENDERSIZE.y; + uv *= zoom; + + uv=rot(uv,rotate * PI); + + + vec3 color = vec3(0.0); + float angleIncrement = TWO_PI / float(NUM_CIRCLES); + + + for (int i = 0; i < NUM_CIRCLES; ++i) { + float t = angleIncrement*(float(i)); + float r = sin(rSin * t + TIME * animate); // In VDMX I use the following line and control the "animate" slider + //float r = sin(rSin * t + animate); + vec2 p = vec2(r*cos(t*xCos), r*sin(t*ySin)); + + uv=rot(uv,patternOffset * PI); + + if (lineEffect >= 0.2) color = invertColor(color); + + color += drawCircle(uv, p, thickness, blur, vec3(1.0)); + } + + if (invert) color = invertColor(color); + + gl_FragColor = vec4(color,1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Hypnocone (1).fs b/AuraGrove/MediaFiles/Hypnocone (1).fs new file mode 100644 index 0000000..f179d10 --- /dev/null +++ b/AuraGrove/MediaFiles/Hypnocone (1).fs @@ -0,0 +1,141 @@ +// SaturdayShader Week 36 : Hypnocone +// by Joseph Fiola (http://www.joefiola.com) +// 2016-04-23 + +// Based on "Flailing" Shadertoy by okro +// https://www.shadertoy.com/view/MsjSWw + +/*{ + "CREDIT": "", + "DESCRIPTION": "", + "CATEGORIES": [ + "Generator" + ], + "INPUTS": [ + { + "NAME": "invert", + "TYPE": "bool", + "DEFAULT": false + }, + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 2.0, + "MIN": 0.25, + "MAX": 10.0 + }, + { + "NAME": "rings", + "TYPE": "float", + "DEFAULT": 0.01, + "MIN": 0.01, + "MAX": 1.0 + }, + { + "NAME": "radius", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": 0.001, + "MAX": 2.0 + }, + { + "NAME": "xAmp", + "TYPE": "float", + "DEFAULT": 0.002, + "MIN": -0.1, + "MAX": 0.1 + }, + { + "NAME": "xOffset", + "TYPE": "float", + "DEFAULT": 0.01, + "MIN": -1.0, + "MAX": 1.0 + }, + { + "NAME": "xOffsetSpeed", + "TYPE": "float", + "DEFAULT": 0.02, + "MIN": 0.0, + "MAX": 0.1 + }, + { + "NAME": "yAmp", + "TYPE": "float", + "DEFAULT": 0.002, + "MIN": -0.1, + "MAX": 0.1 + }, + { + "NAME": "yOffset", + "TYPE": "float", + "DEFAULT": 0.01, + "MIN": -1.0, + "MAX": 1.0 + }, + { + "NAME": "yOffsetSpeed", + "TYPE": "float", + "DEFAULT": -0.02, + "MIN": 0.0, + "MAX": 0.1 + }, + { + "NAME": "rotate", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "pos", + "TYPE": "point2D", + "DEFAULT": [0.5,0.5], + "MIN":[0.0,0.0], + "MAX":[1.0,1.0] + } + ] +}*/ + + +#define TWO_PI 6.28318530718 + +mat2 rotate2d(float _angle){ + return mat2(cos(_angle),-sin(_angle), + sin(_angle),cos(_angle)); +} + +void main() +{ + vec2 uv = gl_FragCoord.xy / RENDERSIZE.xy; + uv -= vec2(pos); + uv.x *= RENDERSIZE.x/RENDERSIZE.y; + uv = rotate2d(rotate*-TWO_PI) * uv; + uv *= zoom; + + vec3 col = vec3(0.); + vec2 loc = uv * 0.0; + + float radius = radius+rings; + + + for (int i = 0; i < 100; ++i) { + float r = smoothstep(radius, radius+.004, distance(uv,loc)); + + col = 1.0 - col * r; + + //move circles + float dx = cos(TIME) * xAmp; + dx += cos(TIME * xOffsetSpeed * float(i)) * xOffset; + float dy = sin(TIME) * yAmp; + dy += sin(TIME * yOffsetSpeed * float(i)) * yOffset; + loc += vec2(dx, dy); + + + //make smaller + radius -= rings; + } + + if (invert) col = col *-1.0 + 1.0; + gl_FragColor = vec4(col, 1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/InnerDimensionalMatrix (1).fs b/AuraGrove/MediaFiles/InnerDimensionalMatrix (1).fs new file mode 100644 index 0000000..4ed1b78 --- /dev/null +++ b/AuraGrove/MediaFiles/InnerDimensionalMatrix (1).fs @@ -0,0 +1,167 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES" : [ "generator" + ], + "DESCRIPTION" : "", + "INPUTS" : [ + { + "NAME" : "seed1", + "TYPE" : "float", + "DEFAULT" : 155, + "MIN" : 34, + "MAX" : 233 + }, + { + "NAME" : "seed2", + "TYPE" : "float", + "DEFAULT" : 649, + "MIN" : 89, + "MAX" : 987 + }, + { + "NAME" : "scale", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : 0.25, + "MAX" : 2.0 + }, + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : 0.1, + "MAX" : 3.0 + }, + { + "NAME" : "zoom", + "TYPE" : "float", + "DEFAULT" : 0.175, + "MIN" : -1.0, + "MAX" : 1.0 + }, + { + "NAME" : "line", + "TYPE" : "float", + "DEFAULT" : 0.367, + "MIN" : 0.0, + "MAX" : 0.5 + }, + { + "NAME" : "flash", + "TYPE" : "float", + "DEFAULT" : 7.5, + "MIN" : 0.5, + "MAX" : 10.0 + }, + { + "NAME" : "mirror", + "TYPE" : "bool", + "DEFAULT" : false + }, + { + "NAME" : "color", + "TYPE" : "bool", + "DEFAULT" : true + }, + { + "NAME" : "cycle", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : 0.05, + "MAX" : 20.0 + } + ] +} +*/ + + +//////////////////////////////////////////////////////////////////// +// InnerDimensionalMatrix by mojovideotech +// +// based on : +// The Universe Within - by Martijn Steinrucken aka BigWings 2018 +// shadertoy.com/\lscczl +// glslsandbox.com\/e#47584.1 +// +// License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////////////// + +#ifdef GL_ES +precision highp float; +#endif + +#define S(a, b, t) smoothstep(a, b, t) + +float N1(float n) { + return fract(sin(n) * 43758.5453123); +} + +float N11(float p) { + float fl = floor(p); + float fc = fract(p); + return mix(N1(fl), N1(fl + 1.0), fc); +} + +float N21(vec2 p) { return fract(sin(p.x * floor(seed1) + p.y * floor(seed2)) * floor(seed2+seed1)); } + +vec2 N22(vec2 p) { return vec2(N21(p), N21(p + floor(seed2))); } + +float L(vec2 p, vec2 a, vec2 b) { + vec2 pa = p-a, ba = b-a; + float t = clamp(dot(pa, ba)/dot(ba, ba), 0.0, 1.0); + float d = length(pa - ba * t); + float m = S(0.02, 0.0, d); + d = length(a-b); + float f = S(1.0, 0.8, d); + m *= f; + m += m*S(0.05, 0.06, abs(d - 0.5)) * 2.0; + return m; +} + +vec2 GetPos(vec2 p, vec2 o) { + p += o; + vec2 n = N22(p)*TIME*rate; + p = sin(n) * line; + return o+p; +} + +float G(vec2 uv) { + vec2 id = floor(uv); + uv = fract(uv) - 0.5; + vec2 g = GetPos(id, vec2(0)); + float m = 0.0; + for(float y=-1.0; y<=1.0; y++) { + for(float x=-1.0; x<=1.0; x++) { + vec2 offs = vec2(x, y); + vec2 p = GetPos(id, offs); + m+=L(uv, g, p); + vec2 a = p-uv; + float f = 0.003/dot(a, a); + f *= pow( sin(N21(id+offs) * 6.2831 + (flash*TIME)) * 0.4 + 0.6, flash); + m += f; + } + } + m += L(uv, GetPos(id, vec2(-1, 0)), GetPos(id, vec2(0, -1))); + m += L(uv, GetPos(id, vec2(0, -1)), GetPos(id, vec2(1, 0))); + m += L(uv, GetPos(id, vec2(1, 0)), GetPos(id, vec2(0, 1))); + m += L(uv, GetPos(id, vec2(0, 1)), GetPos(id, vec2(-1, 0))); + return m; +} + +void main() +{ + vec2 uv = (2.25 - scale) * ( gl_FragCoord.xy - 0.5 * RENDERSIZE.xy) / RENDERSIZE.y; + if (mirror) { if(uv.x<0.0) uv.x = abs(uv.x); } + float m = 0.0; + vec3 col; + for(float i=0.0; i<1.0; i+=0.2) { + float z = fract(i+TIME*zoom); + float s = mix(10.0, 0.5, z); + float f = S(0.0, 0.4, z) * S(1.0, 0.8, z); + m += G(uv * s + (N11(i)*100.0) * i) * f; + } + if (color) { col = 0.5 + sin(vec3(1.0, 0.5, 0.75)*TIME*cycle) * 0.5; } + else col = vec3(1.0); + col *= m; + gl_FragColor = vec4( col, 1.0 ); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Kaleidolines (1).fs b/AuraGrove/MediaFiles/Kaleidolines (1).fs new file mode 100644 index 0000000..f25a27a --- /dev/null +++ b/AuraGrove/MediaFiles/Kaleidolines (1).fs @@ -0,0 +1,157 @@ +// SaturdayShader Week 34 : Kaleidolines +// Joseph Fiola (http://www.joefiola.com) +// 2016-04-09 + +// Based on Shadertoy created by Vinicius Graciano Santos - vgs/2014 +// https://www.shadertoy.com/view/lsBSDz + + +/*{ + "CREDIT": "", + "DESCRIPTION": "", + "CATEGORIES": [ + "Generator" + ], + "INPUTS": [ + { + "NAME": "invert", + "TYPE": "bool", + "DEFAULT": "1" + }, + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 2, + "MIN": 0.25, + "MAX": 20 + }, + { + "NAME": "rotateCanvas", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 1 + }, + { + "NAME": "rotateLines", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 1 + }, + { + "NAME": "lineThickness", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.1, + "MAX": 20 + }, + { + "NAME": "lineLength", + "TYPE": "float", + "DEFAULT": 1, + "MIN": 0.05, + "MAX": 10 + }, + { + "NAME": "lines1", + "TYPE": "float", + "DEFAULT": 10, + "MIN": 1, + "MAX": 10 + }, + { + "NAME": "lines2", + "TYPE": "float", + "DEFAULT": 10, + "MIN": 1, + "MAX": 10 + }, + { + "NAME": "offset", + "TYPE": "float", + "DEFAULT": 0, + "MIN": -2, + "MAX": 2 + }, + { + "NAME": "motion", + "TYPE": "float", + "DEFAULT": 0.25, + "MIN": 0, + "MAX": 1 + }, + { + "NAME": "pos", + "TYPE": "point2D", + "DEFAULT": [ + 0.5, + 0.5 + ], + "MIN": [ + 0, + 0 + ], + "MAX": [ + 1, + 1 + ] + } + ] +}*/ + + +#define TAU 6.28318530718 + +mat2 rotate2d(float _angle){ + return mat2(cos(_angle),-sin(_angle), + sin(_angle),cos(_angle)); +} + +vec2 tile(vec2 _st, float _zoom){ + _st *= _zoom; + return fract(_st); +} + +float segment(vec2 p, vec2 a, vec2 b) { + vec2 ab = b - a; + vec2 ap = p - a; + float k = clamp(dot(ap, ab)/dot(ab, ab), 0.0, lineLength); + return smoothstep(0.0, 0.003 + lineThickness/RENDERSIZE.y, length(ap - k*ab) - (0.001 * lineThickness * 5. )); +} + +float shape(vec2 p, float angle) { + float d = 100.0; + vec2 a = vec2(1.0, 0.0), b; + vec2 rot = vec2(cos(angle), sin(angle)); + + for (int i = 0; i < 10; ++i) { + a = a + offset; + if (i >= int(lines1)) break; + b = a; + for (int j = 0; j < 10; ++j) { + if (j >= int(lines2)) break; + b = vec2(b.x*rot.x - b.y*rot.y, b.x*rot.y + b.y*rot.x); + p = rotate2d(rotateLines* -TAU) * p; + d = min(d, segment(p, a, b)); + } + a = vec2(a.x*rot.x - a.y*rot.y, a.x*rot.y + a.y*rot.x); + + } + return d; +} + +void main() { + + vec2 uv = gl_FragCoord.xy / RENDERSIZE.xy; + uv -= vec2(pos); + uv.x *= RENDERSIZE.x/RENDERSIZE.y; + uv = rotate2d(rotateCanvas *-TAU) * uv; + uv *= zoom; + + float col = shape(abs(uv), cos((motion * TAU * (TIME*0.05)))); + + if (invert) col = col *-1.0 + 1.0; + + gl_FragColor = vec4(vec3(col), 1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Kaleidoscope flower.fs b/AuraGrove/MediaFiles/Kaleidoscope flower.fs new file mode 100644 index 0000000..c5251a0 --- /dev/null +++ b/AuraGrove/MediaFiles/Kaleidoscope flower.fs @@ -0,0 +1,84 @@ +#version 120 +#pragma target glsl + +/*{ + "DESCRIPTION": "Abstract Kaleidoscopic Patterns Shader", + "CATEGORIES": [ + "Generator" + ], + "INPUTS": [ + { + "NAME": "ROTATION_SPEED", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": -5.0, + "MAX": 5.0 + }, + { + "NAME": "PATTERN_SCALE", + "TYPE": "float", + "DEFAULT": 5.0, + "MIN": 1.0, + "MAX": 20.0 + }, + { + "NAME": "SYMMETRY", + "TYPE": "float", + "DEFAULT": 6.0, + "MIN": 2.0, + "MAX": 12.0 + }, + { + "NAME": "COLOR_SCHEME", + "TYPE": "color", + "DEFAULT": [ + 0.8, + 0.2, + 0.5, + 1.0 + ] + }, + { + "NAME": "BACKGROUND_COLOR", + "TYPE": "color", + "DEFAULT": [ + 0.1, + 0.1, + 0.1, + 1.0 + ] + } + ] +}*/ + +void main() { + // Normalize pixel coordinates (from 0 to 1) + vec2 uv = gl_FragCoord.xy / RENDERSIZE.xy; + + // Center the coordinates around (0,0) + uv = uv * 2.0 - 1.0; + uv.x *= RENDERSIZE.x / RENDERSIZE.y; // Adjust for aspect ratio + + // Calculate the angle and radius from the center + float angle = atan(uv.y, uv.x); + float radius = length(uv); + + // Apply rotation over time + angle += TIME * ROTATION_SPEED; + + // Create kaleidoscopic symmetry by repeating the angle + float symmetry = SYMMETRY; + angle = mod(angle, 2.0 * 3.14159265 / symmetry); + angle = abs(angle - 3.14159265 / symmetry); + + // Generate pattern + float pattern = sin(radius * PATTERN_SCALE - angle * symmetry); + + // Adjust pattern to range from 0.0 to 1.0 + pattern = sin(pattern * 3.14159265) * 0.5 + 0.5; + + // Apply color gradient + vec3 color = mix(BACKGROUND_COLOR.rgb, COLOR_SCHEME.rgb, pattern); + + gl_FragColor = vec4(color, 1.0); +} diff --git a/AuraGrove/MediaFiles/KaliCircuitsExplorer (1).fs b/AuraGrove/MediaFiles/KaliCircuitsExplorer (1).fs new file mode 100644 index 0000000..dfdbd30 --- /dev/null +++ b/AuraGrove/MediaFiles/KaliCircuitsExplorer (1).fs @@ -0,0 +1,160 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES": [ + "generator", + "kali set" + ], + "DESCRIPTION": "", + "INPUTS": [ + { + "NAME": "center", + "TYPE": "point2D", + "DEFAULT": [ + 0, + 0 + ], + "MAX": [ + 2, + 2 + ], + "MIN": [ + -2, + -2 + ] + }, + { + "NAME": "rate", + "TYPE": "float", + "DEFAULT": 1, + "MIN": 0.01, + "MAX": 3 + }, + { + "NAME": "loops", + "TYPE": "float", + "DEFAULT": 15, + "MIN": 8, + "MAX": 24 + }, + { + "NAME": "intensity", + "TYPE": "float", + "DEFAULT": 0.03, + "MIN": 0.01, + "MAX": 0.05 + }, + { + "NAME": "focus", + "TYPE": "float", + "DEFAULT": 2.14, + "MIN": 0.5, + "MAX": 5 + }, + { + "NAME": "pulse", + "TYPE": "float", + "DEFAULT": 30, + "MIN": 6, + "MAX": 60 + }, + { + "NAME": "glow", + "TYPE": "float", + "DEFAULT": 10, + "MIN": -100, + "MAX": 100 + }, + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 0.67, + "MIN": 0.1, + "MAX": 1 + } + ], + "ISFVSN": 2 +}*/ + +//////////////////////////////////////////////////////////////////// +// KaliCircuitsExplorer by mojovideotech +// +// based on : +// shadertoy.com/XlX3Rj by Kali +// +// License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////////////// + +#ifdef GL_ES +precision highp float; +#endif + + +#define pi 3.141592653 // pi + +float S = (101.0 + glow) * intensity; +vec3 color = vec3(0.0); + +void formula(vec2 z, float t) +{ + float M = 0.0; + float o, ot2, ot=ot2=1000.0; + float K = floor(loops/4.0)+floor(5.0 * zoom); + for (int i=0; i<11; i++) { + z = abs(z) / clamp(dot(z, z), 0.1, 0.5) - t; + float l = length(z); + o = min(max(abs(min(z.x, z.y)), -l + 0.25), abs(l - 0.25)); + ot = min(ot, o); + ot2 = min(l * 0.1, ot2); + M = max(M, float(i) * (1.0 - abs(sign(ot - o)))); + if (K <= 0.0) break; + K -= 1.0; + } + M += 1.0; + float w = (intensity * zoom) * M; + float circ = pow(max(0.0, w - ot2) / w, 6.0); + S += max(pow(max(0.0, w - ot) / w, 0.25), circ); + vec3 col = normalize(0.1 + vec4(0.45, 0.75, M * 0.1, 1.0).rgb); + color += col * (0.4 + mod(M / 9.0 - t * pulse + ot2 * 2.0, 1.0)); + color += vec3(1.0, 0.7, 0.3) * circ * (10.0 - M) * 3.0; +} + + +void main() +{ + float R = 0.0; + float N = TIME * 0.01 * rate; + float T = 2.0 * rate; + if (N > 6.0 * rate) { + R += 1.0; + N -= (R * 8.0 * rate); + } + if (N < 4.0 * rate) T += N; + else T = 8.0 * rate - N; + float Z = (1.05-zoom); + vec2 pos = gl_FragCoord.xy / RENDERSIZE.xy - 0.5; + pos.x *= RENDERSIZE.x/RENDERSIZE.y; + vec2 uv = pos + center; + float sph = length(uv)*0.1; + sph = sqrt(1.0 - sph * sph) * 2.0 ; + float a = T * pi; + float b = a + T; + float c = cos(a) + sin(b); + uv *= mat2(cos(b), sin(b), -sin(b), cos(b)); + uv *= mat2(cos(a),-sin(a), sin(a),cos(a)); + uv -= vec2(sin(c), cos(c)) / pi; + uv *= Z; + float pix = 0.5 / RENDERSIZE.x * Z / sph; + float dof = (zoom * focus) + (T * 0.25); + float L = floor(loops); + for (int aa=0; aa<24; aa++) { + vec2 aauv = floor(vec2(float(aa) / 6.0, mod(float(aa), 6.0))); + formula(uv + aauv * pix * dof, T); + if (L <= 0.0) break; + L -= 1.0; + } + S /= floor(loops); + color /= floor(loops); + vec3 colo = mix(vec3(0.15), color, S) * (1.0 - length(pos)); + colo *=vec3(1.2, 1.1, 1.0); + gl_FragColor = sqrt(max(vec4(colo, 1.0), 0.0) -0.2); +} diff --git a/AuraGrove/MediaFiles/Lavalamp.fs b/AuraGrove/MediaFiles/Lavalamp.fs new file mode 100644 index 0000000..3a326b8 --- /dev/null +++ b/AuraGrove/MediaFiles/Lavalamp.fs @@ -0,0 +1,53 @@ +/* +{ + "CATEGORIES": [ + "Generator" + ], + "DESCRIPTION": "Shader with Speed and NUM_ITER controls", + "ISFVSN": "2", + "INPUTS": [ + { + "NAME": "NUM_ITER", + "TYPE": "float", + "DEFAULT": 9.0, + "MIN": 1.0, + "MAX": 20.0 + }, + { + "NAME": "Speed", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": 0.0, + "MAX": 5.0 + } + ], + "CREDIT": "Transformed by assistant" +} +*/ + +#ifdef GL_ES +precision mediump float; +#endif + +void main() { + vec2 fragCoord = gl_FragCoord.xy; + vec2 resolution = RENDERSIZE.xy; // Replace iResolution with RENDERSIZE + float time = TIME * Speed; // Apply Speed control to TIME + + vec2 uv = (2.0 * fragCoord - resolution) / min(resolution.x, resolution.y); + + // Clamp NUM_ITER to valid range + float numIter = clamp(NUM_ITER, 1.0, 20.0); + const int MAX_ITER = 20; // Maximum number of iterations + + for (int j = 1; j <= MAX_ITER; j++) { + float i = float(j); + float weight = step(i - 0.5, numIter); // 1.0 if i <= numIter, 0.0 otherwise + + uv.x += weight * (0.6 / i) * cos(i * 2.5 * uv.y + time); + uv.y += weight * (0.6 / i) * cos(i * 1.5 * uv.x + time); + } + + vec3 color = vec3(0.1) / abs(sin(time - uv.y - uv.x)); + gl_FragColor = vec4(color, 1.0); +} diff --git a/AuraGrove/MediaFiles/Linescape.fs b/AuraGrove/MediaFiles/Linescape.fs new file mode 100644 index 0000000..0b9ba5f --- /dev/null +++ b/AuraGrove/MediaFiles/Linescape.fs @@ -0,0 +1,155 @@ +/* +{ + "CATEGORIES" : [ + "Generator" + ], + "DESCRIPTION" : "", + "ISFVSN" : "2", + "INPUTS" : [ + { + "NAME" : "Offset_X", + "TYPE" : "float", + "MAX" : 20, + "DEFAULT" : 1, + "MIN" : -20, + "LABEL" : "Offset_X" + }, + { + "NAME" : "Speed", + "TYPE" : "float", + "MAX" : 5, + "DEFAULT" : 0, + "LABEL" : "Speed", + "MIN" : 0 + } + ], + "CREDIT" : "converted by Imimot. Original: https:\/\/www.shadertoy.com\/view\/4dfSDj" +} +*/ + +///////////////////////////////////////////////////////////////////////////// +// XBE +// Retro style terrain rendering +// + +const float PI = 3.141592654; + +// Noise from IQ +vec2 hash( vec2 p ) +{ + p = vec2( dot(p,vec2(127.1,311.7)), + dot(p,vec2(269.5,183.3)) ); + return -1.0 + 2.0*fract(sin(p)*43758.5453123); +} + +float noise( in vec2 p ) +{ + const float K1 = 0.366025404; + const float K2 = 0.211324865; + + vec2 i = floor( p + (p.x+p.y)*K1 ); + + vec2 a = p - i + (i.x+i.y)*K2; + vec2 o = (a.x>a.y) ? vec2(1.0,0.0) : vec2(0.0,1.0); + vec2 b = a - o + K2; + vec2 c = a - 1.0 + 2.0*K2; + + vec3 h = max( 0.5-vec3(dot(a,a), dot(b,b), dot(c,c) ), 0.0 ); + + vec3 n = h*h*h*h*vec3( dot(a,hash(i+0.0)), dot(b,hash(i+o)), dot(c,hash(i+1.0))); + + return dot( n, vec3(70.0) ); +} + +const mat2 m = mat2( 0.80, 0.60, -0.60, 0.80 ); + +float fbm4( in vec2 p ) +{ + float f = 0.0; + f += 0.5000*noise( p ); p = m*p*2.02; + f += 0.2500*noise( p ); p = m*p*2.03; + f += 0.1250*noise( p ); p = m*p*2.01; + f += 0.0625*noise( p ); + return f; +} + +float fbm6( in vec2 p ) +{ + float f = 0.0; + f += 0.5000*noise( p ); p = m*p*2.02; + f += 0.2500*noise( p ); p = m*p*2.03; + f += 0.1250*noise( p ); p = m*p*2.01; + f += 0.0625*noise( p ); p = m*p*2.04; + f += 0.031250*noise( p ); p = m*p*2.01; + f += 0.015625*noise( p ); + return f; +} + +mat4 CreatePerspectiveMatrix(in float fov, in float aspect, in float near, in float far) +{ + mat4 m = mat4(0.0); + float angle = (fov / 180.0) * PI; + float f = 1. / tan( angle * 0.5 ); + m[0][0] = f / aspect; + m[1][1] = f; + m[2][2] = (far + near) / (near - far); + m[2][3] = -1.; + m[3][2] = (2. * far*near) / (near - far); + return m; +} + +mat4 CamControl( vec3 eye, float pitch) +{ + float cosPitch = cos(pitch); + float sinPitch = sin(pitch); + vec3 xaxis = vec3( 1, 0, 0. ); + vec3 yaxis = vec3( 0., cosPitch, sinPitch ); + vec3 zaxis = vec3( 0., -sinPitch, cosPitch ); + // Create a 4x4 view matrix from the right, up, forward and eye position vectors + mat4 viewMatrix = mat4( + vec4( xaxis.x, yaxis.x, zaxis.x, 0 ), + vec4( xaxis.y, yaxis.y, zaxis.y, 0 ), + vec4( xaxis.z, yaxis.z, zaxis.z, 0 ), + vec4( -dot( xaxis, eye ), -dot( yaxis, eye ), -dot( zaxis, eye ), 1 ) + ); + return viewMatrix; +} + +void main() +{ + vec2 uv = gl_FragCoord.xy/RENDERSIZE.xy; + vec2 p = 2.*uv-1.; + p.x *= RENDERSIZE.x/RENDERSIZE.y; + + vec3 eye = vec3(0.+Offset_X, 0.25+0.25*cos(0.5*TIME)*1.0, 0.); + mat4 projmat = CreatePerspectiveMatrix(50., RENDERSIZE.x/RENDERSIZE.y, 0.1, 10.0); + mat4 viewmat = CamControl(eye, -5.*PI/180.); + mat4 vpmat = viewmat*projmat; + + vec3 col = vec3(0.); + vec3 acc = vec3(0.); + float d; + + vec4 pos = vec4(0.); + float lh = -RENDERSIZE.y; + float off = 0.1*TIME*Speed; + float h = 0.; + float z = 0.1; + float zi = 0.05; + for (int i=0; i<20; ++i) + { + pos = vec4(p.x, 0.5*fbm4(0.5*vec2(eye.x+p.x, z+off)), eye.z+z+0., 1.); + h = (vpmat*pos).y - p.y; + if (h>lh) + { + d = abs(h); + col = vec3( d<0.005?smoothstep(1.,0.,d*192.):0. ); + col *= exp(-0.1*float(i)); + acc += col; + lh = h; + } + z += zi; + } + col = sqrt(clamp(acc, 0., 1.)); + gl_FragColor = vec4(col,1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/MagnifyingMarble2.fs b/AuraGrove/MediaFiles/MagnifyingMarble2.fs new file mode 100644 index 0000000..5bfcaf2 --- /dev/null +++ b/AuraGrove/MediaFiles/MagnifyingMarble2.fs @@ -0,0 +1,214 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES": [ + "Generator" + ], + "DESCRIPTION": "spherical lens which is magnifying a moving backdrop of Perlin noise.", + "INPUTS": [ + { + "NAME": "size", + "TYPE": "float", + "DEFAULT": 3.0, + "MIN": -1.0, + "MAX": 5.0 + }, + { + "NAME": "layers", + "TYPE": "float", + "DEFAULT": 3.1, + "MIN": 2.0, + "MAX": 12.0 + }, + { + "NAME": "seed", + "TYPE": "float", + "DEFAULT": 33.0, + "MIN": 3.0, + "MAX": 333.0 + }, + { + "NAME": "refractionIn", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.1, + "MAX": 1.0 + }, + { + "NAME": "refractionOut", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.1, + "MAX": 1.0 + }, + { + "NAME": "colorWarp1", + "TYPE": "float", + "DEFAULT": 2.0, + "MIN": -3.0, + "MAX": 6.0 + }, + { + "NAME": "colorWarp2", + "TYPE": "float", + "DEFAULT": 3.0, + "MIN": -5.0, + "MAX": 10.0 + }, + { + "NAME": "rate", + "TYPE": "float", + "DEFAULT": 0.1, + "MIN": -1.5, + "MAX": 1.5 + } + ] +} +*/ + + +//////////////////////////////////////////////////////////// +// MagnifyingMarble2 by mojovideotech +// +// based on : +// shadertoy.com/ldfSDN +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + + +#define M_PI 3.1415926535 + +float TT = TIME * rate; + +vec3 light = vec3(50.0, 5.0, 20.0); + +vec4 sph1 = vec4( 0.0, 0.0, 0.0, 1.0); + +vec2 iSphere(in vec3 ro, in vec3 rd, in vec4 sph) { + vec3 oc = ro - sph.xyz; + float b = dot(oc, rd); + float c = dot(oc, oc) - sph.w * sph.w; + float h = b*b - c; + vec2 t; + if(h < 0.0) + t = vec2(-1.0); + else { + float sqrtH = sqrt(h); + t.x = (-b - sqrtH); + t.y = (-b + sqrtH); + } + return t; +} + +vec3 nSphere(in vec3 pos, in vec4 sph ) { return (pos - sph.xyz)/sph.w; } + +float intersect(in vec3 ro, in vec3 rd, out vec2 resT) { + resT = vec2(1000.0); + float id = -1.0; + vec2 tsph = iSphere(ro, rd, sph1); + if(tsph.x > 0.0 || tsph.y > 0.0) { + id = 1.0; + resT = tsph; + } + return id; +} + + +vec4 mod289(vec4 x) { return x - floor(x * (1.0 / 289.0)) * 289.0; } + +vec4 permute(vec4 x) { return mod289(((x*34.0)+1.0)*x); } + +vec4 taylorInvSqrt(vec4 r) { return 1.79284291400159 - 0.85373472095314 * r; } + +vec2 fade(vec2 t) { return t*t*t*(t*(t*6.0-15.0)+10.0); } + +float cnoise(vec2 P) { + vec4 Pi = floor(P.xyxy) + vec4(0.0, 0.0, 1.0, 1.0); + vec4 Pf = fract(P.xyxy) - vec4(0.0, 0.0, 1.0, 1.0); + Pi = mod289(Pi); + vec4 ix = Pi.xzxz; + vec4 iy = Pi.yyww; + vec4 fx = Pf.xzxz; + vec4 fy = Pf.yyww; + vec4 i = permute(permute(ix) + iy); + vec4 gx = fract(i * (1.0 / seed)) * 2.0 - 1.0 ; + vec4 gy = abs(gx) - 0.5 ; + vec4 tx = floor(gx + 0.5); + gx = gx - tx; + vec2 g00 = vec2(gx.x,gy.x); + vec2 g10 = vec2(gx.y,gy.y); + vec2 g01 = vec2(gx.z,gy.z); + vec2 g11 = vec2(gx.w,gy.w); + vec4 norm = taylorInvSqrt(vec4(dot(g00, g00), dot(g01, g01), dot(g10, g10), dot(g11, g11))); + g00 *= norm.x; + g01 *= norm.y; + g10 *= norm.z; + g11 *= norm.w; + float n00 = dot(g00, vec2(fx.x, fy.x)); + float n10 = dot(g10, vec2(fx.y, fy.y)); + float n01 = dot(g01, vec2(fx.z, fy.z)); + float n11 = dot(g11, vec2(fx.w, fy.w)); + vec2 fade_xy = fade(Pf.xy); + vec2 n_x = mix(vec2(n00, n01), vec2(n10, n11), fade_xy.x); + float n_xy = mix(n_x.x, n_x.y, fade_xy.y); + return layers * n_xy; +} + +vec4 getFragColor(float noiseValue) { + vec4 fragColor; + fragColor.r = fract(noiseValue); + fragColor.g = fract(colorWarp1 * fragColor.r); + fragColor.b = fract(colorWarp2 * fragColor.g); + fragColor.a = 1.0; + return fragColor; +} + +void main() +{ + float aspectRatio = RENDERSIZE.x/RENDERSIZE.y; + vec2 uv = gl_FragCoord.xy / RENDERSIZE.xy; + vec4 ro = vec4(0.0, 0.0, 5.0-size, 1.0); + vec3 rd = normalize(vec3( (-1.0+2.0*uv) * vec2(aspectRatio, 1.0), -1.0)); + vec2 t; + float id = intersect(ro.xyz, rd, t); + vec3 col; + if(id > 0.5 && id < 1.5) { + vec3 E = normalize(ro.xyz + t.x*rd); + vec3 N = normalize(nSphere(E, sph1)); + vec3 L = normalize(light); + vec3 reflectColor = vec3(0.0); + float lambertTerm = dot(N, L); + if (lambertTerm > 0.0) { + float w = pow(1.0 - max(0.0, dot(normalize(L+E), E)), 5.0); + reflectColor += (1.0-w)*pow(max(0.0, dot(reflect(-L, E), E)), 100.); + } + vec3 refractionVec = refract(rd, N, refractionIn); + float id2 = intersect(E, refractionVec, t); + if (id2 > 0.5 && id2 < 1.5) { + E += refractionVec * t.y; + E = normalize(E); + N = normalize(nSphere(E, sph1)); + refractionVec = refract(refractionVec, N, refractionOut); + } + vec3 noiseColor = getFragColor(cnoise(vec2(TT + refractionVec.x + uv.x, refractionVec.y + uv.y))).rgb; + col = mix(noiseColor, reflectColor, reflectColor); + } + else + col = getFragColor(cnoise(vec2(TT + uv.x, uv.y))).rgb; + + gl_FragColor = vec4(col,1.0); +} + +// +// GLSL textureless classic 2D noise "cnoise", +// with an RSL-style periodic variant "pnoise". +// Author: Stefan Gustavson (stefan.gustavson@liu.se) +// Version: 2011-08-22 +// +// Many thanks to Ian McEwan of Ashima Arts for the +// ideas for permutation and gradient selection. +// +// Copyright (c) 2011 Stefan Gustavson. All rights reserved. +// Distributed under the MIT license. See LICENSE file. +// https://github.com/ashima/webgl-noise +// diff --git a/AuraGrove/MediaFiles/Matrix.fs b/AuraGrove/MediaFiles/Matrix.fs new file mode 100644 index 0000000..c407d60 --- /dev/null +++ b/AuraGrove/MediaFiles/Matrix.fs @@ -0,0 +1,159 @@ +// SaturdayShader Week 40 : Matrix +// by Joseph Fiola (http://www.joefiola.com) +// 2016-07-09 + +// Based on "Matrix" Patricio Gonzalez Vivo from the Book of Shaders' Generative Designs Examples +// https://thebookofshaders.com/examples/?chapter=10 + + + +/*{ + "CREDIT": "", + "DESCRIPTION": "", + "CATEGORIES": [ + "Generator" + ], + "INPUTS": [ + { + "NAME": "invert", + "TYPE": "bool" + }, + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 1, + "MIN": 0.0001, + "MAX": 40 + }, + { + "NAME": "grid", + "TYPE": "float", + "DEFAULT": 5, + "MIN": 0.1, + "MAX": 20 + }, + { + "NAME": "dotSize", + "TYPE": "float", + "DEFAULT": 0.1, + "MIN": 0, + "MAX": 0.5 + }, + { + "NAME": "xScale", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 0.49 + }, + { + "NAME": "yScale", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 0.49 + }, + { + "NAME": "xRandom", + "TYPE": "float", + "DEFAULT": 12.9898, + "MIN": 0.0001, + "MAX": 12.9898 + }, + { + "NAME": "yRandom", + "TYPE": "float", + "DEFAULT": 78.233, + "MIN": 0.0001, + "MAX": 78.233 + }, + { + "NAME": "randomMultiplier", + "TYPE": "float", + "DEFAULT": 43758.5453, + "MIN": 0.0001, + "MAX": 43758.5453 + }, + { + "NAME": "speed", + "TYPE": "float", + "DEFAULT": 20, + "MIN": 0, + "MAX": 40 + }, + { + "NAME": "rotate", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 1 + }, + { + "NAME": "pos", + "TYPE": "point2D", + "DEFAULT": [ + 0, + 0.5 + ], + "MIN": [ + 0, + 0 + ], + "MAX": [ + 1, + 1 + ] + } + ] +}*/ + +#ifdef GL_ES +precision mediump float; +#endif + +#define TWO_PI 6.28318530718 + + +float random(in float x){ return fract(sin(x)*randomMultiplier); } // original value was 43758.5453 +float random(in vec2 st){ return fract(sin(dot(st.xy,vec2(xRandom,yRandom))) * randomMultiplier); } // 12.9898, 78.233, & 43758.5453 + +float randomChar(vec2 outer,vec2 inner){ + float grid = grid; + vec2 margin = vec2(xScale,yScale); + vec2 borders = step(margin,inner)*step(margin,1.-inner); + vec2 ipos = floor(inner*grid); + vec2 fpos = fract(inner*grid); + return step(.5,random(outer*64.+ipos)) * borders.x * borders.y * step(dotSize,fpos.x) * step(dotSize,fpos.y); +} + +// Rotate +mat2 rotate2d(float _angle){ + return mat2(cos(_angle),-sin(_angle), + sin(_angle),cos(_angle)); +} + +void main(){ + vec2 st = gl_FragCoord.st/RENDERSIZE.xy; + st -= vec2(pos); //center uv to pos location + st.y *= RENDERSIZE.y/RENDERSIZE.x; + + st *= zoom; + st = rotate2d(rotate*-TWO_PI) * st; + + vec3 color = vec3(0.0); + + vec2 ipos = floor(st+11.*color.r); + vec2 fpos = fract(st); + + ipos += vec2(0.,floor(TIME*speed*random(ipos.x+2.))); + + float pct = 1.2; + pct *= randomChar(ipos*sin(fpos-color.g),cos(fpos+color.r)); + pct *= random(ipos); + + color = vec3(pct); + + if (invert) color = color *-1.0 + 1.0; //invert colors + + gl_FragColor = vec4( color , 1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Matrix2.fs b/AuraGrove/MediaFiles/Matrix2.fs new file mode 100644 index 0000000..6691bb6 --- /dev/null +++ b/AuraGrove/MediaFiles/Matrix2.fs @@ -0,0 +1,159 @@ +// SaturdayShader Week 40 : Matrix +// by Joseph Fiola (http://www.joefiola.com) +// 2016-07-09 + +// Based on "Matrix" Patricio Gonzalez Vivo from the Book of Shaders' Generative Designs Examples +// https://thebookofshaders.com/examples/?chapter=10 + + + +/*{ + "CREDIT": "", + "DESCRIPTION": "", + "CATEGORIES": [ + "Generator" + ], + "INPUTS": [ + { + "NAME": "invert", + "TYPE": "bool" + }, + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 1, + "MIN": 0.0001, + "MAX": 40 + }, + { + "NAME": "grid", + "TYPE": "float", + "DEFAULT": 5, + "MIN": 0.1, + "MAX": 20 + }, + { + "NAME": "dotSize", + "TYPE": "float", + "DEFAULT": 0.1, + "MIN": 0, + "MAX": 0.5 + }, + { + "NAME": "xScale", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 0.49 + }, + { + "NAME": "yScale", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 0.49 + }, + { + "NAME": "xRandom", + "TYPE": "float", + "DEFAULT": 12.9898, + "MIN": 0.0001, + "MAX": 12.9898 + }, + { + "NAME": "yRandom", + "TYPE": "float", + "DEFAULT": 78.233, + "MIN": 0.0001, + "MAX": 78.233 + }, + { + "NAME": "randomMultiplier", + "TYPE": "float", + "DEFAULT": 43758.5453, + "MIN": 0.0001, + "MAX": 43758.5453 + }, + { + "NAME": "speed", + "TYPE": "float", + "DEFAULT": 20, + "MIN": 0, + "MAX": 40 + }, + { + "NAME": "rotate", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 1 + }, + { + "NAME": "pos", + "TYPE": "point2D", + "DEFAULT": [ + 0, + 0.5 + ], + "MIN": [ + 0, + 0 + ], + "MAX": [ + 1, + 1 + ] + } + ] +}*/ + +#ifdef GL_ES +precision mediump float; +#endif + +#define TWO_PI 6.28318530718 + + +float random(in float x){ return fract(sin(x)*randomMultiplier); } // original value was 43758.5453 +float random(in vec2 st){ return fract(sin(dot(st.xy,vec2(xRandom,yRandom))) * randomMultiplier); } // 12.9898, 78.233, & 43758.5453 + +float randomChar(vec2 outer,vec2 inner){ + float grid = grid; + vec2 margin = vec2(xScale,yScale); + vec2 borders = step(margin,inner)*step(margin,1.-inner); + vec2 ipos = floor(inner*grid); + vec2 fpos = fract(inner*grid); + return step(.5,random(outer*64.+ipos)) * borders.x * borders.y * step(dotSize,fpos.x) * step(dotSize,fpos.y); +} + +// Rotate +mat2 rotate2d(float _angle){ + return mat2(cos(_angle),-sin(_angle), + sin(_angle),cos(_angle)); +} + +void main(){ + vec2 st = gl_FragCoord.st/RENDERSIZE.xy; + st -= vec2(pos); //center uv to pos location + st.y *= RENDERSIZE.y/RENDERSIZE.x; + + st *= zoom; + st = rotate2d(rotate*-TWO_PI) * st; + + vec3 color = vec3(0.0); + + vec2 ipos = floor(st); + vec2 fpos = fract(st); + + ipos += vec2(0.,floor(TIME*speed*random(ipos.x+1.))); + + float pct = 1.0; + pct *= randomChar(ipos,fpos); + //pct *= random(ipos); + + color = vec3(pct); + + if (invert) color = color *-1.0 + 1.0; //invert colors + + gl_FragColor = vec4( color , 1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Melter (1).fs b/AuraGrove/MediaFiles/Melter (1).fs new file mode 100644 index 0000000..844b153 --- /dev/null +++ b/AuraGrove/MediaFiles/Melter (1).fs @@ -0,0 +1,116 @@ +/*{ + "CREDIT": "", + "DESCRIPTION": "", + "CATEGORIES": [ "generator" ], + "INPUTS": [ + { + "NAME": "noiseIntensity", + "TYPE": "float", + "MIN": 0.0, + "MAX": 10.0, + "DEFAULT": 6.0 + }, + { + "NAME": "noiseScaleX", + "TYPE": "float", + "MIN": 1.0, + "MAX": 10.0, + "DEFAULT": 5.5 + }, + { + "NAME": "noiseScaleY", + "TYPE": "float", + "MIN": 1.0, + "MAX": 10.0, + "DEFAULT": 3.5 + }, + { + "NAME": "redPhaseShift", + "TYPE": "float", + "MIN": 0.0, + "MAX": 1.0, + "DEFAULT": 0.1 + }, + { + "NAME": "greenPhaseShift", + "TYPE": "float", + "MIN": 0.0, + "MAX": 1.0, + "DEFAULT": 0.3 + }, + { + "NAME": "bluePhaseShift", + "TYPE": "float", + "MIN": 0.0, + "MAX": 1.0, + "DEFAULT": 0.6 + } + ] +}*/ + +#define PI 3.1415926535 +#define TWO_PI (PI * 2.0) +#define NUM_NOISE_OCTAVES 3 + +float map(float x, float in_min, float in_max, float out_min, float out_max) { + return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min; +} + +float ease(float p, float g) { + return p < 0.5 ? 0.5 * pow(2.0 * p, g) : 1.0 - 0.5 * pow(2.0 * (1.0 - p), g); +} + +// Optimized hash function by Inigo Quilez +float hash(vec2 p) { + vec3 p3 = fract(vec3(p.xyx) * 0.13); + p3 += dot(p3, p3.yzx + 3.333); + return fract((p3.x + p3.y) * p3.z); +} + +// 2D gradient noise by Inigo Quilez +float noise(vec2 x) { + vec2 i = floor(x), f = fract(x), u = f * f * (3.0 - 2.0 * f); + return mix(hash(i), hash(i + vec2(1.0, 0.0)), u.x) + + (hash(i + vec2(0.0, 1.0)) - hash(i)) * u.y * (1.0 - u.x) + + (hash(i + vec2(1.0, 1.0)) - hash(i + vec2(1.0, 0.0))) * u.x * u.y; +} + +float fbm(vec2 x) { + float v = 0.0, a = 0.5; + vec2 shift = vec2(100.0); + mat2 rot = mat2(cos(0.5), sin(0.5), -sin(0.5), cos(0.5)); + for (int i = 0; i < NUM_NOISE_OCTAVES; ++i) { + v += a * noise(x); + x = rot * x * 2.0 + shift; + a *= 0.5; + } + return v; +} + +float distFromCenter(vec2 uv) { + vec2 p = uv - 0.5; + p.x *= RENDERSIZE.x / RENDERSIZE.y; + return length(p); +} + +float upwelling(vec2 uv, float t, float noiseIntensity, vec2 noiseScale, float phase) { + float uvNoise = fbm(uv * noiseScale * fbm(uv * noiseScale + t * 0.3)) * noiseIntensity; + float noiseOffset = uvNoise * smoothstep(0.32, 0.22, distFromCenter(uv)); + float waveOffset = smoothstep(0.8, 0.001, distFromCenter(uv)) * 18.0; + return map(sin(TWO_PI * (t + noiseOffset + waveOffset + phase)), -1.0, 1.0, 0.0, 1.0); +} + +vec4 fullscreenMelt(vec2 uv, float t) { + float phaseShift = smoothstep(0.5, 1.0, 1.0 - distFromCenter(uv)); + float upwellRed = upwelling(uv, t, noiseIntensity, vec2(noiseScaleX, noiseScaleY), redPhaseShift * phaseShift); + float upwellGreen = upwelling(uv, t, noiseIntensity, vec2(noiseScaleX, noiseScaleY), greenPhaseShift * phaseShift); + float upwellBlue = upwelling(uv, t, noiseIntensity, vec2(noiseScaleX, noiseScaleY), bluePhaseShift * phaseShift); + return vec4(upwellRed, upwellGreen, upwellBlue, 1.0); +} + +void main() { + vec2 uv = gl_FragCoord.xy / RENDERSIZE.xy; + float fadeFromCenter = 1.0 - min(ease(distFromCenter(uv) + 0.2, 20.0), 1.0); + vec4 vignette = vec4(vec3(fadeFromCenter), 1.0); + gl_FragColor = fullscreenMelt(uv, TIME) * vignette; +} diff --git a/AuraGrove/MediaFiles/MetaSevenVortex.fs b/AuraGrove/MediaFiles/MetaSevenVortex.fs new file mode 100644 index 0000000..16567dd --- /dev/null +++ b/AuraGrove/MediaFiles/MetaSevenVortex.fs @@ -0,0 +1,164 @@ +/* +{ + "CREDIT": "by mojovideotech", + "CATEGORIES" : [ + "generator", + "vortex" + ], + "DESCRIPTION" : "", + "INPUTS" : [ + { + "NAME" : "center", + "TYPE" : "point2D", + "DEFAULT" : [ 0.0, 0.0 ], + "MAX" : [ 1.0, 1.0 ], + "MIN" : [ -1.0, -1.0 ] + }, + { + "NAME" : "scale", + "TYPE" : "float", + "DEFAULT" : 10.0, + "MIN" : 0.0, + "MAX" : 30.0 + }, + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : 0.5, + "MIN" : -3.0, + "MAX" : 3.0 + }, + { + "NAME" : "fov", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : 0.25, + "MAX" : 2.0 + }, + { + "NAME" : "light", + "TYPE" : "float", + "DEFAULT" : 0.4, + "MIN" : -2.0, + "MAX" : 2.0 + }, + { + "NAME" : "hue", + "TYPE" : "float", + "DEFAULT" : 0.0, + "MIN" : -0.5, + "MAX" : 0.5 + }, + { + "NAME" : "tint", + "TYPE" : "float", + "DEFAULT" : 0.0, + "MIN" : -0.5, + "MAX" : 0.5 + }, + { + "NAME": "pulse", + "TYPE": "bool", + "DEFAULT": false + } + ], + "ISFVSN" : 2.0 +} +*/ + + +//////////////////////////////////////////////////////////////////// +// MetaSevenVortex by mojovideotech +// +// based on : +// shadertoy.com\/view\/lt2fDz +// +// License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////////////// + +vec2 march(vec3 pos, vec3 dir); +vec3 camera(vec2 uv); +void rotate(inout vec2 v, float angle); + +vec3 ret_col; // torus color +vec3 h; // light amount + +#define I_MAX 400. +#define E 0.00001 +#define FAR 50. + + + +vec3 blackbody(float Temp) { + vec3 col = vec3(255.); + col.x = 56100000. * pow(Temp,(-3.0 / 2.0)) + 148.0; + col.y = 100.04 * log(Temp) - 623.6; + if (Temp > 6500.0) col.y = 35200000.0 * pow(Temp,(-3.0 / 2.0)) + 184.0; + col.z = 194.18 * log(Temp) - 1448.6; + col = clamp(col, 0.0, 255.0)/255.0; + if (Temp < 1000.0) col *= Temp/1000.0; + return col; +} + +float scene(vec3 p) { + float var, mind = 1e5, T = TIME*rate; + p.z += 10.0; + rotate(p.xz, 1.57-0.5*T ); + rotate(p.yz, 1.57-0.5*T ); + var = atan(p.x,p.y); + vec2 q = vec2( ( length(p.xy) )-6.0,p.z); + rotate(q, var*0.25+T*2.0*0.0); + vec2 oq = q ; + q = abs(q)-2.5; + if (oq.x < q.x && oq.y > q.y) + rotate(q, ( (var*1.0)+T*0.0)*3.14+T*0.0); + else + rotate(q, ( 0.28-(var*1.0)+T*0.0)*3.14+T*0.0); + float oldvar = var; + ret_col = 1.0-vec3(0.5 + tint, 1.0 - abs(hue + tint), 0.5 - hue); + mind = length(q)+0.5+1.05*(length(fract(q*0.5*(3.0+3.0*sin(oldvar*1.0 - T*2.0)) )-.5)-1.215); + h -= vec3(-3.20,0.20,1.0)*vec3(1.0)*0.0025/(0.051+(mind-sin(oldvar*1.0 - T*2.0 + 3.14)*0.125 )*(mind-sin(oldvar*1.0 - T*2.0 + 3.14)*0.125 ) ); + h -= vec3(1.20,-0.50,-0.50)*vec3(1.0)*0.025/(0.501+(mind-sin(oldvar*1.0 - T*2.0)*0.5 )*(mind-sin(oldvar*1.0 - T*2.0)*0.5 ) ); + h += vec3(0.25, 0.4, 0.05)*0.0025/(0.021+mind*mind); + return (mind); +} + +vec2 march(vec3 pos, vec3 dir) { + vec2 dist = vec2(0.0, 0.0), s = vec2(0.0, 0.0); + vec3 p = vec3(0.0, 0.0, 0.0); + for (float i = -1.0; i < I_MAX; ++i) { + p = pos + dir * dist.y; + dist.x = scene(p); + dist.y += dist.x*0.2; + if (log(dist.y*dist.y/dist.x/1e5) > 0.0 || dist.x < E || dist.y > FAR) + { break; } + s.x++; + } + s.y = dist.y; + return (s); +} + +void rotate(inout vec2 v, float angle) { v = vec2(cos(angle)*v.x+sin(angle)*v.y,-sin(angle)*v.x+cos(angle)*v.y); } + +vec3 camera(vec2 uv) { + vec3 forw = vec3(0.0, 0.0, -1.0); + vec3 right = vec3(1.0, 0.0, 0.0); + vec3 up = vec3(0.0, 1.0, 0.0); + return (normalize((uv.x) * right + (uv.y) * up + fov * forw)); +} + +void main() +{ + vec3 col= vec3(0.0); + vec2 R = RENDERSIZE.xy, + uv = (vec2(gl_FragCoord.xy-R/2.0) / R.y) - center; + vec3 dir = camera(uv); + vec3 pos = vec3(0.0, 0.0, 20.0-scale); + if (pulse) { pos.z = 4.5+1.5*sin(TIME*abs(rate)*5.0); } + h*= 0.0; + vec2 inter = (march(pos, dir)); + col.xyz = ret_col*(1.0-inter.x*0.0125); + col += h * light; + gl_FragColor = vec4(sqrt(max(col, 0.0)), 1.0); +} + diff --git a/AuraGrove/MediaFiles/On My Radar (1).fs b/AuraGrove/MediaFiles/On My Radar (1).fs new file mode 100644 index 0000000..47554a3 --- /dev/null +++ b/AuraGrove/MediaFiles/On My Radar (1).fs @@ -0,0 +1,85 @@ +/*{ + "CREDIT": "by mojovideotech, rhythmic-visions, sonicwalker", + "CATEGORIES": [ + "Shapes" + ], + "DESCRIPTION": "Radar with controls. Adapted from https://editor.isf.video/shaders/669e3b36be01f9001aa474ee", + "INPUTS": [ + { + "NAME": "speed", + "TYPE": "float", + "DEFAULT": 1, + "MIN": 0.1, + "MAX": 10 + }, + { + "NAME": "intensity", + "TYPE": "float", + "DEFAULT": 2, + "MIN": 0.1, + "MAX": 2 + }, + { + "NAME": "glow", + "TYPE": "float", + "DEFAULT": 1, + "MIN": 0.5, + "MAX": 2 + }, + { + "NAME": "radius", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.1, + "MAX": 2 + }, + { + "NAME": "color", + "TYPE": "color", + "DEFAULT": [ + 2.0, + 1, + 2.0, + 1.0 + ] + }] +}*/ + + +#ifdef GL_ES +precision mediump float; +#endif + +#define PI 3.1415926535897932384626433832795 + + +float d2y(float d){return glow/(0.2+d);} + +float fct(vec2 p, float r){ + float t = TIME * speed; + float a = 2.*mod(-atan(p.y, p.x)+t, 2.*PI); + float scan = 0.*1.; + return (d2y(a)+scan)*(intensity-step(radius,r)); +} + + +float circle(vec2 p, float r){ + float d=distance(r, radius); + return d2y(100.*d); +} + +void main( void ) { + + vec2 position = (( gl_FragCoord.xy )-0.5*RENDERSIZE)/ RENDERSIZE.y ; + position/=cos(1.5*length(position)); + float y = 0.; + + float dc = length(position); + + y+=fct(position, dc); + y+=circle(position, dc); + + y=pow(y,1.67); + vec3 radarColor = 0.3*vec3(color); + gl_FragColor = vec4( sqrt(y)*radarColor,1.0 ); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/ParticularBehavior1.fs b/AuraGrove/MediaFiles/ParticularBehavior1.fs new file mode 100644 index 0000000..3ba31f9 --- /dev/null +++ b/AuraGrove/MediaFiles/ParticularBehavior1.fs @@ -0,0 +1,54 @@ +/*{ + "CREDIT": "by mojovideotech", + "DESCRIPTION": "", + "CATEGORIES": [ + "particles" + ], + "INPUTS": [ + + ] +}*/ + +//////////////////////////////////////////////////////////// +// ParticularBehavior1 by mojovideotech +// +// based on : +// glslsandbox/\e#44948.0 +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + +#define pi 3.141592653589793 // pi +#define T (TIME + 10000.0) * 0.1 + +float hash(vec2 co) { float m = dot(co, vec2(237.561, 39.1)); return fract(sin(cos(m)* 1113.27)); } + +float random(float n) { return fract(cos(sin(n * 55.753) * 367.34)); } + +mat2 rotate2d(float angle){ return mat2(cos(angle), -sin(angle), sin(angle), cos(angle)); } + +void main() { + + vec2 uv = (gl_FragCoord.xy * 2.0 - RENDERSIZE.xy) / RENDERSIZE.x; + vec2 p = uv * rotate2d(T * 0.213); + float direction = 120.0/(T/p.x,-T/p.y,sqrt(T)); + float speed = T * direction * 0.231 ; + float distanceFromCenter = random(1.5) + length(p); + p.yx *= rotate2d(-T * 0.239); + float meteorAngle = atan(p.y, p.x) * (359.0 + cos(atan(speed,pi))+pi); + float flooredAngle = floor(meteorAngle); + float randomAngle = pow(random(flooredAngle),mix(cos(direction*pi),-sin(speed*pi),distanceFromCenter)); + float t = speed + randomAngle; + float lightsCountOffset = 0.9; + float adist = randomAngle / distanceFromCenter * lightsCountOffset; + float dist = t + adist; + float meteorDirection = (direction < 0.5) ? -1.0 : 0.0; + dist = abs(fract(dist) + meteorDirection); + float lightLength = 40.0/hash(uv.xy); + float meteor = (random(3.0) / dist) * cos(sin(speed)) / lightLength; + meteor -= dot(vec2(distanceFromCenter,meteorDirection),vec2(randomAngle,meteorAngle)); + vec3 color = vec3(0.0); + color += meteor; + + gl_FragColor = vec4(color, 1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/PlasmaEmitter.fs b/AuraGrove/MediaFiles/PlasmaEmitter.fs new file mode 100644 index 0000000..24e4ec4 --- /dev/null +++ b/AuraGrove/MediaFiles/PlasmaEmitter.fs @@ -0,0 +1,214 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES": [ + "generator" + ], + "INPUTS": [ + { + "NAME" : "center", + "TYPE" : "point2D", + "DEFAULT" : [ 0.0, 0.0 ], + "MAX" : [ 1.0, 1.0 ], + "MIN" : [ -1.0, -1.0 ] + }, + { + "NAME" : "grow", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : 0.1, + "MAX" : 2.0 + }, + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : 2.5, + "MIN" : 0.0, + "MAX" : 5.0 + }, + { + "NAME" : "contour", + "TYPE" : "float", + "DEFAULT" : 16.0, + "MIN" : 1.0, + "MAX" : 20.0 + }, + { + "NAME" : "radius1", + "TYPE" : "float", + "DEFAULT" : 0.1, + "MIN" : 0.01, + "MAX" : 3.0 + }, + { + "NAME" : "radius2", + "TYPE" : "float", + "DEFAULT" : 0.5, + "MIN" : 0.01, + "MAX" : 2.0 + }, + { + "NAME" : "rays", + "TYPE" : "float", + "DEFAULT" : 100, + "MIN" : 20.0, + "MAX" : 500.0 + }, + { + "NAME" : "detail", + "TYPE" : "float", + "DEFAULT" : 0.05, + "MIN" : 0.01, + "MAX" : 0.5 + }, + { + "NAME" : "nudge", + "TYPE" : "float", + "DEFAULT" : 0.0, + "MIN" : -1.5, + "MAX" : 1.5 + }, + { + "NAME" : "edge", + "TYPE" : "float", + "DEFAULT" : 0.5, + "MIN" : 0.1, + "MAX" : 1.0 + }, + { + "NAME" : "freq", + "TYPE" : "float", + "DEFAULT" : 8.0, + "MIN" : 1.0, + "MAX" : 16.0 + }, + { + "NAME" : "hue", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : 0.0, + "MAX" : 2.0 + }, + { + "NAME" : "tint", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : 0.0, + "MAX" : 2.0 + }, + { + "NAME": "fractnoise", + "TYPE": "bool", + "DEFAULT": "FALSE" + } + + ] +} +*/ + +//////////////////////////////////////////////////////////// +// PlasmaEmitter by mojovideotech +// +// based on : +// Light Orb by Hadyn Lander shadertoy/ldjcWy +// 3D noise by Nikita Miropolskiy shadertoy/XsX3zB +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + + +vec3 random3(vec3 c) { + float j = 4096.0*sin(dot(c,vec3(17.0, 59.4, 15.0))); + vec3 r; + r.z = fract(512.0*j); + j *= .125; + r.x = fract(512.0*j); + j *= .125; + r.y = fract(512.0*j); + return r-0.5; +} + +const float F3 = 0.3333333; +const float G3 = 0.1666667; + +float simplex3d(vec3 p) { + vec3 s = floor(p + dot(p, vec3(F3))); + vec3 x = p - s + dot(s, vec3(G3)); + vec3 e = step(vec3(0.0), x - x.yzx); + vec3 i1 = e*(1.0 - e.zxy); + vec3 i2 = 1.0 - e.zxy*(1.0 - e); + vec3 x1 = x - i1 + G3; + vec3 x2 = x - i2 + 2.0*G3; + vec3 x3 = x - 1.0 + 3.0*G3; + vec4 w, d; + w.x = dot(x, x); + w.y = dot(x1, x1); + w.z = dot(x2, x2); + w.w = dot(x3, x3); + w = max(0.6 - w, 0.0); + d.x = dot(random3(s), x); + d.y = dot(random3(s + i1), x1); + d.z = dot(random3(s + i2), x2); + d.w = dot(random3(s + 1.0), x3); + w *= w; + w *= w; + d *= w; + return dot(d, vec4(rays)); +} + +const mat3 rot1 = mat3(-0.37, 0.36, 0.85,-0.14,-0.93, 0.34,0.92, 0.01,0.4); +const mat3 rot2 = mat3(-0.55,-0.39, 0.74, 0.33,-0.91,-0.24,0.77, 0.12,0.63); +const mat3 rot3 = mat3(-0.71, 0.52,-0.47,-0.08,-0.72,-0.68,-0.7,-0.45,0.56); + +float simplex3d_fractal(vec3 m) { + return 0.5333333*simplex3d(m*rot1) + +0.2666667*simplex3d(2.0*m*rot2) + +0.1333333*simplex3d(4.0*m*rot3) + +0.0666667*simplex3d(8.0*m); +} + +float getNoiseValue(vec2 p, float t) { + vec3 p3 = vec3(p.x, p.y, 0.0) + vec3(0.0, 0.0, t*0.025); + float n; + if (fractnoise) { n = simplex3d_fractal(p3*freq+freq); } + else n = simplex3d(p3*freq*freq); + return 0.5 + 0.5*n; +} + +void main(void) { + float T = rate*TIME; + float b = 1.0/detail; + vec2 p = (gl_FragCoord.xy / RENDERSIZE.y) - center; + float aspect = RENDERSIZE.x/RENDERSIZE.y; + vec2 pos = p-vec2(0.5*aspect, 0.5); + p = vec2(0.5*aspect, 0.5)+normalize(pos)*min(length(pos)+nudge*radius1*radius2, radius1*radius2); + float noise = getNoiseValue(b*0.25*p, T); + float dist = clamp(1.0-length(pos)/radius2, 0.0, 1.0); + float sd = dist * noise; + float h, f; + h = 1.0-clamp(abs(dist-(1.0-radius1))/radius1, 0.0, 1.0); + h = pow(h, 21.0 - contour); + h = clamp(0.9*h, 0.0, 1.0); + float innerBall = clamp(abs(dist-(1.0-radius1))/radius1, 0.0, 1.0); + innerBall = smoothstep(0.5, 0.85, innerBall); + innerBall += noise; + f = mix( (noise*grow+h)*h + innerBall, noise*grow+h, step(dist, 1.0-radius1)); + f = smoothstep(edge,edge+0.1, f); + + vec3 colorNoise; + colorNoise.x = getNoiseValue(b*0.25*p, 10.0+T); + colorNoise.y = getNoiseValue(b*0.25*p, 00.0+T); + colorNoise.z = getNoiseValue(b*0.25*p, 30.0+T); + colorNoise.x = smoothstep(edge,edge+0.1, colorNoise.x); + colorNoise.y = smoothstep(edge,edge+0.1, colorNoise.y); + colorNoise.z = smoothstep(edge,edge+0.1, colorNoise.z); + vec3 col = mix(vec3(hue+tint, colorNoise.x, 2.0-hue), vec3(colorNoise.x, 2.0-tint, abs(hue-tint)), colorNoise.y); + col += vec3(1.0) * (pow(clamp(dist+radius1, 0.0, 0.0), 8.0)); + col *= f; + vec3 bgColor = mix(vec3(0.0,0.0,0.5), vec3(0.0,0.5,0.5), dist*detail); + bgColor *= vec3(1.0,1.0,1.0) * atan(dist, T); + col += bgColor; + + gl_FragColor = vec4(col,1.0); +} + + diff --git a/AuraGrove/MediaFiles/PrimeWaves.fs b/AuraGrove/MediaFiles/PrimeWaves.fs new file mode 100644 index 0000000..8ff59b2 --- /dev/null +++ b/AuraGrove/MediaFiles/PrimeWaves.fs @@ -0,0 +1,142 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES" : [ + "Generator", + "waves" + ], + "DESCRIPTION" : "", + "INPUTS" : [ + { + "NAME" : "center", + "TYPE" : "point2D", + "DEFAULT": [ + -2, + -1 + ], + "MAX" : [ + 10, + 10 + ], + "MIN" : [ + -10, + -10 + ] + }, + { + "NAME": "rate", + "TYPE": "float", + "DEFAULT": -1, + "MIN": -3, + "MAX": 3 + }, + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 5, + "MIN": -10, + "MAX": 10 + }, + { + "NAME": "depth", + "TYPE": "float", + "DEFAULT": 0.6, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "rxy", + "TYPE": "float", + "DEFAULT": 11, + "MIN": 1, + "MAX": 17 + }, + { + "NAME": "rxz", + "TYPE": "float", + "DEFAULT": 13, + "MIN": 1, + "MAX": 17 + } + ] +} +*/ + +// PrimeWaves by mojovideotech +// based on: +// glslsandbox.com/e#21344.0 + +#ifdef GL_ES +precision highp float; +#endif + +vec2 distort(vec2 p) +{ + float theta = atan(p.y, p.x); + float radius = length(p); + radius = pow(radius, 1.0+depth); + p.x = radius * cos(theta); + p.y = radius * sin(theta); + return 0.5 * (p + 1.0); +} + +vec4 pattern(vec2 p) +{ + vec2 m=mod(p.xy+p.x+p.y,2.)-1.; + return vec4(length(m+p*0.1)); +} + +float hash(const float n) +{ + return fract(sin(n)*29712.15073); +} + +float noise(const vec3 x, float y, float z) +{ + vec3 p=floor(x); vec3 f=fract(x); + f=f*f*(3.0-2.0*f); + float n=p.x+p.y*y+p.z*z; + float r1=mix(mix(hash(n+0.0),hash(n+1.0),f.x),mix(hash(n+y),hash(n+y+1.0),f.x),f.y); + float r2=mix(mix(hash(n+z),hash(n+z+1.0),f.x),mix(hash(n+y+z),hash(n+y+z+1.0),f.x),f.y); + return mix(r1,r2,f.z); +} +void main( void ) { + + float RY = 0.0; float RZ = 0.0; + if (rxy <= 1.) { RY += 11.; } + else if (rxy <= 2.) { RY += 13.; } + else if (rxy <= 3.) { RY += 17.; } + else if (rxy <= 4.) { RY += 19.; } + else if (rxy <= 5.) { RY += 23.; } + else if (rxy <= 6.) { RY += 29.; } + else if (rxy <= 8.) { RY += 31.; } + else if (rxy <= 9.) { RY += 37.; } + else if (rxy <= 10.) { RY += 41.; } + else if (rxy <= 11.) { RY += 43.; } + else if (rxy <= 12.) { RY += 47.; } + else if (rxy <= 13.) { RY += 53.; } + else if (rxy <= 14.) { RY += 59.; } + else if (rxy <= 15.) { RY += 61.; } + else if (rxy <= 16.) { RY += 67.; } + if (rxz <= 1.) { RZ += 11.; } + else if (rxz <= 2.) { RZ += 13.; } + else if (rxz <= 3.) { RZ += 17.; } + else if (rxz <= 4.) { RZ += 19.; } + else if (rxz <= 5.) { RZ += 23.; } + else if (rxz <= 6.) { RZ += 29.; } + else if (rxz <= 8.) { RZ += 31.; } + else if (rxz <= 9.) { RZ += 37.; } + else if (rxz <= 10.) { RZ += 41.; } + else if (rxz <= 11.) { RZ += 43.; } + else if (rxz <= 12.) { RZ += 47.; } + else if (rxz <= 13.) { RZ += 53.; } + else if (rxz <= 14.) { RZ += 59.; } + else if (rxz <= 15.) { RZ += 61.; } + else if (rxz <= 16.) { RZ += 67.; } + + vec2 pos = ( gl_FragCoord.xy / RENDERSIZE.xy * zoom )+center; + float col = noise(pos.xyx + (TIME*rate),RY,RZ); + vec4 c = pattern(distort(pos+col)); + c.xy = distort(c.xy); + gl_FragColor = vec4(c.x - col, sin(c.y) - col, cos(c.z), 1.0); + +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/RGBlaserglobe.qtz (1).fs b/AuraGrove/MediaFiles/RGBlaserglobe.qtz (1).fs new file mode 100644 index 0000000..553cbf9 --- /dev/null +++ b/AuraGrove/MediaFiles/RGBlaserglobe.qtz (1).fs @@ -0,0 +1,71 @@ +/* +{ + "CATEGORIES": [ + "Automatically Converted" + ], + "INPUTS": [ + + ] +} +*/ + + +// By @paulofalcao +// +// Blobs + +#ifdef GL_ES +precision highp float; +#endif + + +float makePoint(float x,float y,float fx,float fy,float sx,float sy,float t){ + float xx=x*cos(t*fx); + float yy=y*sin(t*fy); + return 1./ (sqrt(length(xx+yy) + length(xx*yy))); +} + +void main( void ) { + + vec2 p=(gl_FragCoord.xy/RENDERSIZE.x)*2.0-vec2(1.0,RENDERSIZE.y/RENDERSIZE.x); + + float x=p.x; + float y=p.y; + + float a= + makePoint(x,y,3.3,2.9,0.3,0.3,TIME); + a=a+makePoint(x,y,1.9,2.0,0.4,0.4,TIME); + a=a+makePoint(x,y,0.8,0.7,0.4,0.5,TIME); + a=a+makePoint(x,y,2.3,0.1,0.6,0.3,TIME); + a=a+makePoint(x,y,0.8,1.7,0.5,0.4,TIME); + a=a+makePoint(x,y,0.3,1.0,0.4,0.4,TIME); + a=a+makePoint(x,y,1.4,1.7,0.4,0.5,TIME); + a=a+makePoint(x,y,1.3,2.1,0.6,0.3,TIME); + a=a+makePoint(x,y,1.8,1.7,0.5,0.4,TIME); + + float b= + makePoint(x,y,1.2,1.9,0.3,0.3,TIME); + b=b+makePoint(x,y,0.7,2.7,0.4,0.4,TIME); + b=b+makePoint(x,y,1.4,0.6,0.4,0.5,TIME); + b=b+makePoint(x,y,2.6,0.9,0.6,0.3,TIME); + b=b+makePoint(x,y,0.7,1.4,0.5,0.4,TIME); + b=b+makePoint(x,y,0.7,1.7,0.4,0.4,TIME); + b=b+makePoint(x,y,0.8,0.5,0.4,0.5,TIME); + b=b+makePoint(x,y,1.4,0.7,0.6,0.3,TIME); + b=b+makePoint(x,y,0.7,1.3,0.5,0.4,TIME); + + float c= + makePoint(x,y,3.7,0.3,0.3,0.3,TIME); + c=c+makePoint(x,y,1.9,1.3,0.4,0.4,TIME); + c=c+makePoint(x,y,0.8,0.9,0.4,0.5,TIME); + c=c+makePoint(x,y,1.2,1.7,0.6,0.3,TIME); + c=c+makePoint(x,y,0.3,0.6,0.5,0.4,TIME); + c=c+makePoint(x,y,0.3,0.3,0.4,0.4,TIME); + c=c+makePoint(x,y,1.4,0.8,0.4,0.5,TIME); + c=c+makePoint(x,y,0.2,0.6,0.6,0.3,TIME); + c=c+makePoint(x,y,1.3,0.5,0.5,0.4,TIME); + + vec3 d=vec3(a,b,c)*0.01; + + gl_FragColor = vec4(d.x,d.y,d.z,1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/RainbowRingCubicTwist (1).fs b/AuraGrove/MediaFiles/RainbowRingCubicTwist (1).fs new file mode 100644 index 0000000..c21635e --- /dev/null +++ b/AuraGrove/MediaFiles/RainbowRingCubicTwist (1).fs @@ -0,0 +1,76 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES": [ + "Shapes" + ], + "DESCRIPTION": "", + "ISFVSN" : "2", + "INPUTS": [ + { + "NAME" : "scale", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : 0.1, + "MAX" : 2.0 + }, + { + "NAME" : "thickness", + "TYPE" : "float", + "DEFAULT" : 1.75, + "MIN" : 0.5, + "MAX" : 2.0 + }, + { + "NAME" : "twists", + "TYPE" : "float", + "DEFAULT" : 1.0, + "MIN" : 1.0, + "MAX" : 5.0 + }, + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : 1.5, + "MIN" : -2.0, + "MAX" : 2.0 + }, + { + "NAME" : "gamma", + "TYPE" : "float", + "DEFAULT" : 0.454545, + "MIN" : 0.25, + "MAX" : 1.0 + } + ] +} + +*/ + +//////////////////////////////////////////////////////////// +// RainbowRingCubicTwist by mojovideotech +// +// based on : +// glslsandbox/e#58416.0 +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + + +#ifdef GL_ES +precision highp float; +#endif + + +void main() +{ + float T = TIME * rate; + vec2 R = RENDERSIZE; + vec2 P = (gl_FragCoord.xy - 0.5*R)*(2.1 - scale); + vec4 S, E, F; + P = vec2(length(P) / R.y - 0.333, atan(P.y,P.x)); + P *= vec2(2.6 - thickness,floor(twists)); ; + S = 0.08*cos(1.5*vec4(0.0, 1.0, 2.0, 3.0) + T + P.y + sin(P.y)*cos(T)); + E = S.yzwx; + F = max(P.x - S, E - P.x); + gl_FragColor = pow(dot(clamp(F*R.y, 0.0, 1.0), 72.0*(S - E))*(S - 0.1), vec4(gamma)); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Resolve_JWxeiuQtVP.mp4 b/AuraGrove/MediaFiles/Resolve_JWxeiuQtVP.mp4 new file mode 100644 index 0000000..017470d --- /dev/null +++ b/AuraGrove/MediaFiles/Resolve_JWxeiuQtVP.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa3180ca4cd53d1dadcbce76b675f6943e9e836db4f0325949472647ce0f54f9 +size 1568906 diff --git a/AuraGrove/MediaFiles/Resolve_MF3XgvZy2r.mp4 b/AuraGrove/MediaFiles/Resolve_MF3XgvZy2r.mp4 new file mode 100644 index 0000000..50b9273 --- /dev/null +++ b/AuraGrove/MediaFiles/Resolve_MF3XgvZy2r.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df6b5f6158709a590be33d32ee6aa26bba79347e945f86f7faf40c65ec3963e7 +size 9198017 diff --git a/AuraGrove/MediaFiles/Road to Hell (1).fs b/AuraGrove/MediaFiles/Road to Hell (1).fs new file mode 100644 index 0000000..b128fc3 --- /dev/null +++ b/AuraGrove/MediaFiles/Road to Hell (1).fs @@ -0,0 +1,130 @@ +/*{ + "DESCRIPTION": "Your shader description", + "CREDIT": "by you", + "CATEGORIES": [ + "Your category" + ], + "INPUTS": [ + { + "LABEL": "PosX", + "NAME": "PosX", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "LABEL": "PosY", + "NAME": "PosY", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "LABEL": "PosZ", + "NAME": "PosZ", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "LABEL": "RotX", + "NAME": "RotX", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "LABEL": "RotY", + "NAME": "RotY", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "LABEL": "RotZ", + "NAME": "RotZ", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": 0.0, + "MAX": 1.0 + } + ] +}*/ + +vec3 iResolution = vec3(RENDERSIZE, 1.); +float iGlobalTime = TIME; + +const float PI=3.14159265358979323846; + +float speed=iGlobalTime*0.2975; +float ground_x=PosX*2.-1.; +float ground_y=PosY*2.-1.; +float ground_z=PosZ; + +vec2 rotate(vec2 k,float t) + { + return vec2(cos(t)*k.x-sin(t)*k.y,sin(t)*k.x+cos(t)*k.y); + } + +float draw_scene(vec3 p) + { + float tunnel_m=0.125*cos(PI*p.z*1.0+speed*4.0-PI); + float tunnel1_p=2.0; + float tunnel1_w=tunnel1_p*0.225; + float tunnel1=length(mod(p.xy,tunnel1_p)-tunnel1_p*0.5)-tunnel1_w; // tunnel1 + float tunnel2_p=2.0; + float tunnel2_w=tunnel2_p*0.2125+tunnel2_p*0.0125*cos(PI*p.y*8.0)+tunnel2_p*0.0125*cos(PI*p.z*8.0); + float tunnel2=length(mod(p.xy,tunnel2_p)-tunnel2_p*0.5)-tunnel2_w; // tunnel2 + float hole1_p=1.0; + float hole1_w=hole1_p*0.5; + float hole1=length(mod(p.xz,hole1_p).xy-hole1_p*0.5)-hole1_w; // hole1 + float hole2_p=0.25; + float hole2_w=hole2_p*0.375; + float hole2=length(mod(p.yz,hole2_p).xy-hole2_p*0.5)-hole2_w; // hole2 + float hole3_p=0.5; + float hole3_w=hole3_p*0.25+0.125*sin(PI*p.z*2.0); + float hole3=length(mod(p.xy,hole3_p).xy-hole3_p*0.5)-hole3_w; // hole3 + float tube_m=0.075*sin(PI*p.z*1.0); + float tube_p=0.5+tube_m; + float tube_w=tube_p*0.025+0.00125*cos(PI*p.z*128.0); + float tube=length(mod(p.xy,tube_p)-tube_p*0.5)-tube_w; // tube + float bubble_p=0.05; + float bubble_w=bubble_p*0.5+0.025*cos(PI*p.z*2.0); + float bubble=length(mod(p.yz,bubble_p)-bubble_p*0.5)-bubble_w; // bubble + return max(min(min(-tunnel1,mix(tunnel2,-bubble,0.375)),max(min(-hole1,hole2),-hole3)),-tube); + } + +void mainImage( out vec4 fragColor, in vec2 fragCoord ) + { + vec2 position=(fragCoord.xy/iResolution.xy); + vec2 p=-1.0+2.0*position; + vec3 dir=normalize(vec3(p*vec2(1.77,1.0),1.0)); // screen ratio (x,y) fov (z) + + dir.yz=rotate(dir.yz,RotX*2.*PI); // rotation x + dir.zx=rotate(dir.zx,RotY*2.*PI); // rotation y + dir.xy=rotate(dir.xy,RotZ*2.*PI); // rotation z + + vec3 ray = vec3(ground_x,ground_y,(ground_z-speed*2.5)); + float t=0.0; + const int ray_n=96; + for(int i=0;i= 1.0) break; + } + return max(0.0, 5.0 * accum / tw - 0.7); +} + +void main() { + float TT = TIME * rate; + vec2 uv = 2.0 * gl_FragCoord.xy / RENDERSIZE.xy - 1.0; + vec2 uvs = uv * RENDERSIZE.xy / max(RENDERSIZE.x, RENDERSIZE.y) ; + vec3 p = vec3(uvs / zoom ,morph) + vec3(1.0, -1.3, -0.5); + p.xz *= rmat(rot); + float mu = floor(multiplier); + p += 0.2 * vec3(sin(TT / 13.0 * mu), sin(TT / 89.0 * mu), sin(TT / 233.0 * mu)); + float t = field(p); + float v = (1.0 - exp(abs(uv.x) - 1.0) * 5.0 ) * (1.0 - exp(abs(uv.y) - 1.0)); + vec3 col = mix(2.0,0.1, v) * vec3(1.1 * t * t * t, 1.3 * t * t, 0.1 * t); + col *= vec3(red,green,blue); + gl_FragColor = vec4(col,1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/SoftPatterns+.fs b/AuraGrove/MediaFiles/SoftPatterns+.fs new file mode 100644 index 0000000..fdb72d8 --- /dev/null +++ b/AuraGrove/MediaFiles/SoftPatterns+.fs @@ -0,0 +1,115 @@ +// SaturdayShader Week 26 : Soft Patterns +// by Joseph Fiola (http://www.joefiola.com) +// 2016-02-13 + +// Based on Interferance, Color Waves by @gabrieldunne +// https://twitter.com/gabrieldunne/status/671398225593561090 +// http://glslsandbox.com/e#29006.1 + + + +/*{ + "CREDIT": "", + "DESCRIPTION": "", + "CATEGORIES": [ + "Generator" + ], + "INPUTS": [ + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 4, + "MIN": 0, + "MAX": 50 + }, + { + "NAME": "iterations", + "TYPE": "float", + "DEFAULT": 10, + "MIN": 0, + "MAX": 10 + }, + { + "NAME": "contrast", + "TYPE": "float", + "DEFAULT": 0, + "MIN": -20, + "MAX": 20 + }, + { + "NAME": "offset", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 1 + }, + { + "NAME": "pattern", + "TYPE": "float", + "DEFAULT": 1, + "MIN": 0, + "MAX": 1 + }, + { + "NAME": "rotate", + "TYPE": "float", + "DEFAULT": 0, + "MIN": -1, + "MAX": 1 + }, + { + "NAME": "color1", + "TYPE": "color", + "DEFAULT": [ + 1, + 0.4, + 0.64, + 1 + ] + }, + { + "NAME": "color2", + "TYPE": "color", + "DEFAULT": [ + 0.3, + 0.1, + 0.14, + 1 + ] + } + ] +}*/ + + + +#define PI 3.14159 +#define TWO_PI (PI*2.0) + + +vec2 rot(vec2 uv,float a){ + return vec2(uv.x*cos(a) -uv.y*sin(a),uv.y*cos(a)+uv.x*sin(a)); +} + + +void main() +{ + vec2 center = (gl_FragCoord.xy); + vec2 uv = gl_FragCoord.xy / RENDERSIZE.xy; + uv -= vec2(0.5); + uv.x *= RENDERSIZE.x/RENDERSIZE.y; + uv *= zoom; + uv=rot(uv,rotate * PI); + + float col = contrast; + + for(float i = 0.; i < 10.0; i++) + { + float a = i * 4. * (TWO_PI * pattern / 10.); + col += cos(TWO_PI*(uv.y * cos(a) + uv.x * sin(a) + offset)) +cos(TWO_PI*(uv.y * cos(a) + uv.x * sin(-a) + offset)); + + if (i >= iterations) break; + + } + + gl_FragColor = col > 0.5 ? color1 : color2; +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/SpaceFleetFormation.fs b/AuraGrove/MediaFiles/SpaceFleetFormation.fs new file mode 100644 index 0000000..f11d13d --- /dev/null +++ b/AuraGrove/MediaFiles/SpaceFleetFormation.fs @@ -0,0 +1,93 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES" : [ + "generator" + ], + "DESCRIPTION" : "", + "INPUTS" : [ + ], + "ISFVSN" : 2.0 +} +*/ + + +//////////////////////////////////////////////////////////////////// +// SpaceFleetFormation by mojovideotech +// +// based on : +// shadertoy.com\/view\/llBSRm +// +// License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////////////// + +#ifdef GL_ES +precision highp float; +#endif + + +#define twpi 6.283185307179586 // two pi, 2*pi +#define trpi 1.047197551196598 // one third of pi, pi/3 + +#define EPSN 0.001 +#define ITERS 60 +#define MAXD 12.0 +#define T TIME * 0.125 + + +mat2 rot(in float a) { float c = cos(a), s = sin(a); return mat2(c,-s,s,c); } + +float hexagon(vec3 p, vec2 h) { + vec3 q = abs(p); + return max(q.y - h.y, max(dot(vec2(cos(trpi), sin(trpi)), q.zx), q.z) - h.x); +} + +float sphere(vec3 pos, float radius) { return length(pos) - radius; } + +float opRep( vec3 p, vec3 c ) { return sphere(mod(p,c)-0.5*c, 0.05); } + +float opRep2( vec3 p, vec3 c ) { return hexagon(mod(p,c)-0.5*c, vec2(0.095,0.0125)); } + +float distFunct(vec3 pos) { return min(opRep2(pos,vec3(0.5)), opRep(pos,vec3(0.5))); } + +vec3 getNormal(vec3 pos) { + vec2 eps = vec2(0.0, EPSN); + vec3 normal = normalize(vec3( + distFunct(pos + eps.yxx) - distFunct(pos - eps.yxx), + distFunct(pos + eps.xyx) - distFunct(pos - eps.xyx), + distFunct(pos + eps.xxy) - distFunct(pos - eps.xxy))); + return normal; +} + +vec3 render(vec2 st) { + vec3 cp = vec3(1.0, 1.0, 1.0); + cp *= vec3((smoothstep(-3.0, 3.0, sin(T*0.2+cos(T)))-0.5)*2.0, 1.0, T * 3.0); + vec3 ct = vec3((smoothstep(5.0, -5.0, cos(T*0.2+sin(T)))-0.5), T*0.2, 1.0); + vec3 cu = normalize(vec3(0.0, 1.0, 0.0)); + vec3 cd = normalize(ct + cp); + cu.zy *= rot(sin(T)-cos(T)-T); + cu.xz *= rot(sin(T)-cos(T)+T); + vec3 cr = normalize(cross(cu,cd)); + cu = normalize(cross(cd,cr)); + vec3 rd = normalize(cd+st.x*cr+st.y*cu); + float dist = distFunct(cp); + float total = dist; + for(int i = 0; iMAXD) continue; + } + vec3 fd = cp+rd*total; + float fog = 1.0 / (1.0 + total * total * 0.4); + vec3 col = vec3(fog); + if(dist 7 ? min( 12., D) : D; + pa=length(p); + } + a*=a*a; + float s1 = s+zoffset; + float fade = pow(distfading,max(0.,float(r)-sampleShift)); + float dm=max(0.,2.0-a*a*.001); + if (r>3) fade*=1.-dm; + if ( r == 0 ) fade *= 1. - sampleShift; + if ( r == volsteps-1 ) fade *= sampleShift; + v+=vec3(s1,s1*s1,s1*s1*s1*s1)*a*brightness*fade; + s+=depth; + } + v=mix(vec3(length(v)),v,saturation); + if (nebula) { + vec4 forCol = vec4(v*.01,1.); + vec4 backCol = mix(.4, 1., v2) * vec4(1.8 * t * t * t, 1.4 * t * t, t, 1.0); + backCol *= 0.2; + backCol.b *= 1.0; + backCol.r = mix(backCol.r, backCol.b, 0.2); + forCol.g *= max((backCol.r * 4.0), 1.0); + forCol.r += backCol.r * 0.05; + forCol.b += 0.5*mix(backCol.g, backCol.b, 0.8); + gl_FragColor = forCol; + } + else + { + vec4 col = vec4(vec3(v*.01),1.); + gl_FragColor = col; + } +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/SpaceSpore.fs b/AuraGrove/MediaFiles/SpaceSpore.fs new file mode 100644 index 0000000..c30916d --- /dev/null +++ b/AuraGrove/MediaFiles/SpaceSpore.fs @@ -0,0 +1,143 @@ +/*{ + "CATEGORIES": [ + "generator", + "sphere" + ], + "CREDIT": "by mojovideotech", + "DESCRIPTION": "", + "INPUTS": [ + { + "DEFAULT": [ + 0.5, + 0.3 + ], + "MAX": [ + 0.99, + 0.99 + ], + "MIN": [ + 0.01, + 0.01 + ], + "NAME": "O", + "TYPE": "point2D" + }, + { + "DEFAULT": [ + 0.1, + 0.5 + ], + "MAX": [ + 1, + 1 + ], + "MIN": [ + 0, + 0 + ], + "NAME": "C", + "TYPE": "point2D" + }, + { + "DEFAULT": 9, + "MAX": 36, + "MIN": 0, + "NAME": "R1", + "TYPE": "float" + }, + { + "DEFAULT": 17, + "MAX": 54, + "MIN": 0, + "NAME": "R2", + "TYPE": "float" + }, + { + "DEFAULT": 2.0, + "MAX": 5.0, + "MIN": 1.1, + "NAME": "zoom", + "TYPE": "float" + }, + { + "DEFAULT": 1.5, + "MAX": 3, + "MIN": -3, + "NAME": "rate", + "TYPE": "float" + }, + { + "DEFAULT": 64, + "MAX": 72, + "MIN": 24, + "NAME": "depth", + "TYPE": "float" + }, + { + "DEFAULT": 0.55, + "MAX": 1.25, + "MIN": 0.25, + "NAME": "gamma", + "TYPE": "float" + } + ], + "ISFVSN": "2", + "VSN": "2" +} +*/ + + +//////////////////////////////////////////////////////////////////// +// SpaceSpore by mojovideotech +// v2.0 5/2020 ; optimized code, added uniforms +// +// based on : +// shadertoy.com/lslcWj by LukeRissacher +// +// License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////////////// + + +#define twpi 6.283185307179586 +#define R(p, a) p = p * cos(a) + vec2(-p.y, p.x) * sin(a) + +float Swave(float w) { return 0.5 + 0.5 * sin(twpi * w); } + +float Sdef(vec3 p) { return 1.0 - abs(sin(p.x) + sin(p.y) + sin(p.z)) * 0.333; } + +float Smap(vec3 p, float s) { + float dSphere = length(p) - 1.0; + return max(dSphere, (0.95 - Sdef(s * p)) / s); +} + +vec3 Scol(vec3 p) { + float a = clamp((2.0 - length(p)) * 0.5, 0.0, 1.0); + vec3 c = 0.5 + 0.5 * cos(twpi * cross(vec3(1.0, C.x, C.y), vec3(Swave(-a) * vec3(0.5, 1.0, 1.0)))); + return c * a; +} + +vec3 rgb(vec3 c) { return c*c*c*(c*(c*6.0-15.0)+10.0); } + +void main() { + float TT = TIME * rate; + vec3 rd = normalize(vec3(2.0 * gl_FragCoord.xy - RENDERSIZE.xy, -min(RENDERSIZE.x,RENDERSIZE.y))); + vec3 ro = vec3(0.0, 0.0, zoom); + R(rd.xz, O.x * -TT); + R(ro.xz, O.x * -TT); + R(rd.yz, O.y * TT); + R(ro.yz, O.y * TT); + float t = 0.0; + vec3 col = vec3(0.0); + float S = mix(R1, R2, Swave(0.05 * TT)); + for (int i = 0; i < 90; i++) { + if (float(i) >= floor(depth)) { break; } + vec3 p = ro + t * rd; + float d = Smap(p, S); + if (t > 5.0 || d < 0.001) { + break; + } + t += 0.8 * d; + col += 0.05 * Scol(p); + } + gl_FragColor = vec4(pow(rgb(col),vec3(gamma)),1.0); +} diff --git a/AuraGrove/MediaFiles/SpirographSpectrum (1).fs b/AuraGrove/MediaFiles/SpirographSpectrum (1).fs new file mode 100644 index 0000000..f009264 --- /dev/null +++ b/AuraGrove/MediaFiles/SpirographSpectrum (1).fs @@ -0,0 +1,113 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES": [ + "2d", + "generator", + "spirograph", + "radial", + "rotation" + ], + "DESCRIPTION": "based on https://www.shadertoy.com/view/lddGD4 by Xor. Here's a simple 2D Spirograph test.", + "INPUTS": [ + { + "NAME": "center", + "TYPE": "point2D", + "DEFAULT": [ + 0, + 0 + ], + "MAX": [ + 1, + 1 + ], + "MIN": [ + -1, + -1 + ] + }, + { + "NAME": "freq", + "TYPE": "float", + "DEFAULT": 12.32, + "MIN": 1, + "MAX": 16 + }, + { + "NAME": "radius1", + "TYPE": "float", + "DEFAULT": 0.1, + "MIN": 0.01, + "MAX": 0.5 + }, + { + "NAME": "radius2", + "TYPE": "float", + "DEFAULT": 0.67, + "MIN": 0.01, + "MAX": 1.99 + }, + { + "NAME": "rate", + "TYPE": "float", + "DEFAULT": 0.01, + "MIN": -0.1, + "MAX": 0.1 + }, + { + "NAME": "loops", + "TYPE": "float", + "DEFAULT": 58.93, + "MIN": 1, + "MAX": 200 + }, + { + "NAME": "thickness", + "TYPE": "float", + "DEFAULT": 0.005, + "MIN": 0.001, + "MAX": 0.01 + }, + { + "NAME": "nudge", + "TYPE": "float", + "DEFAULT": 0.875, + "MIN": 0, + "MAX": 1 + } + ], + "ISFVSN": "2" +}*/ + +////////////////////////////////////////////// +// SpirographSpectrum by mojovideotech +// +// based on : +// www.shadertoy.com/\view/\lddGD4 +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. +///////////////////////////////////////////// + + +#define twpi 6.283185307179586 // two pi, 2*pi +#define pi 3.141592653589793 // pi + + +void main() { + + vec2 uv = (gl_FragCoord.xy-RENDERSIZE.xy*0.5) / RENDERSIZE.y - center ; + + float ang = (atan(-uv.y,-uv.x)/atan(1.0)*0.125+0.5)+TIME*rate; + float len = length(uv); + vec3 col = vec3(0.0); + for(float i = 0.0;i<200.;i+=1.0) + { + float L = floor(loops); + float F = ceil(freq); + if (i >= L) break; + float tag = (ang+i)*twpi; + float tln = (cos((ang+i*(1.0-nudge))*F)*0.5+0.5)*(radius2-radius1)+radius1; + vec2 pos = normalize(uv)*tln; + col += smoothstep(thickness,0.0,distance(uv,pos)*pow(length(uv),0.001))*(cos(tag+vec3(0.0,twpi,2.0*twpi)/3.0)*0.5+0.5); + } + gl_FragColor = vec4(col,1.0); +} diff --git a/Images/Logos/LogoDieCut-2.png b/AuraGrove/MediaFiles/Straggler.png similarity index 100% rename from Images/Logos/LogoDieCut-2.png rename to AuraGrove/MediaFiles/Straggler.png diff --git a/AuraGrove/MediaFiles/String Theory+.fs b/AuraGrove/MediaFiles/String Theory+.fs new file mode 100644 index 0000000..a2bc8c3 --- /dev/null +++ b/AuraGrove/MediaFiles/String Theory+.fs @@ -0,0 +1,80 @@ +/*{ + "DESCRIPTION": "Your shader description", + "CREDIT": "by you", + "CATEGORIES": [ + "Your category" + ], + "INPUTS": [ + { + "NAME": "BASE_ANGLE", + "TYPE": "float", + "DEFAULT": 3.5, + "MIN": -10.0, + "MAX": 10.0 + }, + { + "NAME": "ANGLE_DELTA", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": -3.1416, + "MAX": 3.1416 + }, + { + "NAME": "XOFF", + "TYPE": "float", + "DEFAULT": 0.7, + "MIN": -1.0, + "MAX": 1.0 + } + ] +}*/ + +vec3 iResolution = vec3(RENDERSIZE, 1.); +float iGlobalTime = TIME; + +//String Theory by nimitz (twitter: @stormoid) + +// #define BASE_ANGLE 3.5 +// #define ANGLE_DELTA 0.02 +// #define XOFF .7 + +#define time iGlobalTime +mat2 mm2(in float a){float c = cos(a), s = sin(a);return mat2(c,-s,s,c);} + +float aspect = iResolution.x/iResolution.y; +float featureSize = 60./((iResolution.x*aspect+iResolution.y)); + +float f(vec2 p) +{ + p.x = sin(p.x*1.+time*1.2)*sin(time+p.x*0.1)*3.; + p += sin(p.x*1.5)*.1; + return smoothstep(-0.0,featureSize,abs(p.y)); +} + +void mainImage( out vec4 fragColor, in vec2 fragCoord ) +{ + vec2 p = fragCoord.xy / iResolution.xy*6.5-3.25; + p.x *= aspect; + p.y = abs(p.y); + + vec3 col = vec3(0); + for(float i=0.;i<26.;i++) + { + vec3 col2 = (sin(vec3(3.3,2.5,2.2)+i*0.15)*0.5+0.54)*(1.-f(p)); + col = max(col,col2); + + p.x -= XOFF; + p.y -= sin(time*0.11+1.5)*1.5+1.5; + p*= mm2(i*ANGLE_DELTA+BASE_ANGLE); + + vec2 pa = vec2(abs(p.x-.9),abs(p.y)); + vec2 pb = vec2(p.x,abs(p.y)); + + p = mix(pa,pb,smoothstep(-.07,.07,sin(time*0.24)+.1)); + } + fragColor = vec4(col,1.0); +} + +void main(void) { + mainImage(gl_FragColor, gl_FragCoord.xy); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Tapestry Fract + (1).fs b/AuraGrove/MediaFiles/Tapestry Fract + (1).fs new file mode 100644 index 0000000..3dd07ef --- /dev/null +++ b/AuraGrove/MediaFiles/Tapestry Fract + (1).fs @@ -0,0 +1,102 @@ +/*{ + "CREDIT": "by echophons", + "DESCRIPTION": "", + "CATEGORIES": [ "generator" + ], + "INPUTS": [ + + { + "NAME": "k", + "TYPE": "float", + "DEFAULT": 0.3, + "MIN": 0.001, + "MAX": 0.999 + }, + { + "NAME": "h", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "j", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "c", + "TYPE": "float", + "DEFAULT": 0.632, + "MIN": 0.001, + "MAX":0.999 + }, + { + "NAME": "s", + "TYPE": "float", + "DEFAULT": 0.131, + "MIN": 0.001, + "MAX":0.999 + }, + { + "NAME": "e", + "TYPE": "float", + "DEFAULT": 0.3, + "MIN": 0.001, + "MAX":0.999 + }, + { + "NAME": "u", + "TYPE": "float", + "DEFAULT": 0.17, + "MIN": 0.001, + "MAX":0.999 + }, + { + "NAME": "m", + "TYPE": "float", + "DEFAULT": 0.3, + "MIN": 0.001, + "MAX": 0.999 + } + ] +}*/ + +// edit of http://glslsandbox.com/e#18752.0 +// additional iputs added by Doctor Mojo +uniform vec2 mouse; + +vec3 iResolution = vec3(RENDERSIZE, 1.0); +float iGlobalTime = TIME; + +float gTime = iGlobalTime*0.5; + +void main( void ) +{ + float f = 1.0; + float g = 1.0; + vec2 res = iResolution.xy; + vec2 mou = mouse.xy; + + //if (mouse.x < 0.5) + //{ + mou.x = sin(gTime * e)*sin(gTime * u) * 1. + sin(gTime * m); + mou.y = (1.0-cos(gTime * c))*sin(gTime * s)*1.0+cos(gTime * k); + mou = (mou+1.0) * res; + //} + vec2 z = ((-res+2.0 * gl_FragCoord.xy) / res.y); + vec2 p = ((-res+2.0+mou) / res.y) * j; + for( int i = 0; i < 24; i++) + { + float d = dot(z,z); + z = (vec2( z.x, -z.y ) / d) + p * h; + z.x = 1.0-abs(z.x); + f = max( f-d, (dot(z-p,z-p) )); + g = min( g*d, sin(dot(z+p,z+p))+1.0); + } + f = abs(-log(f) / 3.5); + g = abs(-log(g) / 8.0); + gl_FragColor = vec4(min(vec3(g, g*f, f), 1.0),1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Triangle Square Twist (1).fs b/AuraGrove/MediaFiles/Triangle Square Twist (1).fs new file mode 100644 index 0000000..0552db7 --- /dev/null +++ b/AuraGrove/MediaFiles/Triangle Square Twist (1).fs @@ -0,0 +1,187 @@ +// SaturdayShader Week 31 : WaveShapes +// by Joseph Fiola (http://www.joefiola.com) +// 2016-03-26 +//modified by Sprohgis + +// Based on shader by Shadertoy user smb02dunnal entitiled "Electro-Prim's" - https://www.shadertoy.com/view/Mll3WS +// https://twitter.com/AlexWDunn +// Sadly it's not working with VDMX. Gan somone please make it work. + + +/*{ + "CREDIT": "Joseph Fiola", + "DESCRIPTION": "", + "CATEGORIES": [ + "Generator" + ], + "INPUTS": [ + { + "NAME": "shape", + "TYPE": "long", + "VALUES": [ + 0, + 1 + ], + "LABELS": [ + "triangle", + "square" + ], + "DEFAULT": 0 + }, + { + "NAME": "triside1", + "TYPE": "float", + "DEFAULT": 3, + "MIN": 0, + "MAX": 3 + }, + { + "NAME": "squareside1", + "TYPE": "float", + "DEFAULT": 1, + "MIN": 0, + "MAX": 10 + }, + { + "NAME": "zoom", + "TYPE": "float", + "DEFAULT": 1, + "MIN": 0, + "MAX": 10 + }, + { + "NAME": "rotate", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 1 + }, + { + "NAME": "twist", + "TYPE": "float", + "DEFAULT": 0.02, + "MIN": 0, + "MAX": 1 + }, + { + "NAME": "tunnel", + "TYPE": "float", + "DEFAULT": 1.1, + "MIN": 0.25, + "MAX": 1.75 + }, + { + "NAME": "thickness", + "TYPE": "float", + "DEFAULT": 0.003, + "MIN": 0, + "MAX": 0.2 + }, + { + "NAME": "amplitude", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 100 + }, + { + "NAME": "frequency", + "TYPE": "float", + "DEFAULT": 0, + "MIN": 0, + "MAX": 50 + }, + { + "NAME": "band", + "TYPE": "float", + "DEFAULT": 0, + "MIN": -0.5, + "MAX": 1 + }, + { + "NAME": "pos", + "TYPE": "point2D", + "DEFAULT": [ + 0.5, + 0.5 + ], + "MIN": [ + 0, + 0 + ], + "MAX": [ + 1, + 1 + ] + } + ] +}*/ + +// line commented out enabling compile in xLights by Old Salt +// precision mediump float; + +#define PI 3.14159265359 +#define TWO_PI 6.28318530718 + +float electro(vec2 uv, float d, float f, float o, float a, float b) +{ + + float theta = atan(uv.y,uv.x); + + float amp = smoothstep(0.0, 1.0, (sin(theta + TIME * PI)*0.5+0.5)-b)*a; + float phase = d + sin(theta * f + o + TIME * PI) * amp; + + return sin(clamp(phase, 0.0, PI*2.0) + PI/2.0) + 1.0005; +} + +mat2 rotate2d(float _angle){ + return mat2(cos(_angle),-sin(_angle), + sin(_angle),cos(_angle)); +} + +void main() +{ + const float radius = 0.1; + + vec2 uv = gl_FragCoord.xy / RENDERSIZE.xy; + uv -= vec2(pos); + uv.x *= RENDERSIZE.x/RENDERSIZE.y; + + uv = rotate2d(rotate*-TWO_PI) * uv; + uv *= zoom; + + float grey = 0.0; + float alpha = 1.0; + + for(int i = 0; i < 20; i++) { + + float d = 0.0; + + //triangle + if (shape == 0){ + float root2 = sqrt(triside1); + d = dot(uv, vec2(0.0,-2.0)); + d = max(d, dot(uv, vec2(-root2,1.0))); + d = max(d, dot(uv, vec2( root2,1.0))); + } + + //square + if (shape == 1){ + d = max(abs(uv).x*squareside1, abs(uv).y); + } + + grey += 1.0 - smoothstep(0.0, thickness, electro(uv, d/radius, frequency, 0.0 * PI, amplitude, band)); + grey += 1.0 - smoothstep(0.0, thickness, electro(uv, d/radius, frequency, 0.5 * PI, amplitude, band)); + grey += 1.0 - smoothstep(0.0, thickness, electro(uv, d/radius, frequency, 1.0 * PI, amplitude, band)); + + + //tunnel + uv *= tunnel; + + //twist + uv = rotate2d(twist*-TWO_PI) * uv; + } + + + gl_FragColor = vec4(vec3(grey),1.0); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/Twin Rays (1).fs b/AuraGrove/MediaFiles/Twin Rays (1).fs new file mode 100644 index 0000000..0edfb24 --- /dev/null +++ b/AuraGrove/MediaFiles/Twin Rays (1).fs @@ -0,0 +1,142 @@ +/* +{ + "CATEGORIES" : [ + "Generator" + ], + "DESCRIPTION" : "Twin Rays", + "ISFVSN" : "2", + "INPUTS" : [ + { + "NAME" : "rate", + "TYPE" : "float", + "MAX" : 0.059999999999999998, + "DEFAULT" : -0.016063844785094261, + "LABEL" : "SPEED", + "MIN" : -0.059999999999999998 + }, + { + "NAME" : "colorIN", + "TYPE" : "color", + "DEFAULT" : [ + 1, + 0.20000000298023224, + 0.10000000149011612, + 1 + ], + "LABEL" : "Color" + }, + { + "NAME" : "Count", + "TYPE" : "float", + "MAX" : 25, + "DEFAULT" : 18.131168365478516, + "LABEL" : "Ray Count", + "MIN" : 3 + }, + { + "NAME" : "posY", + "TYPE" : "float", + "MAX" : 0.5, + "DEFAULT" : -0.33067807555198669, + "LABEL" : "Position Y", + "MIN" : -0.5 + }, + { + "NAME" : "posX", + "TYPE" : "float", + "MAX" : 0.5, + "DEFAULT" : 0.1662137508392334, + "LABEL" : "Position X", + "MIN" : 0 + }, + { + "NAME" : "width", + "TYPE" : "float", + "MAX" : 0.45, + "DEFAULT" : 0.2891484797000885, + "LABEL" : "Ray Width", + "MIN" : 0.01 + }, + { + "NAME" : "soft", + "TYPE" : "float", + "MAX" : 0.99, + "DEFAULT" : 0.2891484797000885, + "LABEL" : "Ray Softness", + "MIN" : 0.01 + } + ], + + "CREDIT" : "howie.tv" +} +*/ +// its a howie.tv thing + +// _read the time buffer + +#define M_PI 3.1415926535897932384626433832795 + + +// rgb2hsv +vec3 rgb2hsv(vec3 c) +{ + vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); + vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); + vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); + float d = q.x - min(q.w, q.y); + float e = 1.0e-10; + return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); +} + +// hsv2rgb +vec3 hsv2rgb(vec3 c) +{ + vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); +} + +float rays(vec2 uv, float c, float w, float s) + { + uv.x = fract(uv.x*c)-0.5; + return smoothstep(-w , -w*s, uv.x) * smoothstep(w, w*s, uv.x); + } + +void main() { + + float ratio = RENDERSIZE.y/RENDERSIZE.x; + vec2 uv = vec2( isf_FragNormCoord.x -0.5, (isf_FragNormCoord.y -0.5) * ratio); + + vec3 color; + vec3 col; + vec2 UV; + float m; + float angle; + float radius; + float count = floor(Count); + uv.y -= posY; + + vec3 hvs = rgb2hsv(colorIN.rgb); + vec3 colorA = hsv2rgb(vec3(hvs.x +0.1, hvs.y, hvs.z)); + vec3 colorB = hsv2rgb(vec3(hvs.x -0.1, hvs.y, hvs.z)); + + for(int i = 0; i< 2; i++) + { + UV = uv; + UV.x -= posX*(1.0-(float(i)*2.0)); + UV.x *= 1.0-(float(i)*2.0); + angle = atan(UV.y, UV.x); + angle = angle/((M_PI*4.0)*0.5) + TIME*rate ; + radius = length(UV); + UV = vec2(angle, radius*1.5); + col = mix(colorA,colorB, abs(UV.y)/ratio); + + + m = rays(UV,count,width,soft); + m = pow(m,3.0); + color += col*m; + } + + + gl_FragColor = vec4(color,1.0); +} diff --git a/AuraGrove/MediaFiles/UltimateFlame.fs b/AuraGrove/MediaFiles/UltimateFlame.fs new file mode 100644 index 0000000..02cb1db --- /dev/null +++ b/AuraGrove/MediaFiles/UltimateFlame.fs @@ -0,0 +1,298 @@ +/* + { + "CREDIT": "by mojovideotech", + "DESCRIPTION": "", + "CATEGORIES": [ + "generator", + "flame", + "fire", + "3d noise" + ], + "INPUTS": [ + { + "NAME" : "center", + "TYPE" : "point2D", + "DEFAULT" : [ 0.0, 0.0 ], + "MAX" : [ 1.0, 1.0 ], + "MIN" : [ -1.0, -1.0 ] + }, + { + "NAME" : "scale", + "TYPE" : "float", + "DEFAULT" : 0.5, + "MIN" : 0.01, + "MAX" : 2.0 + }, + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : 1.75, + "MIN" : 0.0, + "MAX" : 3.0 + }, + { + "NAME" : "seed1", + "TYPE" : "float", + "DEFAULT" : 111, + "MIN" : 55, + "MAX" : 233 + }, + { + "NAME" : "seed2", + "TYPE" : "float", + "DEFAULT" : 277, + "MIN" : 98, + "MAX" : 337 + }, + { + "NAME" : "seed3", + "TYPE" : "float", + "DEFAULT" : 497, + "MIN" : 301, + "MAX" : 579 + }, + + { + "NAME" : "freq", + "TYPE" : "float", + "DEFAULT" : 1.5, + "MIN" : 0.1, + "MAX" : 3.0 + }, + { + "NAME" : "flicker", + "TYPE" : "float", + "DEFAULT" : 5.0, + "MIN" : 0.0, + "MAX" : 50.0 + }, + { + "NAME" : "intensity", + "TYPE" : "float", + "DEFAULT" : 0.15, + "MIN" : -0.33, + "MAX" : 2.0 + }, + { + "NAME" : "light", + "TYPE" : "float", + "DEFAULT" : 0.45, + "MIN" : 0.0, + "MAX" : 0.5 + }, + { + "NAME" : "contours", + "TYPE": "float", + "DEFAULT" : 1.05, + "MIN" : 0.0, + "MAX" : 2.0 + }, + { + "NAME" : "bottomedges", + "TYPE" : "float", + "DEFAULT" : 0.05, + "MIN" : 0.0, + "MAX" : 0.667 + }, + { + "NAME" : "topedges", + "TYPE" : "float", + "DEFAULT" : 0.45, + "MIN" : 0.125, + "MAX" : 1.0 + }, + { + "NAME" : "depth", + "TYPE" : "float", + "DEFAULT" : 100.0, + "MIN" : 5.0, + "MAX" : 250.0 + }, + { + "NAME" : "expand", + "TYPE": "float", + "DEFAULT" : 0.8, + "MIN" : 0.1, + "MAX" : 5.0 + }, + { + "NAME" : "cutoff", + "TYPE": "float", + "DEFAULT" : 8.0, + "MIN" : 6.0, + "MAX" : 10.0 + }, + { + "NAME" : "wave", + "TYPE": "float", + "DEFAULT" : 0.15, + "MIN" : 0.1, + "MAX" : 2.0 + }, + { + "NAME" : "fractnoise", + "TYPE": "float", + "DEFAULT" : 0.33, + "MIN" : 0.0, + "MAX" : 1.0 + }, + { + "NAME" : "multiplier", + "TYPE": "float", + "DEFAULT" : 2.0, + "MIN" : 1.0, + "MAX" : 4.9 + }, + { + "NAME": "style", + "TYPE": "long", + "VALUES": [ + 0, + 1, + 2 + ], + "LABELS": [ + "EightBit", + "PhotoReal", + "OpArt" + ], + "DEFAULT": 1 + } + ] +} +*/ + +//////////////////////////////////////////////////////////// +// UltimateFlame by mojovideotech +// +// based on : +// The Blue Flame by Hadyn Lander +// shadertoy.com/\lsjcRt +// +// 3D noise from Nikita Miropolskiy +// shadertoy.com/\XsX3zB +// +// License: +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + + + +#define pi 3.141592653589793 // pi + +vec3 random3(vec3 c) { + float j = 4231.0*sin(dot(c,vec3(seed1, seed2, seed3))); + vec3 k; + k.z = fract(seed1*j); + j *= .5; + k.x = fract(seed2*j); + j *= .25; + k.y = fract(seed3*j); + return k-0.5; +} + +const float F3 = 0.3333333; +const float G3 = 0.1666667; + +float simplex3d(vec3 p) { + vec3 s = floor(p + dot(p, vec3(F3))); + vec3 x = p - s + dot(s, vec3(G3)); + vec3 e = step(vec3(0.0), x - x.yzx); + vec3 i1 = e*(1.0 - e.zxy); + vec3 i2 = 1.0 - e.zxy*(1.0 - e); + vec3 x1 = x - i1 + G3; + vec3 x2 = x - i2 + 2.0*G3; + vec3 x3 = x - 1.0 + 3.0*G3; + vec4 w, d; + w.x = dot(x, x); + w.y = dot(x1, x1); + w.z = dot(x2, x2); + w.w = dot(x3, x3); + w = max(0.6 - w, 0.0); + d.x = dot(random3(s), x); + d.y = dot(random3(s + i1), x1); + d.z = dot(random3(s + i2), x2); + d.w = dot(random3(s + 1.0), x3); + w *= w; + w *= w; + d *= w; + return dot(d, vec4(depth)); +} + +const mat3 rot1 = mat3(-0.37, 0.36, 0.85,-0.14,-0.93, 0.34,0.92, 0.01,0.4); +const mat3 rot2 = mat3(-0.55,-0.39, 0.74, 0.33,-0.91,-0.24,0.77, 0.12,0.63); +const mat3 rot3 = mat3(-0.71, 0.52,-0.47,-0.08,-0.72,-0.68,-0.7,-0.45,0.56); + +float simplex3d_fractal(vec3 n) { + return 0.5333333*simplex3d(n*rot1) + +0.2666667*simplex3d(2.0*n*rot2) + +0.1333333*simplex3d(4.0*n*rot3) + +0.0666667*simplex3d(8.0*n); +} + +void main() +{ + vec3 finalColor, bgColor, hColor, fColor; + float noise, value, edge, m, v, r, h, o; + float TT = 28.22 + TIME * rate; + float nf = 1.0/freq; + vec2 pos = gl_FragCoord.xy / RENDERSIZE.y; + vec2 wf = vec2(0.0); + float aspect = RENDERSIZE.x/RENDERSIZE.y; + vec2 poc = pos-vec2(0.5*aspect, 0.5) - center; + poc/=scale; + poc.x /= expand; + float pob = 0.5*(poc.y+1.0); + wf.x += pob*sin(4.0*poc.y-4.0*TT); + wf.y += 0.1*pob*sin(4.0*poc.x-1.561*TT); + poc += wave*wf; + poc.x += poc.x / (1.0-(poc.y)); + m = 1.0-pow(1.0-clamp(1.0-length(poc), 0.0, 1.0), 10.1-cutoff); + vec3 p3 = nf*0.25*vec3(pos.x, pos.y, 0.0) + vec3(0.0, -TT*0.1, TT*0.025); + noise = mix(simplex3d(p3*16.0*floor(multiplier)),simplex3d_fractal(p3*8.0*floor(multiplier)),fractnoise); + noise = 0.5 + 0.5*noise; + value = (m*noise)+intensity*m; + + if(style == 0) + { + edge = mix(bottomedges, topedges, pow(0.5*(poc.y+1.0), 1.2) ); + v = smoothstep(edge,edge+0.01, value); + v = mix(0.5*v, 1.0, smoothstep(1.5*edge,1.5*edge+0.01, value)); + v = mix(0.5*v, 1.0, smoothstep(3.0*edge,3.0*edge+0.01, value)); + bgColor = vec3(0.1,0.0,0.2); + finalColor = mix(bgColor, vec3(1.1,0.5,0.0), v); + } + else if(style == 1) + { + edge = mix(bottomedges, topedges, pow(0.5*(poc.y+1.0), 1.2) ); + v = smoothstep(edge,edge+0.1, value); + h = light+.5-clamp(value-edge, 0.0 , 1.0); + p3 = nf*0.1*vec3(pos.x, pos.y, 0.0) + vec3(0.0, -TT*0.01, TT*0.025); + noise = simplex3d(p3*32.0); + noise = 0.5 + 0.5*noise; + r = mix(h, noise, 0.65); + r = 0.5*sin(6.0*pi*(1.0-pow(1.0-r,1.8)) - 0.5*pi)+0.5; + o = smoothstep(0.95, 1.0, pow(r, 8.0)); + o = mix(o, 0.0, (2.1-contours)-noise); + h = max(o, h); + h = pow(h, 2.0); + hColor = mix(vec3(1.0,0.4,0.0), vec3(2.0,0.6,0.0), pos.y); + hColor += vec3(0.9,0.4,0.0) * pow(sin(TIME*flicker), 4.0); + fColor = mix(vec3(0.2,0.2,0.2), vec3(1.0,0.05,0.05), pos.y); + finalColor = hColor*(v*h); + finalColor += fColor*v; + bgColor = mix(vec3(0.07,0.0,0.15), vec3(0.075,0.025,0.15), 1.0); + finalColor += bgColor; + } + else + { + edge = mix(bottomedges, topedges, pow(0.5*(poc.y+1.0), 1.2) ); + v = smoothstep(edge,edge+0.01, value); + r = 0.5*sin(1.0*pi*(value/edge) + 0.5*pi)+0.5; + v = 1.0-smoothstep(0.5,0.6, 1.0-r); + finalColor = vec3(1.0,1.0,1.0)*v; + } + + gl_FragColor = vec4(finalColor,1.0); + +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/UltimateKaliCircuits (1).fs b/AuraGrove/MediaFiles/UltimateKaliCircuits (1).fs new file mode 100644 index 0000000..2a24b50 --- /dev/null +++ b/AuraGrove/MediaFiles/UltimateKaliCircuits (1).fs @@ -0,0 +1,144 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES": [ + "generator", + "circuits", + "2d", + "fractal", + "Kaliset" + ], + "ISFVSN" : "2", + "DESCRIPTION": "", + "INPUTS": [ + { + "NAME" : "center", + "TYPE" : "point2D", + "DEFAULT" : [ 0.0, 0.0 ], + "MAX" : [ 3.0, 3.0 ], + "MIN" : [ -3.0, -3.0 ] + }, + { + "NAME" : "zoom", + "TYPE" : "float", + "DEFAULT" : 1.5, + "MIN" : 0.5, + "MAX" : 3.0 + }, + { + "NAME" : "offset", + "TYPE" : "float", + "DEFAULT" : 0.05, + "MIN" : 0.01, + "MAX" : 0.1 + }, + { + "NAME" : "glow", + "TYPE" : "float", + "DEFAULT" : 3.0, + "MIN" : 0.0, + "MAX" : 9.0 + }, + { + "NAME" : "intensity", + "TYPE" : "float", + "DEFAULT" : 0.00125, + "MIN" : 0.0005, + "MAX" : 0.0025 + }, + { + "NAME" : "trace", + "TYPE" : "float", + "DEFAULT" : 40.0, + "MIN" : 10.0, + "MAX" : 100.0 + }, + { + "NAME" : "runtime", + "TYPE" : "float", + "DEFAULT" : 24.0, + "MIN" : 6.0, + "MAX" : 60.0 + }, + { + "NAME" : "rate", + "TYPE" : "float", + "DEFAULT" : 0.5, + "MIN" : -2.0, + "MAX" : 2.0 + } + ] +} +*/ + +//////////////////////////////////////////////////////////// +// UltimateKaliCircuits by mojovideotech +// +// based on : +// shadertoy/XlX3Rj by Kali +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + + + +#define pisq 9.869604401089359 // pi squared, pi^2 +#define twpi 6.283185307179586 // two pi, 2*pi +#define phicu 4.236067977499791 // phi cubed, phi^3 +#define cuphi 1.173984996705329 // cube root of phi +#define rctwpi 0.159154943091895 // reciprocal of twpi, 1/twpi +#define r36 0.027777777777778 + + +vec3 color = vec3(0.0,0.5,0.0); +float S = glow; +float T = rate*TIME*0.005; + +vec2 hash22(vec2 p) { return fract(vec2(21.0, 97.0)*sin(dot(p, vec2(92.0, 61.0)))); } + +void formula(vec2 z, float f) +{ + float m = 0.0; + float o, ot2, ot=ot2=10000.0; + for (int i=0; i<9; i++) { + z = abs(z)/clamp(dot(z,z), 0.1, 0.5)-f; + float l = length(z); + o = min(max(abs(min(z.x, z.y)),-l+0.25), abs(l-0.25)); + ot = min(ot, o); + ot2 = min(l*0.1, ot2); + m = max(m, float(i)*(1.0-abs(sign(ot-o)))); + } + m += 1.0; + float w = intensity*m*2.0; + float circ = pow(max(0.0,w-ot2)/w,6.0); + S += max(pow(max(0.0,w-ot)/w,0.25),circ); + vec3 col = vec3(hash22(z),f); + color += col*(0.4+mod(m/9.0-T*trace+ot2*2.0, 1.0)*1.6); + color += vec3(1.0, 0.7, 0.3)*circ*(10.0-m)*3.0 + *smoothstep(0.0, 0.5, vec3(f, isf_FragNormCoord)); +} + +void main() +{ + vec2 pos = 2.0 * gl_FragCoord.xy - RENDERSIZE.xy; + pos /= max(RENDERSIZE.x,RENDERSIZE.y); + vec2 uv = pos-center; + uv *= 4.0-zoom; + float a = T + mod(T, floor(runtime))*cuphi; + float b = a*phicu; + uv *= mat2(cos(b),sin(b),-sin(b),cos(b)); + uv += vec2(sin(a),cos(a*cuphi))*pisq; + uv *= offset; + float pix = cuphi/RENDERSIZE.x*offset; + float c = 1.5+mod(floor(T), 16.0)*0.125; + for (int aa=0; aa<36; aa++) { + vec2 aauv = floor(vec2(float(aa)*rctwpi, mod(float(aa), twpi))); + formula(uv+aauv*pix, c); + } + S *= r36, color *= r36; + vec3 colo = mix(vec3(0.025), color, S)*(1.5-length(pos)); + colo *= vec3(1.2, 1.1, 1.0); + gl_FragColor = vec4(colo, 1.0); +} + + + diff --git a/AuraGrove/MediaFiles/Untitled Sketch (1).fs b/AuraGrove/MediaFiles/Untitled Sketch (1).fs new file mode 100644 index 0000000..bb4195a --- /dev/null +++ b/AuraGrove/MediaFiles/Untitled Sketch (1).fs @@ -0,0 +1,100 @@ +/*{ + "CREDIT": "by crackhouse", + "DESCRIPTION": "", + "CATEGORIES": [ + "generator" + ], + "INPUTS": [ +{ + "NAME": "R", + "TYPE": "float", + "DEFAULT": 1, + "MIN": 0.1, + "MAX":9 + }, + +{ + "NAME": "grid", + "TYPE": "float", + "DEFAULT": 5, + "MIN": 0.1, + "MAX": 1 + } + + + ] +}*/ + +vec3 iResolution = vec3(RENDERSIZE, 1.); +float iTime = TIME; + +// Anaglyph Structure +// Framed for https://fanzine.cookie.paris/ +// Licensed under hippie love conspiracy +// Leon Denise (ponk) 2019.10.24 +// Using code from Inigo Quilez + + +mat2 rot (float a) { float c=cos(a),s=sin(a); return mat2(c,-s,s,c); } +float random (in vec2 st) { return fract(sin(dot(st.xy,vec2(12.9898,78.233)))*43758.5453123); } + +vec3 look (vec3 eye, vec3 target, vec2 anchor) { + vec3 forward = normalize(target-eye); + vec3 right = normalize(cross(forward, vec3(0,1,0.))); + vec3 up = normalize(cross(right, forward)); + return normalize(forward * .5 + right * anchor.x + up * anchor.y); +} + + +float map (vec3 pos) { + float scene = 10.0; + float r = R; + const float count = 8.0; + for (float index = count; index > 0.0; --index) + { + pos.xz = abs(pos.xz)-1.5*r; + pos.xz *= rot(0.4/r + iTime * 0.1)-sin(grid*0.03); + pos.yz *= rot(1.5/r + iTime * 0.05)-sin(grid*0.03); + pos.yx *= rot(.2/r + iTime * 0.05)+sin(grid*0.03); + scene = min(scene, length(pos.xy)-0.001); + scene = min(scene, length(pos)-.3*r)*cos(.2-grid*0.05); + r /= 1.8; + } + return scene; +} + +vec4 raymarch (vec3 eye, vec3 ray) { + float dither = random(ray.xy+fract(iTime)); + vec4 result = vec4(eye, 0); + float total = 0.0; + float maxt = 20.0; + const float count = 30.; + for (float index = count; index > 0.0; --index) { + result.xyz = eye + ray * total; + float dist = map(result.xyz); + if (dist < 0.001 + total * .002 || total > maxt) { + result.w = index / count; + break; + } + dist *= 0.9 + 0.1 * dither; + total += dist; + } + result.w *= step(total, maxt); + return result; +} + +void mainImage( out vec4 fragColor, in vec2 fragCoord ){ + vec2 uv = (fragCoord.xy-0.5*iResolution.xy)/iResolution.y; + vec3 eye = vec3(1.,0.5,-4.5); + vec3 at = vec3(0); + vec3 ray = look(eye, at, uv); + vec3 eyeoffset = 0.02*normalize(cross(normalize(at-eye), vec3(0,1.*grid,0))); + + vec4 resultLeft = raymarch(eye-eyeoffset, ray); + vec4 resultRight = raymarch(eye+eyeoffset, ray); + fragColor = vec4(resultLeft.w,vec2(resultRight.w),1); +} + +void main(void) { + mainImage(gl_FragColor, gl_FragCoord.xy); +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/VectorFromHell (1).fs b/AuraGrove/MediaFiles/VectorFromHell (1).fs new file mode 100644 index 0000000..fe827be --- /dev/null +++ b/AuraGrove/MediaFiles/VectorFromHell (1).fs @@ -0,0 +1,78 @@ +/*{ + "CREDIT": "by mojovideotech", + "CATEGORIES": [ + "raymarching", + "Automatically Converted" + ], + "DESCRIPTION": "Automatically converted from https://www.shadertoy.com/view/MsXGR2 by rez.", + "IMPORTED": [ + + ], + "INPUTS": [ + + ] +} +*/ + + +const float PI=3.14159265358979323846; + +float speed=TIME; +float ground_x=0.0;//+0.125*sin(PI*speed*0.25); +float ground_y=0.0;//+0.125*cos(PI*speed*0.25); +float ground_z=4.0*sin(PI*speed*0.0625);//+speed*0.5; + +float rand(in vec2 p,in float t,in float v) + { + return fract(sin(dot(p+mod(t,1.0),vec2(12.9898,78.2333)))*v); + } + +vec2 rotate(vec2 k,float t) + { + return vec2(cos(t)*k.x-sin(t)*k.y,sin(t)*k.x+cos(t)*k.y); + } + +float scene(vec3 p) + { + float bar_p=1.0; + float bar_w=bar_p*(0.125+0.03125*float(1.0+2.0*sin(PI*p.z*2.0-PI*0.5))); + float bar_x=length(max(abs(mod(p.yz,bar_p)-bar_p*0.5)-bar_w,0.0)); + float bar_y=length(max(abs(mod(p.xz,bar_p)-bar_p*0.5)-bar_w,0.0)); + float bar_z=length(max(abs(mod(p.xy,bar_p)-bar_p*0.5)-bar_w,0.0)); + float tube_p=0.125; + float tube_w=tube_p*0.375; + float tube_x=length(mod(p.yz,tube_p)-tube_p*0.5)-tube_w; + float tube_y=length(mod(p.xz,tube_p)-tube_p*0.5)-tube_w; + float tube_z=length(mod(p.xy,tube_p)-tube_p*0.5)-tube_w; + return -min(min(max(max(-bar_x,-bar_y),-bar_z),tube_y),tube_z); + } + +void main() + { + vec2 position=(gl_FragCoord.xy/RENDERSIZE.xy); + vec2 p=-1.0+2.0*position; + vec3 dir=normalize(vec3(p*vec2(1.0/RENDERSIZE.y*RENDERSIZE.x,1.0),1.0)); // screen ratio (x,y) fov (z) + dir.yz=rotate(dir.yz,PI*0.5*sin(speed*0.25)); // rotation x + //dir.zx=rotate(dir.zx,speed*0.5); // rotation y + dir.xy=rotate(dir.xy,PI*1.0*cos(speed*0.25)); // rotation z + vec3 ray=vec3(ground_x,ground_y,ground_z); + float t=0.0; + const int ray_n=64; + for(int i=0;i 0.0) { + float wobbleX = sin(TIME * 2.0 + p.z * 0.5) * wobble * 0.3; + float wobbleY = cos(TIME * 1.7 + p.z * 0.3) * wobble * 0.2; + p.xy += vec2(wobbleX, wobbleY); + } + + // Create forward motion through the tunnel and rotation + p.z -= speed * TIME; + p.xy *= mat2(cos(p.z + vec4(0,11,33,0))); + + // Generate procedural color based on position + P = 1.0 + sin(5.0 * p.x + p.z + vec4(2,1,0,2)); + + // Apply beat pulse effect - makes colors throb rhythmically + if (pulse > 0.0) { + float beatThrob = 1.0 + sin(TIME * 8.0) * pulse * 0.4; + P *= beatThrob; + } + + // Calculate distance to nearest surface (spheres in a grid) - using DistK and DistQ parameters + d = abs(length(fract(p) - DistK) - DistQ) + 1e-3; + + // Add color contribution: brighter when closer to surface + gl_FragColor += P.w / d * P * colorIntensity; + + // March forward along ray + z += soomp * d; + } + + // Tone mapping: simple version instead of tanh + gl_FragColor = gl_FragColor / 20000.0; + gl_FragColor = gl_FragColor / (1.0 + gl_FragColor); + + // Apply brightness + gl_FragColor.rgb *= brightness; + + // Apply contrast + gl_FragColor.rgb = (gl_FragColor.rgb - 0.5) * contrast + 0.5; + + // Boost blue channel + gl_FragColor.b *= blueBoost; + + // Apply hue shift + if (hueShift > 0.0) { + float cosHue = cos(hueShift); + float sinHue = sin(hueShift); + mat3 hueMatrix = mat3( + cosHue + (1.0 - cosHue) * 0.299, (1.0 - cosHue) * 0.587 - sinHue * 0.114, (1.0 - cosHue) * 0.114 + sinHue * 0.587, + (1.0 - cosHue) * 0.299 + sinHue * 0.114, cosHue + (1.0 - cosHue) * 0.587, (1.0 - cosHue) * 0.114 - sinHue * 0.299, + (1.0 - cosHue) * 0.299 - sinHue * 0.587, (1.0 - cosHue) * 0.587 + sinHue * 0.299, cosHue + (1.0 - cosHue) * 0.114 + ); + gl_FragColor.rgb = hueMatrix * gl_FragColor.rgb; + } +} \ No newline at end of file diff --git a/AuraGrove/MediaFiles/trippy flower.fs b/AuraGrove/MediaFiles/trippy flower.fs new file mode 100644 index 0000000..98e4ed0 --- /dev/null +++ b/AuraGrove/MediaFiles/trippy flower.fs @@ -0,0 +1,57 @@ +/*{ + "CATEGORIES": ["Generator", "Trippy", "Psychedelic"], + "DESCRIPTION": "Morphing DMT-style visual with palette cycling and shape modulation.", + "INPUTS": [ + { "NAME": "speed", "TYPE": "float", "DEFAULT": 1.0, "MIN": 0.0, "MAX": 5.0 }, + { "NAME": "paletteShift", "TYPE": "float", "DEFAULT": 0.0, "MIN": 0.0, "MAX": 10.0 }, + { "NAME": "geometryMorph", "TYPE": "float", "DEFAULT": 0.5, "MIN": 0.0, "MAX": 1.0 }, + { "NAME": "scale", "TYPE": "float", "DEFAULT": 1.0, "MIN": 0.1, "MAX": 5.0 }, + { "NAME": "saturation", "TYPE": "float", "DEFAULT": 1.2, "MIN": 0.0, "MAX": 3.0 }, + { "NAME": "contrast", "TYPE": "float", "DEFAULT": 1.0, "MIN": 0.5, "MAX": 3.0 }, + { "NAME": "brightness", "TYPE": "float", "DEFAULT": 1.0, "MIN": 0.1, "MAX": 3.0 } + ] +}*/ + +vec3 palette(float t) { + return 0.5 + 0.5 * cos(6.2831 * (vec3(0.3, 0.5, 0.9) + t)); +} + +vec3 applyContrastSaturationBrightness(vec3 color, float con, float sat, float brt) { + const vec3 averageLuminance = vec3(0.2126, 0.7152, 0.0722); + float intensity = dot(color, averageLuminance); + vec3 grey = vec3(intensity); + color = mix(grey, color, sat); + color = (color - 0.5) * con + 0.5; + return color * brt; +} + +void main() { + vec2 uv = (gl_FragCoord.xy - 0.5 * RENDERSIZE.xy) / RENDERSIZE.y; + + float t = TIME * speed; + + // Zoom in/out + uv *= scale; + + // Morphing shape + float r = length(uv); + float angle = atan(uv.y, uv.x); + float morph = sin(t + r * 10.0 + cos(angle * 6.0)) * geometryMorph; + + // Make base pattern + float shape = sin(r * 10.0 + morph * 5.0 - t * 2.0); + shape += 0.5 * cos(r * 5.0 - t * 3.0 + sin(angle * 4.0)); + shape = abs(shape); + + // Apply palette + float paletteT = t * 0.2 + paletteShift + shape; + vec3 col = palette(paletteT); + + // Shape-based masking + col *= smoothstep(1.2, 0.2, shape); + + // Post-processing + col = applyContrastSaturationBrightness(col, contrast, saturation, brightness); + + gl_FragColor = vec4(col, 1.0); +} diff --git a/AuraGrove/MediaFiles/wowowowowowow (1).fs b/AuraGrove/MediaFiles/wowowowowowow (1).fs new file mode 100644 index 0000000..331e61e --- /dev/null +++ b/AuraGrove/MediaFiles/wowowowowowow (1).fs @@ -0,0 +1,130 @@ +/*{ + "CREDIT": "by lennyjpg", + "DESCRIPTION": "", + "CATEGORIES": [ + "XXX" + ], + "INPUTS": [ + + { + "NAME": "cover", + "TYPE": "color", + "DEFAULT": [ + 0.0, + 0.0, + 1.0, + 1.0 + ] + }, + { + "NAME": "blend", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "speed", + "TYPE": "float", + "DEFAULT": 0.2, + "MIN": 0.0, + "MAX": 10.0 + }, + { + "NAME": "waveA", + "TYPE": "float", + "DEFAULT": 0.25, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "waveB", + "TYPE": "float", + "DEFAULT": 0.15, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "waveC", + "TYPE": "float", + "DEFAULT": 0.05, + "MIN": 0.0, + "MAX": 1.0 + }, + + { + "NAME": "push", + "TYPE": "float", + "DEFAULT": 2.0, + "MIN": 1.0, + "MAX": 5.0 + }, + { + "NAME": "stretch", + "TYPE": "float", + "DEFAULT": 0.25, + "MIN": 0.0, + "MAX": 2.0 + }, + { + "NAME": "level", + "TYPE": "float", + "DEFAULT": 0.0, + "MIN": 0.0, + "MAX": 1.0 + }, + { + "NAME": "blur", + "TYPE": "float", + "DEFAULT": 0.5, + "MIN": 0.0, + "MAX": 1.0 + } + ] +}*/ + + + vec3 permute(vec3 x) { return mod(((x*34.0)+1.0)*x, 289.0); } + float snoise(vec2 v){ + const vec4 C = vec4(0.211324865405187, 0.366025403784439, -0.577350269189626, 0.024390243902439); + vec2 i = floor(v + dot(v, C.yy) ); + vec2 x0 = v - i + dot(i, C.xx); + vec2 i1; + i1 = (x0.x > x0.y) ? vec2(1.0, 0.0) : vec2(0.0, 1.0); + vec4 x12 = x0.xyxy + C.xxzz; + x12.xy -= i1; + i = mod(i, 289.0); + vec3 p = permute( permute( i.y + vec3(0.0, i1.y, 1.0 )) + + i.x + vec3(0.0, i1.x, 1.0 )); + vec3 m = max(0.5 - vec3(dot(x0,x0), dot(x12.xy,x12.xy), dot(x12.zw,x12.zw)), 0.0); + m = m*m; + m = m*m; + vec3 x = 2.0 * fract(p * C.www) - 1.0; + vec3 h = abs(x) - 0.5; + vec3 ox = floor(x + 0.5); + vec3 a0 = x - ox; + m *= 1.79284291400159 - 0.85373472095314 * ( a0*a0 + h*h ); + vec3 g; + g.x = a0.x * x0.x + h.x * x0.y; + g.yz = a0.yz * x12.xz + h.yz * x12.yw; + return 130.0 * dot(m, g); + } + +void main(){ + vec2 uv = isf_FragNormCoord.xy - .5; + float t = TIME * speed * 2.0, x = uv.x * stretch; + vec3 s = vec3(.4,.7,-1.3) * t; + vec3 f = vec3(waveA,waveB,waveC) * t; + vec3 q = vec3(1,1.5,0.5) * x; + + vec3 d = vec3( snoise(vec2(q.x+s.x, f.x)), snoise(vec2(q.y+s.y, f.y)), snoise(vec2(q.z+s.z, f.z))); + vec3 w = sin(d)*0.5; + vec3 ww = smoothstep(w - blur, w + blur,vec3(uv.y+level)); + ww *= push; + + vec3 gradient = vec3(4. * uv.y + .5), + overlay = mix(cover.rgb,gradient,.5), + final = mix(ww,overlay, blend); + gl_FragColor = vec4(final,1.0); +} + diff --git a/AuraGrove/MediaFiles/z33d+.fs b/AuraGrove/MediaFiles/z33d+.fs new file mode 100644 index 0000000..ad572bb --- /dev/null +++ b/AuraGrove/MediaFiles/z33d+.fs @@ -0,0 +1,79 @@ +/*{ + "DESCRIPTION": "based https://www.shadertoy.com/view/XlXcWj", + "CATEGORIES": ["fractal", "generator"], + "INPUTS": [ + { + "NAME": "mX", + "TYPE": "float", + "DEFAULT": 0.67, + "MIN": 0.0, + "MAX": 2.0 + }, + { + "NAME": "mY", + "TYPE": "float", + "DEFAULT": 1.0, + "MIN": 0.0, + "MAX": 2.0 + }, + { + "NAME": "rate", + "TYPE": "float", + "DEFAULT": 1.75, + "MIN": -3.0, + "MAX": 3.0 + }, + { + "NAME": "e", + "TYPE": "float", + "DEFAULT": 0.025, + "MIN": 0.0005, + "MAX": 0.1 + } + ] +}*/ + +//////////////////////////////////////////////////////////// +// z33d+ by mojovideotech +// +// mod of : +// interactiveshaderformat.com/\2109 +// based on : +// shadertoy.com/\XlXcWj +// +// Creative Commons Attribution-NonCommercial-ShareAlike 3.0 +//////////////////////////////////////////////////////////// + +void main() +{ + float k = 0.0, T = TIME*rate*0.1; + vec2 R = RENDERSIZE.xy; + vec2 M = vec2(mX,mY)*R.xy; + for (float i = 0.0; i < 12.0; i++) { + vec3 p = vec3((2.0 * gl_FragCoord.xy - R.xy) / R.yy, k - 1.); + float a = T; + p.zy *= mat2(cos(a), -sin(a), sin(a), cos(a)); + a /= 2.0; + p.yx *= mat2(cos(a), -sin(a), sin(a), cos(a)); + a /= 2.0; + p.zx *= mat2(cos(a), -sin(a), sin(a), cos(a)); + vec3 z = p; + float c = 2.0; + for (float i = 0.; i < 9.0; i++) { + float r = length(z); + if (r > 6.0) { + k += log(r) * r / c / 3.0; + break; + } + float a = acos(z.z / r) * (6.0 + 12.0 * M.x / R.x); + float b = atan(z.y, z.x) * (6.0 + 12.0 * M.y / R.y); + c = pow(r, 7.0) * 5.0 * c / r + 1.0; + z = pow(r, 7.0) * vec3(sin(a) * cos(b), -sin(a) * sin(b), -cos(a)) + p; + } + gl_FragColor = vec4(1.0 - i / 16.0 - k + p / 4.0, 1.0); + if (log(length(z)) * length(z) / c < e) { + break; + } + } +} + diff --git a/AuraGrove/MediaFiles/zulfur.png b/AuraGrove/MediaFiles/zulfur.png new file mode 100644 index 0000000..b83e84a Binary files /dev/null and b/AuraGrove/MediaFiles/zulfur.png differ diff --git a/Images/Logos/Straggler.png b/Images/Logos/Straggler.png new file mode 100644 index 0000000..b7f0c33 Binary files /dev/null and b/Images/Logos/Straggler.png differ diff --git a/Images/Logos/bed04c4-734-22f7-3a1e-a41f21123171_AQPYhWdzzyg9CZiaKicZwLB2UcqyClMdVpmzSUKZK28bsRwX2nja0pxB5wil2Bbzs95Uj-2jVFFDteLT4VkFGq2D4OPp6EYtAPotrswEvYMAfeTraQ.mp4 b/Images/Logos/bed04c4-734-22f7-3a1e-a41f21123171_AQPYhWdzzyg9CZiaKicZwLB2UcqyClMdVpmzSUKZK28bsRwX2nja0pxB5wil2Bbzs95Uj-2jVFFDteLT4VkFGq2D4OPp6EYtAPotrswEvYMAfeTraQ.mp4 new file mode 100644 index 0000000..968ff17 --- /dev/null +++ b/Images/Logos/bed04c4-734-22f7-3a1e-a41f21123171_AQPYhWdzzyg9CZiaKicZwLB2UcqyClMdVpmzSUKZK28bsRwX2nja0pxB5wil2Bbzs95Uj-2jVFFDteLT4VkFGq2D4OPp6EYtAPotrswEvYMAfeTraQ.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a400e27f5d23036a18e8bd07a019362455fd15a77693e7519142603210131fc +size 58472537 diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite.zip b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite.zip new file mode 100644 index 0000000..1e87374 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite.zip differ diff --git a/VRStagelighting GridNode SPOUT/VRSL.ico b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/VRSL.ico similarity index 100% rename from VRStagelighting GridNode SPOUT/VRSL.ico rename to VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/VRSL.ico diff --git a/VRStagelighting GridNode SPOUT/VRStageLightingGridNode.bat b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/VRStageLightingGridNode.bat similarity index 100% rename from VRStagelighting GridNode SPOUT/VRStageLightingGridNode.bat rename to VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/VRStageLightingGridNode.bat diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/VRStageLightingGridNode.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/VRStageLightingGridNode.exe new file mode 100644 index 0000000..e7aec43 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/VRStageLightingGridNode.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/data/list_676891 b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/data/list_676891 new file mode 100644 index 0000000..398af1f --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/data/list_676891 @@ -0,0 +1 @@ +Select Audio Device diff --git a/VRStagelighting GridNode SPOUT/icon.png b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/icon.png similarity index 100% rename from VRStagelighting GridNode SPOUT/icon.png rename to VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/icon.png diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/COPYRIGHT b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/COPYRIGHT new file mode 100644 index 0000000..945e19c --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/COPYRIGHT @@ -0,0 +1,69 @@ +Copyright ฉ 1993, 2018, Oracle and/or its affiliates. +All rights reserved. + +This software and related documentation are provided under a +license agreement containing restrictions on use and +disclosure and are protected by intellectual property laws. +Except as expressly permitted in your license agreement or +allowed by law, you may not use, copy, reproduce, translate, +broadcast, modify, license, transmit, distribute, exhibit, +perform, publish, or display any part, in any form, or by +any means. Reverse engineering, disassembly, or +decompilation of this software, unless required by law for +interoperability, is prohibited. + +The information contained herein is subject to change +without notice and is not warranted to be error-free. If you +find any errors, please report them to us in writing. + +If this is software or related documentation that is +delivered to the U.S. Government or anyone licensing it on +behalf of the U.S. Government, the following notice is +applicable: + +U.S. GOVERNMENT END USERS: Oracle programs, including any +operating system, integrated software, any programs +installed on the hardware, and/or documentation, delivered +to U.S. Government end users are "commercial computer +software" pursuant to the applicable Federal Acquisition +Regulation and agency-specific supplemental regulations. As +such, use, duplication, disclosure, modification, and +adaptation of the programs, including any operating system, +integrated software, any programs installed on the hardware, +and/or documentation, shall be subject to license terms and +license restrictions applicable to the programs. No other +rights are granted to the U.S. Government. + +This software or hardware is developed for general use in a +variety of information management applications. It is not +developed or intended for use in any inherently dangerous +applications, including applications that may create a risk +of personal injury. If you use this software or hardware in +dangerous applications, then you shall be responsible to +take all appropriate fail-safe, backup, redundancy, and +other measures to ensure its safe use. Oracle Corporation +and its affiliates disclaim any liability for any damages +caused by use of this software or hardware in dangerous +applications. + +Oracle and Java are registered trademarks of Oracle and/or +its affiliates. Other names may be trademarks of their +respective owners. + +Intel and Intel Xeon are trademarks or registered trademarks +of Intel Corporation. All SPARC trademarks are used under +license and are trademarks or registered trademarks of SPARC +International, Inc. AMD, Opteron, the AMD logo, and the AMD +Opteron logo are trademarks or registered trademarks of +Advanced Micro Devices. UNIX is a registered trademark of +The Open Group. + +This software or hardware and documentation may provide +access to or information on content, products, and services +from third parties. Oracle Corporation and its affiliates +are not responsible for and expressly disclaim all +warranties of any kind with respect to third-party content, +products, and services. Oracle Corporation and its +affiliates will not be responsible for any loss, costs, or +damages incurred due to your access to or use of third-party +content, products, or services. diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/LICENSE b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/LICENSE new file mode 100644 index 0000000..39e216a --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/LICENSE @@ -0,0 +1 @@ +Please refer to http://java.com/license diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/README.txt b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/README.txt new file mode 100644 index 0000000..cdb30f2 --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/README.txt @@ -0,0 +1 @@ +Please refer to http://java.com/licensereadme diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/THIRDPARTYLICENSEREADME-JAVAFX.txt b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/THIRDPARTYLICENSEREADME-JAVAFX.txt new file mode 100644 index 0000000..8bc729b --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/THIRDPARTYLICENSEREADME-JAVAFX.txt @@ -0,0 +1,2186 @@ +๏ปฟDO NOT TRANSLATE OR LOCALIZE + +*************************************************************************** + +%%The following software may be included in this product: +Apple Computer: CoreAudio Utility Classes v2.0 + +Notice: This software is present only on Mac OS X systems. + +Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple +Inc. ("Apple") in consideration of your agreement to the following +terms, and your use, installation, modification or redistribution of +this Apple software constitutes acceptance of these terms. If you do +not agree with these terms, please do not use, install, modify or +redistribute this Apple software. + +In consideration of your agreement to abide by the following terms, and +subject to these terms, Apple grants you a personal, non-exclusive +license, under Apple's copyrights in this original Apple software (the +"Apple Software"), to use, reproduce, modify and redistribute the Apple +Software, with or without modifications, in source and/or binary forms; +provided that if you redistribute the Apple Software in its entirety and +without modifications, you must retain this notice and the following +text and disclaimers in all such redistributions of the Apple Software. +Neither the name, trademarks, service marks or logos of Apple Inc. may +be used to endorse or promote products derived from the Apple Software +without specific prior written permission from Apple. Except as +expressly stated in this notice, no other rights or licenses, express or +implied, are granted by Apple herein, including but not limited to any +patent rights that may be infringed by your derivative works or by other +works in which the Apple Software may be incorporated. + +The Apple Software is provided by Apple on an "AS IS" basis. APPLE +MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION +THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND +OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. + +IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL +OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, +MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED +AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), +STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +Copyright (C) 2014 Apple Inc. All Rights Reserved. + +*************************************************************************** + +%%The following software may be included in this product: +IBM International Components for Unicode (ICU4C) v62.1 + +COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) + +Copyright ยฉ 1991-2018 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in http://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +--------------------- + +Third-Party Software Licenses + +This section contains third-party software notices and/or additional +terms for licensed third-party software components included within ICU +libraries. + +1. ICU License - ICU 1.8.1 to ICU 57.1 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2016 International Business Machines Corporation and others +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + +2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt) + + # The Google Chrome software developed by Google is licensed under + # the BSD license. Other software included in this distribution is + # provided under other licenses, as set forth below. + # + # The BSD License + # http://opensource.org/licenses/bsd-license.php + # Copyright (C) 2006-2008, Google Inc. + # + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions are met: + # + # Redistributions of source code must retain the above copyright notice, + # this list of conditions and the following disclaimer. + # Redistributions in binary form must reproduce the above + # copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided with + # the distribution. + # Neither the name of Google Inc. nor the names of its + # contributors may be used to endorse or promote products derived from + # this software without specific prior written permission. + # + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + # + # + # The word list in cjdict.txt are generated by combining three word lists + # listed below with further processing for compound word breaking. The + # frequency is generated with an iterative training against Google web + # corpora. + # + # * Libtabe (Chinese) + # - https://sourceforge.net/project/?group_id=1519 + # - Its license terms and conditions are shown below. + # + # * IPADIC (Japanese) + # - http://chasen.aist-nara.ac.jp/chasen/distribution.html + # - Its license terms and conditions are shown below. + # + # ---------COPYING.libtabe ---- BEGIN-------------------- + # + # /* + # * Copyright (c) 1999 TaBE Project. + # * Copyright (c) 1999 Pai-Hsiang Hsiao. + # * All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the TaBE Project nor the names of its + # * contributors may be used to endorse or promote products derived + # * from this software without specific prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # /* + # * Copyright (c) 1999 Computer Systems and Communication Lab, + # * Institute of Information Science, Academia + # * Sinica. All rights reserved. + # * + # * Redistribution and use in source and binary forms, with or without + # * modification, are permitted provided that the following conditions + # * are met: + # * + # * . Redistributions of source code must retain the above copyright + # * notice, this list of conditions and the following disclaimer. + # * . Redistributions in binary form must reproduce the above copyright + # * notice, this list of conditions and the following disclaimer in + # * the documentation and/or other materials provided with the + # * distribution. + # * . Neither the name of the Computer Systems and Communication Lab + # * nor the names of its contributors may be used to endorse or + # * promote products derived from this software without specific + # * prior written permission. + # * + # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # * OF THE POSSIBILITY OF SUCH DAMAGE. + # */ + # + # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + # University of Illinois + # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 + # + # ---------------COPYING.libtabe-----END-------------------------------- + # + # + # ---------------COPYING.ipadic-----BEGIN------------------------------- + # + # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science + # and Technology. All Rights Reserved. + # + # Use, reproduction, and distribution of this software is permitted. + # Any copy of this software, whether in its original form or modified, + # must include both the above copyright notice and the following + # paragraphs. + # + # Nara Institute of Science and Technology (NAIST), + # the copyright holders, disclaims all warranties with regard to this + # software, including all implied warranties of merchantability and + # fitness, in no event shall NAIST be liable for + # any special, indirect or consequential damages or any damages + # whatsoever resulting from loss of use, data or profits, whether in an + # action of contract, negligence or other tortuous action, arising out + # of or in connection with the use or performance of this software. + # + # A large portion of the dictionary entries + # originate from ICOT Free Software. The following conditions for ICOT + # Free Software applies to the current dictionary as well. + # + # Each User may also freely distribute the Program, whether in its + # original form or modified, to any third party or parties, PROVIDED + # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear + # on, or be attached to, the Program, which is distributed substantially + # in the same form as set out herein and that such intended + # distribution, if actually made, will neither violate or otherwise + # contravene any of the laws and regulations of the countries having + # jurisdiction over the User or the intended distribution itself. + # + # NO WARRANTY + # + # The program was produced on an experimental basis in the course of the + # research and development conducted during the project and is provided + # to users as so produced on an experimental basis. Accordingly, the + # program is provided without any warranty whatsoever, whether express, + # implied, statutory or otherwise. The term "warranty" used herein + # includes, but is not limited to, any warranty of the quality, + # performance, merchantability and fitness for a particular purpose of + # the program and the nonexistence of any infringement or violation of + # any right of any third party. + # + # Each user of the program will agree and understand, and be deemed to + # have agreed and understood, that there is no warranty whatsoever for + # the program and, accordingly, the entire risk arising from or + # otherwise connected with the program is assumed by the user. + # + # Therefore, neither ICOT, the copyright holder, or any other + # organization that participated in or was otherwise related to the + # development of the program and their respective officials, directors, + # officers and other employees shall be held liable for any and all + # damages, including, without limitation, general, special, incidental + # and consequential damages, arising out of or otherwise in connection + # with the use or inability to use the program or any product, material + # or result produced or otherwise obtained by using the program, + # regardless of whether they have been advised of, or otherwise had + # knowledge of, the possibility of such damages at any time during the + # project or thereafter. Each user will be deemed to have agreed to the + # foregoing by his or her commencement of use of the program. The term + # "use" as used herein includes, but is not limited to, the use, + # modification, copying and distribution of the program and the + # production of secondary products from the program. + # + # In the case where the program, whether in its original form or + # modified, was distributed or delivered to or received by a user from + # any person, organization or entity other than ICOT, unless it makes or + # grants independently of ICOT any specific warranty to the user in + # writing, such person, organization or entity, will also be exempted + # from and not be held liable to the user for any such damages as noted + # above as far as the program is concerned. + # + # ---------------COPYING.ipadic-----END---------------------------------- + +3. Lao Word Break Dictionary Data (laodict.txt) + + # Copyright (c) 2013 International Business Machines Corporation + # and others. All Rights Reserved. + # + # Project: http://code.google.com/p/lao-dictionary/ + # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt + # License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt + # (copied below) + # + # This file is derived from the above dictionary, with slight + # modifications. + # ---------------------------------------------------------------------- + # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, + # are permitted provided that the following conditions are met: + # + # + # Redistributions of source code must retain the above copyright notice, this + # list of conditions and the following disclaimer. Redistributions in + # binary form must reproduce the above copyright notice, this list of + # conditions and the following disclaimer in the documentation and/or + # other materials provided with the distribution. + # + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + # OF THE POSSIBILITY OF SUCH DAMAGE. + # -------------------------------------------------------------------------- + +4. Burmese Word Break Dictionary Data (burmesedict.txt) + + # Copyright (c) 2014 International Business Machines Corporation + # and others. All Rights Reserved. + # + # This list is part of a project hosted at: + # github.com/kanyawtech/myanmar-karen-word-lists + # + # -------------------------------------------------------------------------- + # Copyright (c) 2013, LeRoy Benjamin Sharon + # All rights reserved. + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions + # are met: Redistributions of source code must retain the above + # copyright notice, this list of conditions and the following + # disclaimer. Redistributions in binary form must reproduce the + # above copyright notice, this list of conditions and the following + # disclaimer in the documentation and/or other materials provided + # with the distribution. + # + # Neither the name Myanmar Karen Word Lists, nor the names of its + # contributors may be used to endorse or promote products derived + # from this software without specific prior written permission. + # + # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS + # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + # SUCH DAMAGE. + # -------------------------------------------------------------------------- + +5. Time Zone Database + + ICU uses the public domain data and code derived from Time Zone +Database for its time zone support. The ownership of the TZ database +is explained in BCP 175: Procedure for Maintaining the Time Zone +Database section 7. + + # 7. Database Ownership + # + # The TZ database itself is not an IETF Contribution or an IETF + # document. Rather it is a pre-existing and regularly updated work + # that is in the public domain, and is intended to remain in the + # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do + # not apply to the TZ Database or contributions that individuals make + # to it. Should any claims be made and substantiated against the TZ + # Database, the organization that is providing the IANA + # Considerations defined in this RFC, under the memorandum of + # understanding with the IETF, currently ICANN, may act in accordance + # with all competent court orders. No ownership claims will be made + # by ICANN or the IETF Trust on the database or the code. Any person + # making a contribution to the database or code waives all rights to + # future claims in that contribution or in the TZ Database. + +6. Google double-conversion + +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*************************************************************************** + +%%The following software may be included in this product: +Independent JPEG Group (IJG) JPEG v9c + +/* + * jcapimin.c + * + * Copyright (C) 1994-1998, Thomas G. Lane. + * Modified 2003-2010 by Guido Vollbeding. + * This file is part of the Independent JPEG Group's software. + * For conditions of distribution and use, see the accompanying README file. + */ +[From the README file] +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-2018, Thomas G. Lane, Guido Vollbeding. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. + +*************************************************************************** + +%%The following software may be included in this product: +GStreamer v1.14.0 + +You are receiving a copy of GStreamer, Version: 1.14.0 in either source or +object code in the JavaFX runtime or JavaFX SDK. The terms of the +Oracle license do NOT apply to the GStreamer, Version: 1.14.0; it is +licensed under the following license, separately from the Oracle programs +you receive. If you do not wish to install this library, you may delete +this library: + + - On 32-bit Linux systems: delete $(JAVA_HOME)/lib/i386/libgstreamer-lite.so + - On 64-bit Linux systems: delete $(JAVA_HOME)/lib/amd64/libgstreamer-lite.so + - On Mac OS X systems: delete $(JAVA_HOME)/lib/libgstreamer-lite.dylib + - On Windows systems: delete $(JAVA_HOME)\bin\gstreamer-lite.dll + +A copy of the Oracle modified GStreamer library source code is located +in the following OpenJDK Mercurial repository: + + http://hg.openjdk.java.net/openjfx/8u/rt + +You can use Mercurial to clone the repository or you can browse the +source using a web browser. The root directory of the GStreamer source +code is here: + + rt/modules/media/src/main/native/gstreamer/gstreamer-lite/ + + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + +*************************************************************************** + +%%The following software may be included in this product: +Glib v2.56.1 + +You are receiving a copy of GNU Glib, Version: 2.56.1 in either source or +object code in the JavaFX runtime or JavaFX SDK. The terms of the +Oracle license do NOT apply to the GNU Glib, Version: 2.56.1; it is +licensed under the following license, separately from the Oracle programs +you receive. If you do not wish to install this library, you may delete +this library: + + - On Linux systems: N/A (library is not present) + - On Mac OS X systems: delete $(JAVA_HOME)/lib/libglib-lite.dylib + - On Windows systems: delete $(JAVA_HOME)\bin\glib-lite.dll + +A copy of the Oracle modified GNU Glib library source code is located +in the following OpenJDK Mercurial repository: + + http://hg.openjdk.java.net/openjfx/8u/rt + +You can use Mercurial to clone the repository or you can browse the +source using a web browser. The root directory of the GNU Glib source +code is here: + + rt/modules/media/src/main/native/gstreamer/3rd_party/glib/ + + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + +*************************************************************************** + +%%The following software may be included in this product: +LibFFI v3.2.1 + +libffi - Copyright (c) 1996-2014 Anthony Green, Red Hat, Inc and others. +See source files for details. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +``Software''), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +*************************************************************************** + +%%The following software may be included in this product: +Webkit v606.1 + +You are receiving a copy of WebKit in either source or +object code in the JavaFX runtime or JavaFX SDK. The terms of the +Oracle license do NOT apply to WebKit; it is +licensed under the following license, separately from the Oracle programs +you receive. If you do not wish to install this library, you may delete +this library: + + - On 32-bit Linux systems: delete $(JAVA_HOME)/lib/i386/libjfxwebkit.so + - On 64-bit Linux systems: delete $(JAVA_HOME)/lib/amd64/libjfxwebkit.so + - On Mac OS X systems: delete $(JAVA_HOME)/lib/libjfxwebkit.dylib + - On Windows systems: delete $(JAVA_HOME)\bin\jfxwebkit.dll + +A copy of the Oracle modified WebKit library source code is located +in the following OpenJDK Mercurial repository: + + http://hg.openjdk.java.net/openjfx/8u/rt + +You can use Mercurial to clone the repository or you can browse the +source using a web browser. The root directory of the WebKit source +code is here: + + rt/modules/web/src/main/native/ + + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + +*************************************************************************** + +%%The following software may be included in this product: +libxml2 v2.9.7 + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +*************************************************************************** + +%%The following software may be included in this product: +libxslt v1.1.32 + +Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL BLFS +BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF +CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/THIRDPARTYLICENSEREADME.txt b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/THIRDPARTYLICENSEREADME.txt new file mode 100644 index 0000000..1a50a74 --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/THIRDPARTYLICENSEREADME.txt @@ -0,0 +1,3242 @@ +DO NOT TRANSLATE OR LOCALIZE. +----------------------------- + +%% This notice is provided with respect to ASM Bytecode Manipulation +Framework v5.0.3, which may be included with JRE 8, and JDK 8, and +OpenJDK 8. + +--- begin of LICENSE --- + +Copyright (c) 2000-2011 France Tรฉlรฉcom +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. + +--- end of LICENSE --- + +-------------------------------------------------------------------------------- + +%% This notice is provided with respect to BSDiff v4.3, which may be +included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Copyright 2003-2005 Colin Percival +All rights reserved + +Redistribution and use in source and binary forms, with or without +modification, are permitted providing that the following conditions +are met: +1. Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to CodeViewer 1.0, which may be +included with JDK 8. + +--- begin of LICENSE --- + +Copyright 1999 by CoolServlets.com. + +Any errors or suggested improvements to this class can be reported as +instructed on CoolServlets.com. We hope you enjoy this program... your +comments will encourage further development! This software is distributed +under the terms of the BSD License. Redistribution and use in source and +binary forms, with or without modification, are permitted provided that the +following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +Neither name of CoolServlets.com nor the names of its contributors may be +used to endorse or promote products derived from this software without +specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY COOLSERVLETS.COM AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Cryptix AES 3.2.0, which may be +included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Cryptix General License + +Copyright (c) 1995-2005 The Cryptix Foundation Limited. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + 1. Redistributions of source code must retain the copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +THIS SOFTWARE IS PROVIDED BY THE CRYPTIX FOUNDATION LIMITED AND +CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE CRYPTIX FOUNDATION LIMITED OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to CUP Parser Generator for +Java 0.10k, which may be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Copyright 1996-1999 by Scott Hudson, Frank Flannery, C. Scott Ananian + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both the +copyright notice and this permission notice and warranty disclaimer appear in +supporting documentation, and that the names of the authors or their +employers not be used in advertising or publicity pertaining to distribution of +the software without specific, written prior permission. + +The authors and their employers disclaim all warranties with regard to +this software, including all implied warranties of merchantability and fitness. +In no event shall the authors or their employers be liable for any special, +indirect or consequential damages or any damages whatsoever resulting from +loss of use, data or profits, whether in an action of contract, negligence or +other tortious action, arising out of or in connection with the use or +performance of this software. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to DejaVu fonts v2.34, which may be +included with JRE 8, and JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. +Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below) + + +Bitstream Vera Fonts Copyright +------------------------------ + +Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is +a trademark of Bitstream, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of the fonts accompanying this license ("Fonts") and associated +documentation files (the "Font Software"), to reproduce and distribute the +Font Software, including without limitation the rights to use, copy, merge, +publish, distribute, and/or sell copies of the Font Software, and to permit +persons to whom the Font Software is furnished to do so, subject to the +following conditions: + +The above copyright and trademark notices and this permission notice shall +be included in all copies of one or more of the Font Software typefaces. + +The Font Software may be modified, altered, or added to, and in particular +the designs of glyphs or characters in the Fonts may be modified and +additional glyphs or characters may be added to the Fonts, only if the fonts +are renamed to names not containing either the words "Bitstream" or the word +"Vera". + +This License becomes null and void to the extent applicable to Fonts or Font +Software that has been modified and is distributed under the "Bitstream +Vera" names. + +The Font Software may be sold as part of a larger software package but no +copy of one or more of the Font Software typefaces may be sold by itself. + +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, +TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME +FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING +ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF +THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE +FONT SOFTWARE. + +Except as contained in this notice, the names of Gnome, the Gnome +Foundation, and Bitstream Inc., shall not be used in advertising or +otherwise to promote the sale, use or other dealings in this Font Software +without prior written authorization from the Gnome Foundation or Bitstream +Inc., respectively. For further information, contact: fonts at gnome dot +org. + +Arev Fonts Copyright +------------------------------ + +Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the fonts accompanying this license ("Fonts") and +associated documentation files (the "Font Software"), to reproduce +and distribute the modifications to the Bitstream Vera Font Software, +including without limitation the rights to use, copy, merge, publish, +distribute, and/or sell copies of the Font Software, and to permit +persons to whom the Font Software is furnished to do so, subject to +the following conditions: + +The above copyright and trademark notices and this permission notice +shall be included in all copies of one or more of the Font Software +typefaces. + +The Font Software may be modified, altered, or added to, and in +particular the designs of glyphs or characters in the Fonts may be +modified and additional glyphs or characters may be added to the +Fonts, only if the fonts are renamed to names not containing either +the words "Tavmjong Bah" or the word "Arev". + +This License becomes null and void to the extent applicable to Fonts +or Font Software that has been modified and is distributed under the +"Tavmjong Bah Arev" names. + +The Font Software may be sold as part of a larger software package but +no copy of one or more of the Font Software typefaces may be sold by +itself. + +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL +TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. + +Except as contained in this notice, the name of Tavmjong Bah shall not +be used in advertising or otherwise to promote the sale, use or other +dealings in this Font Software without prior written authorization +from Tavmjong Bah. For further information, contact: tavmjong @ free +. fr. + +TeX Gyre DJV Math +----------------- +Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. + +Math extensions done by B. Jackowski, P. Strzelczyk and P. Pianowski +(on behalf of TeX users groups) are in public domain. + +Letters imported from Euler Fraktur from AMSfonts are (c) American +Mathematical Society (see below). +Bitstream Vera Fonts Copyright +Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera +is a trademark of Bitstream, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of the fonts accompanying this license ("Fonts") and associated documentation +files (the "Font Software"), to reproduce and distribute the Font Software, +including without limitation the rights to use, copy, merge, publish, +distribute, and/or sell copies of the Font Software, and to permit persons +to whom the Font Software is furnished to do so, subject to the following +conditions: + +The above copyright and trademark notices and this permission notice +shall be included in all copies of one or more of the Font Software typefaces. + +The Font Software may be modified, altered, or added to, and in particular +the designs of glyphs or characters in the Fonts may be modified and +additional glyphs or characters may be added to the Fonts, only if the +fonts are renamed to names not containing either the words "Bitstream" +or the word "Vera". + +This License becomes null and void to the extent applicable to Fonts or +Font Software that has been modified and is distributed under the +"Bitstream Vera" names. + +The Font Software may be sold as part of a larger software package but +no copy of one or more of the Font Software typefaces may be sold by itself. + +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, +TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME +FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING +ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT +OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN +THE FONT SOFTWARE. +Except as contained in this notice, the names of GNOME, the GNOME +Foundation, and Bitstream Inc., shall not be used in advertising or +otherwise to promote the sale, use or other dealings in this Font Software +without prior written authorization from the GNOME Foundation or +Bitstream Inc., respectively. +For further information, contact: fonts at gnome dot org. + +AMSFonts (v. 2.2) copyright + +The PostScript Type 1 implementation of the AMSFonts produced by and +previously distributed by Blue Sky Research and Y&Y, Inc. are now freely +available for general use. This has been accomplished through the +cooperation +of a consortium of scientific publishers with Blue Sky Research and Y&Y. +Members of this consortium include: + +Elsevier Science IBM Corporation Society for Industrial and Applied +Mathematics (SIAM) Springer-Verlag American Mathematical Society (AMS) + +In order to assure the authenticity of these fonts, copyright will be +held by the American Mathematical Society. This is not meant to restrict +in any way the legitimate use of the fonts, such as (but not limited to) +electronic distribution of documents containing these fonts, inclusion of +these fonts into other public domain or commercial font collections or computer +applications, use of the outline data to create derivative fonts and/or +faces, etc. However, the AMS does require that the AMS copyright notice be +removed from any derivative versions of the fonts which have been altered in +any way. In addition, to ensure the fidelity of TeX documents using Computer +Modern fonts, Professor Donald Knuth, creator of the Computer Modern faces, +has requested that any alterations which yield different font metrics be +given a different name. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Document Object Model (DOM) Level 2 +& 3, which may be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +W3C SOFTWARE NOTICE AND LICENSE + +http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 + +This work (and included software, documentation such as READMEs, or other +related items) is being provided by the copyright holders under the following +license. By obtaining, using and/or copying this work, you (the licensee) +agree that you have read, understood, and will comply with the following terms +and conditions. + +Permission to copy, modify, and distribute this software and its +documentation, with or without modification, for any purpose and without fee +or royalty is hereby granted, provided that you include the following on ALL +copies of the software and documentation or portions thereof, including +modifications: + + 1.The full text of this NOTICE in a location viewable to users of the + redistributed or derivative work. + + 2.Any pre-existing intellectual property disclaimers, notices, or terms and + conditions. If none exist, the W3C Software Short Notice should be included + (hypertext is preferred, text is permitted) within the body of any + redistributed or derivative code. + + 3.Notice of any changes or modifications to the files, including the date + changes were made. (We recommend you provide URIs to the location from + which the code is derived.) + +THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS +MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT +LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR +PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY +THIRD PARTY PATENTS,COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. + +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL +OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR +DOCUMENTATION. The name and trademarks of copyright holders may NOT be used +in advertising or publicity pertaining to the software without specific, +written prior permission. Title to copyright in this software and any +associated documentation will at all times remain with copyright holders. + +____________________________________ + +This formulation of W3C's notice and license became active on December 31 +2002. This version removes the copyright ownership notice such that this +license can be used with materials other than those owned by the W3C, reflects +that ERCIM is now a host of the W3C, includes references to this specific +dated version of the license, and removes the ambiguous grant of "use". +Otherwise, this version is the same as the previous version and is written so +as to preserve the Free Software Foundation's assessment of GPL compatibility +and OSI's certification under the Open Source Definition. Please see our +Copyright FAQ for common questions about using materials from our site, +including specific terms and conditions for packages like libwww, Amaya, and +Jigsaw. Other questions about this notice can be directed to +site-policy@w3.org. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Dynalink v0.5, which may be +included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Copyright (c) 2009-2013, Attila Szegedi + +All rights reserved.Redistribution and use in source and binary forms, with or +without modification, are permitted provided that the following conditions are +met:* Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. * Redistributions in +binary form must reproduce the above copyright notice, this list of +conditions and the following disclaimer in the documentation and/or other +materials provided with the distribution. * Neither the name of Attila +Szegedi nor the names of its contributors may be used to endorse or promote +products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THEPOSSIBILITY OF SUCH DAMAGE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Elliptic Curve Cryptography, which +may be included with JRE 8, JDK 8, and OpenJDK 8. + +You are receiving a copy of the Elliptic Curve Cryptography library in source +form with the JDK 8 and OpenJDK 8 source distributions, and as object code in +the JRE 8 & JDK 8 runtimes. + +In the case of the JRE & JDK runtimes, the terms of the Oracle license do +NOT apply to the Elliptic Curve Cryptography library; it is licensed under the +following license, separately from Oracle's JDK & JRE. If you do not wish to +install the Elliptic Curve Cryptography library, you may delete the +Elliptic Curve Cryptography library: + - On Solaris and Linux systems: delete $(JAVA_HOME)/lib/libsunec.so + - On Windows systems: delete $(JAVA_HOME)\bin\sunec.dll + - On Mac systems, delete: + for JRE: /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/libsunec.dylib + for JDK: $(JAVA_HOME)/jre/lib/libsunec.dylib + +Written Offer for ECC Source Code + For third party technology that you receive from Oracle in binary form + which is licensed under an open source license that gives you the right + to receive the source code for that binary, you can obtain a copy of + the applicable source code from this page: + http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/file/tip/src/share/native/sun/security/ec/impl + + If the source code for the technology was not provided to you with the + binary, you can also receive a copy of the source code on physical + media by submitting a written request to: + + Oracle America, Inc. + Attn: Associate General Counsel, + Development and Engineering Legal + 500 Oracle Parkway, 10th Floor + Redwood Shores, CA 94065 + + Or, you may send an email to Oracle using the form at: + http://www.oracle.com/goto/opensourcecode/request + + Your request should include: + - The name of the component or binary file(s) for which you are requesting + the source code + - The name and version number of the Oracle product containing the binary + - The date you received the Oracle product + - Your name + - Your company name (if applicable) + - Your return mailing address and email and + - A telephone number in the event we need to reach you. + + We may charge you a fee to cover the cost of physical media and processing. + Your request must be sent (i) within three (3) years of the date you + received the Oracle product that included the component or binary + file(s) that are the subject of your request, or (ii) in the case of + code licensed under the GPL v3, for as long as Oracle offers spare + parts or customer support for that product model. + +--- begin of LICENSE --- + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to ECMAScript Language +Specification ECMA-262 Edition 5.1 which may be included with +JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Copyright notice +Copyright ยฉ 2011 Ecma International +Ecma International +Rue du Rhone 114 +CH-1204 Geneva +Tel: +41 22 849 6000 +Fax: +41 22 849 6001 +Web: http://www.ecma-international.org + +This document and possible translations of it may be copied and furnished to +others, and derivative works that comment on or otherwise explain it or assist +in its implementation may be prepared, copied, published, and distributed, in +whole or in part, without restriction of any kind, provided that the above +copyright notice and this section are included on all such copies and derivative +works. However, this document itself may not be modified in any way, including +by removing the copyright notice or references to Ecma International, except as +needed for the purpose of developing any document or deliverable produced by +Ecma International (in which case the rules applied to copyrights must be +followed) or as required to translate it into languages other than English. The +limited permissions granted above are perpetual and will not be revoked by Ecma +International or its successors or assigns. This document and the information +contained herein is provided on an "AS IS" basis and ECMA INTERNATIONAL +DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY +WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP +RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR +PURPOSE." Software License + +All Software contained in this document ("Software)" is protected by copyright +and is being made available under the "BSD License", included below. This +Software may be subject to third party rights (rights from parties other than +Ecma International), including patent rights, and no licenses under such third +party rights are granted under this license even if the third party concerned is +a member of Ecma International. SEE THE ECMA CODE OF CONDUCT IN PATENT MATTERS +AVAILABLE AT http://www.ecma-international.org/memento/codeofconduct.htm FOR +INFORMATION REGARDING THE LICENSING OF PATENT CLAIMS THAT ARE REQUIRED TO +IMPLEMENT ECMA INTERNATIONAL STANDARDS*. Redistribution and use in source and +binary forms, with or without modification, are permitted provided that the +following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. + +3. Neither the name of the authors nor Ecma International may be used to endorse +or promote products derived from this software without specific prior written +permission. + +THIS SOFTWARE IS PROVIDED BY THE ECMA INTERNATIONAL "AS IS" AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT +SHALL ECMA INTERNATIONAL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING +IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY +OF SUCH DAMAGE. +--- end of LICENSE --- + +%% This notice is provided with respect to FontConfig 2.5, which may be +included with JRE 8, JDK 8, and OpenJDK 8 source distributions on +Linux and Solaris. + +--- begin of LICENSE --- + +Copyright ยฉ 2001,2003 Keith Packard + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that the +above copyright notice appear in all copies and that both that copyright +notice and this permission notice appear in supporting documentation, and that +the name of Keith Packard not be used in advertising or publicity pertaining +to distribution of the software without specific, written prior permission. +Keith Packard makes no representations about the suitability of this software +for any purpose. It is provided "as is" without express or implied warranty. + +KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING +ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL KEITH +PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY +DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to freebXML Registry 3.0 & 3.1, +which may be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +freebxml: Copyright (c) 2001 freebxml.org. All rights reserved. + +The names "The freebXML Registry Project" and "freebxml Software +Foundation" must not be used to endorse or promote products derived +from this software or be used in a product name without prior +written permission. For written permission, please contact +ebxmlrr-team@lists.sourceforge.net. + +This software consists of voluntary contributions made by many individuals +on behalf of the the freebxml Software Foundation. For more information on +the freebxml Software Foundation, please see . + +This product includes software developed by the Apache Software Foundation +(http://www.apache.org/). + +The freebxml License, Version 1.1 5 +Copyright (c) 2001 freebxml.org. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + 3. The end-user documentation included with the redistribution, if + any, must include the following acknowlegement: + "This product includes software developed by + freebxml.org (http://www.freebxml.org/)." + Alternately, this acknowlegement may appear in the software itself, + if and wherever such third-party acknowlegements normally appear. + + 4. The names "The freebXML Registry Project", "freebxml Software + Foundation" must not be used to endorse or promote products derived + from this software without prior written permission. For written + permission, please contact ebxmlrr-team@lists.sourceforge.net. + + 5. Products derived from this software may not be called "freebxml", + "freebXML Registry" nor may freebxml" appear in their names without + prior written permission of the freebxml Group. + +THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE freebxml SOFTWARE FOUNDATION OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to IAIK PKCS#11 Wrapper, +which may be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +IAIK PKCS#11 Wrapper License + +Copyright (c) 2002 Graz University of Technology. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. The end-user documentation included with the redistribution, if any, must + include the following acknowledgment: + + "This product includes software developed by IAIK of Graz University of + Technology." + + Alternately, this acknowledgment may appear in the software itself, if and + wherever such third-party acknowledgments normally appear. + +4. The names "Graz University of Technology" and "IAIK of Graz University of + Technology" must not be used to endorse or promote products derived from this + software without prior written permission. + +5. Products derived from this software may not be called "IAIK PKCS Wrapper", + nor may "IAIK" appear in their name, without prior written permission of + Graz University of Technology. + +THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, +OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to ICU4C 4.0.1 and ICU4J 4.4, which +may be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Copyright (c) 1995-2010 International Business Machines Corporation and others + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, and/or sell copies of the +Software, and to permit persons to whom the Software is furnished to do so, +provided that the above copyright notice(s) and this permission notice appear +in all copies of the Software and that both the above copyright notice(s) and +this permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN +NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE +LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY +DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall not +be used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization of the copyright holder. +All trademarks and registered trademarks mentioned herein are the property of +their respective owners. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to IJG JPEG 6b, which may be +included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +This software is copyright (C) 1991-1998, Thomas G. Lane. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. + +--- end of LICENSE --- + +-------------------------------------------------------------------------------- + +%% This notice is provided with respect to Jing 20030619, which may +be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Copyright (c) 2001-2003 Thai Open Source Software Center Ltd All +rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +Neither the name of the Thai Open Source Software Center Ltd nor +the names of its contributors may be used to endorse or promote +products derived from this software without specific prior written +permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +--- end of LICENSE --- + +-------------------------------------------------------------------------------- + +%% This notice is provided with respect to Joni v1.1.9, which may be +included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to JOpt-Simple v3.0, which may be +included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + + Copyright (c) 2004-2009 Paul R. Holser, Jr. + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- end of LICENSE --- + +-------------------------------------------------------------------------------- + +%% This notice is provided with respect to Kerberos functionality, which +which may be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + + (C) Copyright IBM Corp. 1999 All Rights Reserved. + Copyright 1997 The Open Group Research Institute. All rights reserved. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Kerberos functionality from +FundsXpress, INC., which may be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + + Copyright (C) 1998 by the FundsXpress, INC. + + All rights reserved. + + Export of this software from the United States of America may require + a specific license from the United States Government. It is the + responsibility of any person or organization contemplating export to + obtain such a license before exporting. + + WITHIN THAT CONSTRAINT, permission to use, copy, modify, and + distribute this software and its documentation for any purpose and + without fee is hereby granted, provided that the above copyright + notice appear in all copies and that both that copyright notice and + this permission notice appear in supporting documentation, and that + the name of FundsXpress. not be used in advertising or publicity pertaining + to distribution of the software without specific, written prior + permission. FundsXpress makes no representations about the suitability of + this software for any purpose. It is provided "as is" without express + or implied warranty. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Kronos OpenGL headers, which may be +included with JDK 8 and OpenJDK 8 source distributions. + +--- begin of LICENSE --- + + Copyright (c) 2007 The Khronos Group Inc. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and/or associated documentation files (the "Materials"), to + deal in the Materials without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Materials, and to permit persons to whom the Materials are + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Materials. + + THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN THE + MATERIALS. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% Portions Copyright Eastman Kodak Company 1991-2003 + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to libpng 1.6.35, which may be +included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +This copy of the libpng notices is provided for your convenience. In case of +any discrepancy between this copy and the notices in the file png.h that is +included in the libpng distribution, the latter shall prevail. + +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: + +If you modify libpng you may insert additional notices immediately following +this sentence. + +This code is released under the libpng license. + +libpng versions 1.0.7, July 1, 2000 through 1.6.35, July 15, 2018 are +Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are +derived from libpng-1.0.6, and are distributed according to the same +disclaimer and license as libpng-1.0.6 with the following individuals +added to the list of Contributing Authors: + + Simon-Pierre Cadieux + Eric S. Raymond + Mans Rullgard + Cosmin Truta + Gilles Vollant + James Yu + Mandar Sahastrabuddhe + Google Inc. + Vadim Barkov + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of the + library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is with + the user. + +Some files in the "contrib" directory and some configure-generated +files that are distributed with libpng have other copyright owners and +are released under other open source licenses. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from +libpng-0.96, and are distributed according to the same disclaimer and +license as libpng-0.96, with the following individuals added to the list +of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, +and are distributed according to the same disclaimer and license as +libpng-0.88, with the following individuals added to the list of +Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +Some files in the "scripts" directory have other copyright owners +but are released under this license. + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing Authors +and Group 42, Inc. disclaim all warranties, expressed or implied, +including, without limitation, the warranties of merchantability and of +fitness for any purpose. The Contributing Authors and Group 42, Inc. +assume no liability for direct, indirect, incidental, special, exemplary, +or consequential damages, which may result from the use of the PNG +Reference Library, even if advised of the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + + 1. The origin of this source code must not be misrepresented. + + 2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, without +fee, and encourage the use of this source code as a component to +supporting the PNG file format in commercial products. If you use this +source code in a product, acknowledgment is not required but would be +appreciated. + +END OF COPYRIGHT NOTICE, DISCLAIMER, and LICENSE. + +TRADEMARK: + +The name "libpng" has not been registered by the Copyright owner +as a trademark in any jurisdiction. However, because libpng has +been distributed and maintained world-wide, continually since 1995, +the Copyright owner claims "common-law trademark protection" in any +jurisdiction where common-law trademark is recognized. + +OSI CERTIFICATION: + +Libpng is OSI Certified Open Source Software. OSI Certified Open Source is +a certification mark of the Open Source Initiative. OSI has not addressed +the additional disclaimers inserted at version 1.0.7. + +EXPORT CONTROL: + +The Copyright owner believes that the Export Control Classification +Number (ECCN) for libpng is EAR99, which means not subject to export +controls or International Traffic in Arms Regulations (ITAR) because +it is open source, publicly available software, that does not contain +any encryption software. See the EAR, paragraphs 734.3(b)(3) and +734.7(b). + +Glenn Randers-Pehrson +glennrp at users.sourceforge.net +July 15, 2018 + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to GIFLIB 5.1.1 & libungif 4.1.3, +which may be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +The GIFLIB distribution is Copyright (c) 1997 Eric S. Raymond + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Little CMS 2.9, which may be +included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Little CMS +Copyright (c) 1998-2011 Marti Maria Saguer + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% Lucida is a registered trademark or trademark of Bigelow & Holmes in the +U.S. and other countries. + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Mesa 3D Graphics Library v4.1, +which may be included with JRE 8, JDK 8, and OpenJDK 8 source distributions. + +--- begin of LICENSE --- + + Mesa 3-D graphics library + Version: 4.1 + + Copyright (C) 1999-2002 Brian Paul All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Mozilla Network Security +Services (NSS), which is supplied with the JDK test suite in the OpenJDK +source code repository. It is licensed under Mozilla Public License (MPL), +version 2.0. + +The NSS libraries are supplied in executable form, built from unmodified +NSS source code labeled with the "NSS_3_16_RTM" HG tag. + +The NSS source code is available in the OpenJDK source code repository at: + jdk/test/sun/security/pkcs11/nss/src + +The NSS libraries are available in the OpenJDK source code repository at: + jdk/test/sun/security/pkcs11/nss/lib + +--- begin of LICENSE --- + +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to PC/SC Lite for Suse Linux v.1.1.1, +which may be included with JRE 8, JDK 8, and OpenJDK 8 on Linux and Solaris. + +--- begin of LICENSE --- + +Copyright (c) 1999-2004 David Corcoran +Copyright (c) 1999-2004 Ludovic Rousseau +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by: + David Corcoran + http://www.linuxnet.com (MUSCLE) +4. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +Changes to this license can be made only by the copyright author with +explicit written consent. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to PorterStemmer v4, which may be +included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +See: http://tartarus.org/~martin/PorterStemmer + +The software is completely free for any purpose, unless notes at the head of +the program text indicates otherwise (which is rare). In any case, the notes +about licensing are never more restrictive than the BSD License. + +In every case where the software is not written by me (Martin Porter), this +licensing arrangement has been endorsed by the contributor, and it is +therefore unnecessary to ask the contributor again to confirm it. + +I have not asked any contributors (or their employers, if they have them) for +proofs that they have the right to distribute their software in this way. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Relax NG Object/Parser v.20050510, +which may be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Copyright (c) Kohsuke Kawaguchi + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: The above copyright +notice and this permission notice shall be included in all copies or +substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to RelaxNGCC v1.12, which may be +included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Copyright (c) 2000-2003 Daisuke Okajima and Kohsuke Kawaguchi. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. The end-user documentation included with the redistribution, if any, must + include the following acknowledgment: + + "This product includes software developed by Daisuke Okajima + and Kohsuke Kawaguchi (http://relaxngcc.sf.net/)." + +Alternately, this acknowledgment may appear in the software itself, if and +wherever such third-party acknowledgments normally appear. + +4. The names of the copyright holders must not be used to endorse or promote + products derived from this software without prior written permission. For + written permission, please contact the copyright holders. + +5. Products derived from this software may not be called "RELAXNGCC", nor may + "RELAXNGCC" appear in their name, without prior written permission of the + copyright holders. + +THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.IN NO EVENT SHALL THE APACHE +SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Relax NG Datatype 1.0, which +may be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Copyright (c) 2005, 2010 Thai Open Source Software Center Ltd +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + Neither the names of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--- end of LICENSE --- + +-------------------------------------------------------------------------------- + +%% This notice is provided with respect to SoftFloat version 2b, which may be +included with JRE 8, JDK 8, and OpenJDK 8 on Linux/ARM. + +--- begin of LICENSE --- + +Use of any of this software is governed by the terms of the license below: + +SoftFloat was written by me, John R. Hauser. This work was made possible in +part by the International Computer Science Institute, located at Suite 600, +1947 Center Street, Berkeley, California 94704. Funding was partially +provided by the National Science Foundation under grant MIP-9311980. The +original version of this code was written as part of a project to build +a fixed-point vector processor in collaboration with the University of +California at Berkeley, overseen by Profs. Nelson Morgan and John Wawrzynek. + +THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort +has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT +TIMES RESULT IN INCORRECT BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO +PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ALL +LOSSES, COSTS, OR OTHER PROBLEMS THEY INCUR DUE TO THE SOFTWARE, AND WHO +FURTHERMORE EFFECTIVELY INDEMNIFY JOHN HAUSER AND THE INTERNATIONAL COMPUTER +SCIENCE INSTITUTE (possibly via similar legal warning) AGAINST ALL LOSSES, +COSTS, OR OTHER PROBLEMS INCURRED BY THEIR CUSTOMERS AND CLIENTS DUE TO THE +SOFTWARE. + +Derivative works are acceptable, even for commercial purposes, provided +that the minimal documentation requirements stated in the source code are +satisfied. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Sparkle 1.5, +which may be included with JRE 8 on Mac OS X. + +--- begin of LICENSE --- + +Copyright (c) 2012 Sparkle.org and Andy Matuschak + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% Portions licensed from Taligent, Inc. + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Thai Dictionary, which may be +included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Copyright (C) 1982 The Royal Institute, Thai Royal Government. + +Copyright (C) 1998 National Electronics and Computer Technology Center, +National Science and Technology Development Agency, +Ministry of Science Technology and Environment, +Thai Royal Government. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Unicode 6.2.0 & CLDR 21.0.1 +which may be included with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + +Unicode Terms of Use + +For the general privacy policy governing access to this site, see the Unicode +Privacy Policy. For trademark usage, see the Unicodeยฎ Consortium Name and +Trademark Usage Policy. + +A. Unicode Copyright. + 1. Copyright ยฉ 1991-2013 Unicode, Inc. All rights reserved. + + 2. Certain documents and files on this website contain a legend indicating + that "Modification is permitted." Any person is hereby authorized, + without fee, to modify such documents and files to create derivative + works conforming to the Unicodeยฎ Standard, subject to Terms and + Conditions herein. + + 3. Any person is hereby authorized, without fee, to view, use, reproduce, + and distribute all documents and files solely for informational + purposes in the creation of products supporting the Unicode Standard, + subject to the Terms and Conditions herein. + + 4. Further specifications of rights and restrictions pertaining to the use + of the particular set of data files known as the "Unicode Character + Database" can be found in Exhibit 1. + + 5. Each version of the Unicode Standard has further specifications of + rights and restrictions of use. For the book editions (Unicode 5.0 and + earlier), these are found on the back of the title page. The online + code charts carry specific restrictions. All other files, including + online documentation of the core specification for Unicode 6.0 and + later, are covered under these general Terms of Use. + + 6. No license is granted to "mirror" the Unicode website where a fee is + charged for access to the "mirror" site. + + 7. Modification is not permitted with respect to this document. All copies + of this document must be verbatim. + +B. Restricted Rights Legend. Any technical data or software which is licensed + to the United States of America, its agencies and/or instrumentalities + under this Agreement is commercial technical data or commercial computer + software developed exclusively at private expense as defined in FAR 2.101, + or DFARS 252.227-7014 (June 1995), as applicable. For technical data, use, + duplication, or disclosure by the Government is subject to restrictions as + set forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov + 1995) and this Agreement. For Software, in accordance with FAR 12-212 or + DFARS 227-7202, as applicable, use, duplication or disclosure by the + Government is subject to the restrictions set forth in this Agreement. + +C. Warranties and Disclaimers. + 1. This publication and/or website may include technical or typographical + errors or other inaccuracies . Changes are periodically added to the + information herein; these changes will be incorporated in new editions + of the publication and/or website. Unicode may make improvements and/or + changes in the product(s) and/or program(s) described in this + publication and/or website at any time. + + 2. If this file has been purchased on magnetic or optical media from + Unicode, Inc. the sole and exclusive remedy for any claim will be + exchange of the defective media within ninety (90) days of original + purchase. + + 3. EXCEPT AS PROVIDED IN SECTION C.2, THIS PUBLICATION AND/OR SOFTWARE IS + PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, + OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. + UNICODE AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR + OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH + ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE. + +D. Waiver of Damages. In no event shall Unicode or its licensors be liable for + any special, incidental, indirect or consequential damages of any kind, or + any damages whatsoever, whether or not Unicode was advised of the + possibility of the damage, including, without limitation, those resulting + from the following: loss of use, data or profits, in connection with the + use, modification or distribution of this information or its derivatives. + +E.Trademarks & Logos. + 1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, + Inc. โ€œThe Unicode Consortiumโ€ and โ€œUnicode, Inc.โ€ are trade names of + Unicode, Inc. Use of the information and materials found on this + website indicates your acknowledgement of Unicode, Inc.โ€™s exclusive + worldwide rights in the Unicode Word Mark, the Unicode Logo, and the + Unicode trade names. + + 2. The Unicode Consortium Name and Trademark Usage Policy (โ€œTrademark + Policyโ€) are incorporated herein by reference and you agree to abide by + the provisions of the Trademark Policy, which may be changed from time + to time in the sole discretion of Unicode, Inc. + + 3. All third party trademarks referenced herein are the property of their + respective owners. + +Miscellaneous. + 1. Jurisdiction and Venue. This server is operated from a location in the + State of California, United States of America. Unicode makes no + representation that the materials are appropriate for use in other + locations. If you access this server from other locations, you are + responsible for compliance with local laws. This Agreement, all use of + this site and any claims and damages resulting from use of this site are + governed solely by the laws of the State of California without regard to + any principles which would apply the laws of a different jurisdiction. + The user agrees that any disputes regarding this site shall be resolved + solely in the courts located in Santa Clara County, California. The user + agrees said courts have personal jurisdiction and agree to waive any + right to transfer the dispute to any other forum. + + 2. Modification by Unicode. Unicode shall have the right to modify this + Agreement at any time by posting it to this site. The user may not + assign any part of this Agreement without Unicodeโ€™s prior written + consent. + + 3. Taxes. The user agrees to pay any taxes arising from access to this + website or use of the information herein, except for those based on + Unicodeโ€™s net income. + + 4. Severability. If any provision of this Agreement is declared invalid or + unenforceable, the remaining provisions of this Agreement shall remain + in effect. + + 5. Entire Agreement. This Agreement constitutes the entire agreement + between the parties. + +EXHIBIT 1 +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +Unicode Data Files include all data files under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, and +http://www.unicode.org/cldr/data/. Unicode Data Files do not include PDF +online code charts under the directory http://www.unicode.org/Public/. +Software includes any source code published in the Unicode Standard or under +the directories http://www.unicode.org/Public/, +http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. + +NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING, +INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA +FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO +BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT +AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR +SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright ยฉ 1991-2012 Unicode, Inc. All rights reserved. Distributed under the +Terms of Use in http://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of the Unicode data files and any associated documentation (the "Data Files") +or Unicode software and any associated documentation (the "Software") to deal +in the Data Files or Software without restriction, including without +limitation the rights to use, copy, modify, merge, publish, distribute, and/or +sell copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that (a) the above +copyright notice(s) and this permission notice appear with all copies of the +Data Files or Software, (b) both the above copyright notice(s) and this +permission notice appear in associated documentation, and (c) there is clear +notice in each modified Data File or in the Software as well as in the +documentation associated with the Data File(s) or Software that the data or +software has been modified. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD +PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN +THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR +PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS +ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE +DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder shall not +be used in advertising or otherwise to promote the sale, use or other dealings +in these Data Files or Software without prior written authorization of the +copyright holder. + +Unicode and the Unicode logo are trademarks of Unicode, Inc. in the United +States and other countries. All third party trademarks referenced herein are +the property of their respective owners. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to UPX v3.01, which may be included +with JRE 8 on Windows. + +--- begin of LICENSE --- + +Use of any of this software is governed by the terms of the license below: + + + ooooo ooo ooooooooo. ooooooo ooooo + `888' `8' `888 `Y88. `8888 d8' + 888 8 888 .d88' Y888..8P + 888 8 888ooo88P' `8888' + 888 8 888 .8PY888. + `88. .8' 888 d8' `888b + `YbodP' o888o o888o o88888o + + + The Ultimate Packer for eXecutables + Copyright (c) 1996-2000 Markus Oberhumer & Laszlo Molnar + http://wildsau.idv.uni-linz.ac.at/mfx/upx.html + http://www.nexus.hu/upx + http://upx.tsx.org + + +PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN +TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION. + + +ABSTRACT +======== + + UPX and UCL are copyrighted software distributed under the terms + of the GNU General Public License (hereinafter the "GPL"). + + The stub which is imbedded in each UPX compressed program is part + of UPX and UCL, and contains code that is under our copyright. The + terms of the GNU General Public License still apply as compressing + a program is a special form of linking with our stub. + + As a special exception we grant the free usage of UPX for all + executables, including commercial programs. + See below for details and restrictions. + + +COPYRIGHT +========= + + UPX and UCL are copyrighted software. All rights remain with the authors. + + UPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer + UPX is Copyright (C) 1996-2000 Laszlo Molnar + + UCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer + + +GNU GENERAL PUBLIC LICENSE +========================== + + UPX and the UCL library are free software; you can redistribute them + and/or modify them under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License, or (at your option) any later version. + + UPX and UCL are distributed in the hope that they will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; see the file COPYING. + + +SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES +============================================ + + The stub which is imbedded in each UPX compressed program is part + of UPX and UCL, and contains code that is under our copyright. The + terms of the GNU General Public License still apply as compressing + a program is a special form of linking with our stub. + + Hereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special + permission to freely use and distribute all UPX compressed programs + (including commercial ones), subject to the following restrictions: + + 1. You must compress your program with a completely unmodified UPX + version; either with our precompiled version, or (at your option) + with a self compiled version of the unmodified UPX sources as + distributed by us. + 2. This also implies that the UPX stub must be completely unmodfied, i.e. + the stub imbedded in your compressed program must be byte-identical + to the stub that is produced by the official unmodified UPX version. + 3. The decompressor and any other code from the stub must exclusively get + used by the unmodified UPX stub for decompressing your program at + program startup. No portion of the stub may get read, copied, + called or otherwise get used or accessed by your program. + + +ANNOTATIONS +=========== + + - You can use a modified UPX version or modified UPX stub only for + programs that are compatible with the GNU General Public License. + + - We grant you special permission to freely use and distribute all UPX + compressed programs. But any modification of the UPX stub (such as, + but not limited to, removing our copyright string or making your + program non-decompressible) will immediately revoke your right to + use and distribute a UPX compressed program. + + - UPX is not a software protection tool; by requiring that you use + the unmodified UPX version for your proprietary programs we + make sure that any user can decompress your program. This protects + both you and your users as nobody can hide malicious code - + any program that cannot be decompressed is highly suspicious + by definition. + + - You can integrate all or part of UPX and UCL into projects that + are compatible with the GNU GPL, but obviously you cannot grant + any special exceptions beyond the GPL for our code in your project. + + - We want to actively support manufacturers of virus scanners and + similar security software. Please contact us if you would like to + incorporate parts of UPX or UCL into such a product. + + + +Markus F.X.J. Oberhumer Laszlo Molnar +markus.oberhumer@jk.uni-linz.ac.at ml1050@cdata.tvnet.hu + +Linz, Austria, 25 Feb 2000 + +Additional License(s) + +The UPX license file is at http://upx.sourceforge.net/upx-license.html. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to Xfree86-VidMode Extension 1.0, +which may be included with JRE 8, JDK 8, and OpenJDK 8 on Linux and Solaris. + +--- begin of LICENSE --- + +Version 1.1 of XFree86 ProjectLicence. + +Copyright (C) 1994-2004 The XFree86 Project, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicence, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so,subject to the following conditions: + + 1. Redistributions of source code must retain the above copyright + notice,this list of conditions, and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution, and in the same place + and form as other copyright, license and disclaimer information. + + 3. The end-user documentation included with the redistribution, if any,must + include the following acknowledgment: "This product includes + software developed by The XFree86 Project, Inc (http://www.xfree86.org/) and + its contributors", in the same place and form as other third-party + acknowledgments. Alternately, this acknowledgment may appear in the software + itself, in the same form and location as other such third-party + acknowledgments. + + 4. Except as contained in this notice, the name of The XFree86 Project,Inc + shall not be used in advertising or otherwise to promote the sale, use + or other dealings in this Software without prior written authorization from + The XFree86 Project, Inc. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED + WARRANTIES,INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO + EVENT SHALL THE XFREE86 PROJECT, INC OR ITS CONTRIBUTORS BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL,SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO,PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to X Window System 6.8.2, which may be +included with JRE 8, JDK 8, and OpenJDK 8 on Linux and Solaris. + +--- begin of LICENSE --- + +This is the copyright for the files in src/solaris/native/sun/awt: list.h, +multiVis.h, wsutils.h, list.c, multiVis.c +Copyright (c) 1994 Hewlett-Packard Co. +Copyright (c) 1996 X Consortium + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the X Consortium shall +not be used in advertising or otherwise to promote the sale, use or +other dealings in this Software without prior written authorization +from the X Consortium. +___________________________ +The files in motif/lib/Xm/util included this copyright:mkdirhier.man, +xmkmf.man, chownxterm.c, makeg.man, mergelib.cpp, lndir.man, makestrs.man, +checktree.c, lndir.c, makestrs.c +Copyright (c) 1993, 1994 X Consortium + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF +OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Except as contained in this notice, the name of the X Consortium shall not +be used in advertising or otherwise to promote the sale, use or other +dealing in this Software without prior written authorization from the +X Consortium. +_____________________________ +Xmos_r.h: +/* +Copyright (c) 1996 X Consortium + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of the X Consortium shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from the X Consortium. +*/ + +_____________________________ +Copyright notice for HPkeysym.h: +/* + +Copyright 1987, 1998 The Open Group + +All Rights Reserved. + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of The Open Group shall +not be used in advertising or otherwise to promote the sale, use or +other dealings in this Software without prior written authorization +from The Open Group. + +Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts, + +All Rights Reserved + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the names of Hewlett Packard +or Digital not be +used in advertising or publicity pertaining to distribution of the +software without specific, written prior permission. + +DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING +ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR +ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS +SOFTWARE. + +HEWLETT-PACKARD MAKES NO WARRANTY OF ANY KIND WITH REGARD +TO THIS SOFWARE, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. Hewlett-Packard shall not be liable for errors +contained herein or direct, indirect, special, incidental or +consequential damages in connection with the furnishing, +performance, or use of this material. + +*/ +_____________________________________ +Copyright notice in keysym2ucs.h: + +Copyright 1987, 1994, 1998 The Open Group + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of The Open Group shall +not be used in advertising or otherwise to promote the sale, use or +other dealings in this Software without prior written authorization +from The Open Group. + + +Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts + +All Rights Reserved + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Digital not be +used in advertising or publicity pertaining to distribution of the +software without specific, written prior permission. + +DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING +ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR +ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS +SOFTWARE. + +*/ + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to zlib v1.2.11, which may be included +with JRE 8, JDK 8, and OpenJDK 8. + +--- begin of LICENSE --- + + version 1.2.11, January 15th, 2017 + + Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + +%% This notice is provided with respect to the following which may be +included with JRE 8, JDK 8, and OpenJDK 8. + + Apache Commons Math 3.2 + Apache Derby 10.11.1.2 + Apache Jakarta BCEL 5.1 + Apache Jakarta Regexp 1.4 + Apache Santuario XML Security for Java 1.5.4 + Apache Xalan-Java 2.7.1 + Apache Xerces Java 2.10.0 + Apache XML Resolver 1.1 + + +--- begin of LICENSE --- + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--- end of LICENSE --- + +------------------------------------------------------------------------------- + diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/Welcome.html b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/Welcome.html new file mode 100644 index 0000000..f731854 --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/Welcome.html @@ -0,0 +1,28 @@ + + + +Welcome to the Java(TM) Platform + + + + +

Welcome to the JavaTM Platform

+

Welcome to the JavaTM Standard Edition Runtime + Environment. This provides complete runtime support for Java applications. +

The runtime environment includes the JavaTM + Plug-in product which supports the Java environment inside web browsers. +

References

+

+See the Java Plug-in product +documentation for more information on using the Java Plug-in product. +

See the Java Platform web site for + more information on the Java Platform. +


+ +Copyright (c) 2006, 2018, Oracle and/or its affiliates. All rights reserved. + +

+ + diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/JAWTAccessBridge-64.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/JAWTAccessBridge-64.dll new file mode 100644 index 0000000..356a1a2 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/JAWTAccessBridge-64.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/JavaAccessBridge-64.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/JavaAccessBridge-64.dll new file mode 100644 index 0000000..0f6414b Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/JavaAccessBridge-64.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/WindowsAccessBridge-64.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/WindowsAccessBridge-64.dll new file mode 100644 index 0000000..f227dcd Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/WindowsAccessBridge-64.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-console-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-console-l1-1-0.dll new file mode 100644 index 0000000..b469ccb Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-console-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-datetime-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-datetime-l1-1-0.dll new file mode 100644 index 0000000..d0cdea4 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-datetime-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-debug-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-debug-l1-1-0.dll new file mode 100644 index 0000000..11283e3 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-debug-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-errorhandling-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-errorhandling-l1-1-0.dll new file mode 100644 index 0000000..1069800 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-errorhandling-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-file-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-file-l1-1-0.dll new file mode 100644 index 0000000..b608d0c Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-file-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-file-l1-2-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-file-l1-2-0.dll new file mode 100644 index 0000000..620539c Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-file-l1-2-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-file-l2-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-file-l2-1-0.dll new file mode 100644 index 0000000..16f3d88 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-file-l2-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-handle-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-handle-l1-1-0.dll new file mode 100644 index 0000000..cbd019a Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-handle-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-heap-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-heap-l1-1-0.dll new file mode 100644 index 0000000..963f042 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-heap-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-interlocked-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-interlocked-l1-1-0.dll new file mode 100644 index 0000000..62d0d8a Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-interlocked-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-libraryloader-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-libraryloader-l1-1-0.dll new file mode 100644 index 0000000..054fca5 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-libraryloader-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-localization-l1-2-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-localization-l1-2-0.dll new file mode 100644 index 0000000..4747756 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-localization-l1-2-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-memory-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-memory-l1-1-0.dll new file mode 100644 index 0000000..41b3a5b Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-memory-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-namedpipe-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-namedpipe-l1-1-0.dll new file mode 100644 index 0000000..c89a74c Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-namedpipe-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-processenvironment-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-processenvironment-l1-1-0.dll new file mode 100644 index 0000000..a820084 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-processenvironment-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-processthreads-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-processthreads-l1-1-0.dll new file mode 100644 index 0000000..debbd17 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-processthreads-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-processthreads-l1-1-1.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-processthreads-l1-1-1.dll new file mode 100644 index 0000000..f7a2395 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-processthreads-l1-1-1.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-profile-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-profile-l1-1-0.dll new file mode 100644 index 0000000..99d2336 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-profile-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-rtlsupport-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-rtlsupport-l1-1-0.dll new file mode 100644 index 0000000..2352c90 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-rtlsupport-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-string-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-string-l1-1-0.dll new file mode 100644 index 0000000..2af9f45 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-string-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-synch-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-synch-l1-1-0.dll new file mode 100644 index 0000000..86a893a Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-synch-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-synch-l1-2-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-synch-l1-2-0.dll new file mode 100644 index 0000000..70d2f4b Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-synch-l1-2-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-sysinfo-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-sysinfo-l1-1-0.dll new file mode 100644 index 0000000..400883d Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-sysinfo-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-timezone-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-timezone-l1-1-0.dll new file mode 100644 index 0000000..3543bf6 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-timezone-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-util-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-util-l1-1-0.dll new file mode 100644 index 0000000..3932409 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-core-util-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-conio-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-conio-l1-1-0.dll new file mode 100644 index 0000000..fee9507 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-conio-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-convert-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-convert-l1-1-0.dll new file mode 100644 index 0000000..e398c3b Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-convert-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-environment-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-environment-l1-1-0.dll new file mode 100644 index 0000000..ee25a45 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-environment-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-filesystem-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-filesystem-l1-1-0.dll new file mode 100644 index 0000000..d8e225f Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-filesystem-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-heap-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-heap-l1-1-0.dll new file mode 100644 index 0000000..f568d6d Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-heap-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-locale-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-locale-l1-1-0.dll new file mode 100644 index 0000000..d11e4ba Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-locale-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-math-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-math-l1-1-0.dll new file mode 100644 index 0000000..514e2d4 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-math-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-multibyte-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-multibyte-l1-1-0.dll new file mode 100644 index 0000000..1234fb9 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-multibyte-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-private-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-private-l1-1-0.dll new file mode 100644 index 0000000..95c2067 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-private-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-process-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-process-l1-1-0.dll new file mode 100644 index 0000000..abbbf7c Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-process-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-runtime-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-runtime-l1-1-0.dll new file mode 100644 index 0000000..87f9144 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-runtime-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-stdio-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-stdio-l1-1-0.dll new file mode 100644 index 0000000..a03d17c Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-stdio-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-string-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-string-l1-1-0.dll new file mode 100644 index 0000000..19fff9d Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-string-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-time-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-time-l1-1-0.dll new file mode 100644 index 0000000..faf5204 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-time-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-utility-l1-1-0.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-utility-l1-1-0.dll new file mode 100644 index 0000000..772b23e Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/api-ms-win-crt-utility-l1-1-0.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/awt.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/awt.dll new file mode 100644 index 0000000..d09cc8d Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/awt.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/bci.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/bci.dll new file mode 100644 index 0000000..3d14b26 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/bci.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/concrt140.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/concrt140.dll new file mode 100644 index 0000000..f237a8a Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/concrt140.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dcpr.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dcpr.dll new file mode 100644 index 0000000..06865f7 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dcpr.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/decora_sse.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/decora_sse.dll new file mode 100644 index 0000000..11421cb Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/decora_sse.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/deploy.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/deploy.dll new file mode 100644 index 0000000..8036d5f Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/deploy.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dt_shmem.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dt_shmem.dll new file mode 100644 index 0000000..088ad91 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dt_shmem.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dt_socket.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dt_socket.dll new file mode 100644 index 0000000..e937e51 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dt_socket.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dtplugin/deployJava1.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dtplugin/deployJava1.dll new file mode 100644 index 0000000..d8c2435 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dtplugin/deployJava1.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dtplugin/npdeployJava1.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dtplugin/npdeployJava1.dll new file mode 100644 index 0000000..041dfe8 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/dtplugin/npdeployJava1.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/eula.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/eula.dll new file mode 100644 index 0000000..85b99ac Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/eula.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/fontmanager.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/fontmanager.dll new file mode 100644 index 0000000..a419145 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/fontmanager.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/fxplugins.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/fxplugins.dll new file mode 100644 index 0000000..0be9b6c Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/fxplugins.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/glass.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/glass.dll new file mode 100644 index 0000000..b16e2c8 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/glass.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/glib-lite.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/glib-lite.dll new file mode 100644 index 0000000..9cc7ed7 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/glib-lite.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/gstreamer-lite.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/gstreamer-lite.dll new file mode 100644 index 0000000..8ff3edd Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/gstreamer-lite.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/hprof.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/hprof.dll new file mode 100644 index 0000000..e14c7e1 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/hprof.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/instrument.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/instrument.dll new file mode 100644 index 0000000..071f603 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/instrument.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/j2pcsc.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/j2pcsc.dll new file mode 100644 index 0000000..ac7a8b0 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/j2pcsc.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/j2pkcs11.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/j2pkcs11.dll new file mode 100644 index 0000000..32f8977 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/j2pkcs11.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jaas_nt.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jaas_nt.dll new file mode 100644 index 0000000..f0e9a9b Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jaas_nt.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jabswitch.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jabswitch.exe new file mode 100644 index 0000000..04b1584 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jabswitch.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java-rmi.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java-rmi.exe new file mode 100644 index 0000000..15b0414 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java-rmi.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java.dll new file mode 100644 index 0000000..0d76436 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java.exe new file mode 100644 index 0000000..2f7ed65 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java_crw_demo.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java_crw_demo.dll new file mode 100644 index 0000000..204ee8c Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/java_crw_demo.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javacpl.cpl b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javacpl.cpl new file mode 100644 index 0000000..44cc34a Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javacpl.cpl differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javacpl.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javacpl.exe new file mode 100644 index 0000000..1766f0f Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javacpl.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javafx_font.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javafx_font.dll new file mode 100644 index 0000000..4465ad1 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javafx_font.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javafx_font_t2k.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javafx_font_t2k.dll new file mode 100644 index 0000000..406d391 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javafx_font_t2k.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javafx_iio.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javafx_iio.dll new file mode 100644 index 0000000..18dfe38 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javafx_iio.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javaw.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javaw.exe new file mode 100644 index 0000000..fb7d85f Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/javaw.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jawt.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jawt.dll new file mode 100644 index 0000000..ff8a94f Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jawt.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jdwp.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jdwp.dll new file mode 100644 index 0000000..fbbb745 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jdwp.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jfr.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jfr.dll new file mode 100644 index 0000000..e1c8b3f Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jfr.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jfxmedia.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jfxmedia.dll new file mode 100644 index 0000000..b3b3e8a Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jfxmedia.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jfxwebkit.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jfxwebkit.dll new file mode 100644 index 0000000..5611cfc Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jfxwebkit.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jjs.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jjs.exe new file mode 100644 index 0000000..5b72743 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jjs.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jli.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jli.dll new file mode 100644 index 0000000..d255bfd Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jli.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2iexp.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2iexp.dll new file mode 100644 index 0000000..1584063 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2iexp.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2launcher.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2launcher.exe new file mode 100644 index 0000000..63cb2e4 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2launcher.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2native.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2native.dll new file mode 100644 index 0000000..d95378b Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2native.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2ssv.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2ssv.dll new file mode 100644 index 0000000..efa9834 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jp2ssv.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jpeg.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jpeg.dll new file mode 100644 index 0000000..50db728 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jpeg.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jsdt.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jsdt.dll new file mode 100644 index 0000000..3efc172 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jsdt.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jsound.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jsound.dll new file mode 100644 index 0000000..0fc5286 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jsound.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jsoundds.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jsoundds.dll new file mode 100644 index 0000000..ccd2350 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/jsoundds.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/keytool.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/keytool.exe new file mode 100644 index 0000000..4afa0df Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/keytool.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/lcms.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/lcms.dll new file mode 100644 index 0000000..cb6167b Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/lcms.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/management.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/management.dll new file mode 100644 index 0000000..00e7782 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/management.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/mlib_image.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/mlib_image.dll new file mode 100644 index 0000000..75adec6 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/mlib_image.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/msvcp140.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/msvcp140.dll new file mode 100644 index 0000000..570be5f Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/msvcp140.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/msvcr100.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/msvcr100.dll new file mode 100644 index 0000000..b1c3a5e Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/msvcr100.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/net.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/net.dll new file mode 100644 index 0000000..22bb948 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/net.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/nio.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/nio.dll new file mode 100644 index 0000000..3fa0d39 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/nio.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/npt.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/npt.dll new file mode 100644 index 0000000..418174f Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/npt.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/orbd.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/orbd.exe new file mode 100644 index 0000000..6b56d47 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/orbd.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/pack200.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/pack200.exe new file mode 100644 index 0000000..75c44fe Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/pack200.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/plugin2/msvcr100.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/plugin2/msvcr100.dll new file mode 100644 index 0000000..b1c3a5e Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/plugin2/msvcr100.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/plugin2/npjp2.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/plugin2/npjp2.dll new file mode 100644 index 0000000..d5ccd9e Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/plugin2/npjp2.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/policytool.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/policytool.exe new file mode 100644 index 0000000..2ee709d Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/policytool.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/prism_common.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/prism_common.dll new file mode 100644 index 0000000..ba9b6c6 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/prism_common.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/prism_d3d.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/prism_d3d.dll new file mode 100644 index 0000000..9989903 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/prism_d3d.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/prism_sw.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/prism_sw.dll new file mode 100644 index 0000000..53c085e Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/prism_sw.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/resource.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/resource.dll new file mode 100644 index 0000000..6146d9b Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/resource.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/rmid.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/rmid.exe new file mode 100644 index 0000000..06b108d Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/rmid.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/rmiregistry.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/rmiregistry.exe new file mode 100644 index 0000000..76cbcf1 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/rmiregistry.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/server/Xusage.txt b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/server/Xusage.txt new file mode 100644 index 0000000..11302aa --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/server/Xusage.txt @@ -0,0 +1,24 @@ + -Xmixed mixed mode execution (default) + -Xint interpreted mode execution only + -Xbootclasspath: + set search path for bootstrap classes and resources + -Xbootclasspath/a: + append to end of bootstrap class path + -Xbootclasspath/p: + prepend in front of bootstrap class path + -Xnoclassgc disable class garbage collection + -Xincgc enable incremental garbage collection + -Xloggc: log GC status to a file with time stamps + -Xbatch disable background compilation + -Xms set initial Java heap size + -Xmx set maximum Java heap size + -Xss set java thread stack size + -Xprof output cpu profiling data + -Xfuture enable strictest checks, anticipating future default + -Xrs reduce use of OS signals by Java/VM (see documentation) + -Xcheck:jni perform additional checks for JNI functions + -Xshare:off do not attempt to use shared class data + -Xshare:auto use shared class data if possible (default) + -Xshare:on require using shared class data, otherwise fail. + +The -X options are non-standard and subject to change without notice. diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/server/jvm.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/server/jvm.dll new file mode 100644 index 0000000..1ea1574 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/server/jvm.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/servertool.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/servertool.exe new file mode 100644 index 0000000..168b6a9 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/servertool.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/splashscreen.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/splashscreen.dll new file mode 100644 index 0000000..72115f7 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/splashscreen.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/ssv.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/ssv.dll new file mode 100644 index 0000000..caeddc9 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/ssv.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/ssvagent.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/ssvagent.exe new file mode 100644 index 0000000..4c2ba30 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/ssvagent.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/sunec.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/sunec.dll new file mode 100644 index 0000000..64dcbca Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/sunec.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/sunmscapi.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/sunmscapi.dll new file mode 100644 index 0000000..abeb903 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/sunmscapi.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/t2k.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/t2k.dll new file mode 100644 index 0000000..832158d Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/t2k.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/tnameserv.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/tnameserv.exe new file mode 100644 index 0000000..ef23cc7 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/tnameserv.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/ucrtbase.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/ucrtbase.dll new file mode 100644 index 0000000..4c0f926 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/ucrtbase.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/unpack.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/unpack.dll new file mode 100644 index 0000000..26465cd Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/unpack.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/unpack200.exe b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/unpack200.exe new file mode 100644 index 0000000..c56d833 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/unpack200.exe differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/vcruntime140.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/vcruntime140.dll new file mode 100644 index 0000000..7aeaf83 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/vcruntime140.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/verify.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/verify.dll new file mode 100644 index 0000000..e925088 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/verify.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/w2k_lsa_auth.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/w2k_lsa_auth.dll new file mode 100644 index 0000000..fc70000 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/w2k_lsa_auth.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/wsdetect.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/wsdetect.dll new file mode 100644 index 0000000..ec8bad4 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/wsdetect.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/zip.dll b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/zip.dll new file mode 100644 index 0000000..32bcafe Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/bin/zip.dll differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/accessibility.properties b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/accessibility.properties new file mode 100644 index 0000000..d9f12e3 --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/accessibility.properties @@ -0,0 +1,6 @@ +# +# Load the Java Access Bridge class into the JVM +# +#assistive_technologies=com.sun.java.accessibility.AccessBridge +#screen_magnifier_present=true + diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/amd64/jvm.cfg b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/amd64/jvm.cfg new file mode 100644 index 0000000..4a2d964 --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/amd64/jvm.cfg @@ -0,0 +1,38 @@ +# +# +# +# Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. +# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# List of JVMs that can be used as an option to java, javac, etc. +# Order is important -- first in this list is the default JVM. +# NOTE that this both this file and its format are UNSUPPORTED and +# WILL GO AWAY in a future release. +# +# You may also select a JVM in an arbitrary location with the +# "-XXaltjvm=" option, but that too is unsupported +# and may not be available in a future release. +# +-server KNOWN +-client IGNORE diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/calendars.properties b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/calendars.properties new file mode 100644 index 0000000..87a8630 --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/calendars.properties @@ -0,0 +1,60 @@ +# Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. +# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# +# + +# +# Japanese imperial calendar +# +# Meiji since 1868-01-01 00:00:00 local time (Gregorian) +# Taisho since 1912-07-30 00:00:00 local time (Gregorian) +# Showa since 1926-12-25 00:00:00 local time (Gregorian) +# Heisei since 1989-01-08 00:00:00 local time (Gregorian) +calendar.japanese.type: LocalGregorianCalendar +calendar.japanese.eras: \ + name=Meiji,abbr=M,since=-3218832000000; \ + name=Taisho,abbr=T,since=-1812153600000; \ + name=Showa,abbr=S,since=-1357603200000; \ + name=Heisei,abbr=H,since=600220800000 + +# +# Taiwanese calendar +# Minguo since 1911-01-01 00:00:00 local time (Gregorian) +calendar.taiwanese.type: LocalGregorianCalendar +calendar.taiwanese.eras: \ + name=MinGuo,since=-1830384000000 + +# +# Thai Buddhist calendar +# Buddhist Era since -542-01-01 00:00:00 local time (Gregorian) +calendar.thai-buddhist.type: LocalGregorianCalendar +calendar.thai-buddhist.eras: \ + name=BuddhistEra,abbr=B.E.,since=-79302585600000 +calendar.thai-buddhist.year-boundary: \ + day1=4-1,since=-79302585600000; \ + day1=1-1,since=-915148800000 + +# +# Hijrah calendars +# +calendar.hijrah.Hijrah-umalqura: hijrah-config-umalqura.properties +calendar.hijrah.Hijrah-umalqura.type: islamic-umalqura diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/charsets.jar b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/charsets.jar new file mode 100644 index 0000000..a65789b Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/charsets.jar differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/classlist b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/classlist new file mode 100644 index 0000000..36e8ca1 --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/classlist @@ -0,0 +1,2469 @@ +java/lang/Object +java/lang/String +java/io/Serializable +java/lang/Comparable +java/lang/CharSequence +java/lang/Class +java/lang/reflect/GenericDeclaration +java/lang/reflect/AnnotatedElement +java/lang/reflect/Type +java/lang/Cloneable +java/lang/ClassLoader +java/lang/System +java/lang/Throwable +java/lang/Error +java/lang/ThreadDeath +java/lang/Exception +java/lang/RuntimeException +java/lang/SecurityManager +java/security/ProtectionDomain +java/security/AccessControlContext +java/security/SecureClassLoader +java/lang/ClassNotFoundException +java/lang/ReflectiveOperationException +java/lang/NoClassDefFoundError +java/lang/LinkageError +java/lang/ClassCastException +java/lang/ArrayStoreException +java/lang/VirtualMachineError +java/lang/OutOfMemoryError +java/lang/StackOverflowError +java/lang/IllegalMonitorStateException +java/lang/ref/Reference +java/lang/ref/SoftReference +java/lang/ref/WeakReference +java/lang/ref/FinalReference +java/lang/ref/PhantomReference +sun/misc/Cleaner +java/lang/ref/Finalizer +java/lang/Thread +java/lang/Runnable +java/lang/ThreadGroup +java/lang/Thread$UncaughtExceptionHandler +java/util/Properties +java/util/Hashtable +java/util/Map +java/util/Dictionary +java/lang/reflect/AccessibleObject +java/lang/reflect/Field +java/lang/reflect/Member +java/lang/reflect/Parameter +java/lang/reflect/Method +java/lang/reflect/Executable +java/lang/reflect/Constructor +sun/reflect/MagicAccessorImpl +sun/reflect/MethodAccessorImpl +sun/reflect/MethodAccessor +sun/reflect/ConstructorAccessorImpl +sun/reflect/ConstructorAccessor +sun/reflect/DelegatingClassLoader +sun/reflect/ConstantPool +sun/reflect/UnsafeStaticFieldAccessorImpl +sun/reflect/UnsafeFieldAccessorImpl +sun/reflect/FieldAccessorImpl +sun/reflect/FieldAccessor +sun/reflect/CallerSensitive +java/lang/annotation/Annotation +java/lang/invoke/DirectMethodHandle +java/lang/invoke/MethodHandle +java/lang/invoke/MemberName +java/lang/invoke/MethodHandleNatives +java/lang/invoke/LambdaForm +java/lang/invoke/MethodType +java/lang/BootstrapMethodError +java/lang/invoke/CallSite +java/lang/invoke/ConstantCallSite +java/lang/invoke/MutableCallSite +java/lang/invoke/VolatileCallSite +java/lang/StringBuffer +java/lang/AbstractStringBuilder +java/lang/Appendable +java/lang/StringBuilder +sun/misc/Unsafe +java/io/ByteArrayInputStream +java/io/InputStream +java/io/Closeable +java/lang/AutoCloseable +java/io/File +java/net/URLClassLoader +java/net/URL +java/util/jar/Manifest +sun/misc/Launcher +sun/misc/Launcher$AppClassLoader +sun/misc/Launcher$ExtClassLoader +java/security/CodeSource +java/lang/StackTraceElement +java/nio/Buffer +java/lang/Boolean +java/lang/Character +java/lang/Float +java/lang/Number +java/lang/Double +java/lang/Byte +java/lang/Short +java/lang/Integer +java/lang/Long +java/lang/NullPointerException +java/lang/ArithmeticException +java/io/ObjectStreamField +java/lang/String$CaseInsensitiveComparator +java/util/Comparator +java/lang/RuntimePermission +java/security/BasicPermission +java/security/Permission +java/security/Guard +java/security/AccessController +java/lang/reflect/ReflectPermission +sun/reflect/ReflectionFactory$GetReflectionFactoryAction +java/security/PrivilegedAction +java/security/cert/Certificate +java/util/Vector +java/util/List +java/util/Collection +java/lang/Iterable +java/util/RandomAccess +java/util/AbstractList +java/util/AbstractCollection +java/util/Stack +sun/reflect/ReflectionFactory +java/lang/ref/Reference$Lock +java/lang/ref/Reference$ReferenceHandler +java/lang/ref/ReferenceQueue +java/lang/ref/ReferenceQueue$Null +java/lang/ref/ReferenceQueue$Lock +java/lang/ref/Finalizer$FinalizerThread +sun/misc/VM +java/util/Hashtable$Entry +java/util/Map$Entry +java/lang/Math +java/util/Hashtable$EntrySet +java/util/AbstractSet +java/util/Set +java/util/Collections +java/util/Collections$EmptySet +java/util/Collections$EmptyList +java/util/Collections$EmptyMap +java/util/AbstractMap +java/util/Collections$SynchronizedSet +java/util/Collections$SynchronizedCollection +java/util/Objects +java/util/Hashtable$Enumerator +java/util/Enumeration +java/util/Iterator +java/lang/Runtime +sun/misc/Version +java/io/FileInputStream +java/io/FileDescriptor +java/io/FileDescriptor$1 +sun/misc/JavaIOFileDescriptorAccess +sun/misc/SharedSecrets +java/lang/NoSuchMethodError +java/lang/IncompatibleClassChangeError +java/util/ArrayList +java/util/Collections$UnmodifiableRandomAccessList +java/util/Collections$UnmodifiableList +java/util/Collections$UnmodifiableCollection +sun/reflect/Reflection +java/util/HashMap +java/util/HashMap$Node +java/io/FileOutputStream +java/io/OutputStream +java/io/Flushable +java/io/BufferedInputStream +java/io/FilterInputStream +java/util/concurrent/atomic/AtomicReferenceFieldUpdater +java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl +java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl$1 +java/security/PrivilegedExceptionAction +java/lang/Class$3 +java/lang/Class$ReflectionData +java/lang/Class$Atomic +sun/reflect/generics/repository/ClassRepository +sun/reflect/generics/repository/GenericDeclRepository +sun/reflect/generics/repository/AbstractRepository +java/lang/Class$AnnotationData +sun/reflect/annotation/AnnotationType +java/lang/ClassValue$ClassValueMap +java/util/WeakHashMap +java/lang/reflect/Modifier +java/lang/reflect/ReflectAccess +sun/reflect/LangReflectAccess +sun/reflect/misc/ReflectUtil +java/io/PrintStream +java/io/FilterOutputStream +java/io/BufferedOutputStream +java/io/OutputStreamWriter +java/io/Writer +sun/nio/cs/StreamEncoder +java/nio/charset/Charset +sun/nio/cs/StandardCharsets +sun/nio/cs/FastCharsetProvider +java/nio/charset/spi/CharsetProvider +sun/nio/cs/StandardCharsets$Aliases +sun/util/PreHashedMap +sun/nio/cs/StandardCharsets$Classes +sun/nio/cs/StandardCharsets$Cache +java/lang/ThreadLocal +java/util/concurrent/atomic/AtomicInteger +sun/security/action/GetPropertyAction +java/util/Arrays +sun/nio/cs/MS1252 +sun/nio/cs/HistoricallyNamedCharset +sun/nio/cs/SingleByte +java/lang/Class$1 +sun/reflect/ReflectionFactory$1 +sun/reflect/NativeConstructorAccessorImpl +sun/reflect/DelegatingConstructorAccessorImpl +sun/nio/cs/SingleByte$Encoder +sun/nio/cs/ArrayEncoder +java/nio/charset/CharsetEncoder +java/nio/charset/CodingErrorAction +java/nio/ByteBuffer +java/nio/HeapByteBuffer +java/nio/Bits +java/nio/ByteOrder +java/nio/Bits$1 +sun/misc/JavaNioAccess +java/io/BufferedWriter +java/io/DefaultFileSystem +java/io/WinNTFileSystem +java/io/FileSystem +java/io/ExpiringCache +java/io/ExpiringCache$1 +java/util/LinkedHashMap +java/io/File$PathStatus +java/lang/Enum +java/nio/file/Path +java/nio/file/Watchable +java/lang/ClassLoader$3 +java/io/ExpiringCache$Entry +java/util/LinkedHashMap$Entry +java/lang/ClassLoader$NativeLibrary +java/lang/Terminator +java/lang/Terminator$1 +sun/misc/SignalHandler +sun/misc/Signal +sun/misc/NativeSignalHandler +java/lang/Integer$IntegerCache +sun/misc/OSEnvironment +sun/io/Win32ErrorMode +java/lang/System$2 +sun/misc/JavaLangAccess +java/lang/IllegalArgumentException +java/lang/Compiler +java/lang/Compiler$1 +sun/misc/Launcher$Factory +java/net/URLStreamHandlerFactory +sun/security/util/Debug +java/lang/ClassLoader$ParallelLoaders +java/util/WeakHashMap$Entry +java/util/Collections$SetFromMap +java/util/WeakHashMap$KeySet +java/net/URLClassLoader$7 +sun/misc/JavaNetAccess +java/util/StringTokenizer +sun/misc/Launcher$ExtClassLoader$1 +sun/misc/MetaIndex +java/io/BufferedReader +java/io/Reader +java/lang/Readable +java/io/FileReader +java/io/InputStreamReader +sun/nio/cs/StreamDecoder +sun/nio/cs/SingleByte$Decoder +sun/nio/cs/ArrayDecoder +java/nio/charset/CharsetDecoder +java/nio/CharBuffer +java/nio/HeapCharBuffer +java/nio/charset/CoderResult +java/nio/charset/CoderResult$1 +java/nio/charset/CoderResult$Cache +java/nio/charset/CoderResult$2 +java/lang/reflect/Array +java/util/Locale +java/util/Locale$Cache +sun/util/locale/LocaleObjectCache +java/util/concurrent/ConcurrentHashMap +java/util/concurrent/ConcurrentMap +java/util/concurrent/ConcurrentHashMap$Segment +java/util/concurrent/locks/ReentrantLock +java/util/concurrent/locks/Lock +java/util/concurrent/ConcurrentHashMap$Node +java/util/concurrent/ConcurrentHashMap$CounterCell +java/util/concurrent/ConcurrentHashMap$KeySetView +java/util/concurrent/ConcurrentHashMap$CollectionView +java/util/concurrent/ConcurrentHashMap$ValuesView +java/util/concurrent/ConcurrentHashMap$EntrySetView +sun/util/locale/BaseLocale +sun/util/locale/BaseLocale$Cache +sun/util/locale/BaseLocale$Key +sun/util/locale/LocaleObjectCache$CacheEntry +java/util/Locale$LocaleKey +sun/util/locale/LocaleUtils +java/lang/CharacterData +java/lang/CharacterDataLatin1 +java/util/HashMap$TreeNode +java/io/FileInputStream$1 +sun/net/www/ParseUtil +java/util/BitSet +java/net/Parts +sun/net/www/protocol/file/Handler +java/net/URLStreamHandler +java/security/ProtectionDomain$JavaSecurityAccessImpl +sun/misc/JavaSecurityAccess +java/security/ProtectionDomain$2 +sun/misc/JavaSecurityProtectionDomainAccess +java/security/ProtectionDomain$Key +java/security/Principal +java/util/HashSet +sun/misc/URLClassPath +sun/net/www/protocol/jar/Handler +sun/misc/Launcher$AppClassLoader$1 +java/lang/SystemClassLoaderAction +java/lang/invoke/MethodHandleImpl +java/lang/invoke/MethodHandleImpl$1 +java/lang/invoke/MethodHandleImpl$2 +java/util/function/Function +java/lang/invoke/MethodHandleImpl$3 +java/lang/invoke/MethodHandleImpl$4 +java/lang/ClassValue +java/lang/ClassValue$Entry +java/lang/ClassValue$Identity +java/lang/ClassValue$Version +java/lang/invoke/MemberName$Factory +java/lang/invoke/MethodHandleStatics +java/lang/invoke/MethodHandleStatics$1 +sun/misc/PostVMInitHook +sun/usagetracker/UsageTrackerClient +java/util/concurrent/atomic/AtomicBoolean +sun/usagetracker/UsageTrackerClient$1 +sun/usagetracker/UsageTrackerClient$4 +sun/usagetracker/UsageTrackerClient$2 +java/lang/ProcessEnvironment +java/lang/ProcessEnvironment$NameComparator +java/lang/ProcessEnvironment$EntryComparator +java/util/Collections$UnmodifiableMap +java/util/TreeMap +java/util/NavigableMap +java/util/SortedMap +java/lang/ProcessEnvironment$CheckedEntrySet +java/util/HashMap$EntrySet +java/lang/ProcessEnvironment$CheckedEntrySet$1 +java/util/HashMap$EntryIterator +java/util/HashMap$HashIterator +java/lang/ProcessEnvironment$CheckedEntry +java/util/TreeMap$Entry +sun/usagetracker/UsageTrackerClient$3 +java/lang/StringCoding +java/lang/ThreadLocal$ThreadLocalMap +java/lang/ThreadLocal$ThreadLocalMap$Entry +sun/nio/cs/UTF_8 +sun/nio/cs/Unicode +java/lang/StringCoding$StringEncoder +sun/nio/cs/UTF_8$Encoder +java/io/FileOutputStream$1 +sun/launcher/LauncherHelper +java/lang/StringCoding$StringDecoder +java/net/URLClassLoader$1 +sun/net/util/URLUtil +sun/misc/URLClassPath$3 +sun/misc/URLClassPath$JarLoader +sun/misc/URLClassPath$Loader +java/util/zip/ZipFile +java/util/zip/ZipConstants +java/util/zip/ZipFile$1 +sun/misc/JavaUtilZipFileAccess +sun/misc/URLClassPath$JarLoader$1 +sun/misc/FileURLMapper +java/util/jar/JarFile +java/util/jar/JavaUtilJarAccessImpl +sun/misc/JavaUtilJarAccess +java/nio/charset/StandardCharsets +sun/nio/cs/US_ASCII +sun/nio/cs/ISO_8859_1 +sun/nio/cs/UTF_16BE +sun/nio/cs/UTF_16LE +sun/nio/cs/UTF_16 +java/util/ArrayDeque +java/util/Deque +java/util/Queue +java/util/zip/ZipCoder +sun/misc/PerfCounter +sun/misc/Perf$GetPerfAction +sun/misc/Perf +sun/misc/PerfCounter$CoreCounters +sun/nio/ch/DirectBuffer +java/nio/DirectByteBuffer +java/nio/MappedByteBuffer +java/nio/DirectLongBufferU +java/nio/LongBuffer +sun/misc/JarIndex +sun/misc/ExtensionDependency +java/util/zip/ZipEntry +java/util/jar/JarFile$JarFileEntry +java/util/jar/JarEntry +java/util/zip/ZipFile$ZipFileInputStream +java/util/zip/Inflater +java/util/zip/ZStreamRef +java/util/zip/ZipFile$ZipFileInflaterInputStream +java/util/zip/InflaterInputStream +sun/misc/IOUtils +sun/misc/URLClassPath$JarLoader$2 +sun/misc/Resource +sun/nio/ByteBuffered +java/security/Permissions +java/security/PermissionCollection +sun/net/www/protocol/file/FileURLConnection +sun/net/www/URLConnection +java/net/URLConnection +sun/net/www/MessageHeader +java/io/FilePermission +java/io/FilePermission$1 +java/io/FilePermissionCollection +java/security/AllPermission +java/security/UnresolvedPermission +java/security/BasicPermissionCollection +javax/swing/JLabel +javax/swing/SwingConstants +javax/accessibility/Accessible +javax/swing/JComponent +javax/swing/TransferHandler$HasGetTransferHandler +java/awt/Container +java/awt/Component +java/awt/image/ImageObserver +java/awt/MenuContainer +sun/launcher/LauncherHelper$FXHelper +java/lang/Class$MethodArray +java/lang/InterruptedException +javax/swing/JFrame +javax/swing/WindowConstants +javax/swing/RootPaneContainer +java/awt/Frame +java/awt/Window +java/util/concurrent/ConcurrentHashMap$ForwardingNode +java/awt/Graphics +java/lang/Void +sun/util/logging/PlatformLogger +sun/util/logging/PlatformLogger$Level +sun/util/logging/PlatformLogger$1 +sun/util/logging/PlatformLogger$DefaultLoggerProxy +sun/util/logging/PlatformLogger$LoggerProxy +sun/util/logging/PlatformLogger$JavaLoggerProxy +sun/util/logging/LoggingSupport +sun/util/logging/LoggingSupport$1 +java/util/logging/LoggingProxyImpl +sun/util/logging/LoggingProxy +sun/reflect/UnsafeFieldAccessorFactory +sun/reflect/UnsafeQualifiedStaticObjectFieldAccessorImpl +sun/reflect/UnsafeQualifiedStaticFieldAccessorImpl +sun/util/logging/LoggingSupport$2 +java/util/Date +sun/util/calendar/CalendarSystem +sun/util/calendar/Gregorian +sun/util/calendar/BaseCalendar +sun/util/calendar/AbstractCalendar +java/awt/Component$AWTTreeLock +java/awt/Toolkit +java/awt/Toolkit$4 +sun/awt/AWTAccessor$ToolkitAccessor +sun/awt/AWTAccessor +java/awt/Toolkit$5 +sun/util/CoreResourceBundleControl +java/util/ResourceBundle$Control +java/util/Arrays$ArrayList +java/util/ResourceBundle$Control$CandidateListCache +java/util/ResourceBundle +java/util/ResourceBundle$1 +java/util/spi/ResourceBundleControlProvider +java/util/ServiceLoader +java/util/ServiceLoader$LazyIterator +java/util/ServiceLoader$1 +java/util/LinkedHashMap$LinkedEntrySet +java/util/LinkedHashMap$LinkedEntryIterator +java/util/LinkedHashMap$LinkedHashIterator +sun/misc/Launcher$BootClassPathHolder +sun/misc/Launcher$BootClassPathHolder$1 +sun/misc/URLClassPath$2 +java/lang/ClassLoader$2 +sun/misc/URLClassPath$1 +java/net/URLClassLoader$3 +sun/misc/CompoundEnumeration +java/io/FileNotFoundException +java/io/IOException +java/security/PrivilegedActionException +java/net/URLClassLoader$3$1 +java/util/ResourceBundle$RBClassLoader +java/util/ResourceBundle$RBClassLoader$1 +java/util/ResourceBundle$CacheKey +java/util/ResourceBundle$LoaderReference +java/util/ResourceBundle$CacheKeyReference +java/util/ResourceBundle$SingleFormatControl +java/util/LinkedList +java/util/AbstractSequentialList +java/util/LinkedList$Node +sun/awt/resources/awt +java/util/ListResourceBundle +java/awt/Toolkit$3 +java/awt/Toolkit$1 +java/util/Properties$LineReader +java/awt/GraphicsEnvironment +java/lang/invoke/LambdaMetafactory +java/lang/invoke/MethodHandles$Lookup +java/lang/invoke/MethodType$ConcurrentWeakInternSet +java/lang/invoke/MethodTypeForm +java/lang/invoke/Invokers +java/lang/invoke/MethodType$ConcurrentWeakInternSet$WeakEntry +java/lang/invoke/MethodHandles +sun/invoke/util/Wrapper +sun/invoke/util/Wrapper$Format +java/lang/Byte$ByteCache +java/lang/Short$ShortCache +java/lang/Character$CharacterCache +java/lang/Long$LongCache +sun/invoke/util/VerifyAccess +sun/invoke/util/ValueConversions +java/lang/NoSuchMethodException +java/lang/invoke/LambdaForm$BasicType +java/lang/invoke/LambdaForm$Name +java/lang/invoke/LambdaForm$NamedFunction +java/lang/invoke/SimpleMethodHandle +java/lang/invoke/BoundMethodHandle +java/lang/invoke/BoundMethodHandle$SpeciesData +java/lang/invoke/BoundMethodHandle$Factory +java/lang/invoke/BoundMethodHandle$Species_L +java/util/HashMap$Values +java/util/HashMap$ValueIterator +sun/invoke/util/BytecodeDescriptor +java/lang/invoke/DirectMethodHandle$Lazy +java/lang/InstantiationException +java/util/Collections$UnmodifiableCollection$1 +java/util/AbstractList$Itr +java/lang/invoke/InvokerBytecodeGenerator +jdk/internal/org/objectweb/asm/ClassWriter +jdk/internal/org/objectweb/asm/ClassVisitor +jdk/internal/org/objectweb/asm/ByteVector +jdk/internal/org/objectweb/asm/Item +jdk/internal/org/objectweb/asm/MethodWriter +jdk/internal/org/objectweb/asm/MethodVisitor +jdk/internal/org/objectweb/asm/Type +jdk/internal/org/objectweb/asm/Label +jdk/internal/org/objectweb/asm/Frame +jdk/internal/org/objectweb/asm/AnnotationWriter +jdk/internal/org/objectweb/asm/AnnotationVisitor +java/lang/invoke/MethodHandleImpl$Intrinsic +java/lang/invoke/InvokerBytecodeGenerator$2 +sun/invoke/util/VerifyType +sun/invoke/empty/Empty +java/lang/NoSuchFieldException +java/lang/invoke/InvokerBytecodeGenerator$CpPatch +java/lang/invoke/DirectMethodHandle$Accessor +java/util/ArrayList$Itr +java/util/RandomAccessSubList +java/util/SubList +java/util/SubList$1 +java/util/ListIterator +java/util/AbstractList$ListItr +java/lang/invoke/MethodHandleImpl$AsVarargsCollector +java/lang/invoke/DelegatingMethodHandle +java/lang/invoke/WrongMethodTypeException +java/lang/invoke/MethodHandleImpl$Lazy +java/lang/invoke/MethodHandleImpl$IntrinsicMethodHandle +java/lang/NoSuchFieldError +java/lang/IllegalAccessException +java/lang/invoke/LambdaFormEditor +java/lang/invoke/LambdaFormEditor$Transform$Kind +java/lang/invoke/LambdaFormEditor$Transform +java/lang/invoke/LambdaFormBuffer +jdk/internal/org/objectweb/asm/FieldWriter +jdk/internal/org/objectweb/asm/FieldVisitor +java/lang/invoke/InnerClassLambdaMetafactory +java/lang/invoke/AbstractValidatingLambdaMetafactory +java/util/PropertyPermission +java/security/AccessController$1 +sun/security/util/SecurityConstants +java/net/NetPermission +java/security/SecurityPermission +java/net/SocketPermission +sun/security/action/GetBooleanAction +java/security/AllPermissionCollection +java/lang/invoke/InfoFromMemberName +java/lang/invoke/MethodHandleInfo +java/lang/invoke/InnerClassLambdaMetafactory$ForwardingMethodGenerator +java/lang/invoke/TypeConvertingMethodAdapter +java/lang/invoke/InnerClassLambdaMetafactory$1 +java/awt/Insets +java/awt/event/InputEvent +java/awt/event/ComponentEvent +java/awt/AWTEvent +java/util/EventObject +java/awt/AWTEvent$1 +sun/awt/AWTAccessor$AWTEventAccessor +java/awt/event/NativeLibLoader +java/awt/event/NativeLibLoader$1 +java/awt/event/InputEvent$1 +sun/awt/AWTAccessor$InputEventAccessor +sun/awt/windows/WComponentPeer +java/awt/peer/ComponentPeer +java/awt/dnd/peer/DropTargetPeer +sun/awt/windows/WObjectPeer +java/awt/Font +java/awt/Font$FontAccessImpl +sun/font/FontAccess +java/awt/geom/AffineTransform +sun/font/AttributeValues +sun/font/EAttribute +java/text/AttributedCharacterIterator$Attribute +java/lang/Class$4 +sun/reflect/NativeMethodAccessorImpl +sun/reflect/DelegatingMethodAccessorImpl +java/awt/font/TextAttribute +java/awt/Component$1 +sun/awt/AWTAccessor$ComponentAccessor +java/awt/Component$DummyRequestFocusController +sun/awt/RequestFocusController +java/awt/LayoutManager +java/awt/LightweightDispatcher +java/awt/event/AWTEventListener +java/util/EventListener +java/awt/Dimension +java/awt/geom/Dimension2D +java/awt/Container$1 +sun/awt/AWTAccessor$ContainerAccessor +javax/swing/JComponent$1 +java/awt/ComponentOrientation +java/awt/Component$3 +sun/awt/AppContext +java/util/IdentityHashMap +java/util/Collections$SynchronizedMap +sun/awt/AppContext$GetAppContextLock +sun/awt/AppContext$6 +sun/misc/JavaAWTAccess +sun/awt/AppContext$3 +sun/awt/AppContext$2 +sun/awt/SunToolkit +sun/awt/WindowClosingSupport +sun/awt/WindowClosingListener +sun/awt/ComponentFactory +sun/awt/InputMethodSupport +sun/awt/KeyboardFocusManagerPeerProvider +java/util/concurrent/locks/ReentrantLock$NonfairSync +java/util/concurrent/locks/ReentrantLock$Sync +java/util/concurrent/locks/AbstractQueuedSynchronizer +java/util/concurrent/locks/AbstractOwnableSynchronizer +java/util/concurrent/locks/AbstractQueuedSynchronizer$Node +java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject +java/util/concurrent/locks/Condition +sun/misc/SoftCache +sun/awt/AppContext$State +sun/awt/AppContext$1 +java/awt/EventQueue +java/awt/EventQueue$1 +java/awt/EventQueue$2 +sun/awt/AWTAccessor$EventQueueAccessor +java/awt/Queue +sun/awt/MostRecentKeyValue +sun/awt/PostEventQueue +javax/swing/event/EventListenerList +javax/swing/SwingUtilities +javax/swing/RepaintManager +javax/swing/RepaintManager$DisplayChangedHandler +sun/awt/DisplayChangedListener +javax/swing/RepaintManager$1 +sun/swing/SwingAccessor$RepaintManagerAccessor +sun/swing/SwingAccessor +sun/awt/Win32GraphicsEnvironment +sun/java2d/SunGraphicsEnvironment +sun/awt/windows/WToolkit +sun/awt/windows/WToolkit$1 +sun/java2d/SurfaceData +java/awt/Transparency +sun/java2d/DisposerTarget +sun/java2d/StateTrackable +sun/java2d/Surface +sun/java2d/InvalidPipeException +java/lang/IllegalStateException +sun/java2d/NullSurfaceData +sun/java2d/StateTrackable$State +sun/java2d/loops/SurfaceType +sun/awt/image/PixelConverter +sun/awt/image/PixelConverter$Xrgb +sun/awt/image/PixelConverter$Argb +sun/awt/image/PixelConverter$ArgbPre +sun/awt/image/PixelConverter$Xbgr +sun/awt/image/PixelConverter$Rgba +sun/awt/image/PixelConverter$RgbaPre +sun/awt/image/PixelConverter$Ushort565Rgb +sun/awt/image/PixelConverter$Ushort555Rgb +sun/awt/image/PixelConverter$Ushort555Rgbx +sun/awt/image/PixelConverter$Ushort4444Argb +sun/awt/image/PixelConverter$ByteGray +sun/awt/image/PixelConverter$UshortGray +sun/awt/image/PixelConverter$Rgbx +sun/awt/image/PixelConverter$Bgrx +sun/awt/image/PixelConverter$ArgbBm +java/awt/image/ColorModel +java/awt/image/ColorModel$1 +java/awt/image/DirectColorModel +java/awt/image/PackedColorModel +java/awt/color/ColorSpace +java/awt/color/ICC_Profile +sun/java2d/cmm/ProfileDeferralInfo +sun/java2d/cmm/ProfileDeferralMgr +java/awt/color/ICC_ProfileRGB +java/awt/color/ICC_Profile$1 +sun/java2d/cmm/ProfileActivator +java/awt/color/ICC_ColorSpace +sun/java2d/StateTrackableDelegate +sun/java2d/StateTrackableDelegate$2 +sun/java2d/pipe/NullPipe +sun/java2d/pipe/PixelDrawPipe +sun/java2d/pipe/PixelFillPipe +sun/java2d/pipe/ShapeDrawPipe +sun/java2d/pipe/TextPipe +sun/java2d/pipe/DrawImagePipe +java/awt/image/IndexColorModel +sun/java2d/pipe/LoopPipe +sun/java2d/pipe/ParallelogramPipe +sun/java2d/pipe/LoopBasedPipe +sun/java2d/pipe/RenderingEngine +sun/java2d/pipe/RenderingEngine$1 +sun/dc/DuctusRenderingEngine +sun/java2d/pipe/OutlineTextRenderer +sun/java2d/pipe/SolidTextRenderer +sun/java2d/pipe/GlyphListLoopPipe +sun/java2d/pipe/GlyphListPipe +sun/java2d/pipe/AATextRenderer +sun/java2d/pipe/LCDTextRenderer +sun/java2d/pipe/AlphaColorPipe +sun/java2d/pipe/CompositePipe +sun/java2d/SurfaceData$PixelToShapeLoopConverter +sun/java2d/pipe/PixelToShapeConverter +sun/java2d/SurfaceData$PixelToPgramLoopConverter +sun/java2d/pipe/PixelToParallelogramConverter +sun/java2d/pipe/TextRenderer +sun/java2d/pipe/SpanClipRenderer +sun/java2d/pipe/Region +sun/java2d/pipe/RegionIterator +sun/java2d/pipe/Region$ImmutableRegion +sun/java2d/pipe/AAShapePipe +sun/java2d/pipe/AlphaPaintPipe +sun/java2d/pipe/SpanShapeRenderer$Composite +sun/java2d/pipe/SpanShapeRenderer +sun/java2d/pipe/GeneralCompositePipe +sun/java2d/pipe/DrawImage +sun/java2d/loops/RenderCache +sun/java2d/loops/RenderCache$Entry +sun/awt/image/SunVolatileImage +sun/java2d/DestSurfaceProvider +java/awt/image/VolatileImage +java/awt/Image +java/awt/ImageCapabilities +java/awt/Image$1 +sun/awt/image/SurfaceManager$ImageAccessor +sun/awt/image/SurfaceManager +sun/awt/image/VolatileSurfaceManager +sun/awt/windows/WToolkit$2 +sun/java2d/windows/WindowsFlags +sun/java2d/windows/WindowsFlags$1 +sun/java2d/WindowsSurfaceManagerFactory +sun/java2d/SurfaceManagerFactory +sun/awt/SunDisplayChanger +sun/java2d/SunGraphicsEnvironment$1 +sun/misc/FloatingDecimal +sun/misc/FloatingDecimal$ExceptionalBinaryToASCIIBuffer +sun/misc/FloatingDecimal$BinaryToASCIIConverter +sun/misc/FloatingDecimal$BinaryToASCIIBuffer +sun/misc/FloatingDecimal$1 +sun/misc/FloatingDecimal$PreparedASCIIToBinaryBuffer +sun/misc/FloatingDecimal$ASCIIToBinaryConverter +sun/misc/FloatingDecimal$ASCIIToBinaryBuffer +java/awt/Toolkit$2 +java/awt/Toolkit$DesktopPropertyChangeSupport +java/beans/PropertyChangeSupport +java/beans/PropertyChangeSupport$PropertyChangeListenerMap +java/beans/ChangeListenerMap +java/beans/PropertyChangeListener +sun/awt/SunToolkit$ModalityListenerList +sun/awt/ModalityListener +sun/misc/PerformanceLogger +sun/misc/PerformanceLogger$TimeData +sun/awt/windows/WToolkit$ToolkitDisposer +sun/java2d/DisposerRecord +sun/java2d/Disposer +sun/java2d/Disposer$1 +sun/misc/ThreadGroupUtils +sun/awt/AWTAutoShutdown +java/lang/invoke/DirectMethodHandle$Special +java/lang/ApplicationShutdownHooks +java/lang/ApplicationShutdownHooks$1 +java/lang/Shutdown +java/lang/Shutdown$Lock +java/awt/Rectangle +java/awt/Shape +java/awt/geom/Rectangle2D +java/awt/geom/RectangularShape +javax/swing/RepaintManager$ProcessingRunnable +com/sun/java/swing/SwingUtilities3 +javax/swing/UIManager +javax/swing/UIManager$LookAndFeelInfo +sun/awt/OSInfo +sun/awt/OSInfo$WindowsVersion +sun/awt/OSInfo$1 +sun/awt/OSInfo$OSType +sun/awt/HeadlessToolkit +sun/awt/windows/WDesktopProperties +sun/awt/windows/ThemeReader +java/util/concurrent/locks/ReentrantReadWriteLock +java/util/concurrent/locks/ReadWriteLock +sun/nio/ch/Interruptible +java/util/concurrent/locks/ReentrantReadWriteLock$NonfairSync +java/util/concurrent/locks/ReentrantReadWriteLock$Sync +java/util/concurrent/locks/ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter +java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock +java/util/concurrent/locks/ReentrantReadWriteLock$WriteLock +java/awt/Color +java/awt/Paint +sun/awt/windows/WDesktopProperties$WinPlaySound +java/awt/RenderingHints +sun/awt/SunHints +sun/awt/SunHints$Key +java/awt/RenderingHints$Key +sun/awt/SunHints$Value +sun/awt/SunHints$LCDContrastKey +java/util/HashMap$KeySet +java/util/HashMap$KeyIterator +java/util/Arrays$LegacyMergeSort +java/util/ComparableTimSort +java/beans/PropertyChangeEvent +java/awt/Toolkit$DesktopPropertyChangeSupport$1 +java/util/IdentityHashMap$Values +java/util/IdentityHashMap$ValueIterator +java/util/IdentityHashMap$IdentityHashMapIterator +sun/swing/SwingUtilities2 +java/awt/font/FontRenderContext +sun/swing/StringUIClientPropertyKey +sun/swing/UIClientPropertyKey +sun/swing/SwingUtilities2$LSBCacheEntry +javax/swing/UIManager$LAFState +javax/swing/UIDefaults +javax/swing/MultiUIDefaults +javax/swing/UIManager$1 +javax/swing/plaf/metal/MetalLookAndFeel +javax/swing/plaf/basic/BasicLookAndFeel +javax/swing/LookAndFeel +sun/swing/DefaultLookup +javax/swing/plaf/metal/OceanTheme +javax/swing/plaf/metal/DefaultMetalTheme +javax/swing/plaf/metal/MetalTheme +javax/swing/plaf/ColorUIResource +javax/swing/plaf/UIResource +sun/swing/PrintColorUIResource +javax/swing/plaf/metal/DefaultMetalTheme$FontDelegate +javax/swing/plaf/FontUIResource +sun/swing/SwingLazyValue +javax/swing/UIDefaults$LazyValue +javax/swing/UIDefaults$ActiveValue +javax/swing/plaf/InsetsUIResource +javax/swing/plaf/BorderUIResource$EmptyBorderUIResource +javax/swing/border/EmptyBorder +javax/swing/border/AbstractBorder +javax/swing/border/Border +sun/swing/SwingUtilities2$2 +javax/swing/plaf/basic/BasicLookAndFeel$2 +javax/swing/plaf/DimensionUIResource +javax/swing/UIDefaults$LazyInputMap +javax/swing/plaf/metal/MetalLookAndFeel$FontActiveValue +sun/swing/SwingUtilities2$AATextInfo +javax/swing/plaf/metal/MetalLookAndFeel$AATextListener +java/beans/PropertyChangeListenerProxy +java/util/EventListenerProxy +javax/swing/plaf/metal/OceanTheme$1 +javax/swing/plaf/metal/OceanTheme$2 +javax/swing/plaf/metal/OceanTheme$3 +javax/swing/plaf/metal/OceanTheme$4 +javax/swing/plaf/metal/OceanTheme$5 +javax/swing/plaf/metal/OceanTheme$6 +javax/swing/SwingPaintEventDispatcher +sun/awt/PaintEventDispatcher +java/awt/KeyboardFocusManager +java/awt/KeyEventDispatcher +java/awt/KeyEventPostProcessor +java/awt/KeyboardFocusManager$1 +sun/awt/AWTAccessor$KeyboardFocusManagerAccessor +java/awt/AWTKeyStroke +java/awt/AWTKeyStroke$1 +java/awt/DefaultKeyboardFocusManager +java/awt/DefaultKeyboardFocusManager$1 +sun/awt/AWTAccessor$DefaultKeyboardFocusManagerAccessor +java/awt/DefaultFocusTraversalPolicy +java/awt/ContainerOrderFocusTraversalPolicy +java/awt/FocusTraversalPolicy +java/util/Collections$UnmodifiableSet +sun/awt/windows/WKeyboardFocusManagerPeer +sun/awt/KeyboardFocusManagerPeerImpl +java/awt/peer/KeyboardFocusManagerPeer +javax/swing/UIManager$2 +javax/swing/JRootPane +javax/swing/UIDefaults$TextAndMnemonicHashMap +com/sun/swing/internal/plaf/metal/resources/metal +sun/util/ResourceBundleEnumeration +com/sun/swing/internal/plaf/basic/resources/basic +javax/swing/plaf/metal/MetalLabelUI +javax/swing/plaf/basic/BasicLabelUI +javax/swing/plaf/LabelUI +javax/swing/plaf/ComponentUI +sun/reflect/misc/MethodUtil +sun/reflect/misc/MethodUtil$1 +sun/net/www/protocol/jar/JarURLConnection +java/net/JarURLConnection +sun/net/www/protocol/jar/JarFileFactory +sun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController +java/net/HttpURLConnection +sun/net/www/protocol/jar/URLJarFile +sun/net/www/protocol/jar/URLJarFile$URLJarFileEntry +sun/net/www/protocol/jar/JarURLConnection$JarURLInputStream +java/lang/UnsupportedOperationException +java/lang/reflect/InvocationTargetException +javax/swing/plaf/metal/DefaultMetalTheme$FontDelegate$1 +javax/swing/plaf/basic/BasicHTML +sun/awt/util/IdentityArrayList +java/awt/Window$Type +java/awt/Window$1 +sun/awt/AWTAccessor$WindowAccessor +java/awt/Frame$1 +sun/awt/AWTAccessor$FrameAccessor +java/awt/Cursor +java/awt/Point +java/awt/geom/Point2D +java/awt/Cursor$1 +sun/awt/AWTAccessor$CursorAccessor +java/awt/GraphicsDevice +sun/java2d/d3d/D3DGraphicsDevice +sun/awt/Win32GraphicsDevice +sun/misc/PerfCounter$WindowsClientCounters +sun/java2d/d3d/D3DRenderQueue +sun/java2d/pipe/RenderQueue +sun/java2d/pipe/RenderBuffer +sun/java2d/d3d/D3DRenderQueue$1 +sun/java2d/d3d/D3DGraphicsDevice$1Result +sun/java2d/d3d/D3DGraphicsDevice$1 +sun/java2d/d3d/D3DContext$D3DContextCaps +sun/java2d/pipe/hw/ContextCapabilities +sun/awt/Win32GraphicsConfig +sun/awt/image/SurfaceManager$ProxiedGraphicsConfig +java/awt/GraphicsConfiguration +java/awt/BorderLayout +java/awt/LayoutManager2 +java/awt/Dialog$ModalExclusionType +java/awt/Window$WindowDisposerRecord +javax/swing/JPanel +java/awt/FlowLayout +javax/swing/plaf/basic/BasicPanelUI +javax/swing/plaf/PanelUI +java/awt/Component$BaselineResizeBehavior +sun/swing/SwingLazyValue$1 +javax/swing/JLayeredPane +javax/swing/JRootPane$1 +javax/swing/ArrayTable +javax/swing/JRootPane$RootLayout +javax/swing/BufferStrategyPaintManager +javax/swing/RepaintManager$PaintManager +javax/swing/FocusManager +javax/swing/LayoutFocusTraversalPolicy +javax/swing/SortingFocusTraversalPolicy +javax/swing/InternalFrameFocusTraversalPolicy +javax/swing/SwingContainerOrderFocusTraversalPolicy +javax/swing/SortingFocusTraversalPolicy$1 +java/util/Spliterator$OfLong +java/util/Spliterator$OfPrimitive +java/util/Spliterator +java/util/Spliterator$OfInt +java/util/Spliterator$OfDouble +java/util/stream/IntStream +java/util/stream/BaseStream +java/util/stream/Stream +java/util/stream/DoubleStream +java/util/stream/LongStream +java/util/function/BinaryOperator +java/util/function/BiFunction +java/util/function/DoubleBinaryOperator +java/util/function/IntBinaryOperator +java/util/function/LongBinaryOperator +java/util/function/IntToLongFunction +java/util/function/IntFunction +java/util/function/IntToDoubleFunction +java/util/function/IntUnaryOperator +javax/swing/SwingDefaultFocusTraversalPolicy +javax/swing/LayoutComparator +javax/swing/plaf/metal/MetalRootPaneUI +javax/swing/plaf/basic/BasicRootPaneUI +javax/swing/plaf/RootPaneUI +javax/swing/plaf/basic/BasicRootPaneUI$RootPaneInputMap +javax/swing/plaf/ComponentInputMapUIResource +javax/swing/ComponentInputMap +javax/swing/InputMap +javax/swing/plaf/InputMapUIResource +javax/swing/KeyStroke +java/awt/VKCollection +java/awt/event/KeyEvent +java/awt/event/KeyEvent$1 +sun/awt/AWTAccessor$KeyEventAccessor +sun/reflect/UnsafeQualifiedStaticIntegerFieldAccessorImpl +javax/swing/plaf/basic/LazyActionMap +javax/swing/plaf/ActionMapUIResource +javax/swing/ActionMap +sun/awt/windows/WFramePeer +java/awt/peer/FramePeer +java/awt/peer/WindowPeer +java/awt/peer/ContainerPeer +sun/awt/windows/WWindowPeer +sun/awt/windows/WPanelPeer +java/awt/peer/PanelPeer +sun/awt/windows/WCanvasPeer +java/awt/peer/CanvasPeer +sun/awt/windows/WWindowPeer$ActiveWindowListener +sun/awt/windows/WWindowPeer$GuiDisposedListener +sun/awt/RepaintArea +sun/awt/ExtendedKeyCodes +sun/awt/EmbeddedFrame +sun/awt/LightweightFrame +sun/awt/im/InputMethodWindow +sun/awt/windows/WComponentPeer$2 +javax/swing/RepaintManager$2 +java/awt/event/InvocationEvent +java/awt/ActiveEvent +java/awt/event/InvocationEvent$1 +sun/awt/AWTAccessor$InvocationEventAccessor +java/awt/EventQueue$5 +java/awt/EventDispatchThread +sun/awt/PeerEvent +java/awt/EventDispatchThread$1 +sun/awt/EventQueueItem +java/awt/Conditional +java/awt/EventDispatchThread$HierarchyEventFilter +java/awt/EventFilter +java/awt/event/WindowEvent +java/awt/ModalEventFilter +sun/awt/EventQueueDelegate +java/awt/event/PaintEvent +sun/java2d/ScreenUpdateManager +java/awt/event/MouseEvent +sun/java2d/d3d/D3DScreenUpdateManager +java/awt/EventFilter$FilterAction +sun/awt/dnd/SunDragSourceContextPeer +java/awt/dnd/peer/DragSourceContextPeer +java/awt/EventQueue$3 +java/awt/MenuComponent +java/awt/TrayIcon +java/awt/event/InputMethodEvent +sun/java2d/d3d/D3DGraphicsConfig +java/awt/event/ActionEvent +sun/java2d/pipe/hw/AccelGraphicsConfig +sun/java2d/pipe/hw/BufferedContextProvider +java/util/LinkedList$ListItr +sun/java2d/windows/GDIWindowSurfaceData +javax/swing/RepaintManager$2$1 +sun/java2d/loops/XORComposite +java/awt/Composite +sun/java2d/windows/GDIBlitLoops +sun/java2d/loops/Blit +sun/java2d/loops/GraphicsPrimitive +sun/java2d/loops/GraphicsPrimitiveMgr +sun/java2d/loops/CompositeType +sun/java2d/SunGraphics2D +sun/awt/ConstrainableGraphics +java/awt/Graphics2D +java/awt/AlphaComposite +java/awt/geom/Path2D +java/awt/geom/Path2D$Float +sun/java2d/loops/BlitBg +sun/java2d/loops/ScaledBlit +sun/java2d/loops/FillRect +sun/java2d/loops/FillSpans +sun/java2d/loops/FillParallelogram +sun/java2d/loops/DrawParallelogram +sun/java2d/loops/DrawLine +sun/java2d/loops/DrawRect +sun/java2d/loops/DrawPolygons +sun/java2d/loops/DrawPath +sun/java2d/loops/FillPath +sun/java2d/loops/MaskBlit +sun/java2d/loops/MaskFill +sun/java2d/loops/DrawGlyphList +sun/java2d/loops/DrawGlyphListAA +sun/java2d/loops/DrawGlyphListLCD +sun/java2d/loops/TransformHelper +java/awt/BasicStroke +java/awt/Stroke +sun/java2d/pipe/ValidatePipe +sun/java2d/loops/CustomComponent +sun/java2d/loops/GraphicsPrimitiveProxy +sun/java2d/loops/GeneralRenderer +sun/java2d/loops/GraphicsPrimitiveMgr$1 +sun/java2d/loops/GraphicsPrimitiveMgr$2 +sun/java2d/windows/GDIRenderer +sun/java2d/loops/RenderLoops +sun/java2d/loops/GraphicsPrimitiveMgr$PrimitiveSpec +java/util/TimSort +sun/java2d/DefaultDisposerRecord +sun/java2d/SurfaceDataProxy +sun/awt/image/SurfaceManager$FlushableCacheData +sun/java2d/SurfaceDataProxy$1 +sun/java2d/StateTracker +sun/java2d/StateTracker$1 +sun/java2d/StateTracker$2 +sun/awt/windows/WColor +sun/awt/windows/WFontPeer +sun/awt/PlatformFont +java/awt/peer/FontPeer +sun/awt/NativeLibLoader +sun/awt/NativeLibLoader$1 +sun/font/SunFontManager +sun/java2d/FontSupport +sun/font/FontManagerForSGE +sun/font/FontManager +sun/font/SunFontManager$TTFilter +java/io/FilenameFilter +sun/font/SunFontManager$T1Filter +sun/font/SunFontManager$1 +sun/font/FontManagerNativeLibrary +sun/font/FontManagerNativeLibrary$1 +sun/font/FontUtilities +sun/font/FontUtilities$1 +sun/font/TrueTypeFont +sun/font/FileFont +sun/font/PhysicalFont +sun/font/Font2D +sun/font/Type1Font +java/awt/geom/Point2D$Float +sun/font/StrikeMetrics +java/awt/geom/Rectangle2D$Float +java/awt/geom/GeneralPath +sun/font/CharToGlyphMapper +sun/font/PhysicalStrike +sun/font/FontStrike +sun/font/StrikeCache +sun/font/StrikeCache$1 +sun/font/GlyphList +sun/font/FontManagerFactory +sun/font/FontManagerFactory$1 +sun/awt/Win32FontManager +sun/awt/Win32FontManager$1 +sun/font/CompositeFont +sun/font/SunFontManager$2 +sun/font/SunFontManager$FontRegistrationInfo +sun/awt/windows/WFontConfiguration +sun/awt/FontConfiguration +sun/awt/FontDescriptor +java/io/DataInputStream +java/io/DataInput +sun/font/CompositeFontDescriptor +sun/font/Font2DHandle +sun/font/FontFamily +sun/font/SunFontManager$3 +sun/awt/Win32FontManager$2 +sun/awt/FontConfiguration$2 +sun/awt/windows/WingDings +sun/awt/windows/WingDings$Encoder +sun/awt/Symbol +sun/awt/Symbol$Encoder +sun/awt/im/InputMethodManager +sun/awt/im/ExecutableInputMethodManager +sun/awt/windows/WInputMethodDescriptor +java/awt/im/spi/InputMethodDescriptor +sun/awt/im/InputMethodLocator +sun/awt/im/ExecutableInputMethodManager$3 +java/awt/peer/LightweightPeer +sun/awt/NullComponentPeer +java/awt/EventQueue$4 +java/awt/SplashScreen +sun/awt/dnd/SunDropTargetEvent +java/awt/Dialog +java/awt/event/FocusEvent +java/util/concurrent/locks/LockSupport +java/awt/Dialog$ModalityType +sun/awt/TimedWindowEvent +java/awt/SequencedEvent +java/awt/SequencedEvent$1 +sun/awt/AWTAccessor$SequencedEventAccessor +java/awt/DefaultKeyboardFocusManager$DefaultKeyboardFocusManagerSentEvent +java/awt/SentEvent +sun/awt/windows/WGlobalCursorManager +sun/awt/event/IgnorePaintEvent +sun/awt/GlobalCursorManager +sun/awt/GlobalCursorManager$NativeUpdater +java/util/ArrayList$ListItr +sun/awt/CausedFocusEvent$Cause +java/awt/KeyboardFocusManager$HeavyweightFocusRequest +java/awt/DefaultKeyboardFocusManager$TypeAheadMarker +java/awt/KeyboardFocusManager$LightweightFocusRequest +sun/awt/CausedFocusEvent +java/util/IdentityHashMap$KeySet +java/util/IdentityHashMap$KeyIterator +javax/swing/RepaintManager$4 +sun/java2d/d3d/D3DSurfaceData$D3DWindowSurfaceData +sun/java2d/d3d/D3DSurfaceData +sun/java2d/pipe/hw/AccelSurface +java/awt/GraphicsCallback$PaintCallback +java/awt/GraphicsCallback +sun/awt/SunGraphicsCallback +javax/swing/BufferStrategyPaintManager$BufferInfo +java/awt/event/WindowListener +java/awt/event/ComponentAdapter +java/awt/event/ComponentListener +java/awt/AWTEventMulticaster +java/awt/event/ContainerListener +java/awt/event/FocusListener +java/awt/event/KeyListener +java/awt/event/MouseListener +java/awt/event/MouseMotionListener +java/awt/event/WindowFocusListener +java/awt/event/WindowStateListener +java/awt/event/ActionListener +java/awt/event/ItemListener +java/awt/event/AdjustmentListener +java/awt/event/TextListener +java/awt/event/InputMethodListener +java/awt/event/HierarchyListener +java/awt/event/HierarchyBoundsListener +java/awt/event/MouseWheelListener +java/awt/BufferCapabilities +java/awt/Component$BltSubRegionBufferStrategy +sun/awt/SubRegionShowable +java/awt/Component$BltBufferStrategy +java/awt/image/BufferStrategy +sun/awt/image/BufferedImageGraphicsConfig +sun/print/PrinterGraphicsConfig +sun/java2d/opengl/WGLGraphicsConfig +sun/java2d/opengl/OGLGraphicsConfig +sun/awt/image/BufImgVolatileSurfaceManager +java/awt/image/Raster +java/awt/image/DataBufferInt +java/awt/image/DataBuffer +java/awt/image/DataBuffer$1 +sun/awt/image/SunWritableRaster$DataStealer +sun/awt/image/SunWritableRaster +java/awt/image/WritableRaster +java/awt/image/SinglePixelPackedSampleModel +java/awt/image/SampleModel +sun/awt/image/IntegerInterleavedRaster +sun/awt/image/IntegerComponentRaster +sun/awt/image/NativeLibLoader +sun/awt/image/NativeLibLoader$1 +java/awt/image/BufferedImage +java/awt/image/WritableRenderedImage +java/awt/image/RenderedImage +java/awt/image/BufferedImage$1 +sun/awt/image/BufImgSurfaceData +sun/awt/image/BufImgSurfaceData$ICMColorData +sun/font/FontDesignMetrics +java/awt/FontMetrics +sun/font/FontDesignMetrics$MetricsKey +sun/font/FontStrikeDesc +sun/font/CompositeStrike +sun/font/FontStrikeDisposer +sun/java2d/Disposer$PollDisposable +sun/font/StrikeCache$SoftDisposerRef +sun/font/StrikeCache$DisposableStrike +sun/font/TrueTypeFont$TTDisposerRecord +sun/font/TrueTypeFont$1 +java/io/RandomAccessFile +java/io/DataOutput +sun/nio/ch/FileChannelImpl +java/nio/channels/FileChannel +java/nio/channels/SeekableByteChannel +java/nio/channels/ByteChannel +java/nio/channels/ReadableByteChannel +java/nio/channels/Channel +java/nio/channels/WritableByteChannel +java/nio/channels/GatheringByteChannel +java/nio/channels/ScatteringByteChannel +java/nio/channels/spi/AbstractInterruptibleChannel +java/nio/channels/InterruptibleChannel +java/nio/file/attribute/FileAttribute +sun/nio/ch/IOUtil +sun/nio/ch/IOUtil$1 +sun/nio/ch/NativeThreadSet +sun/nio/ch/FileDispatcherImpl +sun/nio/ch/FileDispatcher +sun/nio/ch/NativeDispatcher +sun/nio/ch/FileDispatcherImpl$1 +java/nio/channels/spi/AbstractInterruptibleChannel$1 +sun/nio/ch/NativeThread +sun/nio/ch/IOStatus +sun/nio/ch/Util +sun/nio/ch/Util$1 +sun/nio/ch/Util$BufferCache +java/nio/DirectByteBuffer$Deallocator +java/nio/ByteBufferAsIntBufferB +java/nio/IntBuffer +sun/font/TrueTypeFont$DirectoryEntry +java/nio/ByteBufferAsShortBufferB +java/nio/ShortBuffer +sun/nio/cs/UTF_16$Decoder +sun/nio/cs/UnicodeDecoder +sun/font/FileFontStrike +sun/font/FontScaler +sun/font/T2KFontScaler +sun/font/T2KFontScaler$1 +sun/font/TrueTypeGlyphMapper +sun/font/CMap +sun/font/CMap$NullCMapClass +sun/font/CMap$CMapFormat4 +java/nio/ByteBufferAsCharBufferB +sun/font/FontDesignMetrics$KeyReference +sun/font/CompositeGlyphMapper +java/awt/print/PrinterGraphics +java/awt/PrintGraphics +sun/java2d/loops/FontInfo +java/util/jar/Attributes +java/util/jar/Manifest$FastInputStream +sun/nio/cs/UTF_8$Decoder +java/util/jar/Attributes$Name +sun/misc/ASCIICaseInsensitiveComparator +java/util/jar/JarVerifier +java/security/CodeSigner +java/util/jar/JarVerifier$3 +java/io/ByteArrayOutputStream +java/lang/Package +sun/security/util/SignatureFileVerifier +sun/security/util/ManifestEntryVerifier +java/util/MissingResourceException +java/io/StringWriter +javax/swing/JDialog +javax/swing/text/JTextComponent +javax/swing/Scrollable +javax/swing/JTextArea +javax/swing/JScrollPane +javax/swing/ScrollPaneConstants +javax/swing/AbstractButton +java/awt/ItemSelectable +javax/swing/JButton +java/lang/SecurityException +javax/swing/JWindow +java/lang/NumberFormatException +java/io/UnsupportedEncodingException +sun/misc/URLClassPath$FileLoader +java/lang/IndexOutOfBoundsException +java/lang/CloneNotSupportedException +java/lang/InternalError +java/net/UnknownHostException +java/net/Socket +java/net/SocketAddress +java/nio/channels/SocketChannel +java/nio/channels/NetworkChannel +java/nio/channels/spi/AbstractSelectableChannel +java/nio/channels/SelectableChannel +java/net/InetAddress +java/net/SocketException +java/net/SocketImplFactory +java/net/InetSocketAddress +java/net/InetSocketAddress$InetSocketAddressHolder +java/net/Proxy +java/net/SocketImpl +java/net/SocketOptions +java/net/SocksSocketImpl +java/net/SocksConsts +java/net/PlainSocketImpl +java/net/AbstractPlainSocketImpl +java/net/AbstractPlainSocketImpl$1 +java/net/PlainSocketImpl$1 +java/net/DualStackPlainSocketImpl +java/net/InetAddress$1 +java/net/InetAddress$InetAddressHolder +java/net/InetAddress$Cache +java/net/InetAddress$Cache$Type +java/net/InetAddressImplFactory +java/net/Inet6AddressImpl +java/net/InetAddressImpl +java/net/InetAddress$2 +sun/net/spi/nameservice/NameService +sun/net/util/IPAddressUtil +java/net/Inet4Address +java/net/SocksSocketImpl$3 +java/net/ProxySelector +sun/net/spi/DefaultProxySelector +sun/net/spi/DefaultProxySelector$1 +sun/net/NetProperties +sun/net/NetProperties$1 +java/net/Inet6Address +java/net/URI +java/net/URI$Parser +sun/net/spi/DefaultProxySelector$NonProxyInfo +sun/net/spi/DefaultProxySelector$3 +java/net/Proxy$Type +sun/net/NetHooks +java/net/Inet6Address$Inet6AddressHolder +java/net/SocketTimeoutException +java/io/InterruptedIOException +javax/swing/UnsupportedLookAndFeelException +java/net/MalformedURLException +java/lang/UnsatisfiedLinkError +sun/misc/FDBigInteger +java/util/ResourceBundle$Control$1 +java/net/URLClassLoader$2 +java/util/PropertyResourceBundle +java/util/ResourceBundle$BundleReference +java/util/logging/Level +java/util/logging/Level$KnownLevel +java/util/logging/Logger +java/util/logging/Handler +java/util/logging/Logger$LoggerBundle +java/util/concurrent/CopyOnWriteArrayList +java/util/logging/LogManager +java/util/logging/LogManager$1 +java/util/logging/LogManager$SystemLoggerContext +java/util/logging/LogManager$LoggerContext +java/util/logging/LogManager$LogNode +java/util/logging/LoggingPermission +java/util/logging/LogManager$Cleaner +java/util/logging/LogManager$2 +java/util/logging/LogManager$3 +java/util/logging/LogManager$LoggerWeakRef +java/util/logging/LogManager$LoggerContext$1 +java/util/logging/LogManager$RootLogger +java/util/logging/LogManager$5 +java/util/logging/Logger$1 +sun/util/logging/resources/logging +javax/swing/Box +javax/swing/Box$Filler +javax/swing/Icon +javax/swing/BoxLayout +javax/swing/plaf/basic/BasicPopupMenuUI +javax/swing/plaf/PopupMenuUI +javax/swing/ImageIcon +javax/swing/ImageIcon$1 +javax/swing/ImageIcon$2 +javax/swing/ImageIcon$2$1 +java/awt/dnd/DropTarget +java/awt/dnd/DropTargetListener +javax/accessibility/AccessibleContext +sun/reflect/UnsafeObjectFieldAccessorImpl +java/awt/MediaTracker +sun/misc/SoftCache$ValueCell +sun/awt/image/URLImageSource +sun/awt/image/InputStreamImageSource +java/awt/image/ImageProducer +sun/awt/image/ImageFetchable +sun/awt/image/ToolkitImage +javax/swing/ImageIcon$3 +java/awt/ImageMediaEntry +java/awt/MediaEntry +sun/awt/image/MultiResolutionToolkitImage +sun/awt/image/MultiResolutionImage +sun/awt/image/ImageRepresentation +java/awt/image/ImageConsumer +sun/awt/image/ImageWatched +sun/awt/image/ImageWatched$Link +sun/awt/image/ImageWatched$WeakLink +sun/awt/image/ImageConsumerQueue +sun/awt/image/ImageFetcher +sun/awt/image/FetcherInfo +sun/awt/image/ImageFetcher$1 +sun/net/ProgressMonitor +sun/net/DefaultProgressMeteringPolicy +sun/net/ProgressMeteringPolicy +sun/net/www/MimeTable +java/net/FileNameMap +sun/net/www/MimeTable$1 +sun/net/www/MimeTable$DefaultInstanceHolder +sun/net/www/MimeTable$DefaultInstanceHolder$1 +sun/net/www/MimeEntry +java/net/URLConnection$1 +java/text/SimpleDateFormat +java/text/DateFormat +java/text/Format +java/text/DateFormat$Field +java/text/Format$Field +java/util/TimeZone +sun/util/calendar/ZoneInfo +sun/util/calendar/ZoneInfoFile +sun/util/calendar/ZoneInfoFile$1 +sun/util/calendar/ZoneInfoFile$ZoneOffsetTransitionRule +sun/util/calendar/ZoneInfoFile$Checksum +java/util/zip/CRC32 +java/util/zip/Checksum +java/util/TimeZone$1 +java/util/Calendar +sun/util/spi/CalendarProvider +java/util/spi/LocaleServiceProvider +sun/util/locale/provider/LocaleProviderAdapter +sun/util/locale/provider/JRELocaleProviderAdapter +sun/util/locale/provider/ResourceBundleBasedAdapter +sun/util/locale/provider/SPILocaleProviderAdapter +sun/util/locale/provider/AuxLocaleProviderAdapter +sun/util/locale/provider/AuxLocaleProviderAdapter$NullProvider +sun/util/locale/provider/LocaleProviderAdapter$Type +sun/util/locale/provider/LocaleProviderAdapter$1 +sun/util/locale/provider/CalendarProviderImpl +sun/util/locale/provider/AvailableLanguageTags +sun/util/locale/provider/LocaleDataMetaInfo +sun/util/locale/provider/JRELocaleProviderAdapter$1 +java/util/Calendar$Builder +java/util/GregorianCalendar +sun/util/locale/provider/CalendarDataUtility +java/util/spi/CalendarDataProvider +sun/util/locale/provider/LocaleServiceProviderPool +java/text/spi/BreakIteratorProvider +java/text/spi/CollatorProvider +java/text/spi/DateFormatProvider +java/text/spi/DateFormatSymbolsProvider +java/text/spi/DecimalFormatSymbolsProvider +java/text/spi/NumberFormatProvider +java/util/spi/CurrencyNameProvider +java/util/spi/LocaleNameProvider +java/util/spi/TimeZoneNameProvider +sun/util/locale/provider/CalendarDataProviderImpl +sun/util/locale/provider/SPILocaleProviderAdapter$1 +sun/util/locale/provider/CalendarDataUtility$CalendarWeekParameterGetter +sun/util/locale/provider/LocaleServiceProviderPool$LocalizedObjectGetter +sun/util/locale/provider/LocaleResources +sun/util/resources/LocaleData +sun/util/resources/LocaleData$1 +sun/util/resources/LocaleData$LocaleDataResourceBundleControl +sun/util/locale/LanguageTag +java/util/Collections$EmptyIterator +sun/util/resources/CalendarData +sun/util/resources/LocaleNamesBundle +sun/util/resources/OpenListResourceBundle +sun/util/resources/en/CalendarData_en +sun/util/locale/provider/LocaleResources$ResourceReference +sun/util/calendar/Gregorian$Date +sun/util/calendar/BaseCalendar$Date +sun/util/calendar/CalendarDate +sun/util/calendar/CalendarUtils +java/text/DateFormatSymbols +sun/util/locale/provider/DateFormatSymbolsProviderImpl +sun/text/resources/FormatData +sun/util/resources/ParallelListResourceBundle +java/util/concurrent/atomic/AtomicMarkableReference +java/util/concurrent/atomic/AtomicMarkableReference$Pair +sun/text/resources/en/FormatData_en +sun/text/resources/en/FormatData_en_US +sun/util/resources/ParallelListResourceBundle$KeySet +java/text/NumberFormat +sun/util/locale/provider/NumberFormatProviderImpl +java/text/DecimalFormatSymbols +sun/util/locale/provider/DecimalFormatSymbolsProviderImpl +java/util/Currency +java/util/Currency$1 +sun/util/locale/provider/CurrencyNameProviderImpl +java/util/Currency$CurrencyNameGetter +sun/util/resources/CurrencyNames +sun/util/resources/en/CurrencyNames_en_US +java/text/DecimalFormat +java/text/FieldPosition +java/text/DigitList +java/math/RoundingMode +java/text/DontCareFieldPosition +java/text/DontCareFieldPosition$1 +java/text/Format$FieldDelegate +sun/awt/image/GifImageDecoder +sun/awt/image/ImageDecoder +sun/awt/image/GifFrame +java/awt/image/DataBufferByte +java/awt/image/PixelInterleavedSampleModel +java/awt/image/ComponentSampleModel +sun/awt/image/ByteInterleavedRaster +sun/awt/image/ByteComponentRaster +sun/awt/image/BytePackedRaster +javax/swing/plaf/BorderUIResource +javax/swing/BorderFactory +javax/swing/border/BevelBorder +javax/swing/border/EtchedBorder +javax/swing/plaf/metal/MetalIconFactory +javax/swing/plaf/metal/MetalIconFactory$TreeFolderIcon +javax/swing/plaf/metal/MetalIconFactory$FolderIcon16 +java/lang/ClassLoaderHelper +java/util/zip/ZipInputStream +java/io/PushbackInputStream +java/util/zip/ZipUtils +java/io/RandomAccessFile$1 +java/lang/Thread$State +javax/swing/SwingUtilities$SharedOwnerFrame +javax/swing/border/LineBorder +javax/swing/Popup$HeavyWeightWindow +sun/awt/ModalExclude +javax/swing/SizeRequirements +com/sun/java/swing/plaf/windows/WindowsPopupWindow +java/applet/Applet +java/awt/Panel +javax/swing/JRadioButton +javax/swing/JToggleButton +java/lang/ClassFormatError +sun/awt/image/BufImgSurfaceManager +java/awt/geom/RectIterator +java/awt/geom/PathIterator +javax/swing/CellRendererPane +javax/swing/RepaintManager$3 +java/io/ObjectInputStream +java/io/ObjectInput +java/io/ObjectStreamConstants +javax/swing/JTabbedPane +javax/swing/event/MenuListener +javax/swing/event/ChangeListener +javax/swing/DefaultSingleSelectionModel +javax/swing/SingleSelectionModel +javax/swing/JTabbedPane$ModelListener +javax/swing/plaf/metal/MetalTabbedPaneUI +javax/swing/plaf/basic/BasicTabbedPaneUI +javax/swing/plaf/TabbedPaneUI +javax/swing/plaf/metal/MetalTabbedPaneUI$TabbedPaneLayout +javax/swing/plaf/basic/BasicTabbedPaneUI$TabbedPaneLayout +javax/swing/plaf/basic/BasicTabbedPaneUI$TabbedPaneScrollLayout +javax/swing/plaf/basic/BasicTabbedPaneUI$Handler +sun/reflect/MethodAccessorGenerator +sun/reflect/AccessorGenerator +sun/reflect/ClassFileConstants +sun/reflect/ByteVectorFactory +sun/reflect/ByteVectorImpl +sun/reflect/ByteVector +sun/reflect/ClassFileAssembler +sun/reflect/UTF8 +sun/reflect/Label +sun/reflect/Label$PatchInfo +sun/reflect/MethodAccessorGenerator$1 +sun/reflect/ClassDefiner +sun/reflect/ClassDefiner$1 +sun/reflect/BootstrapConstructorAccessorImpl +javax/swing/JTextField +javax/swing/JViewport +java/awt/CardLayout +javax/swing/text/Document +javax/swing/text/JTextComponent$1 +sun/swing/SwingAccessor$JTextComponentAccessor +javax/swing/text/JTextComponent$4 +com/sun/beans/util/Cache +com/sun/beans/util/Cache$Kind +com/sun/beans/util/Cache$Kind$1 +com/sun/beans/util/Cache$Kind$2 +com/sun/beans/util/Cache$Kind$3 +com/sun/beans/util/Cache$CacheEntry +javax/swing/Action +javax/swing/JTextField$NotifyAction +javax/swing/text/TextAction +javax/swing/AbstractAction +java/lang/ArrayIndexOutOfBoundsException +javax/swing/DropMode +javax/swing/text/JTextComponent$MutableCaretEvent +javax/swing/event/CaretEvent +javax/swing/plaf/metal/MetalTextFieldUI +javax/swing/plaf/basic/BasicTextFieldUI +javax/swing/plaf/basic/BasicTextUI +javax/swing/text/ViewFactory +javax/swing/plaf/TextUI +javax/swing/plaf/basic/BasicTextUI$BasicCursor +javax/swing/text/DefaultEditorKit +javax/swing/text/EditorKit +javax/swing/text/DefaultEditorKit$InsertContentAction +javax/swing/text/DefaultEditorKit$DeletePrevCharAction +javax/swing/text/DefaultEditorKit$DeleteNextCharAction +javax/swing/text/DefaultEditorKit$ReadOnlyAction +javax/swing/text/DefaultEditorKit$DeleteWordAction +javax/swing/text/DefaultEditorKit$WritableAction +javax/swing/text/DefaultEditorKit$CutAction +javax/swing/text/DefaultEditorKit$CopyAction +javax/swing/text/DefaultEditorKit$PasteAction +javax/swing/text/DefaultEditorKit$VerticalPageAction +javax/swing/text/DefaultEditorKit$PageAction +javax/swing/text/DefaultEditorKit$InsertBreakAction +javax/swing/text/DefaultEditorKit$BeepAction +javax/swing/text/DefaultEditorKit$NextVisualPositionAction +javax/swing/text/DefaultEditorKit$BeginWordAction +javax/swing/text/DefaultEditorKit$EndWordAction +javax/swing/text/DefaultEditorKit$PreviousWordAction +javax/swing/text/DefaultEditorKit$NextWordAction +javax/swing/text/DefaultEditorKit$BeginLineAction +javax/swing/text/DefaultEditorKit$EndLineAction +javax/swing/text/DefaultEditorKit$BeginParagraphAction +javax/swing/text/DefaultEditorKit$EndParagraphAction +javax/swing/text/DefaultEditorKit$BeginAction +javax/swing/text/DefaultEditorKit$EndAction +javax/swing/text/DefaultEditorKit$DefaultKeyTypedAction +javax/swing/text/DefaultEditorKit$InsertTabAction +javax/swing/text/DefaultEditorKit$SelectWordAction +javax/swing/text/DefaultEditorKit$SelectLineAction +javax/swing/text/DefaultEditorKit$SelectParagraphAction +javax/swing/text/DefaultEditorKit$SelectAllAction +javax/swing/text/DefaultEditorKit$UnselectAction +javax/swing/text/DefaultEditorKit$ToggleComponentOrientationAction +javax/swing/text/DefaultEditorKit$DumpModelAction +javax/swing/plaf/basic/BasicTextUI$TextTransferHandler +javax/swing/TransferHandler +javax/swing/TransferHandler$TransferAction +sun/swing/UIAction +javax/swing/text/Position$Bias +javax/swing/plaf/basic/BasicTextUI$RootView +javax/swing/text/View +javax/swing/plaf/basic/BasicTextUI$UpdateHandler +javax/swing/event/DocumentListener +javax/swing/plaf/basic/BasicTextUI$DragListener +javax/swing/plaf/basic/DragRecognitionSupport$BeforeDrag +javax/swing/event/MouseInputAdapter +javax/swing/event/MouseInputListener +java/awt/event/MouseAdapter +javax/swing/plaf/metal/MetalBorders +javax/swing/plaf/BorderUIResource$CompoundBorderUIResource +javax/swing/border/CompoundBorder +javax/swing/plaf/metal/MetalBorders$TextFieldBorder +javax/swing/plaf/metal/MetalBorders$Flush3DBorder +javax/swing/plaf/basic/BasicBorders$MarginBorder +javax/swing/plaf/basic/BasicTextUI$BasicCaret +javax/swing/text/DefaultCaret +javax/swing/text/Caret +javax/swing/text/DefaultCaret$Handler +java/awt/datatransfer/ClipboardOwner +javax/swing/Timer +javax/swing/Timer$DoPostEvent +javax/swing/plaf/basic/BasicTextUI$BasicHighlighter +javax/swing/text/DefaultHighlighter +javax/swing/text/LayeredHighlighter +javax/swing/text/Highlighter +javax/swing/text/Highlighter$Highlight +javax/swing/text/DefaultHighlighter$DefaultHighlightPainter +javax/swing/text/LayeredHighlighter$LayerPainter +javax/swing/text/Highlighter$HighlightPainter +javax/swing/text/DefaultHighlighter$SafeDamager +javax/swing/ClientPropertyKey +javax/swing/ClientPropertyKey$1 +sun/awt/AWTAccessor$ClientPropertyKeyAccessor +javax/swing/TransferHandler$SwingDropTarget +java/awt/dnd/DropTargetContext +java/awt/datatransfer/SystemFlavorMap +java/awt/datatransfer/FlavorMap +java/awt/datatransfer/FlavorTable +java/awt/datatransfer/SystemFlavorMap$SoftCache +javax/swing/TransferHandler$DropHandler +javax/swing/TransferHandler$TransferSupport +javax/swing/text/PlainDocument +javax/swing/text/AbstractDocument +javax/swing/text/GapContent +javax/swing/text/AbstractDocument$Content +javax/swing/text/GapVector +javax/swing/text/GapContent$MarkVector +javax/swing/text/GapContent$MarkData +javax/swing/text/StyleContext +javax/swing/text/AbstractDocument$AttributeContext +javax/swing/text/StyleConstants +javax/swing/text/StyleConstants$CharacterConstants +javax/swing/text/AttributeSet$CharacterAttribute +javax/swing/text/StyleConstants$FontConstants +javax/swing/text/AttributeSet$FontAttribute +javax/swing/text/StyleConstants$ColorConstants +javax/swing/text/AttributeSet$ColorAttribute +javax/swing/text/StyleConstants$ParagraphConstants +javax/swing/text/AttributeSet$ParagraphAttribute +javax/swing/text/StyleContext$FontKey +javax/swing/text/SimpleAttributeSet +javax/swing/text/MutableAttributeSet +javax/swing/text/AttributeSet +javax/swing/text/SimpleAttributeSet$EmptyAttributeSet +javax/swing/text/StyleContext$NamedStyle +javax/swing/text/Style +java/util/Collections$EmptyEnumeration +javax/swing/text/StyleContext$SmallAttributeSet +java/util/LinkedHashMap$LinkedKeySet +java/util/Collections$3 +java/util/LinkedHashMap$LinkedKeyIterator +javax/swing/text/AbstractDocument$BidiRootElement +javax/swing/text/AbstractDocument$BranchElement +javax/swing/text/AbstractDocument$AbstractElement +javax/swing/text/Element +javax/swing/tree/TreeNode +javax/swing/text/AbstractDocument$1 +javax/swing/text/AbstractDocument$BidiElement +javax/swing/text/AbstractDocument$LeafElement +javax/swing/text/GapContent$StickyPosition +javax/swing/text/Position +javax/swing/text/StyleContext$KeyEnumeration +javax/swing/text/FieldView +javax/swing/text/PlainView +javax/swing/text/TabExpander +javax/swing/text/JTextComponent$DefaultKeymap +javax/swing/text/Keymap +javax/swing/text/JTextComponent$KeymapWrapper +javax/swing/text/JTextComponent$KeymapActionMap +javax/swing/plaf/basic/BasicTextUI$FocusAction +javax/swing/plaf/basic/BasicTextUI$TextActionWrapper +javax/swing/plaf/synth/SynthUI +javax/swing/plaf/synth/SynthConstants +javax/swing/JEditorPane +javax/swing/DefaultBoundedRangeModel +javax/swing/BoundedRangeModel +javax/swing/JTextField$ScrollRepainter +javax/swing/DefaultButtonModel +javax/swing/ButtonModel +javax/swing/AbstractButton$Handler +javax/swing/plaf/basic/BasicButtonUI +javax/swing/plaf/ButtonUI +javax/swing/plaf/metal/MetalBorders$ButtonBorder +javax/swing/plaf/basic/BasicButtonListener +javax/swing/event/AncestorListener +java/beans/VetoableChangeListener +javax/swing/plaf/metal/MetalComboBoxButton +javax/swing/plaf/basic/BasicArrowButton +javax/swing/plaf/metal/MetalScrollButton +sun/swing/ImageIconUIResource +javax/swing/GrayFilter +java/awt/image/RGBImageFilter +java/awt/image/ImageFilter +java/awt/image/FilteredImageSource +javax/swing/plaf/basic/BasicGraphicsUtils +javax/swing/ButtonGroup +org/xml/sax/SAXException +javax/xml/parsers/ParserConfigurationException +org/xml/sax/EntityResolver +org/w3c/dom/Node +java/io/StringReader +java/security/NoSuchAlgorithmException +java/security/GeneralSecurityException +java/util/zip/DeflaterOutputStream +java/util/zip/GZIPInputStream +org/xml/sax/InputSource +javax/xml/parsers/DocumentBuilderFactory +javax/xml/parsers/FactoryFinder +javax/xml/parsers/SecuritySupport +javax/xml/parsers/SecuritySupport$2 +javax/xml/parsers/SecuritySupport$5 +javax/xml/parsers/FactoryFinder$1 +javax/xml/parsers/DocumentBuilder +org/w3c/dom/Document +org/xml/sax/helpers/DefaultHandler +org/xml/sax/DTDHandler +org/xml/sax/ContentHandler +org/xml/sax/ErrorHandler +org/xml/sax/SAXNotSupportedException +org/xml/sax/Locator +org/xml/sax/SAXNotRecognizedException +org/xml/sax/SAXParseException +org/w3c/dom/NodeList +org/w3c/dom/events/EventTarget +org/w3c/dom/traversal/DocumentTraversal +org/w3c/dom/events/DocumentEvent +org/w3c/dom/ranges/DocumentRange +org/w3c/dom/Entity +org/w3c/dom/Element +org/w3c/dom/CharacterData +org/w3c/dom/CDATASection +org/w3c/dom/Text +org/xml/sax/AttributeList +org/w3c/dom/DOMException +org/w3c/dom/DocumentType +org/w3c/dom/Notation +org/w3c/dom/Attr +org/w3c/dom/EntityReference +org/w3c/dom/ProcessingInstruction +org/w3c/dom/Comment +org/w3c/dom/DocumentFragment +org/w3c/dom/traversal/TreeWalker +org/w3c/dom/ranges/Range +org/w3c/dom/events/Event +org/w3c/dom/events/MutationEvent +org/w3c/dom/traversal/NodeIterator +org/w3c/dom/events/EventException +java/lang/StringIndexOutOfBoundsException +org/w3c/dom/NamedNodeMap +java/awt/GridLayout +javax/swing/JToggleButton$ToggleButtonModel +javax/swing/plaf/metal/MetalRadioButtonUI +javax/swing/plaf/basic/BasicRadioButtonUI +javax/swing/plaf/basic/BasicToggleButtonUI +javax/swing/plaf/basic/BasicBorders +javax/swing/plaf/basic/BasicBorders$RadioButtonBorder +javax/swing/plaf/basic/BasicBorders$ButtonBorder +javax/swing/plaf/metal/MetalIconFactory$RadioButtonIcon +javax/swing/plaf/basic/BasicRadioButtonUI$KeyHandler +javax/swing/plaf/basic/BasicRadioButtonUI$SelectPreviousBtn +javax/swing/plaf/basic/BasicRadioButtonUI$SelectNextBtn +javax/swing/event/ChangeEvent +java/awt/event/ItemEvent +javax/swing/ToolTipManager +javax/swing/ToolTipManager$insideTimerAction +javax/swing/ToolTipManager$outsideTimerAction +javax/swing/ToolTipManager$stillInsideTimerAction +javax/swing/ToolTipManager$MoveBeforeEnterListener +java/awt/event/MouseMotionAdapter +javax/swing/ToolTipManager$AccessibilityKeyListener +java/awt/event/KeyAdapter +java/awt/CardLayout$Card +javax/swing/JComboBox +javax/swing/event/ListDataListener +javax/swing/JCheckBox +javax/swing/JPopupMenu +javax/swing/MenuElement +javax/swing/DefaultComboBoxModel +javax/swing/MutableComboBoxModel +javax/swing/ComboBoxModel +javax/swing/ListModel +javax/swing/AbstractListModel +javax/swing/JComboBox$1 +javax/swing/AncestorNotifier +javax/swing/plaf/metal/MetalComboBoxUI +javax/swing/plaf/basic/BasicComboBoxUI +javax/swing/plaf/ComboBoxUI +javax/swing/plaf/metal/MetalComboBoxUI$MetalComboBoxLayoutManager +javax/swing/plaf/basic/BasicComboBoxUI$ComboBoxLayoutManager +javax/swing/plaf/basic/BasicComboPopup +javax/swing/plaf/basic/ComboPopup +javax/swing/plaf/basic/BasicComboPopup$EmptyListModelClass +javax/swing/plaf/basic/BasicLookAndFeel$AWTEventHelper +java/awt/event/AWTEventListenerProxy +java/awt/Toolkit$SelectiveAWTEventListener +java/awt/Toolkit$ToolkitEventMulticaster +javax/swing/plaf/basic/BasicLookAndFeel$1 +javax/swing/plaf/basic/DefaultMenuLayout +javax/swing/plaf/metal/MetalBorders$PopupMenuBorder +javax/swing/plaf/basic/BasicPopupMenuUI$BasicPopupMenuListener +javax/swing/event/PopupMenuListener +javax/swing/plaf/basic/BasicPopupMenuUI$BasicMenuKeyListener +javax/swing/event/MenuKeyListener +javax/swing/plaf/basic/BasicPopupMenuUI$MouseGrabber +javax/swing/MenuSelectionManager +javax/swing/plaf/basic/BasicPopupMenuUI$MenuKeyboardHelper +javax/swing/plaf/basic/BasicPopupMenuUI$MenuKeyboardHelper$1 +java/awt/event/FocusAdapter +javax/swing/plaf/basic/BasicComboPopup$1 +javax/swing/JList +javax/swing/DefaultListSelectionModel +javax/swing/ListSelectionModel +javax/swing/plaf/basic/BasicListUI +javax/swing/plaf/ListUI +javax/swing/plaf/basic/BasicListUI$ListTransferHandler +javax/swing/DefaultListCellRenderer$UIResource +javax/swing/DefaultListCellRenderer +javax/swing/ListCellRenderer +javax/swing/plaf/basic/BasicListUI$Handler +javax/swing/event/ListSelectionListener +javax/swing/JMenu +javax/swing/JMenuItem +javax/swing/event/ListSelectionEvent +javax/swing/plaf/basic/BasicComboPopup$Handler +javax/swing/ScrollPaneLayout$UIResource +javax/swing/ScrollPaneLayout +javax/swing/ViewportLayout +javax/swing/plaf/basic/BasicViewportUI +javax/swing/plaf/ViewportUI +javax/swing/JScrollPane$ScrollBar +javax/swing/JScrollBar +java/awt/Adjustable +javax/swing/JScrollBar$ModelListener +javax/swing/plaf/metal/MetalScrollBarUI +javax/swing/plaf/basic/BasicScrollBarUI +javax/swing/plaf/ScrollBarUI +javax/swing/plaf/metal/MetalBumps +javax/swing/plaf/basic/BasicScrollBarUI$TrackListener +javax/swing/plaf/basic/BasicScrollBarUI$ArrowButtonListener +javax/swing/plaf/basic/BasicScrollBarUI$ModelListener +javax/swing/plaf/metal/MetalScrollBarUI$ScrollBarListener +javax/swing/plaf/basic/BasicScrollBarUI$PropertyChangeHandler +javax/swing/plaf/basic/BasicScrollBarUI$Handler +javax/swing/plaf/basic/BasicScrollBarUI$ScrollListener +javax/swing/JViewport$ViewListener +javax/swing/plaf/metal/MetalScrollPaneUI +javax/swing/plaf/basic/BasicScrollPaneUI +javax/swing/plaf/ScrollPaneUI +javax/swing/plaf/metal/MetalBorders$ScrollPaneBorder +javax/swing/plaf/basic/BasicScrollPaneUI$Handler +javax/swing/plaf/metal/MetalScrollPaneUI$1 +javax/swing/plaf/basic/BasicComboBoxRenderer$UIResource +javax/swing/plaf/basic/BasicComboBoxRenderer +javax/swing/plaf/metal/MetalComboBoxEditor$UIResource +javax/swing/plaf/metal/MetalComboBoxEditor +javax/swing/plaf/basic/BasicComboBoxEditor +javax/swing/ComboBoxEditor +javax/swing/plaf/basic/BasicComboBoxEditor$BorderlessTextField +javax/swing/plaf/basic/BasicComboBoxEditor$UIResource +javax/swing/text/Segment +java/text/CharacterIterator +javax/swing/plaf/metal/MetalComboBoxEditor$1 +javax/swing/plaf/metal/MetalComboBoxEditor$EditorBorder +javax/swing/JToolBar +javax/swing/plaf/metal/MetalComboBoxUI$MetalPropertyChangeListener +javax/swing/plaf/basic/BasicComboBoxUI$PropertyChangeHandler +javax/swing/plaf/basic/BasicComboBoxUI$Handler +javax/swing/plaf/metal/MetalComboBoxIcon +javax/swing/plaf/metal/MetalComboBoxButton$1 +javax/swing/plaf/basic/BasicComboBoxUI$DefaultKeySelectionManager +javax/swing/JComboBox$KeySelectionManager +javax/swing/plaf/metal/MetalCheckBoxUI +javax/swing/plaf/metal/MetalIconFactory$CheckBoxIcon +java/lang/ExceptionInInitializerError +com/sun/java/swing/plaf/windows/WindowsTabbedPaneUI +javax/swing/JProgressBar +javax/swing/JProgressBar$ModelListener +javax/swing/plaf/metal/MetalProgressBarUI +javax/swing/plaf/basic/BasicProgressBarUI +javax/swing/plaf/ProgressBarUI +javax/swing/plaf/BorderUIResource$LineBorderUIResource +javax/swing/plaf/basic/BasicProgressBarUI$Handler +javax/swing/JTable +javax/swing/event/TableModelListener +javax/swing/event/TableColumnModelListener +javax/swing/event/CellEditorListener +javax/swing/event/RowSorterListener +javax/swing/tree/TreeModel +javax/swing/table/TableCellRenderer +javax/swing/table/JTableHeader +javax/swing/event/TreeExpansionListener +javax/swing/table/AbstractTableModel +javax/swing/table/TableModel +javax/swing/table/DefaultTableCellRenderer +javax/swing/JCheckBoxMenuItem +javax/swing/JTree +javax/swing/tree/TreeSelectionModel +javax/swing/tree/DefaultTreeCellRenderer +javax/swing/tree/TreeCellRenderer +javax/swing/table/TableCellEditor +javax/swing/CellEditor +javax/swing/JToolTip +javax/swing/table/TableColumn +javax/swing/table/DefaultTableColumnModel +javax/swing/table/TableColumnModel +javax/swing/table/DefaultTableModel +javax/swing/event/TableModelEvent +sun/swing/table/DefaultTableCellHeaderRenderer +sun/swing/table/DefaultTableCellHeaderRenderer$EmptyIcon +javax/swing/plaf/basic/BasicTableHeaderUI +javax/swing/plaf/TableHeaderUI +javax/swing/plaf/basic/BasicTableHeaderUI$1 +javax/swing/plaf/basic/BasicTableHeaderUI$MouseInputHandler +javax/swing/DefaultCellEditor +javax/swing/tree/TreeCellEditor +javax/swing/AbstractCellEditor +javax/swing/plaf/basic/BasicTableUI +javax/swing/plaf/TableUI +javax/swing/plaf/basic/BasicTableUI$TableTransferHandler +javax/swing/plaf/basic/BasicTableUI$Handler +javax/swing/tree/DefaultTreeSelectionModel +javax/swing/tree/TreePath +javax/swing/plaf/metal/MetalTreeUI +javax/swing/plaf/basic/BasicTreeUI +javax/swing/plaf/TreeUI +javax/swing/plaf/basic/BasicTreeUI$Actions +javax/swing/plaf/basic/BasicTreeUI$TreeTransferHandler +javax/swing/plaf/metal/MetalTreeUI$LineListener +javax/swing/plaf/basic/BasicTreeUI$Handler +javax/swing/event/TreeModelListener +javax/swing/event/TreeSelectionListener +javax/swing/event/SwingPropertyChangeSupport +javax/swing/tree/VariableHeightLayoutCache +javax/swing/tree/AbstractLayoutCache +javax/swing/tree/RowMapper +javax/swing/plaf/basic/BasicTreeUI$NodeDimensionsHandler +javax/swing/tree/AbstractLayoutCache$NodeDimensions +javax/swing/JTree$TreeModelHandler +javax/swing/tree/VariableHeightLayoutCache$TreeStateNode +javax/swing/tree/DefaultMutableTreeNode +javax/swing/tree/MutableTreeNode +javax/swing/tree/DefaultMutableTreeNode$PreorderEnumeration +java/util/Vector$1 +javax/swing/event/TableColumnModelEvent +javax/swing/JPopupMenu$Separator +javax/swing/JSeparator +java/text/ParseException +java/text/NumberFormat$Field +javax/swing/text/GapContent$InsertUndo +javax/swing/undo/AbstractUndoableEdit +javax/swing/undo/UndoableEdit +javax/swing/text/AbstractDocument$DefaultDocumentEvent +javax/swing/event/DocumentEvent +javax/swing/undo/CompoundEdit +javax/swing/event/DocumentEvent$EventType +javax/swing/text/Utilities +javax/swing/text/SegmentCache +javax/swing/text/SegmentCache$CachedSegment +javax/swing/event/DocumentEvent$ElementChange +javax/swing/event/UndoableEditEvent +javax/swing/event/UndoableEditListener +java/awt/Canvas +java/util/Locale$Category +java/util/Locale$1 +javax/swing/filechooser/FileFilter +java/io/FileWriter +javax/swing/tree/DefaultTreeModel +javax/swing/tree/DefaultTreeCellEditor +javax/swing/tree/DefaultTreeCellEditor$1 +javax/swing/tree/DefaultTreeCellEditor$DefaultTextField +javax/swing/DefaultCellEditor$1 +javax/swing/DefaultCellEditor$EditorDelegate +javax/swing/tree/DefaultTreeCellEditor$EditorContainer +javax/swing/JTree$TreeSelectionRedirector +javax/swing/JMenuItem$MenuItemFocusListener +javax/swing/plaf/basic/BasicMenuItemUI +javax/swing/plaf/MenuItemUI +javax/swing/plaf/metal/MetalBorders$MenuItemBorder +javax/swing/plaf/metal/MetalIconFactory$MenuItemArrowIcon +sun/swing/MenuItemLayoutHelper +javax/swing/plaf/basic/BasicMenuItemUI$Handler +javax/swing/event/MenuDragMouseListener +javax/swing/event/TreeModelEvent +javax/swing/JSplitPane +javax/swing/plaf/metal/MetalSplitPaneUI +javax/swing/plaf/basic/BasicSplitPaneUI +javax/swing/plaf/SplitPaneUI +javax/swing/plaf/basic/BasicSplitPaneDivider +javax/swing/plaf/basic/BasicBorders$SplitPaneBorder +javax/swing/plaf/metal/MetalSplitPaneDivider +javax/swing/plaf/basic/BasicSplitPaneDivider$DividerLayout +javax/swing/plaf/basic/BasicSplitPaneDivider$MouseHandler +javax/swing/plaf/basic/BasicBorders$SplitPaneDividerBorder +javax/swing/plaf/basic/BasicSplitPaneUI$BasicHorizontalLayoutManager +javax/swing/plaf/basic/BasicSplitPaneUI$1 +javax/swing/plaf/basic/BasicSplitPaneUI$Handler +javax/swing/plaf/metal/MetalSplitPaneDivider$1 +javax/swing/plaf/basic/BasicSplitPaneDivider$OneTouchActionHandler +javax/swing/plaf/metal/MetalSplitPaneDivider$2 +javax/swing/border/TitledBorder +javax/swing/plaf/basic/BasicTextAreaUI +javax/swing/text/AbstractDocument$ElementEdit +java/util/Random +java/util/concurrent/atomic/AtomicLong +java/net/NoRouteToHostException +java/net/BindException +javax/swing/tree/PathPlaceHolder +javax/swing/event/TreeSelectionEvent +javax/swing/JList$3 +javax/swing/JList$ListSelectionHandler +javax/swing/JSlider +javax/swing/JSlider$ModelListener +javax/swing/plaf/metal/MetalSliderUI +javax/swing/plaf/basic/BasicSliderUI +javax/swing/plaf/SliderUI +javax/swing/plaf/basic/BasicSliderUI$Actions +javax/swing/plaf/metal/MetalIconFactory$HorizontalSliderThumbIcon +javax/swing/plaf/metal/MetalIconFactory$VerticalSliderThumbIcon +javax/swing/plaf/basic/BasicSliderUI$TrackListener +javax/swing/plaf/basic/BasicSliderUI$Handler +javax/swing/plaf/basic/BasicSliderUI$ScrollListener +javax/swing/plaf/metal/MetalSliderUI$MetalPropertyListener +javax/swing/plaf/basic/BasicSliderUI$PropertyChangeHandler +sun/font/SunFontManager$FamilyDescription +java/util/concurrent/ConcurrentHashMap$KeyIterator +java/util/concurrent/ConcurrentHashMap$BaseIterator +java/util/concurrent/ConcurrentHashMap$Traverser +sun/font/SunFontManager$10 +sun/font/SunFontManager$11 +java/util/concurrent/ConcurrentHashMap$ValueIterator +java/lang/CharacterData00 +javax/swing/DefaultListModel +javax/swing/event/ListDataEvent +javax/sound/sampled/DataLine +javax/sound/sampled/Line +javax/sound/sampled/Line$Info +javax/sound/sampled/DataLine$Info +javax/sound/sampled/Control$Type +javax/sound/sampled/FloatControl$Type +javax/sound/sampled/LineUnavailableException +javax/sound/sampled/UnsupportedAudioFileException +javax/swing/JMenuBar +javax/swing/plaf/basic/BasicMenuBarUI +javax/swing/plaf/MenuBarUI +javax/swing/plaf/metal/MetalBorders$MenuBarBorder +javax/swing/plaf/basic/BasicMenuBarUI$Handler +javax/swing/KeyboardManager +javax/swing/JRadioButtonMenuItem +javax/swing/JMenu$MenuChangeListener +javax/swing/plaf/basic/BasicMenuUI +javax/swing/plaf/metal/MetalIconFactory$MenuArrowIcon +javax/swing/plaf/basic/BasicMenuUI$Handler +javax/swing/JMenuItem$AccessibleJMenuItem +javax/swing/AbstractButton$AccessibleAbstractButton +javax/accessibility/AccessibleAction +javax/accessibility/AccessibleValue +javax/accessibility/AccessibleText +javax/accessibility/AccessibleExtendedComponent +javax/accessibility/AccessibleComponent +javax/swing/JComponent$AccessibleJComponent +java/awt/Container$AccessibleAWTContainer +java/awt/Component$AccessibleAWTComponent +javax/accessibility/AccessibleContext$1 +sun/awt/AWTAccessor$AccessibleContextAccessor +javax/accessibility/AccessibleRelationSet +javax/swing/JMenu$WinListener +java/awt/event/WindowAdapter +javax/swing/plaf/metal/MetalPopupMenuSeparatorUI +javax/swing/plaf/metal/MetalSeparatorUI +javax/swing/plaf/basic/BasicSeparatorUI +javax/swing/plaf/SeparatorUI +javax/accessibility/AccessibleState +javax/accessibility/AccessibleBundle +javax/swing/plaf/basic/BasicCheckBoxMenuItemUI +javax/swing/plaf/metal/MetalIconFactory$CheckBoxMenuItemIcon +javax/swing/JCheckBoxMenuItem$AccessibleJCheckBoxMenuItem +javax/swing/plaf/basic/BasicRadioButtonMenuItemUI +javax/swing/plaf/metal/MetalIconFactory$RadioButtonMenuItemIcon +java/awt/event/ContainerEvent +sun/awt/image/ImageDecoder$1 +java/awt/im/InputContext +sun/awt/im/InputMethodContext +java/awt/im/spi/InputMethodContext +java/awt/im/InputMethodRequests +sun/awt/im/InputContext +sun/awt/windows/WInputMethod +sun/awt/im/InputMethodAdapter +java/awt/im/spi/InputMethod +sun/util/locale/ParseStatus +sun/util/locale/StringTokenIterator +sun/util/locale/InternalLocaleBuilder +sun/util/locale/InternalLocaleBuilder$CaseInsensitiveChar +javax/swing/JTabbedPane$Page +java/net/DatagramSocket +java/net/MulticastSocket +java/net/DatagramPacket +java/net/DatagramPacket$1 +java/net/Inet4AddressImpl +sun/net/InetAddressCachePolicy +sun/net/InetAddressCachePolicy$1 +java/security/Security +java/security/Security$1 +sun/net/InetAddressCachePolicy$2 +java/net/InetAddress$CacheEntry +java/text/Collator +java/net/DefaultDatagramSocketImplFactory +sun/util/locale/provider/CollatorProviderImpl +java/net/DefaultDatagramSocketImplFactory$1 +java/net/DualStackPlainDatagramSocketImpl +java/util/Collections$UnmodifiableList$1 +java/net/AbstractPlainDatagramSocketImpl +java/net/DatagramSocketImpl +sun/text/resources/CollationData +java/net/AbstractPlainDatagramSocketImpl$1 +java/text/RuleBasedCollator +java/net/TwoStacksPlainDatagramSocketImpl +java/text/RBCollationTables +java/net/DatagramSocket$1 +java/text/RBTableBuilder +java/net/NetworkInterface +java/text/RBCollationTables$BuildAPI +sun/text/IntHashtable +sun/net/ResourceManager +sun/text/UCompactIntArray +sun/text/normalizer/NormalizerImpl +sun/text/normalizer/ICUData +java/net/NetworkInterface$1 +java/net/InterfaceAddress +java/net/DefaultInterface +java/net/ServerSocket +sun/text/normalizer/NormalizerDataReader +sun/text/normalizer/ICUBinary$Authenticate +sun/text/normalizer/ICUBinary +sun/text/normalizer/NormalizerImpl$FCDTrieImpl +sun/text/normalizer/Trie$DataManipulate +sun/text/normalizer/NormalizerImpl$NormTrieImpl +sun/text/normalizer/NormalizerImpl$AuxTrieImpl +sun/text/normalizer/IntTrie +sun/text/normalizer/Trie +sun/text/normalizer/CharTrie +sun/text/normalizer/CharTrie$FriendAgent +sun/text/normalizer/UnicodeSet +sun/text/normalizer/UnicodeMatcher +sun/text/normalizer/NormalizerImpl$DecomposeArgs +java/text/MergeCollation +java/text/PatternEntry$Parser +java/text/PatternEntry +java/text/EntryPair +sun/text/ComposedCharIter +sun/text/normalizer/UTF16 +sun/net/www/protocol/http/Handler +java/security/SignatureException +java/security/InvalidKeyException +java/security/KeyException +java/security/Signature +java/security/SignatureSpi +java/io/ObjectInputStream$BlockDataInputStream +java/io/ObjectInputStream$PeekInputStream +java/io/ObjectInputStream$HandleTable +java/io/ObjectInputStream$HandleTable$HandleList +java/io/ObjectInputStream$ValidationList +java/io/Bits +java/io/ObjectStreamClass +sun/security/provider/DSAPublicKey +java/security/interfaces/DSAPublicKey +java/security/interfaces/DSAKey +java/security/PublicKey +java/security/Key +sun/security/x509/X509Key +java/io/ObjectStreamClass$Caches +java/io/ObjectStreamClass$WeakClassKey +java/io/ObjectStreamClass$EntryFuture +java/io/ObjectOutputStream +java/io/ObjectOutput +java/lang/reflect/Proxy +java/lang/reflect/InvocationHandler +java/lang/reflect/WeakCache +java/lang/reflect/Proxy$KeyFactory +java/lang/reflect/Proxy$ProxyClassFactory +java/io/Externalizable +java/io/ObjectStreamClass$2 +sun/security/x509/AlgorithmId +sun/security/util/DerEncoder +sun/security/util/BitArray +sun/reflect/SerializationConstructorAccessorImpl +sun/reflect/UnsafeQualifiedStaticLongFieldAccessorImpl +java/io/ObjectStreamClass$FieldReflectorKey +sun/security/util/DerOutputStream +java/io/ObjectStreamClass$FieldReflector +sun/security/util/DerValue +java/io/ObjectStreamClass$1 +java/io/DataOutputStream +java/io/ObjectStreamClass$MemberSignature +java/math/BigInteger +java/io/ObjectStreamClass$3 +java/io/ObjectStreamClass$4 +java/security/interfaces/DSAParams +java/io/ObjectStreamClass$5 +java/io/ObjectStreamClass$ClassDataSlot +java/io/SerialCallbackContext +java/security/MessageDigest +java/security/MessageDigestSpi +sun/security/util/DerInputStream +sun/security/jca/GetInstance +sun/security/util/DerInputBuffer +sun/security/jca/Providers +java/lang/InheritableThreadLocal +sun/security/util/ObjectIdentifier +sun/security/jca/ProviderList +sun/security/jca/ProviderConfig +java/security/Provider +sun/security/jca/ProviderList$3 +sun/security/jca/ProviderList$1 +java/security/Provider$ServiceKey +java/security/Provider$EngineDescription +java/security/AlgorithmParameters +java/security/AlgorithmParametersSpi +sun/security/jca/ProviderList$2 +sun/security/jca/ProviderConfig$2 +sun/security/provider/Sun +sun/security/provider/SunEntries +sun/security/provider/SunEntries$1 +sun/security/provider/NativePRNG +sun/security/provider/NativePRNG$Blocking +sun/security/provider/NativePRNG$NonBlocking +java/security/Provider$Service +java/security/Provider$UString +sun/security/provider/SHA +sun/security/provider/DSAParameters +sun/security/provider/DigestBase +sun/security/jca/GetInstance$Instance +java/security/MessageDigest$Delegate +sun/security/util/ByteArrayLexOrder +sun/security/util/ByteArrayTagOrder +sun/security/provider/ByteArrayAccess +sun/security/util/DerIndefLenConverter +java/io/ObjectOutputStream$BlockDataOutputStream +java/io/ObjectOutputStream$HandleTable +java/io/ObjectOutputStream$ReplaceTable +java/io/ObjectStreamClass$ExceptionInfo +java/io/ObjectInputStream$GetFieldImpl +java/io/ObjectInputStream$GetField +java/math/BigInteger$UnsafeHolder +sun/security/jca/ServiceId +sun/security/jca/ProviderList$ServiceList +sun/security/jca/ProviderList$ServiceList$1 +java/security/Signature$Delegate +java/util/ArrayList$SubList +java/util/ArrayList$SubList$1 +java/security/interfaces/DSAPrivateKey +java/security/PrivateKey +javax/security/auth/Destroyable +sun/security/provider/DSA$SHA1withDSA +sun/security/provider/DSA$LegacyDSA +sun/security/provider/DSA +java/security/spec/DSAParameterSpec +java/security/spec/AlgorithmParameterSpec +java/math/MutableBigInteger +java/math/SignedMutableBigInteger +javax/swing/TimerQueue +java/util/concurrent/DelayQueue +java/util/concurrent/BlockingQueue +java/util/AbstractQueue +java/util/PriorityQueue +javax/swing/TimerQueue$1 +javax/swing/TimerQueue$DelayedTimer +java/util/concurrent/Delayed +java/util/concurrent/TimeUnit +java/util/concurrent/TimeUnit$1 +java/util/concurrent/TimeUnit$2 +java/util/concurrent/TimeUnit$3 +java/util/concurrent/TimeUnit$4 +java/util/concurrent/TimeUnit$5 +java/util/concurrent/TimeUnit$6 +java/util/concurrent/TimeUnit$7 +java/awt/Window$1DisposeAction +java/awt/EventQueue$1AWTInvocationLock +java/awt/LightweightDispatcher$2 +java/awt/Component$FlipBufferStrategy +java/lang/StrictMath +javax/swing/JLayer +javax/swing/JInternalFrame +javax/swing/KeyboardManager$ComponentKeyStrokePair +sun/swing/MenuItemLayoutHelper$RectSize +javax/swing/JTable$2 +javax/swing/JTable$Resizable3 +javax/swing/JTable$Resizable2 +javax/swing/JTable$5 +java/awt/Label +sun/awt/windows/WLabelPeer +java/awt/peer/LabelPeer +java/awt/Event +sun/awt/PlatformFont$PlatformFontCache +sun/nio/cs/UTF_16LE$Encoder +sun/nio/cs/UnicodeEncoder +sun/nio/cs/UTF_16LE$Decoder +sun/nio/cs/Surrogate$Parser +sun/nio/cs/Surrogate +java/awt/KeyboardFocusManager$3 +java/net/Authenticator +sun/awt/AppContext$PostShutdownEventRunnable +sun/awt/AWTAutoShutdown$1 +java/net/ConnectException +java/lang/Throwable$WrappedPrintStream +java/lang/Throwable$PrintStreamOrWriter +sun/awt/image/PNGImageDecoder +sun/awt/image/PNGFilterInputStream +sun/awt/image/OffScreenImage +sun/util/locale/provider/TimeZoneNameUtility +sun/util/locale/provider/TimeZoneNameProviderImpl +sun/util/locale/provider/TimeZoneNameUtility$TimeZoneNameGetter +sun/util/resources/TimeZoneNames +sun/util/resources/TimeZoneNamesBundle +sun/util/resources/en/TimeZoneNames_en +java/io/FilterReader +java/io/EOFException +javax/swing/filechooser/FileSystemView +javax/swing/filechooser/WindowsFileSystemView +javax/swing/filechooser/FileSystemView$1 +java/util/jar/JarFile$JarEntryIterator +java/util/zip/ZipFile$ZipEntryIterator +java/lang/IllegalAccessError +java/text/MessageFormat +java/text/MessageFormat$Field +java/util/Hashtable$ValueCollection +javax/swing/event/CaretListener +javax/swing/plaf/metal/MetalButtonUI +javax/swing/plaf/metal/MetalToggleButtonUI +javax/swing/plaf/metal/MetalBorders$ToggleButtonBorder +javax/swing/event/MenuEvent +javax/swing/border/MatteBorder +sun/font/StandardGlyphVector +java/awt/font/GlyphVector +sun/font/StandardGlyphVector$GlyphStrike +sun/font/CoreMetrics +sun/font/FontLineMetrics +java/awt/font/LineMetrics +javax/swing/JToolBar$DefaultToolBarLayout +javax/swing/plaf/metal/MetalToolBarUI +javax/swing/plaf/basic/BasicToolBarUI +javax/swing/plaf/ToolBarUI +javax/swing/plaf/metal/MetalBorders$ToolBarBorder +javax/swing/plaf/metal/MetalBorders$RolloverButtonBorder +javax/swing/plaf/metal/MetalBorders$RolloverMarginBorder +javax/swing/plaf/basic/BasicBorders$RolloverMarginBorder +javax/swing/plaf/metal/MetalToolBarUI$MetalDockingListener +javax/swing/plaf/basic/BasicToolBarUI$DockingListener +javax/swing/plaf/basic/BasicToolBarUI$Handler +javax/swing/JToolBar$Separator +javax/swing/plaf/basic/BasicToolBarSeparatorUI +java/awt/event/AdjustmentEvent +java/awt/MenuBar +# 7b979133406b8b9a diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/CIEXYZ.pf b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/CIEXYZ.pf new file mode 100644 index 0000000..db3ba20 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/CIEXYZ.pf differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/GRAY.pf b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/GRAY.pf new file mode 100644 index 0000000..e31a4a7 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/GRAY.pf differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/LINEAR_RGB.pf b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/LINEAR_RGB.pf new file mode 100644 index 0000000..eadae04 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/LINEAR_RGB.pf differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/sRGB.pf b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/sRGB.pf new file mode 100644 index 0000000..7f9d18d Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/cmm/sRGB.pf differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/content-types.properties b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/content-types.properties new file mode 100644 index 0000000..8949352 --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/content-types.properties @@ -0,0 +1,276 @@ +#sun.net.www MIME content-types table +# +# Property fields: +# +# ::= 'description' '=' +# ::= 'file_extensions' '=' +# ::= 'icon' '=' +# ::= 'browser' | 'application' | 'save' | 'unknown' +# ::= 'application' '=' +# + +# +# The "we don't know anything about this data" type(s). +# Used internally to mark unrecognized types. +# +content/unknown: description=Unknown Content +unknown/unknown: description=Unknown Data Type + +# +# The template we should use for temporary files when launching an application +# to view a document of given type. +# +temp.file.template: c:\\temp\\%s + +# +# The "real" types. +# +application/octet-stream: \ + description=Generic Binary Stream;\ + file_extensions=.saveme,.dump,.hqx,.arc,.obj,.lib,.bin,.exe,.zip,.gz + +application/oda: \ + description=ODA Document;\ + file_extensions=.oda + +application/pdf: \ + description=Adobe PDF Format;\ + file_extensions=.pdf + +application/postscript: \ + description=Postscript File;\ + file_extensions=.eps,.ai,.ps;\ + icon=ps + +application/rtf: \ + description=Wordpad Document;\ + file_extensions=.rtf;\ + action=application;\ + application=wordpad.exe %s + +application/x-dvi: \ + description=TeX DVI File;\ + file_extensions=.dvi + +application/x-hdf: \ + description=Hierarchical Data Format;\ + file_extensions=.hdf;\ + action=save + +application/x-latex: \ + description=LaTeX Source;\ + file_extensions=.latex + +application/x-netcdf: \ + description=Unidata netCDF Data Format;\ + file_extensions=.nc,.cdf;\ + action=save + +application/x-tex: \ + description=TeX Source;\ + file_extensions=.tex + +application/x-texinfo: \ + description=Gnu Texinfo;\ + file_extensions=.texinfo,.texi + +application/x-troff: \ + description=Troff Source;\ + file_extensions=.t,.tr,.roff + +application/x-troff-man: \ + description=Troff Manpage Source;\ + file_extensions=.man + +application/x-troff-me: \ + description=Troff ME Macros;\ + file_extensions=.me + +application/x-troff-ms: \ + description=Troff MS Macros;\ + file_extensions=.ms + +application/x-wais-source: \ + description=Wais Source;\ + file_extensions=.src,.wsrc + +application/zip: \ + description=Zip File;\ + file_extensions=.zip;\ + icon=zip;\ + action=save + +application/x-bcpio: \ + description=Old Binary CPIO Archive;\ + file_extensions=.bcpio;\ + action=save + +application/x-cpio: \ + description=Unix CPIO Archive;\ + file_extensions=.cpio;\ + action=save + +application/x-gtar: \ + description=Gnu Tar Archive;\ + file_extensions=.gtar;\ + icon=tar;\ + action=save + +application/x-shar: \ + description=Shell Archive;\ + file_extensions=.sh,.shar;\ + action=save + +application/x-sv4cpio: \ + description=SVR4 CPIO Archive;\ + file_extensions=.sv4cpio;\ + action=save + +application/x-sv4crc: \ + description=SVR4 CPIO with CRC;\ + file_extensions=.sv4crc;\ + action=save + +application/x-tar: \ + description=Tar Archive;\ + file_extensions=.tar;\ + icon=tar;\ + action=save + +application/x-ustar: \ + description=US Tar Archive;\ + file_extensions=.ustar;\ + action=save + +audio/basic: \ + description=Basic Audio;\ + file_extensions=.snd,.au;\ + icon=audio + +audio/x-aiff: \ + description=Audio Interchange Format File;\ + file_extensions=.aifc,.aif,.aiff;\ + icon=aiff + +audio/x-wav: \ + description=Wav Audio;\ + file_extensions=.wav;\ + icon=wav;\ + action=application;\ + application=mplayer.exe %s + +image/gif: \ + description=GIF Image;\ + file_extensions=.gif;\ + icon=gif;\ + action=browser + +image/ief: \ + description=Image Exchange Format;\ + file_extensions=.ief + +image/jpeg: \ + description=JPEG Image;\ + file_extensions=.jfif,.jfif-tbnl,.jpe,.jpg,.jpeg;\ + icon=jpeg;\ + action=browser + +image/tiff: \ + description=TIFF Image;\ + file_extensions=.tif,.tiff;\ + icon=tiff + +image/vnd.fpx: \ + description=FlashPix Image;\ + file_extensions=.fpx,.fpix + +image/x-cmu-rast: \ + description=CMU Raster Image;\ + file_extensions=.ras + +image/x-portable-anymap: \ + description=PBM Anymap Image;\ + file_extensions=.pnm + +image/x-portable-bitmap: \ + description=PBM Bitmap Image;\ + file_extensions=.pbm + +image/x-portable-graymap: \ + description=PBM Graymap Image;\ + file_extensions=.pgm + +image/x-portable-pixmap: \ + description=PBM Pixmap Image;\ + file_extensions=.ppm + +image/x-rgb: \ + description=RGB Image;\ + file_extensions=.rgb + +image/x-xbitmap: \ + description=X Bitmap Image;\ + file_extensions=.xbm,.xpm + +image/x-xwindowdump: \ + description=X Window Dump Image;\ + file_extensions=.xwd + +image/png: \ + description=PNG Image;\ + file_extensions=.png;\ + icon=png;\ + action=browser + +image/bmp: \ + description=Bitmap Image;\ + file_extensions=.bmp; + +text/html: \ + description=HTML Document;\ + file_extensions=.htm,.html;\ + icon=html + +text/plain: \ + description=Plain Text;\ + file_extensions=.text,.c,.cc,.c++,.h,.pl,.txt,.java,.el;\ + icon=text;\ + action=browser + +text/tab-separated-values: \ + description=Tab Separated Values Text;\ + file_extensions=.tsv + +text/x-setext: \ + description=Structure Enhanced Text;\ + file_extensions=.etx + +video/mpeg: \ + description=MPEG Video Clip;\ + file_extensions=.mpg,.mpe,.mpeg;\ + icon=mpeg + +video/quicktime: \ + description=QuickTime Video Clip;\ + file_extensions=.mov,.qt + +application/x-troff-msvideo: \ + description=AVI Video;\ + file_extensions=.avi;\ + icon=avi;\ + action=application;\ + application=mplayer.exe %s + +video/x-sgi-movie: \ + description=SGI Movie;\ + file_extensions=.movie,.mv + +message/rfc822: \ + description=Internet Email Message;\ + file_extensions=.mime + +application/xml: \ + description=XML document;\ + file_extensions=.xml + + diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/currency.data b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/currency.data new file mode 100644 index 0000000..fbe5e9d Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/currency.data differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/deploy.jar b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/deploy.jar new file mode 100644 index 0000000..a6bb2db Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/deploy.jar differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/deploy/ffjcext.zip b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/deploy/ffjcext.zip new file mode 100644 index 0000000..226e354 Binary files /dev/null and b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/deploy/ffjcext.zip differ diff --git a/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/deploy/messages.properties b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/deploy/messages.properties new file mode 100644 index 0000000..408b2a8 --- /dev/null +++ b/VRStageLighting-ArtnetGridNode-Beta v2.5.1-Lite/java/lib/deploy/messages.properties @@ -0,0 +1,57 @@ +# +# Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved. +# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. +# + +error.internal.badmsg=internal error, unknown message +error.badinst.nojre=Bad installation. No JRE found in configuration file +error.launch.execv=Error encountered while invoking Java Web Start (execv) +error.launch.sysexec=Error encountered while invoking Java Web Start (SysExec) +error.listener.failed=Splash: sysCreateListenerSocket failed +error.accept.failed=Splash: accept failed +error.recv.failed=Splash: recv failed +error.invalid.port=Splash: didn't revive a valid port +error.read=Read past end of buffer +error.xmlparsing=XML Parsing error: wrong kind of token found +error.splash.exit=Java Web Start splash screen process exiting .....\n +# "Last WinSock Error" means the error message for the last operation that failed. +error.winsock=\tLast WinSock Error: +error.winsock.load=Couldn't load winsock.dll +error.winsock.start=WSAStartup failed +error.badinst.nohome=Bad installation: JAVAWS_HOME not set +error.splash.noimage=Splash: couldn't load splash screen image +error.splash.socket=Splash: server socket failed +error.splash.cmnd=Splash: unrecognized command +error.splash.port=Splash: port not specified +error.splash.send=Splash: send failed +error.splash.timer=Splash: couldn't create shutdown timer +error.splash.x11.open=Splash: Can't open X11 display +error.splash.x11.connect=Splash: X11 connection failed +# Javaws usage: '\' is a joining of two sentence,which are connected including +# the invisible character '\n'. +message.javaws.usage=\n\ +Usage:\tjavaws [run-options] \n\ + \tjavaws [control-options] \n\ + \n\ +where run-options include: \n\ + -verbose \tdisplay additional output \n\ + -offline \trun the application in offline mode \n\ + -system \trun the application from the system cache only\n\ + -Xnosplash \trun without showing a splash screen \n\ + -J

+
+Cryptix General License
+
+Copyright (c) 1995-2005 The Cryptix Foundation Limited.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+  1. Redistributions of source code must retain the copyright notice,
+     this list of conditions and the following disclaimer.
+
+  2. Redistributions in binary form must reproduce the above copyright
+     notice, this list of conditions and the following disclaimer in
+     the documentation and/or other materials provided with the
+     distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE CRYPTIX FOUNDATION LIMITED AND
+CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE CRYPTIX FOUNDATION LIMITED OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/asm.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/asm.md new file mode 100644 index 0000000..707ecda --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/asm.md @@ -0,0 +1,36 @@ +## ASM Bytecode Manipulation Framework v8.0.1 + +### ASM License +
+
+Copyright (c) 2000-2011 France Tรฉlรฉcom
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holders nor the names of its
+   contributors may be used to endorse or promote products derived from
+   this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGE.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/c-libutl.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/c-libutl.md new file mode 100644 index 0000000..8bc9880 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/c-libutl.md @@ -0,0 +1,35 @@ +## c-libutl 20160225 + +### c-libutl License +``` + +This software is distributed under the terms of the BSD license. + +== BSD LICENSE =============================================================== + + (C) 2009 by Remo Dentato (rdentato@gmail.com) + + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +http://opensource.org/licenses/bsd-license.php + +``` diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/cldr.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/cldr.md new file mode 100644 index 0000000..2f21c45 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/cldr.md @@ -0,0 +1,105 @@ +## Unicode Common Local Data Repository (CLDR) v39 + +### CLDR License + +``` + +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +See Terms of Use for definitions of Unicode Inc.'s +Data Files and Software. + +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright ยฉ 1991-2021 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + + +------------------------------------------------------------ Terms of Use --------------------------------------------------------------- + +Unicodeยฎ Copyright and Terms of Use +For the general privacy policy governing access to this site, see the Unicode Privacy Policy. + +Unicode Copyright +Copyright ยฉ 1991-2021 Unicode, Inc. All rights reserved. +Definitions +Unicode Data Files ("DATA FILES") include all data files under the directories: +https://www.unicode.org/Public/ +https://www.unicode.org/reports/ +https://www.unicode.org/ivd/data/ + +Unicode Data Files do not include PDF online code charts under the directory: +https://www.unicode.org/Public/ + +Unicode Software ("SOFTWARE") includes any source code published in the Unicode Standard +or any source code or compiled code under the directories: +https://www.unicode.org/Public/PROGRAMS/ +https://www.unicode.org/Public/cldr/ +http://site.icu-project.org/download/ +Terms of Use +Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicodeยฎ Standard, subject to Terms and Conditions herein. +Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files, subject to the Terms and Conditions herein. +Further specifications of rights and restrictions pertaining to the use of the Unicode DATA FILES and SOFTWARE can be found in the Unicode Data Files and Software License. +Each version of the Unicode Standard has further specifications of rights and restrictions of use. For the book editions (Unicode 5.0 and earlier), these are found on the back of the title page. +The Unicode PDF online code charts carry specific restrictions. Those restrictions are incorporated as the first page of each PDF code chart. +All other files, including online documentation of the core specification for Unicode 6.0 and later, are covered under these general Terms of Use. +No license is granted to "mirror" the Unicode website where a fee is charged for access to the "mirror" site. +Modification is not permitted with respect to this document. All copies of this document must be verbatim. +Restricted Rights Legend +Any technical data or software which is licensed to the United States of America, its agencies and/or instrumentalities under this Agreement is commercial technical data or commercial computer software developed exclusively at private expense as defined in FAR 2.101, or DFARS 252.227-7014 (June 1995), as applicable. For technical data, use, duplication, or disclosure by the Government is subject to restrictions as set forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov 1995) and this Agreement. For Software, in accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, duplication or disclosure by the Government is subject to the restrictions set forth in this Agreement. +Warranties and Disclaimers +This publication and/or website may include technical or typographical errors or other inaccuracies. Changes are periodically added to the information herein; these changes will be incorporated in new editions of the publication and/or website. Unicode, Inc. may make improvements and/or changes in the product(s) and/or program(s) described in this publication and/or website at any time. +If this file has been purchased on magnetic or optical media from Unicode, Inc. the sole and exclusive remedy for any claim will be exchange of the defective media within ninety (90) days of original purchase. +EXCEPT AS PROVIDED IN SECTION E.2, THIS PUBLICATION AND/OR SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UNICODE, INC. AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE. +Waiver of Damages +In no event shall Unicode, Inc. or its licensors be liable for any special, incidental, indirect or consequential damages of any kind, or any damages whatsoever, whether or not Unicode, Inc. was advised of the possibility of the damage, including, without limitation, those resulting from the following: loss of use, data or profits, in connection with the use, modification or distribution of this information or its derivatives. +Trademarks & Logos +The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, Inc. โ€œThe Unicode Consortiumโ€ and โ€œUnicode, Inc.โ€ are trade names of Unicode, Inc. Use of the information and materials found on this website indicates your acknowledgement of Unicode, Inc.โ€™s exclusive worldwide rights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade names. +The Unicode Consortium Name and Trademark Usage Policy (โ€œTrademark Policyโ€) are incorporated herein by reference and you agree to abide by the provisions of the Trademark Policy, which may be changed from time to time in the sole discretion of Unicode, Inc. +All third party trademarks referenced herein are the property of their respective owners. +Miscellaneous +Jurisdiction and Venue. This website is operated from a location in the State of California, United States of America. Unicode, Inc. makes no representation that the materials are appropriate for use in other locations. If you access this website from other locations, you are responsible for compliance with local laws. This Agreement, all use of this website and any claims and damages resulting from use of this website are governed solely by the laws of the State of California without regard to any principles which would apply the laws of a different jurisdiction. The user agrees that any disputes regarding this website shall be resolved solely in the courts located in Santa Clara County, California. The user agrees said courts have personal jurisdiction and agree to waive any right to transfer the dispute to any other forum. +Modification by Unicode, Inc. Unicode, Inc. shall have the right to modify this Agreement at any time by posting it to this website. The user may not assign any part of this Agreement without Unicode, Inc.โ€™s prior written consent. +Taxes. The user agrees to pay any taxes arising from access to this website or use of the information herein, except for those based on Unicodeโ€™s net income. +Severability. If any provision of this Agreement is declared invalid or unenforceable, the remaining provisions of this Agreement shall remain in effect. +Entire Agreement. This Agreement constitutes the entire agreement between the parties. + + +``` diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/icu.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/icu.md new file mode 100644 index 0000000..ab850bf --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/icu.md @@ -0,0 +1,140 @@ +## International Components for Unicode (ICU4J) v67.1 + +### ICU4J License +``` + +COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) + +Copyright ยฉ 1991-2020 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +--------------------- + +Third-Party Software Licenses + +This section contains third-party software notices and/or additional +terms for licensed third-party software components included within ICU +libraries. + +1. ICU License - ICU 1.8.1 to ICU 57.1 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2016 International Business Machines Corporation and others +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + + +โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€” + + +From: https://www.unicode.org/copyright.html: + + Unicodeยฎ Copyright and Terms of Use + + For the general privacy policy governing access to this site, see the Unicode Privacy Policy. + + Unicode Copyright + Copyright ยฉ 1991-2020 Unicode, Inc. All rights reserved. + Definitions + + Unicode Data Files ("DATA FILES") include all data files under the directories: + https://www.unicode.org/Public/ + https://www.unicode.org/reports/ + https://www.unicode.org/ivd/data/ + + Unicode Data Files do not include PDF online code charts under the directory: + https://www.unicode.org/Public/ + + Unicode Software ("SOFTWARE") includes any source code published in the Unicode Standard + or any source code or compiled code under the directories: + https://www.unicode.org/Public/PROGRAMS/ + https://www.unicode.org/Public/cldr/ + http://site.icu-project.org/download/ + + Terms of Use + Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicodeยฎ Standard, subject to Terms and Conditions herein. + Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files, subject to the Terms and Conditions herein. + Further specifications of rights and restrictions pertaining to the use of the Unicode DATA FILES and SOFTWARE can be found in the Unicode Data Files and Software License. + Each version of the Unicode Standard has further specifications of rights and restrictions of use. For the book editions (Unicode 5.0 and earlier), these are found on the back of the title page. + The Unicode PDF online code charts carry specific restrictions. Those restrictions are incorporated as the first page of each PDF code chart. + All other files, including online documentation of the core specification for Unicode 6.0 and later, are covered under these general Terms of Use. + No license is granted to "mirror" the Unicode website where a fee is charged for access to the "mirror" site. + Modification is not permitted with respect to this document. All copies of this document must be verbatim. + Restricted Rights Legend + Any technical data or software which is licensed to the United States of America, its agencies and/or instrumentalities under this Agreement is commercial technical data or commercial computer software developed exclusively at private expense as defined in FAR 2.101, or DFARS 252.227-7014 (June 1995), as applicable. For technical data, use, duplication, or disclosure by the Government is subject to restrictions as set forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov 1995) and this Agreement. For Software, in accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, duplication or disclosure by the Government is subject to the restrictions set forth in this Agreement. + Warranties and Disclaimers + This publication and/or website may include technical or typographical errors or other inaccuracies. Changes are periodically added to the information herein; these changes will be incorporated in new editions of the publication and/or website. Unicode, Inc. may make improvements and/or changes in the product(s) and/or program(s) described in this publication and/or website at any time. + If this file has been purchased on magnetic or optical media from Unicode, Inc. the sole and exclusive remedy for any claim will be exchange of the defective media within ninety (90) days of original purchase. + EXCEPT AS PROVIDED IN SECTION E.2, THIS PUBLICATION AND/OR SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UNICODE, INC. AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE. + Waiver of Damages + In no event shall Unicode, Inc. or its licensors be liable for any special, incidental, indirect or consequential damages of any kind, or any damages whatsoever, whether or not Unicode, Inc. was advised of the possibility of the damage, including, without limitation, those resulting from the following: loss of use, data or profits, in connection with the use, modification or distribution of this information or its derivatives. + Trademarks & Logos + The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, Inc. โ€œThe Unicode Consortiumโ€ and โ€œUnicode, Inc.โ€ are trade names of Unicode, Inc. Use of the information and materials found on this website indicates your acknowledgement of Unicode, Inc.โ€™s exclusive worldwide rights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade names. + The Unicode Consortium Name and Trademark Usage Policy (โ€œTrademark Policyโ€) are incorporated herein by reference and you agree to abide by the provisions of the Trademark Policy, which may be changed from time to time in the sole discretion of Unicode, Inc. + All third party trademarks referenced herein are the property of their respective owners. + Miscellaneous + Jurisdiction and Venue. This website is operated from a location in the State of California, United States of America. Unicode, Inc. makes no representation that the materials are appropriate for use in other locations. If you access this website from other locations, you are responsible for compliance with local laws. This Agreement, all use of this website and any claims and damages resulting from use of this website are governed solely by the laws of the State of California without regard to any principles which would apply the laws of a different jurisdiction. The user agrees that any disputes regarding this website shall be resolved solely in the courts located in Santa Clara County, California. The user agrees said courts have personal jurisdiction and agree to waive any right to transfer the dispute to any other forum. + Modification by Unicode, Inc. Unicode, Inc. shall have the right to modify this Agreement at any time by posting it to this website. The user may not assign any part of this Agreement without Unicode, Inc.โ€™s prior written consent. + Taxes. The user agrees to pay any taxes arising from access to this website or use of the information herein, except for those based on Unicodeโ€™s net income. + Severability. If any provision of this Agreement is declared invalid or unenforceable, the remaining provisions of this Agreement shall remain in effect. + Entire Agreement. This Agreement constitutes the entire agreement between the parties. + +``` + diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/public_suffix.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/public_suffix.md new file mode 100644 index 0000000..61d9607 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/public_suffix.md @@ -0,0 +1,399 @@ +## Mozilla Public Suffix List + +### Public Suffix Notice +``` +You are receiving a copy of the Mozilla Public Suffix List in the following +file: /lib/security/public_suffix_list.dat. The terms of the +Oracle license do NOT apply to this file; it is licensed under the +Mozilla Public License 2.0, separately from the Oracle programs you receive. +If you do not wish to use the Public Suffix List, you may remove the +/lib/security/public_suffix_list.dat file. + +The Source Code of this file is available under the +Mozilla Public License, v. 2.0 and is located at +https://raw.githubusercontent.com/publicsuffix/list/3c213aab32b3c014f171b1673d4ce9b5cd72bf1c/public_suffix_list.dat. +If a copy of the MPL was not distributed with this file, you can obtain one +at https://mozilla.org/MPL/2.0/. + +Software distributed under the License is distributed on an "AS IS" basis, +WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +for the specific language governing rights and limitations under the License. +``` + +### MPL v2.0 +``` +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at https://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. + +``` diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/unicode.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/unicode.md new file mode 100644 index 0000000..cff0c82 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/unicode.md @@ -0,0 +1,54 @@ +## The Unicode Standard, Unicode Character Database, Version 13.0.0 + +### Unicode Character Database +``` + +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +See Terms of Use for definitions of Unicode Inc.'s +Data Files and Software. + +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright ยฉ 1991-2020 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +``` + diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/wepoll.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/wepoll.md new file mode 100644 index 0000000..f2d9544 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/wepoll.md @@ -0,0 +1,34 @@ +## Bert Belder: wepoll v 1.5.8 + +### wepoll License +``` +wepoll - epoll for Windows +https://github.com/piscisaureus/wepoll + +Copyright 2012-2020, Bert Belder +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +``` diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/zlib.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/zlib.md new file mode 100644 index 0000000..d856af6 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.base/zlib.md @@ -0,0 +1,27 @@ +## zlib v1.2.13 + +### zlib License +
+
+Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
+
+This software is provided 'as-is', without any express or implied
+warranty.  In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+1. The origin of this software must not be misrepresented; you must not
+   claim that you wrote the original software. If you use this software
+   in a product, an acknowledgment in the product documentation would be
+   appreciated but is not required.
+2. Altered source versions must be plainly marked as such, and must not be
+   misrepresented as being the original software.
+3. This notice may not be removed or altered from any source distribution.
+
+Jean-loup Gailly        Mark Adler
+jloup@gzip.org          madler@alumni.caltech.edu
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.compiler/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.compiler/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.compiler/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.compiler/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.compiler/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.compiler/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.compiler/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.compiler/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.compiler/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.datatransfer/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.datatransfer/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.datatransfer/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.datatransfer/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.datatransfer/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.datatransfer/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.datatransfer/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.datatransfer/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.datatransfer/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/colorimaging.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/colorimaging.md new file mode 100644 index 0000000..eeb9932 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/colorimaging.md @@ -0,0 +1,7 @@ +## Eastman Kodak Company: Portions of color management and imaging software + +### Eastman Kodak Notice +
+Portions Copyright Eastman Kodak Company 1991-2003
+
+ diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/freetype.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/freetype.md new file mode 100644 index 0000000..e74da88 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/freetype.md @@ -0,0 +1,650 @@ +## The FreeType Project: Freetype v2.12.1 + + +### FreeType Notice + +``` +FreeType comes with two licenses from which you can choose the one +which fits your needs best. + + The FreeType License (FTL) is the most commonly used one. It is + a BSD-style license with a credit clause and thus compatible with + the GNU Public License (GPL) version 3, but not with the + GPL version 2. + + The GNU General Public License (GPL), version 2. Use it for all + projects which use the GPLv2 also, or which need a license + compatible to the GPLv2. + +``` + +### FreeType License +``` + +Copyright (C) 1996-2022 by David Turner, Robert Wilhelm, and Werner Lemberg. +Copyright (C) 2007-2022 by Dereg Clegg and Michael Toftdal. +Copyright (C) 1996-2022 by Just van Rossum, David Turner, Robert Wilhelm, and Werner Lemberg. +Copyright (C) 2004-2022 by Masatake YAMATO and Redhat K.K. +Copyright (C) 2007-2022 by Derek Clegg and Michael Toftdal. +Copyright (C) 2007-2022 by David Turner. +Copyright (C) 2022 by David Turner, Robert Wilhelm, Werner Lemberg, and Moazin Khatti. +Copyright (C) 2007-2022 by Rahul Bhalerao , . +Copyright (C) 2008-2022 by David Turner, Robert Wilhelm, Werner Lemberg, and suzuki toshiya. +Copyright (C) 2019-2022 by Nikhil Ramakrishnan, David Turner, Robert Wilhelm, and Werner Lemberg. +Copyright (C) 2009-2022 by Oran Agra and Mickey Gabel. +Copyright (C) 2004-2022 by David Turner, Robert Wilhelm, Werner Lemberg, and George Williams. +Copyright (C) 2004-2022 by Masatake YAMATO, Red Hat K.K., +Copyright (C) 2003-2022 by Masatake YAMATO, Redhat K.K., +Copyright (C) 2013-2022 by Google, Inc. +Copyright (C) 2018-2022 by David Turner, Robert Wilhelm, Dominik Rรถttsches, and Werner Lemberg. +Copyright (C) 2005-2022 by David Turner, Robert Wilhelm, and Werner Lemberg. +Copyright 2013 by Google, Inc. + + + The FreeType Project LICENSE + ---------------------------- + + 2006-Jan-27 + + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg + + + +Introduction +============ + + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. + + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. + + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: + + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) + + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) + + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') + + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. + + + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: + + """ + Portions of this software are copyright ยฉ The FreeType + Project (www.freetype.org). All rights reserved. + """ + + Please replace with the value from the FreeType version you + actually use. + + +Legal Terms +=========== + +0. Definitions +-------------- + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty +-------------- + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution +----------------- + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising +-------------- + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts +----------- + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + http://www.freetype.org + +``` + +### GPL v2 + +``` + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. + +``` + +### Additional Freetype Attributions +``` + +--------------------------------- +The below license applies to the following files: +libfreetype/src/psaux/psarrst.c +libfreetype/src/psaux/psarrst.h +libfreetype/src/psaux/psblues.c +libfreetype/src/psaux/psblues.h +libfreetype/src/psaux/pserror.c +libfreetype/src/psaux/pserror.h +libfreetype/src/psaux/psfixed.h +libfreetype/src/psaux/psfont.c +libfreetype/src/psaux/psfont.h +libfreetype/src/psaux/psft.c +libfreetype/src/psaux/psft.h +libfreetype/src/psaux/psglue.h +libfreetype/src/psaux/pshints.c +libfreetype/src/psaux/pshints.h +libfreetype/src/psaux/psintrp.c +libfreetype/src/psaux/psintrp.h +libfreetype/src/psaux/psread.c +libfreetype/src/psaux/psread.h +libfreetype/src/psaux/psstack.c +libfreetype/src/psaux/psstack.h +libfreetype/src/psaux/pstypes.h + +Copyright 2006-2014 Adobe Systems Incorporated. + +This software, and all works of authorship, whether in source or +object code form as indicated by the copyright notice(s) included +herein (collectively, the "Work") is made available, and may only be +used, modified, and distributed under the FreeType Project License, +LICENSE.TXT. Additionally, subject to the terms and conditions of the +FreeType Project License, each contributor to the Work hereby grants +to any individual or legal entity exercising permissions granted by +the FreeType Project License and this section (hereafter, "You" or +"Your") a perpetual, worldwide, non-exclusive, no-charge, +royalty-free, irrevocable (except as stated in this section) patent +license to make, have made, use, offer to sell, sell, import, and +otherwise transfer the Work, where such license applies only to those +patent claims licensable by such contributor that are necessarily +infringed by their contribution(s) alone or by combination of their +contribution(s) with the Work to which such contribution(s) was +submitted. If You institute patent litigation against any entity +(including a cross-claim or counterclaim in a lawsuit) alleging that +the Work or a contribution incorporated within the Work constitutes +direct or contributory patent infringement, then any patent licenses +granted to You under this License for that Work shall terminate as of +the date such litigation is filed. + +By using, modifying, or distributing the Work you indicate that you +have read and understood the terms and conditions of the +FreeType Project License as well as those provided in this section, +and you accept them fully. + + +``` + +### MIT License +``` + +--------------------------------- +The below license applies to the following files: +libfreetype/include/freetype/internal/fthash.h +libfreetype/src/base/fthash.c + +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2015 + + Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +``` diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/giflib.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/giflib.md new file mode 100644 index 0000000..0be4fb8 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/giflib.md @@ -0,0 +1,30 @@ +## GIFLIB v5.2.1 + +### GIFLIB License +``` + +The GIFLIB distribution is Copyright (c) 1997 Eric S. Raymond + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +https://sourceforge.net/p/giflib/code/ci/master/tree/openbsd-reallocarray.c + +Copyright (c) 2008 Otto Moerbeek +SPDX-License-Identifier: MIT diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/harfbuzz.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/harfbuzz.md new file mode 100644 index 0000000..3426352 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/harfbuzz.md @@ -0,0 +1,95 @@ +## Harfbuzz v7.0.1 + +### Harfbuzz License + +https://github.com/harfbuzz/harfbuzz/blob/7.0.1/COPYING + +
+
+HarfBuzz is licensed under the so-called "Old MIT" license.  Details follow.
+For parts of HarfBuzz that are licensed under different licenses see individual
+files names COPYING in subdirectories where applicable.
+
+Copyright ยฉ 2010-2022  Google, Inc.
+Copyright ยฉ 2018-2020  Ebrahim Byagowi
+Copyright ยฉ 2004-2013  Red Hat, Inc.
+Copyright ยฉ 2019  Facebook, Inc.
+Copyright ยฉ 2007  Chris Wilson
+Copyright ยฉ 2018-2019 Adobe Inc.
+Copyright ยฉ 2006-2023 Behdad Esfahbod
+Copyright ยฉ 1998-2004  David Turner and Werner Lemberg
+Copyright ยฉ 2009  Keith Stribley
+Copyright ยฉ 2018  Khaled Hosny
+Copyright ยฉ 2016  Elie Roux 
+Copyright ยฉ 2016  Igalia S.L.
+Copyright ยฉ 2015  Mozilla Foundation.
+Copyright ยฉ 1999  David Turner
+Copyright ยฉ 2005  Werner Lemberg
+Copyright ยฉ 2013-2015  Alexei Podtelezhnikov
+Copyright ยฉ 2022 Matthias Clasen
+Copyright ยฉ 2011  Codethink Limited
+
+For full copyright notices consult the individual files in the package.
+
+
+Permission is hereby granted, without written agreement and without
+license or royalty fees, to use, copy, modify, and distribute this
+software and its documentation for any purpose, provided that the
+above copyright notice and the following two paragraphs appear in
+all copies of this software.
+
+IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
+DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
+IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGE.
+
+THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
+BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
+ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
+PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+
+All source code, except for one section, is licensed as above. The one
+exception is licensed with a slightly different MIT variant:
+The contents of this directory are licensed under the following terms:
+
+---------------------------------
+The below license applies to the following files:
+libharfbuzz/hb-ucd.cc
+
+Copyright (C) 2012 Grigori Goronzy 
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+
+ +### AUTHORS File Information +``` + +Behdad Esfahbod +David Corbett +David Turner +Ebrahim Byagowi +Garret Rieger +Jonathan Kew +Khaled Hosny +Lars Knoll +Martin Hosken +Owen Taylor +Roderick Sheeter +Roozbeh Pournader +Simon Hausmann +Werner Lemberg + +``` diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/jpeg.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/jpeg.md new file mode 100644 index 0000000..1a0d41c --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/jpeg.md @@ -0,0 +1,77 @@ +## Independent JPEG Group: JPEG release 6b + +### JPEG License + +``` +**************************************************************************** + +Copyright (C) 1991-1998, Thomas G. Lane. + +This software is the work of Tom Lane, Philip Gladstone, Jim Boucher, +Lee Crocker, Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, +Guido Vollbeding, Ge' Weijers, and other members of the Independent JPEG +Group. + +IJG is not affiliated with the official ISO JPEG standards committee. + +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", +and you, its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-1998, Thomas G. Lane. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute +this software (or portions thereof) for any purpose, without fee, +subject to these conditions: + +(1) If any part of the source code for this software is distributed, +then this README file must be included, with this copyright and no-warranty +notice unaltered; and any additions, deletions, or changes to the original +files must be clearly indicated in accompanying documentation. + +(2) If only executable code is distributed, then the accompanying documentation +must state that "this software is based in part on the work of the +Independent JPEG Group". + +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived +from it. This software may be referred to only as "the Independent JPEG +Group's software". + +We specifically permit and encourage the use of this software as the basis +of commercial products, provided that all warranty or liability claims are +assumed by the product vendor. + +It appears that the arithmetic coding option of the JPEG spec is covered +by patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding +cannot legally be used without obtaining one or more licenses. For this +reason, support for arithmetic coding has been removed from the free +JPEG software. (Since arithmetic coding provides only a marginal gain +over the unpatented Huffman mode, it is unlikely that very many +implementations will support it.) So far as we are aware, there are +no patent restrictions on the remaining code. + +The IJG distribution formerly included code to read and write GIF files. +To avoid entanglement with the Unisys LZW patent, GIF reading support +has been removed altogether, and the GIF writer has been simplified to +produce "uncompressed GIFs". This technique does not use the LZW algorithm; +the resulting GIF files are larger than usual, but are readable by all +standard GIF decoders. + +We are required to state that "The Graphics Interchange Format(c) is +the Copyright property of CompuServe Incorporated. GIF(sm) is a +Service Mark property of CompuServe Incorporated." + +**************************************************************************** +``` + diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/lcms.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/lcms.md new file mode 100644 index 0000000..da86a9c --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/lcms.md @@ -0,0 +1,108 @@ +## Little Color Management System (LCMS) v2.15 + +### LCMS License +
+README.1ST file information
+
+LittleCMS core is released under MIT License
+
+---------------------------------
+
+Little CMS
+Copyright (c) 1998-2023 Marti Maria Saguer
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject
+to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+---------------------------------
+The below license applies to the following files:
+liblcms/cmssm.c
+
+Copyright 2001, softSurfer (www.softsurfer.com)
+
+This code may be freely used and modified for any purpose
+providing that this copyright notice is included with it.
+SoftSurfer makes no warranty for this code, and cannot be held
+liable for any real or imagined damage resulting from its use.
+Users of this code must verify correctness for their application.
+
+
+ +### AUTHORS File Information +``` + + +Main Author +------------ +Marti Maria + + +Contributors +------------ +Bob Friesenhahn +Kai-Uwe Behrmann +Stuart Nixon +Jordi Vilar +Richard Hughes +Auke Nauta +Chris Evans (Google) +Lorenzo Ridolfi +Robin Watts (Artifex) +Shawn Pedersen +Andrew Brygin +Samuli Suominen +Florian Hห†ch +Aurelien Jarno +Claudiu Cebuc +Michael Vhrel (Artifex) +Michal Cihar +Daniel Kaneider +Mateusz Jurczyk (Google) +Paul Miller +Sรˆbastien Lรˆon +Christian Schmitz +XhmikosR +Stanislav Brabec (SuSe) +Leonhard Gruenschloss (Google) +Patrick Noffke +Christopher James Halse Rogers +John Hein +Thomas Weber (Debian) +Mark Allen +Noel Carboni +Sergei Trofimovic +Philipp Knechtges +Amyspark +Lovell Fuller +Eli Schwartz + +Special Thanks +-------------- +Artifex software +AlienSkin software +libVIPS +Jan Morovic +Jos Vernon (WebSupergoo) +Harald Schneider (Maxon) +Christian Albrecht +Dimitrios Anastassakis +Lemke Software +Tim Zaman + +``` diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/libpng.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/libpng.md new file mode 100644 index 0000000..4f69da5 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/libpng.md @@ -0,0 +1,203 @@ +## libpng v1.6.38 + +### libpng License +
+
+COPYRIGHT NOTICE, DISCLAIMER, and LICENSE
+=========================================
+
+PNG Reference Library License version 2
+---------------------------------------
+
+Copyright (c) 1995-2022 The PNG Reference Library Authors.
+Copyright (c) 2018-2022 Cosmin Truta
+Copyright (c) 1998-2018 Glenn Randers-Pehrson
+Copyright (c) 1996-1997 Andreas Dilger
+Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
+
+The software is supplied "as is", without warranty of any kind,
+express or implied, including, without limitation, the warranties
+of merchantability, fitness for a particular purpose, title, and
+non-infringement.  In no event shall the Copyright owners, or
+anyone distributing the software, be liable for any damages or
+other liability, whether in contract, tort or otherwise, arising
+from, out of, or in connection with the software, or the use or
+other dealings in the software, even if advised of the possibility
+of such damage.
+
+Permission is hereby granted to use, copy, modify, and distribute
+this software, or portions hereof, for any purpose, without fee,
+subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you
+    must not claim that you wrote the original software.  If you
+    use this software in a product, an acknowledgment in the product
+    documentation would be appreciated, but is not required.
+
+ 2. Altered source versions must be plainly marked as such, and must
+    not be misrepresented as being the original software.
+
+ 3. This Copyright notice may not be removed or altered from any
+    source or altered source distribution.
+
+
+PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35)
+-----------------------------------------------------------------------
+
+libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are
+Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are
+derived from libpng-1.0.6, and are distributed according to the same
+disclaimer and license as libpng-1.0.6 with the following individuals
+added to the list of Contributing Authors:
+
+    Simon-Pierre Cadieux
+    Eric S. Raymond
+    Mans Rullgard
+    Cosmin Truta
+    Gilles Vollant
+    James Yu
+    Mandar Sahastrabuddhe
+    Google Inc.
+    Vadim Barkov
+
+and with the following additions to the disclaimer:
+
+    There is no warranty against interference with your enjoyment of
+    the library or against infringement.  There is no warranty that our
+    efforts or the library will fulfill any of your particular purposes
+    or needs.  This library is provided with all faults, and the entire
+    risk of satisfactory quality, performance, accuracy, and effort is
+    with the user.
+
+Some files in the "contrib" directory and some configure-generated
+files that are distributed with libpng have other copyright owners, and
+are released under other open source licenses.
+
+libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
+Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from
+libpng-0.96, and are distributed according to the same disclaimer and
+license as libpng-0.96, with the following individuals added to the
+list of Contributing Authors:
+
+    Tom Lane
+    Glenn Randers-Pehrson
+    Willem van Schaik
+
+libpng versions 0.89, June 1996, through 0.96, May 1997, are
+Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88,
+and are distributed according to the same disclaimer and license as
+libpng-0.88, with the following individuals added to the list of
+Contributing Authors:
+
+    John Bowler
+    Kevin Bracey
+    Sam Bushell
+    Magnus Holmgren
+    Greg Roelofs
+    Tom Tanner
+
+Some files in the "scripts" directory have other copyright owners,
+but are released under this license.
+
+libpng versions 0.5, May 1995, through 0.88, January 1996, are
+Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
+
+For the purposes of this copyright and license, "Contributing Authors"
+is defined as the following set of individuals:
+
+    Andreas Dilger
+    Dave Martindale
+    Guy Eric Schalnat
+    Paul Schmidt
+    Tim Wegner
+
+The PNG Reference Library is supplied "AS IS".  The Contributing
+Authors and Group 42, Inc. disclaim all warranties, expressed or
+implied, including, without limitation, the warranties of
+merchantability and of fitness for any purpose.  The Contributing
+Authors and Group 42, Inc. assume no liability for direct, indirect,
+incidental, special, exemplary, or consequential damages, which may
+result from the use of the PNG Reference Library, even if advised of
+the possibility of such damage.
+
+Permission is hereby granted to use, copy, modify, and distribute this
+source code, or portions hereof, for any purpose, without fee, subject
+to the following restrictions:
+
+ 1. The origin of this source code must not be misrepresented.
+
+ 2. Altered versions must be plainly marked as such and must not
+    be misrepresented as being the original source.
+
+ 3. This Copyright notice may not be removed or altered from any
+    source or altered source distribution.
+
+The Contributing Authors and Group 42, Inc. specifically permit,
+without fee, and encourage the use of this source code as a component
+to supporting the PNG file format in commercial products.  If you use
+this source code in a product, acknowledgment is not required but would
+be appreciated.
+
+TRADEMARK
+=========
+
+The name "libpng" has not been registered by the Copyright owners
+as a trademark in any jurisdiction.  However, because libpng has
+been distributed and maintained world-wide, continually since 1995,
+the Copyright owners claim "common-law trademark protection" in any
+jurisdiction where common-law trademark is recognized.
+
+
+ +### AUTHORS File Information +``` +PNG REFERENCE LIBRARY AUTHORS +============================= + +This is the list of PNG Reference Library ("libpng") Contributing +Authors, for copyright and licensing purposes. + + * Andreas Dilger + * Cosmin Truta + * Dave Martindale + * Eric S. Raymond + * Gilles Vollant + * Glenn Randers-Pehrson + * Greg Roelofs + * Guy Eric Schalnat + * James Yu + * John Bowler + * Kevin Bracey + * Magnus Holmgren + * Mandar Sahastrabuddhe + * Mans Rullgard + * Matt Sarett + * Mike Klein + * Pascal Massimino + * Paul Schmidt + * Qiang Zhou + * Sam Bushell + * Samuel Williams + * Simon-Pierre Cadieux + * Tim Wegner + * Tom Lane + * Tom Tanner + * Vadim Barkov + * Willem van Schaik + * Zhijie Liang + * Arm Holdings + - Richard Townsend + * Google Inc. + - Matt Sarett + - Mike Klein + - Dan Field + - Sami Boukortt + +The build projects, the build scripts, the test scripts, and other +files in the "ci", "projects", "scripts" and "tests" directories, have +other copyright owners, but are released under the libpng license. + +Some files in the "contrib" directory, and some tools-generated files +that are distributed with libpng, have other copyright owners, and are +released under other open source licenses. +``` diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/mesa3d.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/mesa3d.md new file mode 100644 index 0000000..cdaa1ac --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.desktop/mesa3d.md @@ -0,0 +1,134 @@ +## Mesa 3-D Graphics Library v21.0.3 + +### Mesa License + +``` +Copyright (C) 1999-2007 Brian Paul All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Attention, Contributors + +When contributing to the Mesa project you must agree to the licensing terms +of the component to which you're contributing. +The following section lists the primary components of the Mesa distribution +and their respective licenses. +Mesa Component Licenses + + + +Component Location License +------------------------------------------------------------------ +Main Mesa code src/mesa/ MIT +Device drivers src/mesa/drivers/* MIT, generally + +Gallium code src/gallium/ MIT + +Ext headers GL/glext.h Khronos + GL/glxext.h Khronos + GL/wglext.h Khronos + KHR/khrplatform.h Khronos + +***************************************************************************** + +---- +include/GL/gl.h : + + + Mesa 3-D graphics library + + Copyright (C) 1999-2006 Brian Paul All Rights Reserved. + Copyright (C) 2009 VMware, Inc. All Rights Reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. + + ***************************************************************************** + +---- +include/GL/glext.h +include/GL/glxext.h +include/GL/wglxext.h : + + + Copyright (c) 2013 - 2018 The Khronos Group Inc. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and/or associated documentation files (the + "Materials"), to deal in the Materials without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Materials, and to + permit persons to whom the Materials are furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Materials. + + THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + + ***************************************************************************** + +---- +include/KHR/khrplatform.h : + + Copyright (c) 2008 - 2018 The Khronos Group Inc. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and/or associated documentation files (the + "Materials"), to deal in the Materials without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Materials, and to + permit persons to whom the Materials are furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Materials. + + THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. + + ***************************************************************************** + +``` diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.instrument/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.instrument/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.instrument/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.instrument/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.instrument/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.instrument/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.instrument/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.instrument/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.instrument/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.logging/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.logging/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.logging/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.logging/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.logging/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.logging/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.logging/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.logging/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.logging/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.management.rmi/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management.rmi/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management.rmi/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.management.rmi/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management.rmi/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management.rmi/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.management.rmi/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management.rmi/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management.rmi/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.management/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.management/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.management/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.management/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.naming/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.naming/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.naming/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.naming/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.naming/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.naming/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.naming/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.naming/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.naming/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.net.http/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.net.http/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.net.http/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.net.http/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.net.http/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.net.http/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.net.http/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.net.http/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.net.http/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.prefs/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.prefs/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.prefs/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.prefs/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.prefs/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.prefs/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.prefs/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.prefs/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.prefs/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.rmi/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.rmi/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.rmi/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.rmi/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.rmi/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.rmi/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.rmi/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.rmi/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.rmi/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.scripting/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.scripting/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.scripting/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.scripting/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.scripting/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.scripting/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.scripting/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.scripting/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.scripting/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.se/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.se/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.se/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.se/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.se/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.se/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.se/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.se/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.se/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.jgss/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.jgss/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.jgss/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.jgss/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.jgss/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.jgss/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.jgss/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.jgss/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.jgss/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.sasl/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.sasl/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.sasl/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.sasl/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.sasl/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.sasl/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.sasl/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.sasl/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.security.sasl/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.smartcardio/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.smartcardio/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.smartcardio/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.smartcardio/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.smartcardio/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.smartcardio/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.smartcardio/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.smartcardio/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.smartcardio/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql.rowset/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql.rowset/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql.rowset/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql.rowset/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql.rowset/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql.rowset/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql.rowset/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql.rowset/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql.rowset/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.sql/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.transaction.xa/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.transaction.xa/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.transaction.xa/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.transaction.xa/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.transaction.xa/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.transaction.xa/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.transaction.xa/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.transaction.xa/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.transaction.xa/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/santuario.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/santuario.md new file mode 100644 index 0000000..fa87128 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml.crypto/santuario.md @@ -0,0 +1,225 @@ +## Apache Santuario v2.3.0 + +### Apache Santuario Notice +
+
+  Apache Santuario - XML Security for Java
+  Copyright 1999-2021 The Apache Software Foundation
+
+  This product includes software developed at
+  The Apache Software Foundation (http://www.apache.org/).
+
+  It was originally based on software copyright (c) 2001, Institute for
+  Data Communications Systems, .
+
+  The development of this software was partly funded by the European
+  Commission in the  project in the ISIS Programme.
+
+
+ +### Apache 2.0 License +
+
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/bcel.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/bcel.md new file mode 100644 index 0000000..6dffd07 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/bcel.md @@ -0,0 +1,219 @@ +## Apache Commons Byte Code Engineering Library (BCEL) Version 6.5.0 + +### Apache Commons BCEL Notice +
+
+    Apache Commons BCEL
+    Copyright 2004-2020 The Apache Software Foundation
+
+    This product includes software developed at
+    The Apache Software Foundation (https://www.apache.org/).
+
+
+ +### Apache 2.0 License +
+
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/dom.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/dom.md new file mode 100644 index 0000000..4fe8093 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/dom.md @@ -0,0 +1,77 @@ +## DOM Level 3 Core Specification v1.0 + +### W3C Software Notice +
+Copyright ยฉ 2004 World Wide Web Consortium, (Massachusetts Institute of Technology,
+European Research Consortium for Informatics and Mathematics, Keio University).
+All Rights Reserved.
+
+The DOM bindings are published under the W3C Software Copyright Notice and License.
+The software license requires "Notice of any changes or modifications to the W3C
+files, including the date changes were made." Consequently, modified versions of
+the DOM bindings must document that they do not conform to the W3C standard; in the
+case of the IDL definitions, the pragma prefix can no longer be 'w3c.org'; in the
+case of the Java language binding, the package names can no longer be in the
+'org.w3c' package.
+
+ +### W3C License +
+
+W3C SOFTWARE NOTICE AND LICENSE
+
+http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
+
+This work (and included software, documentation such as READMEs, or other
+related items) is being provided by the copyright holders under the following
+license. By obtaining, using and/or copying this work, you (the licensee)
+agree that you have read, understood, and will comply with the following terms
+and conditions.
+
+Permission to copy, modify, and distribute this software and its
+documentation, with or without modification, for any purpose and without fee
+or royalty is hereby granted, provided that you include the following on ALL
+copies of the software and documentation or portions thereof, including
+modifications:
+
+   1.The full text of this NOTICE in a location viewable to users of the
+   redistributed or derivative work.
+
+   2.Any pre-existing intellectual property disclaimers, notices, or terms and
+   conditions. If none exist, the W3C Software Short Notice should be included
+   (hypertext is preferred, text is permitted) within the body of any
+   redistributed or derivative code.
+
+   3.Notice of any changes or modifications to the files, including the date
+   changes were made. (We recommend you provide URIs to the location from
+   which the code is derived.)
+
+THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS
+MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT
+LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR
+PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY
+THIRD PARTY PATENTS,COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL
+OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR
+DOCUMENTATION.  The name and trademarks of copyright holders may NOT be used
+in advertising or publicity pertaining to the software without specific,
+written prior permission. Title to copyright in this software and any
+associated documentation will at all times remain with copyright holders.
+
+____________________________________
+
+This formulation of W3C's notice and license became active on December 31
+2002. This version removes the copyright ownership notice such that this
+license can be used with materials other than those owned by the W3C, reflects
+that ERCIM is now a host of the W3C, includes references to this specific
+dated version of the license, and removes the ambiguous grant of "use".
+Otherwise, this version is the same as the previous version and is written so
+as to preserve the Free Software Foundation's assessment of GPL compatibility
+and OSI's certification under the Open Source Definition. Please see our
+Copyright FAQ for common questions about using materials from our site,
+including specific terms and conditions for packages like libwww, Amaya, and
+Jigsaw. Other questions about this notice can be directed to
+site-policy@w3.org.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/jcup.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/jcup.md new file mode 100644 index 0000000..bc566b7 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/jcup.md @@ -0,0 +1,31 @@ +## CUP Parser Generator for Java v 0.11b + +### CUP Parser Generator License + +``` +Copyright 1996-2015 by Scott Hudson, Frank Flannery, C. Scott Ananian, Michael Petter + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both +the copyright notice and this permission notice and warranty disclaimer +appear in supporting documentation, and that the names of the authors or +their employers not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. + +The authors and their employers disclaim all warranties with regard to +this software, including all implied warranties of merchantability and +fitness. In no event shall the authors or their employers be liable for +any special, indirect or consequential damages or any damages whatsoever +resulting from loss of use, data or profits, whether in an action of +contract, negligence or other tortious action, arising out of or in +connection with the use or performance of this software. +``` +--- +``` +This is an open source license. It is also GPL-Compatible (see entry for +"Standard ML of New Jersey"). The portions of CUP output which are hard-coded +into the CUP source code are (naturally) covered by this same license, as is +the CUP runtime code linked with the generated parser. +``` + diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/xalan.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/xalan.md new file mode 100644 index 0000000..924bce8 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/xalan.md @@ -0,0 +1,255 @@ +## Apache Xalan v2.7.2 + +### Apache Xalan Notice +
+
+    ======================================================================================
+    ==  NOTICE file corresponding to the section 4d of the Apache License, Version 2.0, ==
+    ==  in this case for the Apache Xalan distribution.                                 ==
+    ======================================================================================
+
+   This product includes software developed by
+   The Apache Software Foundation (http://www.apache.org/).
+
+   Specifically, we only include the XSLTC portion of the source from the Xalan distribution. 
+   The Xalan project has two processors: an interpretive one (Xalan Interpretive) and a 
+   compiled one (The XSLT Compiler (XSLTC)). We *only* use the XSLTC part of Xalan; We use
+   the source from the packages that are part of the XSLTC sources.
+
+   Portions of this software was originally based on the following:
+
+     - software copyright (c) 1999-2002, Lotus Development Corporation., http://www.lotus.com.
+     - software copyright (c) 2001-2002, Sun Microsystems., http://www.sun.com.
+     - software copyright (c) 2003, IBM Corporation., http://www.ibm.com.
+     - voluntary contributions made by Ovidiu Predescu (ovidiu@cup.hp.com) on behalf of the
+       Apache Software Foundation and was originally developed at Hewlett Packard Company.
+
+
+ +### Apache 2.0 License +
+
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+
+JLEX COPYRIGHT NOTICE, LICENSE AND DISCLAIMER.
+Copyright 1996-2003 by Elliot Joel Berk and C. Scott Ananian
+Permission to use, copy, modify, and distribute this software and 
+its documentation for any purpose and without fee is hereby granted, 
+provided that the above copyright notice appear in all copies and that 
+both the copyright notice and this permission notice and warranty 
+disclaimer appear in supporting documentation, and that the name of 
+the authors or their employers not be used in advertising or publicity 
+pertaining to distribution of the software without specific, written 
+prior permission.
+The authors and their employers disclaim all warranties with regard to 
+this software, including all implied warranties of merchantability and 
+fitness. In no event shall the authors or their employers be liable for 
+any special, indirect or consequential damages or any damages whatsoever 
+resulting from loss of use, data or profits, whether in an action of 
+contract, negligence or other tortious action, arising out of or in 
+connection with the use or performance of this software.The portions of 
+JLex output which are hard-coded into the JLex source code are (naturally) 
+covered by this same license.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/xerces.md b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/xerces.md new file mode 100644 index 0000000..3790b7a --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/java.xml/xerces.md @@ -0,0 +1,229 @@ +## Apache Xerces v2.12.2 + +### Apache Xerces Notice +
+    =========================================================================
+    == NOTICE file corresponding to section 4(d) of the Apache License,    ==
+    == Version 2.0, in this case for the Apache Xerces Java distribution.  ==
+    =========================================================================
+    
+    Apache Xerces Java
+    Copyright 1999-2022 The Apache Software Foundation
+
+    This product includes software developed at
+    The Apache Software Foundation (http://www.apache.org/).
+
+    Portions of this software were originally based on the following:
+    - software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
+    - software copyright (c) 1999, Sun Microsystems., http://www.sun.com.
+    - voluntary contributions made by Paul Eng on behalf of the
+    Apache Software Foundation that were originally developed at iClick, Inc.,
+    software copyright (c) 1999.
+
+ +### Apache 2.0 License +
+
+                              Apache License
+                        Version 2.0, January 2004
+                     http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+   "License" shall mean the terms and conditions for use, reproduction,
+   and distribution as defined by Sections 1 through 9 of this document.
+
+   "Licensor" shall mean the copyright owner or entity authorized by
+   the copyright owner that is granting the License.
+
+   "Legal Entity" shall mean the union of the acting entity and all
+   other entities that control, are controlled by, or are under common
+   control with that entity. For the purposes of this definition,
+   "control" means (i) the power, direct or indirect, to cause the
+   direction or management of such entity, whether by contract or
+   otherwise, or (ii) ownership of fifty percent (50%) or more of the
+   outstanding shares, or (iii) beneficial ownership of such entity.
+
+   "You" (or "Your") shall mean an individual or Legal Entity
+   exercising permissions granted by this License.
+
+   "Source" form shall mean the preferred form for making modifications,
+   including but not limited to software source code, documentation
+   source, and configuration files.
+
+   "Object" form shall mean any form resulting from mechanical
+   transformation or translation of a Source form, including but
+   not limited to compiled object code, generated documentation,
+   and conversions to other media types.
+
+   "Work" shall mean the work of authorship, whether in Source or
+   Object form, made available under the License, as indicated by a
+   copyright notice that is included in or attached to the work
+   (an example is provided in the Appendix below).
+
+   "Derivative Works" shall mean any work, whether in Source or Object
+   form, that is based on (or derived from) the Work and for which the
+   editorial revisions, annotations, elaborations, or other modifications
+   represent, as a whole, an original work of authorship. For the purposes
+   of this License, Derivative Works shall not include works that remain
+   separable from, or merely link (or bind by name) to the interfaces of,
+   the Work and Derivative Works thereof.
+
+   "Contribution" shall mean any work of authorship, including
+   the original version of the Work and any modifications or additions
+   to that Work or Derivative Works thereof, that is intentionally
+   submitted to Licensor for inclusion in the Work by the copyright owner
+   or by an individual or Legal Entity authorized to submit on behalf of
+   the copyright owner. For the purposes of this definition, "submitted"
+   means any form of electronic, verbal, or written communication sent
+   to the Licensor or its representatives, including but not limited to
+   communication on electronic mailing lists, source code control systems,
+   and issue tracking systems that are managed by, or on behalf of, the
+   Licensor for the purpose of discussing and improving the Work, but
+   excluding communication that is conspicuously marked or otherwise
+   designated in writing by the copyright owner as "Not a Contribution."
+
+   "Contributor" shall mean Licensor and any individual or Legal Entity
+   on behalf of whom a Contribution has been received by Licensor and
+   subsequently incorporated within the Work.
+
+2. Grant of Copyright License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   copyright license to reproduce, prepare Derivative Works of,
+   publicly display, publicly perform, sublicense, and distribute the
+   Work and such Derivative Works in Source or Object form.
+
+3. Grant of Patent License. Subject to the terms and conditions of
+   this License, each Contributor hereby grants to You a perpetual,
+   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+   (except as stated in this section) patent license to make, have made,
+   use, offer to sell, sell, import, and otherwise transfer the Work,
+   where such license applies only to those patent claims licensable
+   by such Contributor that are necessarily infringed by their
+   Contribution(s) alone or by combination of their Contribution(s)
+   with the Work to which such Contribution(s) was submitted. If You
+   institute patent litigation against any entity (including a
+   cross-claim or counterclaim in a lawsuit) alleging that the Work
+   or a Contribution incorporated within the Work constitutes direct
+   or contributory patent infringement, then any patent licenses
+   granted to You under this License for that Work shall terminate
+   as of the date such litigation is filed.
+
+4. Redistribution. You may reproduce and distribute copies of the
+   Work or Derivative Works thereof in any medium, with or without
+   modifications, and in Source or Object form, provided that You
+   meet the following conditions:
+
+   (a) You must give any other recipients of the Work or
+       Derivative Works a copy of this License; and
+
+   (b) You must cause any modified files to carry prominent notices
+       stating that You changed the files; and
+
+   (c) You must retain, in the Source form of any Derivative Works
+       that You distribute, all copyright, patent, trademark, and
+       attribution notices from the Source form of the Work,
+       excluding those notices that do not pertain to any part of
+       the Derivative Works; and
+
+   (d) If the Work includes a "NOTICE" text file as part of its
+       distribution, then any Derivative Works that You distribute must
+       include a readable copy of the attribution notices contained
+       within such NOTICE file, excluding those notices that do not
+       pertain to any part of the Derivative Works, in at least one
+       of the following places: within a NOTICE text file distributed
+       as part of the Derivative Works; within the Source form or
+       documentation, if provided along with the Derivative Works; or,
+       within a display generated by the Derivative Works, if and
+       wherever such third-party notices normally appear. The contents
+       of the NOTICE file are for informational purposes only and
+       do not modify the License. You may add Your own attribution
+       notices within Derivative Works that You distribute, alongside
+       or as an addendum to the NOTICE text from the Work, provided
+       that such additional attribution notices cannot be construed
+       as modifying the License.
+
+   You may add Your own copyright statement to Your modifications and
+   may provide additional or different license terms and conditions
+   for use, reproduction, or distribution of Your modifications, or
+   for any such Derivative Works as a whole, provided Your use,
+   reproduction, and distribution of the Work otherwise complies with
+   the conditions stated in this License.
+
+5. Submission of Contributions. Unless You explicitly state otherwise,
+   any Contribution intentionally submitted for inclusion in the Work
+   by You to the Licensor shall be under the terms and conditions of
+   this License, without any additional terms or conditions.
+   Notwithstanding the above, nothing herein shall supersede or modify
+   the terms of any separate license agreement you may have executed
+   with Licensor regarding such Contributions.
+
+6. Trademarks. This License does not grant permission to use the trade
+   names, trademarks, service marks, or product names of the Licensor,
+   except as required for reasonable and customary use in describing the
+   origin of the Work and reproducing the content of the NOTICE file.
+
+7. Disclaimer of Warranty. Unless required by applicable law or
+   agreed to in writing, Licensor provides the Work (and each
+   Contributor provides its Contributions) on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+   implied, including, without limitation, any warranties or conditions
+   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+   PARTICULAR PURPOSE. You are solely responsible for determining the
+   appropriateness of using or redistributing the Work and assume any
+   risks associated with Your exercise of permissions under this License.
+
+8. Limitation of Liability. In no event and under no legal theory,
+   whether in tort (including negligence), contract, or otherwise,
+   unless required by applicable law (such as deliberate and grossly
+   negligent acts) or agreed to in writing, shall any Contributor be
+   liable to You for damages, including any direct, indirect, special,
+   incidental, or consequential damages of any character arising as a
+   result of this License or out of the use or inability to use the
+   Work (including but not limited to damages for loss of goodwill,
+   work stoppage, computer failure or malfunction, or any and all
+   other commercial damages or losses), even if such Contributor
+   has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing
+   the Work or Derivative Works thereof, You may choose to offer,
+   and charge a fee for, acceptance of support, warranty, indemnity,
+   or other liability obligations and/or rights consistent with this
+   License. However, in accepting such obligations, You may act only
+   on Your own behalf and on Your sole responsibility, not on behalf
+   of any other Contributor, and only if You agree to indemnify,
+   defend, and hold each Contributor harmless for any liability
+   incurred by, or claims asserted against, such Contributor by reason
+   of your accepting any such warranty or additional liability.
+
+END OF TERMS AND CONDITIONS
+
+APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following
+   boilerplate notice, with the fields enclosed by brackets "[]"
+   replaced with your own identifying information. (Don't include
+   the brackets!)  The text should be enclosed in the appropriate
+   comment syntax for the file format. We also recommend that a
+   file or class name and description of purpose be included on the
+   same "printed page" as the copyright notice for easier
+   identification within third-party archives.
+
+Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.accessibility/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.accessibility/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.accessibility/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.accessibility/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.accessibility/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.accessibility/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.accessibility/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.accessibility/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.accessibility/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.attach/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.attach/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.attach/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.attach/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.attach/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.attach/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.attach/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.attach/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.attach/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.charsets/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.charsets/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.charsets/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.charsets/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.charsets/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.charsets/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.charsets/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.charsets/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.charsets/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.compiler/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.compiler/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.compiler/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.compiler/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.compiler/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.compiler/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.compiler/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.compiler/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.compiler/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/pkcs11cryptotoken.md b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/pkcs11cryptotoken.md new file mode 100644 index 0000000..08d1e3c --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/pkcs11cryptotoken.md @@ -0,0 +1,72 @@ +## OASIS PKCS #11 Cryptographic Token Interface v3.0 + +### OASIS PKCS #11 Cryptographic Token Interface License +
+
+Copyright ยฉ OASIS Open 2020. All Rights Reserved.
+
+    All capitalized terms in the following text have the meanings
+assigned to them in the OASIS Intellectual Property Rights Policy (the
+"OASIS IPR Policy"). The full Policy may be found at the OASIS website:
+[http://www.oasis-open.org/policies-guidelines/ipr]
+
+    This document and translations of it may be copied and furnished to
+others, and derivative works that comment on or otherwise explain it or
+assist in its implementation may be prepared, copied, published, and
+distributed, in whole or in part, without restriction of any kind,
+provided that the above copyright notice and this section are included
+on all such copies and derivative works. However, this document itself
+may not be modified in any way, including by removing the copyright
+notice or references to OASIS, except as needed for the purpose of
+developing any document or deliverable produced by an OASIS Technical
+Committee (in which case the rules applicable to copyrights, as set
+forth in the OASIS IPR Policy, must be followed) or as required to
+translate it into languages other than English.
+
+    The limited permissions granted above are perpetual and will not be
+revoked by OASIS or its successors or assigns.
+
+    This document and the information contained herein is provided on an
+"AS IS" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
+INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE
+INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP RIGHTS OR ANY IMPLIED
+WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. OASIS
+AND ITS MEMBERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THIS DOCUMENT OR ANY
+PART THEREOF.
+
+    [OASIS requests that any OASIS Party or any other party that
+believes it has patent claims that would necessarily be infringed by
+implementations of this OASIS Standards Final Deliverable, to notify
+OASIS TC Administrator and provide an indication of its willingness to
+grant patent licenses to such patent claims in a manner consistent with
+the IPR Mode of the OASIS Technical Committee that produced this
+deliverable.]
+
+    [OASIS invites any party to contact the OASIS TC Administrator if it
+is aware of a claim of ownership of any patent claims that would
+necessarily be infringed by implementations of this OASIS Standards
+Final Deliverable by a patent holder that is not willing to provide a
+license to such patent claims in a manner consistent with the IPR Mode
+of the OASIS Technical Committee that produced this OASIS Standards
+Final Deliverable. OASIS may include such claims on its website, but
+disclaims any obligation to do so.]
+
+    [OASIS takes no position regarding the validity or scope of any
+intellectual property or other rights that might be claimed to pertain
+to the implementation or use of the technology described in this OASIS
+Standards Final Deliverable or the extent to which any license under
+such rights might or might not be available; neither does it represent
+that it has made any effort to identify any such rights. Information on
+OASIS' procedures with respect to rights in any document or deliverable
+produced by an OASIS Technical Committee can be found on the OASIS
+website. Copies of claims of rights made available for publication and
+any assurances of licenses to be made available, or the result of an
+attempt made to obtain a general license or permission for the use of
+such proprietary rights by implementers or users of this OASIS Standards
+Final Deliverable, can be obtained from the OASIS TC Administrator.
+OASIS makes no representation that any information or list of
+intellectual property rights will at any time be complete, or that any
+claims in such list are, in fact, Essential Claims.]
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/pkcs11wrapper.md b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/pkcs11wrapper.md new file mode 100644 index 0000000..9eb453b --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.cryptoki/pkcs11wrapper.md @@ -0,0 +1,46 @@ +## IAIK (Institute for Applied Information Processing and Communication) PKCS#11 wrapper files v1 + +### IAIK License +
+
+Copyright (c) 2002 Graz University of Technology. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+   list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+   this list of conditions and the following disclaimer in the documentation
+   and/or other materials provided with the distribution.
+
+3. The end-user documentation included with the redistribution, if any, must
+   include the following acknowledgment:
+
+   "This product includes software developed by IAIK of Graz University of
+    Technology."
+
+   Alternately, this acknowledgment may appear in the software itself, if and
+   wherever such third-party acknowledgments normally appear.
+
+4. The names "Graz University of Technology" and "IAIK of Graz University of
+   Technology" must not be used to endorse or promote products derived from this
+   software without prior written permission.
+
+5. Products derived from this software may not be called "IAIK PKCS Wrapper",
+   nor may "IAIK" appear in their name, without prior written permission of
+   Graz University of Technology.
+
+THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.ec/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.ec/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.ec/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.ec/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.ec/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.ec/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.ec/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.ec/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.ec/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.mscapi/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.mscapi/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.mscapi/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.mscapi/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.mscapi/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.mscapi/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.mscapi/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.mscapi/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.crypto.mscapi/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/dynalink.md b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/dynalink.md new file mode 100644 index 0000000..309efc7 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.dynalink/dynalink.md @@ -0,0 +1,32 @@ +## Dynalink v.5 + +### Dynalink License +
+
+Copyright (c) 2009-2013, Attila Szegedi
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+* Redistributions of source code must retain the above copyright
+  notice, this list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright
+  notice, this list of conditions and the following disclaimer in the
+  documentation and/or other materials provided with the distribution.
+* Neither the name of the copyright holder nor the names of
+  contributors may be used to endorse or promote products derived from
+  this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER
+BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.editpad/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.editpad/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.editpad/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.editpad/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.editpad/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.editpad/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.editpad/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.editpad/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.editpad/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.hotspot.agent/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.hotspot.agent/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.hotspot.agent/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.hotspot.agent/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.hotspot.agent/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.hotspot.agent/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.hotspot.agent/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.hotspot.agent/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.hotspot.agent/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.httpserver/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.httpserver/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.httpserver/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.httpserver/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.httpserver/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.httpserver/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.httpserver/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.httpserver/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.httpserver/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.foreign/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.foreign/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.foreign/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.foreign/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.foreign/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.foreign/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.foreign/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.foreign/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.foreign/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.vector/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.vector/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.vector/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.vector/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.vector/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.vector/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.vector/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.vector/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.incubator.vector/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.ed/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.ed/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.ed/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.ed/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.ed/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.ed/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.ed/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.ed/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.ed/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.jvmstat/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.jvmstat/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.jvmstat/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.jvmstat/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.jvmstat/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.jvmstat/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.jvmstat/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.jvmstat/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.jvmstat/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/jline.md b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/jline.md new file mode 100644 index 0000000..4e5d344 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.le/jline.md @@ -0,0 +1,294 @@ +## JLine v3.22.0 + +### JLine License +
+
+Copyright (c) 2002-2018, the original author or authors.
+All rights reserved.
+
+https://opensource.org/licenses/BSD-3-Clause
+
+Redistribution and use in source and binary forms, with or
+without modification, are permitted provided that the following
+conditions are met:
+
+Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+
+Redistributions in binary form must reproduce the above copyright
+notice, this list of conditions and the following disclaimer
+in the documentation and/or other materials provided with
+the distribution.
+
+Neither the name of JLine nor the names of its contributors
+may be used to endorse or promote products derived from this
+software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
+BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+4th Party Dependency
+=============
+org.fusesource.jansi version 2.4.0
+org.apache.sshd 2.9.2
+org.apache.felix.gogo.runtime 1.1.6
+org.apache.felix.gogo.jline 1.1.8
+=============
+Apache License
+                          Version 2.0, January 2004
+                       http://www.apache.org/licenses/
+
+  TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+  1. Definitions.
+
+     "License" shall mean the terms and conditions for use, reproduction,
+     and distribution as defined by Sections 1 through 9 of this document.
+
+     "Licensor" shall mean the copyright owner or entity authorized by
+     the copyright owner that is granting the License.
+
+     "Legal Entity" shall mean the union of the acting entity and all
+     other entities that control, are controlled by, or are under common
+     control with that entity. For the purposes of this definition,
+     "control" means (i) the power, direct or indirect, to cause the
+     direction or management of such entity, whether by contract or
+     otherwise, or (ii) ownership of fifty percent (50%) or more of the
+     outstanding shares, or (iii) beneficial ownership of such entity.
+
+     "You" (or "Your") shall mean an individual or Legal Entity
+     exercising permissions granted by this License.
+
+     "Source" form shall mean the preferred form for making modifications,
+     including but not limited to software source code, documentation
+     source, and configuration files.
+
+     "Object" form shall mean any form resulting from mechanical
+     transformation or translation of a Source form, including but
+     not limited to compiled object code, generated documentation,
+     and conversions to other media types.
+
+     "Work" shall mean the work of authorship, whether in Source or
+     Object form, made available under the License, as indicated by a
+     copyright notice that is included in or attached to the work
+     (an example is provided in the Appendix below).
+
+     "Derivative Works" shall mean any work, whether in Source or Object
+     form, that is based on (or derived from) the Work and for which the
+     editorial revisions, annotations, elaborations, or other modifications
+     represent, as a whole, an original work of authorship. For the purposes
+     of this License, Derivative Works shall not include works that remain
+     separable from, or merely link (or bind by name) to the interfaces of,
+     the Work and Derivative Works thereof.
+
+     "Contribution" shall mean any work of authorship, including
+     the original version of the Work and any modifications or additions
+     to that Work or Derivative Works thereof, that is intentionally
+     submitted to Licensor for inclusion in the Work by the copyright owner
+     or by an individual or Legal Entity authorized to submit on behalf of
+     the copyright owner. For the purposes of this definition, "submitted"
+     means any form of electronic, verbal, or written communication sent
+     to the Licensor or its representatives, including but not limited to
+     communication on electronic mailing lists, source code control systems,
+     and issue tracking systems that are managed by, or on behalf of, the
+     Licensor for the purpose of discussing and improving the Work, but
+     excluding communication that is conspicuously marked or otherwise
+     designated in writing by the copyright owner as "Not a Contribution."
+
+     "Contributor" shall mean Licensor and any individual or Legal Entity
+     on behalf of whom a Contribution has been received by Licensor and
+     subsequently incorporated within the Work.
+
+  2. Grant of Copyright License. Subject to the terms and conditions of
+     this License, each Contributor hereby grants to You a perpetual,
+     worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+     copyright license to reproduce, prepare Derivative Works of,
+     publicly display, publicly perform, sublicense, and distribute the
+     Work and such Derivative Works in Source or Object form.
+
+  3. Grant of Patent License. Subject to the terms and conditions of
+     this License, each Contributor hereby grants to You a perpetual,
+     worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+     (except as stated in this section) patent license to make, have made,
+     use, offer to sell, sell, import, and otherwise transfer the Work,
+     where such license applies only to those patent claims licensable
+     by such Contributor that are necessarily infringed by their
+     Contribution(s) alone or by combination of their Contribution(s)
+     with the Work to which such Contribution(s) was submitted. If You
+     institute patent litigation against any entity (including a
+     cross-claim or counterclaim in a lawsuit) alleging that the Work
+     or a Contribution incorporated within the Work constitutes direct
+     or contributory patent infringement, then any patent licenses
+     granted to You under this License for that Work shall terminate
+     as of the date such litigation is filed.
+
+  4. Redistribution. You may reproduce and distribute copies of the
+     Work or Derivative Works thereof in any medium, with or without
+     modifications, and in Source or Object form, provided that You
+     meet the following conditions:
+
+     (a) You must give any other recipients of the Work or
+         Derivative Works a copy of this License; and
+
+     (b) You must cause any modified files to carry prominent notices
+         stating that You changed the files; and
+
+     (c) You must retain, in the Source form of any Derivative Works
+         that You distribute, all copyright, patent, trademark, and
+         attribution notices from the Source form of the Work,
+         excluding those notices that do not pertain to any part of
+         the Derivative Works; and
+
+     (d) If the Work includes a "NOTICE" text file as part of its
+         distribution, then any Derivative Works that You distribute must
+         include a readable copy of the attribution notices contained
+         within such NOTICE file, excluding those notices that do not
+         pertain to any part of the Derivative Works, in at least one
+         of the following places: within a NOTICE text file distributed
+         as part of the Derivative Works; within the Source form or
+         documentation, if provided along with the Derivative Works; or,
+         within a display generated by the Derivative Works, if and
+         wherever such third-party notices normally appear. The contents
+         of the NOTICE file are for informational purposes only and
+         do not modify the License. You may add Your own attribution
+         notices within Derivative Works that You distribute, alongside
+         or as an addendum to the NOTICE text from the Work, provided
+         that such additional attribution notices cannot be construed
+         as modifying the License.
+
+     You may add Your own copyright statement to Your modifications and
+     may provide additional or different license terms and conditions
+     for use, reproduction, or distribution of Your modifications, or
+     for any such Derivative Works as a whole, provided Your use,
+     reproduction, and distribution of the Work otherwise complies with
+     the conditions stated in this License.
+
+  5. Submission of Contributions. Unless You explicitly state otherwise,
+     any Contribution intentionally submitted for inclusion in the Work
+     by You to the Licensor shall be under the terms and conditions of
+     this License, without any additional terms or conditions.
+     Notwithstanding the above, nothing herein shall supersede or modify
+     the terms of any separate license agreement you may have executed
+     with Licensor regarding such Contributions.
+
+  6. Trademarks. This License does not grant permission to use the trade
+     names, trademarks, service marks, or product names of the Licensor,
+     except as required for reasonable and customary use in describing the
+     origin of the Work and reproducing the content of the NOTICE file.
+
+  7. Disclaimer of Warranty. Unless required by applicable law or
+     agreed to in writing, Licensor provides the Work (and each
+     Contributor provides its Contributions) on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+     implied, including, without limitation, any warranties or conditions
+     of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+     PARTICULAR PURPOSE. You are solely responsible for determining the
+     appropriateness of using or redistributing the Work and assume any
+     risks associated with Your exercise of permissions under this License.
+
+  8. Limitation of Liability. In no event and under no legal theory,
+     whether in tort (including negligence), contract, or otherwise,
+     unless required by applicable law (such as deliberate and grossly
+     negligent acts) or agreed to in writing, shall any Contributor be
+     liable to You for damages, including any direct, indirect, special,
+     incidental, or consequential damages of any character arising as a
+     result of this License or out of the use or inability to use the
+     Work (including but not limited to damages for loss of goodwill,
+     work stoppage, computer failure or malfunction, or any and all
+     other commercial damages or losses), even if such Contributor
+     has been advised of the possibility of such damages.
+
+  9. Accepting Warranty or Additional Liability. While redistributing
+     the Work or Derivative Works thereof, You may choose to offer,
+     and charge a fee for, acceptance of support, warranty, indemnity,
+     or other liability obligations and/or rights consistent with this
+     License. However, in accepting such obligations, You may act only
+     on Your own behalf and on Your sole responsibility, not on behalf
+     of any other Contributor, and only if You agree to indemnify,
+     defend, and hold each Contributor harmless for any liability
+     incurred by, or claims asserted against, such Contributor by reason
+     of your accepting any such warranty or additional liability.
+
+  END OF TERMS AND CONDITIONS
+
+  APPENDIX: How to apply the Apache License to your work.
+
+     To apply the Apache License to your work, attach the following
+     boilerplate notice, with the fields enclosed by brackets "[]"
+     replaced with your own identifying information. (Don't include
+     the brackets!)  The text should be enclosed in the appropriate
+     comment syntax for the file format. We also recommend that a
+     file or class name and description of purpose be included on the
+     same "printed page" as the copyright notice for easier
+     identification within third-party archives.
+
+  Copyright [yyyy] [name of copyright owner]
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+=============
+juniversalchardet
+
+The library is subject to the Mozilla Public License Version 1.1.
+
+Alternatively, the library may be used under the terms of either the GNU General Public License Version 2 or later, or the GNU Lesser General Public License 2.1 or later.
+
+================
+
+slf4j
+
+SLF4J source code and binaries are distributed under the MIT license.
+
+
+Copyright (c) 2004-2023 QOS.ch
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY,   FITNESS   FOR   A  PARTICULAR   PURPOSE   AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+These terms are identical to those of the MIT License, also called the X License
+or the X11 License, which is a simple, permissive non-copyleft free software license.
+It is deemed compatible with virtually all types of licenses, commercial or otherwise.
+In particular, the Free Software Foundation has declared it compatible with GNU GPL.
+It is also known to be approved by the Apache Software Foundation as compatible with
+Apache Software License.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/jopt-simple.md b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/jopt-simple.md new file mode 100644 index 0000000..c08b3b4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.opt/jopt-simple.md @@ -0,0 +1,27 @@ +## jopt-simple v5.0.4 + +### MIT License +
+
+Copyright (c) 2004-2015 Paul R. Holser, Jr.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.ci/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.ci/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.ci/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.ci/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.ci/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.ci/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.ci/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.ci/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.ci/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler.management/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler.management/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler.management/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler.management/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler.management/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler.management/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler.management/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler.management/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler.management/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.internal.vm.compiler/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jartool/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jartool/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jartool/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jartool/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jartool/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jartool/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jartool/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jartool/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jartool/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/jquery.md b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/jquery.md new file mode 100644 index 0000000..d468b31 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.6.1 + +### jQuery License +``` +jQuery v 3.6.1 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************** + +The jQuery JavaScript Library v3.6.1 also includes Sizzle.js + +Sizzle.js includes the following license: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/sizzle + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +********************* + +``` diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/jqueryUI.md b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/jqueryUI.md new file mode 100644 index 0000000..8031bdb --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.javadoc/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.12.1 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jcmd/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jcmd/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jcmd/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jcmd/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jcmd/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jcmd/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jcmd/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jcmd/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jcmd/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jconsole/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jconsole/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jconsole/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jconsole/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jconsole/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jconsole/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jconsole/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jconsole/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jconsole/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdeps/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdeps/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdeps/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdeps/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdeps/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdeps/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdeps/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdeps/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdeps/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdi/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdi/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdi/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdi/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdi/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdi/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdi/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdi/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdi/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdwp.agent/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdwp.agent/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdwp.agent/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdwp.agent/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdwp.agent/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdwp.agent/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdwp.agent/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdwp.agent/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jdwp.agent/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jfr/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jfr/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jfr/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jfr/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jfr/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jfr/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jfr/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jfr/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jfr/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jlink/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jlink/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jlink/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jlink/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jlink/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jlink/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jlink/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jlink/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jlink/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jpackage/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jpackage/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jpackage/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jpackage/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jpackage/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jpackage/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jpackage/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jpackage/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jpackage/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jshell/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jshell/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jshell/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jshell/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jshell/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jshell/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jshell/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jshell/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jshell/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jsobject/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jsobject/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jsobject/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jsobject/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jsobject/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jsobject/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jsobject/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jsobject/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jsobject/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jstatd/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jstatd/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jstatd/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jstatd/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jstatd/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jstatd/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jstatd/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jstatd/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.jstatd/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/cldr.md b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/cldr.md new file mode 100644 index 0000000..5b42e53 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/cldr.md @@ -0,0 +1 @@ +Please see ..\java.base\cldr.md diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/thaidict.md b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/thaidict.md new file mode 100644 index 0000000..f8b1133 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.localedata/thaidict.md @@ -0,0 +1,31 @@ +## Thai Dictionary + +### Thai Dictionary License +
+
+Copyright (C) 1982 The Royal Institute, Thai Royal Government.
+
+Copyright (C) 1998 National Electronics and Computer Technology Center,
+National Science and Technology Development Agency,
+Ministry of Science Technology and Environment,
+Thai Royal Government.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+
diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.agent/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.agent/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.agent/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.agent/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.agent/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.agent/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.agent/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.agent/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.agent/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.jfr/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.jfr/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.jfr/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.jfr/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.jfr/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.jfr/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.jfr/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.jfr/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management.jfr/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.management/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.dns/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.dns/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.dns/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.dns/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.dns/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.dns/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.dns/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.dns/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.dns/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.rmi/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.rmi/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.rmi/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.rmi/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.rmi/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.rmi/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.rmi/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.rmi/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.naming.rmi/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.net/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.net/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.net/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.net/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.net/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.net/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.net/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.net/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.net/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.nio.mapmode/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.nio.mapmode/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.nio.mapmode/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.nio.mapmode/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.nio.mapmode/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.nio.mapmode/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.nio.mapmode/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.nio.mapmode/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.nio.mapmode/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.random/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.random/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.random/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.random/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.random/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.random/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.random/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.random/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.random/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.sctp/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.sctp/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.sctp/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.sctp/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.sctp/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.sctp/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.sctp/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.sctp/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.sctp/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.auth/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.auth/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.auth/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.auth/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.auth/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.auth/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.auth/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.auth/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.auth/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.jgss/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.jgss/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.jgss/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.jgss/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.jgss/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.jgss/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.jgss/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.jgss/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.security.jgss/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported.desktop/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported.desktop/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported.desktop/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported.desktop/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported.desktop/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported.desktop/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported.desktop/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported.desktop/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported.desktop/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.unsupported/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.xml.dom/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.xml.dom/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.xml.dom/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.xml.dom/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.xml.dom/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.xml.dom/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.xml.dom/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.xml.dom/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.xml.dom/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.zipfs/ADDITIONAL_LICENSE_INFO b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.zipfs/ADDITIONAL_LICENSE_INFO new file mode 100644 index 0000000..b62cc3e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.zipfs/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.zipfs/ASSEMBLY_EXCEPTION b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.zipfs/ASSEMBLY_EXCEPTION new file mode 100644 index 0000000..0d4cfb4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.zipfs/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.zipfs/LICENSE b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.zipfs/LICENSE new file mode 100644 index 0000000..4ad9fe4 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/legal/jdk.zipfs/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/classlist b/VRStagelighting GridNode SPOUT OLD/java/lib/classlist new file mode 100644 index 0000000..ee1d04e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/lib/classlist @@ -0,0 +1,1408 @@ +# NOTE: Do not modify this file. +# +# This file is generated via the -XX:DumpLoadedClassList= option +# and is used at CDS archive dump time (see -Xshare:dump). +# +java/lang/Object +java/io/Serializable +java/lang/Comparable +java/lang/CharSequence +java/lang/constant/Constable +java/lang/constant/ConstantDesc +java/lang/String +java/lang/reflect/AnnotatedElement +java/lang/reflect/GenericDeclaration +java/lang/reflect/Type +java/lang/invoke/TypeDescriptor +java/lang/invoke/TypeDescriptor$OfField +java/lang/Class +java/lang/Cloneable +java/lang/ClassLoader +java/lang/System +java/lang/Throwable +java/lang/Error +java/lang/ThreadDeath +java/lang/Exception +java/lang/RuntimeException +java/lang/SecurityManager +java/security/ProtectionDomain +java/security/AccessControlContext +java/security/AccessController +java/security/SecureClassLoader +java/lang/ReflectiveOperationException +java/lang/ClassNotFoundException +java/lang/Record +java/lang/LinkageError +java/lang/NoClassDefFoundError +java/lang/ClassCastException +java/lang/ArrayStoreException +java/lang/VirtualMachineError +java/lang/InternalError +java/lang/OutOfMemoryError +java/lang/StackOverflowError +java/lang/IllegalMonitorStateException +java/lang/ref/Reference +java/lang/ref/SoftReference +java/lang/ref/WeakReference +java/lang/ref/FinalReference +java/lang/ref/PhantomReference +java/lang/ref/Finalizer +java/lang/Runnable +java/lang/Thread +java/lang/Thread$UncaughtExceptionHandler +java/lang/ThreadGroup +java/util/Dictionary +java/util/Map +java/util/Hashtable +java/util/Properties +java/lang/Module +java/lang/reflect/AccessibleObject +java/lang/reflect/Member +java/lang/reflect/Field +java/lang/reflect/Parameter +java/lang/reflect/Executable +java/lang/reflect/Method +java/lang/reflect/Constructor +jdk/internal/reflect/MagicAccessorImpl +jdk/internal/reflect/MethodAccessor +jdk/internal/reflect/MethodAccessorImpl +jdk/internal/reflect/ConstructorAccessor +jdk/internal/reflect/ConstructorAccessorImpl +jdk/internal/reflect/DelegatingClassLoader +jdk/internal/reflect/ConstantPool +jdk/internal/reflect/FieldAccessor +jdk/internal/reflect/FieldAccessorImpl +jdk/internal/reflect/UnsafeFieldAccessorImpl +jdk/internal/reflect/UnsafeStaticFieldAccessorImpl +java/lang/annotation/Annotation +jdk/internal/reflect/CallerSensitive +jdk/internal/reflect/NativeConstructorAccessorImpl +java/lang/invoke/MethodHandle +java/lang/invoke/DirectMethodHandle +java/lang/invoke/VarHandle +java/lang/invoke/MemberName +java/lang/invoke/ResolvedMethodName +java/lang/invoke/MethodHandleNatives +java/lang/invoke/LambdaForm +java/lang/invoke/TypeDescriptor$OfMethod +java/lang/invoke/MethodType +java/lang/BootstrapMethodError +java/lang/invoke/CallSite +jdk/internal/invoke/NativeEntryPoint +java/lang/invoke/MethodHandleNatives$CallSiteContext +java/lang/invoke/ConstantCallSite +java/lang/invoke/MutableCallSite +java/lang/invoke/VolatileCallSite +java/lang/AssertionStatusDirectives +java/lang/Appendable +java/lang/AbstractStringBuilder +java/lang/StringBuffer +java/lang/StringBuilder +jdk/internal/misc/UnsafeConstants +jdk/internal/misc/Unsafe +jdk/internal/module/Modules +java/lang/AutoCloseable +java/io/Closeable +java/io/InputStream +java/io/ByteArrayInputStream +java/net/URL +java/util/jar/Manifest +jdk/internal/loader/BuiltinClassLoader +jdk/internal/loader/ClassLoaders +jdk/internal/loader/ClassLoaders$AppClassLoader +jdk/internal/loader/ClassLoaders$PlatformClassLoader +java/security/CodeSource +java/util/AbstractMap +java/util/concurrent/ConcurrentMap +java/util/concurrent/ConcurrentHashMap +java/lang/Iterable +java/util/Collection +java/util/AbstractCollection +java/util/List +java/util/AbstractList +java/util/RandomAccess +java/util/ArrayList +java/lang/StackTraceElement +java/nio/Buffer +java/lang/StackWalker +java/lang/StackStreamFactory$AbstractStackWalker +java/lang/StackWalker$StackFrame +java/lang/StackFrameInfo +java/lang/LiveStackFrame +java/lang/LiveStackFrameInfo +java/util/concurrent/locks/AbstractOwnableSynchronizer +java/lang/Boolean +java/lang/Character +java/lang/Number +java/lang/Float +java/lang/Double +java/lang/Byte +java/lang/Short +java/lang/Integer +java/lang/Long +java/util/Iterator +java/lang/reflect/RecordComponent +jdk/internal/vm/vector/VectorSupport +jdk/internal/vm/vector/VectorSupport$VectorPayload +jdk/internal/vm/vector/VectorSupport$Vector +jdk/internal/vm/vector/VectorSupport$VectorMask +jdk/internal/vm/vector/VectorSupport$VectorShuffle +java/lang/NullPointerException +java/lang/ArithmeticException +java/io/ObjectStreamField +java/util/Comparator +java/lang/String$CaseInsensitiveComparator +java/lang/Module$ArchivedData +jdk/internal/misc/CDS +java/util/Set +java/util/ImmutableCollections$AbstractImmutableCollection +java/util/ImmutableCollections$AbstractImmutableSet +java/util/ImmutableCollections$Set12 +java/util/Objects +java/util/ImmutableCollections +java/util/ImmutableCollections$AbstractImmutableList +java/util/ImmutableCollections$ListN +java/util/ImmutableCollections$SetN +java/util/ImmutableCollections$AbstractImmutableMap +java/util/ImmutableCollections$MapN +jdk/internal/access/JavaLangReflectAccess +java/lang/reflect/ReflectAccess +jdk/internal/access/SharedSecrets +java/lang/invoke/MethodHandles +java/lang/invoke/MemberName$Factory +java/security/Guard +java/security/Permission +java/security/BasicPermission +java/lang/reflect/ReflectPermission +java/lang/StringLatin1 +java/lang/invoke/MethodHandles$Lookup +jdk/internal/reflect/Reflection +java/lang/Math +java/util/HashMap +java/util/AbstractSet +java/util/ImmutableCollections$MapN$1 +java/util/ImmutableCollections$MapN$MapNIterator +java/util/Map$Entry +java/util/KeyValueHolder +java/util/HashMap$Node +java/util/LinkedHashMap$Entry +java/util/HashMap$TreeNode +java/lang/Runtime +java/util/concurrent/locks/Lock +java/util/concurrent/locks/ReentrantLock +java/util/concurrent/ConcurrentHashMap$Segment +java/util/concurrent/ConcurrentHashMap$CounterCell +java/util/concurrent/ConcurrentHashMap$Node +java/util/concurrent/locks/LockSupport +java/util/concurrent/ConcurrentHashMap$ReservationNode +java/security/PrivilegedAction +jdk/internal/reflect/ReflectionFactory$GetReflectionFactoryAction +jdk/internal/reflect/ReflectionFactory +java/lang/ref/Reference$ReferenceHandler +jdk/internal/ref/Cleaner +java/lang/ref/ReferenceQueue +java/lang/ref/ReferenceQueue$Null +java/lang/ref/ReferenceQueue$Lock +jdk/internal/access/JavaLangRefAccess +java/lang/ref/Reference$1 +java/lang/ref/Finalizer$FinalizerThread +jdk/internal/access/JavaLangAccess +java/lang/System$2 +jdk/internal/util/SystemProps +jdk/internal/util/SystemProps$Raw +java/lang/StringConcatHelper +java/lang/VersionProps +jdk/internal/misc/VM +java/util/Arrays +java/lang/CharacterData +java/lang/CharacterDataLatin1 +java/lang/Integer$IntegerCache +java/util/HashMap$EntrySet +java/util/HashMap$HashIterator +java/util/HashMap$EntryIterator +jdk/internal/util/StaticProperty +java/io/FileInputStream +java/io/FileDescriptor +jdk/internal/access/JavaIOFileDescriptorAccess +java/io/FileDescriptor$1 +java/io/Flushable +java/io/OutputStream +java/io/FileOutputStream +java/io/FilterInputStream +java/io/BufferedInputStream +java/io/FilterOutputStream +java/io/PrintStream +java/io/BufferedOutputStream +java/io/Writer +java/io/OutputStreamWriter +java/nio/charset/Charset +java/nio/charset/spi/CharsetProvider +sun/nio/cs/StandardCharsets +java/lang/ThreadLocal +java/util/concurrent/atomic/AtomicInteger +sun/security/action/GetPropertyAction +sun/util/PreHashedMap +sun/nio/cs/StandardCharsets$Aliases +sun/nio/cs/StandardCharsets$Cache +sun/nio/cs/HistoricallyNamedCharset +sun/nio/cs/Unicode +sun/nio/cs/UTF_8 +sun/nio/cs/ISO_8859_1 +sun/nio/cs/US_ASCII +java/nio/charset/StandardCharsets +sun/nio/cs/UTF_16BE +sun/nio/cs/UTF_16LE +sun/nio/cs/UTF_16 +sun/nio/cs/StandardCharsets$Classes +jdk/internal/util/ArraysSupport +sun/nio/cs/MS1252 +java/lang/Class$ReflectionData +java/lang/Class$Atomic +java/lang/Class$1 +java/lang/reflect/Modifier +jdk/internal/reflect/DelegatingConstructorAccessorImpl +sun/nio/cs/StreamEncoder +java/nio/charset/CharsetEncoder +sun/nio/cs/ArrayEncoder +sun/nio/cs/SingleByte$Encoder +sun/nio/cs/MS1252$Holder +java/lang/StringUTF16 +sun/nio/cs/SingleByte +java/nio/charset/CodingErrorAction +java/nio/ByteBuffer +jdk/internal/misc/ScopedMemoryAccess +jdk/internal/access/JavaNioAccess +java/nio/Buffer$1 +java/nio/HeapByteBuffer +java/nio/ByteOrder +java/io/BufferedWriter +java/lang/Terminator +jdk/internal/misc/Signal$Handler +java/lang/Terminator$1 +jdk/internal/misc/Signal +java/util/Hashtable$Entry +jdk/internal/misc/Signal$NativeHandler +jdk/internal/misc/OSEnvironment +sun/io/Win32ErrorMode +java/util/Collections +java/util/Collections$EmptySet +java/util/Collections$EmptyList +java/util/Collections$EmptyMap +java/lang/IllegalArgumentException +java/lang/invoke/MethodHandleStatics +jdk/internal/module/ModuleBootstrap +java/lang/module/ModuleDescriptor +sun/invoke/util/VerifyAccess +jdk/internal/access/JavaLangModuleAccess +java/lang/module/ModuleDescriptor$1 +java/io/File +java/io/DefaultFileSystem +java/io/FileSystem +java/io/WinNTFileSystem +jdk/internal/module/ModulePatcher +jdk/internal/module/ModuleBootstrap$Counters +jdk/internal/module/ArchivedBootLayer +java/nio/file/Watchable +java/nio/file/Path +java/nio/file/FileSystems +sun/nio/fs/DefaultFileSystemProvider +java/nio/file/spi/FileSystemProvider +sun/nio/fs/AbstractFileSystemProvider +sun/nio/fs/WindowsFileSystemProvider +java/lang/Enum +java/nio/file/OpenOption +java/nio/file/StandardOpenOption +java/nio/file/FileSystem +sun/nio/fs/WindowsFileSystem +java/util/HashSet +java/util/Arrays$ArrayList +java/util/Arrays$ArrayItr +java/util/Collections$UnmodifiableCollection +java/util/Collections$UnmodifiableSet +sun/nio/fs/WindowsPathParser +sun/nio/fs/WindowsPathType +sun/nio/fs/WindowsPathParser$Result +sun/nio/fs/WindowsPath +java/lang/module/ModuleFinder +jdk/internal/module/ModulePath +java/util/jar/Attributes$Name +java/lang/reflect/Array +jdk/internal/perf/PerfCounter +jdk/internal/perf/Perf$GetPerfAction +jdk/internal/perf/Perf +sun/nio/ch/DirectBuffer +java/nio/MappedByteBuffer +java/nio/DirectByteBuffer +java/nio/Bits +java/util/concurrent/atomic/AtomicLong +jdk/internal/misc/VM$BufferPool +java/nio/Bits$1 +java/nio/LongBuffer +java/nio/DirectLongBufferU +java/util/zip/ZipConstants +java/util/zip/ZipFile +java/util/jar/JarFile +jdk/internal/access/JavaUtilZipFileAccess +java/util/zip/ZipFile$1 +jdk/internal/access/JavaUtilJarAccess +java/util/jar/JavaUtilJarAccessImpl +java/lang/Runtime$Version +java/util/ImmutableCollections$List12 +java/util/Optional +jdk/internal/module/ArchivedModuleGraph +jdk/internal/module/SystemModuleFinders +java/net/URI +jdk/internal/access/JavaNetUriAccess +java/net/URI$1 +jdk/internal/module/SystemModulesMap +jdk/internal/module/SystemModules +jdk/internal/module/SystemModules$all +jdk/internal/module/Builder +java/lang/module/ModuleDescriptor$Requires +java/lang/module/ModuleDescriptor$Exports +java/lang/module/ModuleDescriptor$Opens +java/lang/module/ModuleDescriptor$Provides +java/lang/module/ModuleDescriptor$Version +java/lang/module/ModuleDescriptor$Modifier +java/lang/module/ModuleDescriptor$Requires$Modifier +jdk/internal/module/ModuleTarget +jdk/internal/module/ModuleHashes +jdk/internal/module/ModuleResolution +java/lang/module/ModuleReference +java/util/function/Supplier +jdk/internal/module/SystemModuleFinders$2 +jdk/internal/module/ModuleReferenceImpl +jdk/internal/module/SystemModuleFinders$SystemModuleFinder +jdk/internal/loader/BootLoader +jdk/internal/loader/NativeLibraries +jdk/internal/loader/ClassLoaderHelper +java/util/Queue +java/util/Deque +java/util/ArrayDeque +jdk/internal/loader/ArchivedClassLoaders +jdk/internal/loader/ClassLoaders$BootClassLoader +java/security/cert/Certificate +java/lang/ClassLoader$ParallelLoaders +java/util/WeakHashMap +java/util/WeakHashMap$Entry +java/util/Collections$SetFromMap +java/util/WeakHashMap$KeySet +jdk/internal/access/JavaSecurityAccess +java/security/ProtectionDomain$JavaSecurityAccessImpl +java/security/ProtectionDomain$Key +java/security/Principal +jdk/internal/loader/URLClassPath +java/net/URLStreamHandlerFactory +java/net/URL$DefaultFactory +jdk/internal/access/JavaNetURLAccess +java/net/URL$3 +java/io/File$PathStatus +sun/net/www/ParseUtil +java/util/HexFormat +java/net/URLStreamHandler +sun/net/www/protocol/file/Handler +sun/net/util/IPAddressUtil +jdk/internal/util/Preconditions +jdk/internal/module/ServicesCatalog +jdk/internal/loader/AbstractClassLoaderValue +jdk/internal/loader/ClassLoaderValue +jdk/internal/loader/BuiltinClassLoader$LoadedModule +java/util/ImmutableCollections$SetN$SetNIterator +java/lang/module/ModuleFinder$2 +jdk/internal/module/DefaultRoots +java/util/Spliterators +java/util/Spliterators$EmptySpliterator +java/util/Spliterator +java/util/Spliterators$EmptySpliterator$OfRef +java/util/Spliterator$OfPrimitive +java/util/Spliterator$OfInt +java/util/Spliterators$EmptySpliterator$OfInt +java/util/Spliterator$OfLong +java/util/Spliterators$EmptySpliterator$OfLong +java/util/Spliterator$OfDouble +java/util/Spliterators$EmptySpliterator$OfDouble +java/util/Spliterators$IteratorSpliterator +java/util/stream/StreamSupport +java/util/stream/PipelineHelper +java/util/stream/BaseStream +java/util/stream/AbstractPipeline +java/util/stream/Stream +java/util/stream/ReferencePipeline +java/util/stream/ReferencePipeline$Head +java/util/stream/StreamOpFlag +java/util/stream/StreamOpFlag$Type +java/util/stream/StreamOpFlag$MaskBuilder +java/util/EnumMap +java/util/EnumMap$1 +java/lang/PublicMethods$MethodList +java/lang/PublicMethods$Key +java/lang/Class$3 +sun/reflect/annotation/AnnotationParser +jdk/internal/reflect/NativeMethodAccessorImpl +jdk/internal/reflect/DelegatingMethodAccessorImpl +java/lang/invoke/LambdaMetafactory +java/lang/invoke/MethodType$ConcurrentWeakInternSet +java/lang/Void +java/lang/invoke/MethodTypeForm +java/lang/invoke/MethodType$ConcurrentWeakInternSet$WeakEntry +sun/invoke/util/Wrapper +sun/invoke/util/Wrapper$Format +java/lang/invoke/LambdaForm$NamedFunction +java/lang/invoke/DirectMethodHandle$Holder +sun/invoke/util/ValueConversions +java/lang/invoke/MethodHandleImpl +java/lang/invoke/Invokers +java/lang/invoke/LambdaForm$Kind +java/lang/NoSuchMethodException +java/lang/invoke/LambdaForm$BasicType +java/lang/invoke/LambdaForm$Name +java/lang/invoke/LambdaForm$Holder +java/lang/invoke/InvokerBytecodeGenerator +java/lang/invoke/InvokerBytecodeGenerator$2 +java/lang/invoke/MethodHandleImpl$Intrinsic +java/lang/Readable +java/nio/CharBuffer +java/nio/HeapCharBuffer +java/lang/StringCoding +java/nio/charset/CoderResult +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L7_L +java/lang/Module$ReflectionData +java/lang/WeakPairMap +java/lang/WeakPairMap$Pair +java/lang/WeakPairMap$Pair$Lookup +java/util/function/Predicate +java/lang/IncompatibleClassChangeError +java/lang/NoSuchMethodError +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LL_I +jdk/internal/org/objectweb/asm/ClassVisitor +jdk/internal/org/objectweb/asm/ClassWriter +jdk/internal/org/objectweb/asm/SymbolTable +jdk/internal/org/objectweb/asm/Symbol +jdk/internal/org/objectweb/asm/SymbolTable$Entry +jdk/internal/org/objectweb/asm/ByteVector +sun/invoke/util/BytecodeDescriptor +jdk/internal/org/objectweb/asm/MethodVisitor +jdk/internal/org/objectweb/asm/MethodWriter +jdk/internal/org/objectweb/asm/Type +jdk/internal/org/objectweb/asm/Label +jdk/internal/org/objectweb/asm/Frame +jdk/internal/org/objectweb/asm/AnnotationVisitor +jdk/internal/org/objectweb/asm/AnnotationWriter +java/lang/invoke/InvokerBytecodeGenerator$ClassData +sun/invoke/util/VerifyType +sun/invoke/empty/Empty +java/util/ArrayList$Itr +jdk/internal/org/objectweb/asm/FieldVisitor +jdk/internal/org/objectweb/asm/FieldWriter +jdk/internal/org/objectweb/asm/Attribute +jdk/internal/org/objectweb/asm/Handler +java/lang/invoke/MethodHandles$Lookup$ClassFile +java/lang/invoke/MethodHandles$Lookup$ClassOption +java/lang/invoke/MethodHandles$Lookup$ClassDefiner +java/lang/invoke/BootstrapMethodInvoker +java/lang/invoke/VarHandle$AccessMode +java/lang/invoke/VarHandle$AccessType +java/lang/invoke/Invokers$Holder +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial L8_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder invokeExact_MT L8_L +jdk/internal/access/JavaLangInvokeAccess +java/lang/invoke/MethodHandleImpl$1 +java/lang/invoke/AbstractValidatingLambdaMetafactory +java/lang/invoke/InnerClassLambdaMetafactory +sun/security/action/GetBooleanAction +jdk/internal/org/objectweb/asm/Handle +jdk/internal/org/objectweb/asm/ConstantDynamic +java/lang/invoke/MethodHandleInfo +java/lang/invoke/InfoFromMemberName +java/lang/invoke/LambdaProxyClassArchive +java/lang/invoke/TypeConvertingMethodAdapter +java/lang/invoke/InnerClassLambdaMetafactory$ForwardingMethodGenerator +jdk/internal/org/objectweb/asm/ClassReader +java/util/ImmutableCollections$Set12$1 +java/lang/invoke/InnerClassLambdaMetafactory$1 +java/lang/invoke/BoundMethodHandle +java/lang/invoke/ClassSpecializer +java/lang/invoke/BoundMethodHandle$Specializer +java/util/function/Function +java/lang/invoke/ClassSpecializer$1 +java/lang/invoke/ClassSpecializer$SpeciesData +java/lang/invoke/BoundMethodHandle$SpeciesData +java/lang/invoke/ClassSpecializer$Factory +java/lang/invoke/BoundMethodHandle$Specializer$Factory +java/lang/invoke/SimpleMethodHandle +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.SimpleMethodHandle +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L3_L +java/lang/NoSuchFieldException +java/lang/invoke/BoundMethodHandle$Species_L +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L4_L +java/lang/invoke/DirectMethodHandle$2 +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder getReference LL_L +java/lang/invoke/DirectMethodHandle$Accessor +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.LambdaForm$Holder identity_L LL_L +java/lang/invoke/DelegatingMethodHandle +java/lang/invoke/MethodHandleImpl$IntrinsicMethodHandle +java/lang/invoke/DelegatingMethodHandle$Holder +sun/invoke/util/Wrapper$1 +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.LambdaForm$Holder zero_L L_L +java/lang/invoke/LambdaFormEditor +java/lang/invoke/LambdaFormEditor$TransformKey +java/lang/invoke/LambdaFormBuffer +java/lang/invoke/LambdaFormEditor$Transform +jdk/internal/ref/CleanerFactory +java/util/concurrent/ThreadFactory +jdk/internal/ref/CleanerFactory$1 +java/lang/ref/Cleaner +java/lang/ref/Cleaner$1 +jdk/internal/ref/CleanerImpl +java/lang/ref/Cleaner$Cleanable +jdk/internal/ref/PhantomCleanable +jdk/internal/ref/CleanerImpl$PhantomCleanableRef +jdk/internal/ref/CleanerImpl$CleanerCleanable +jdk/internal/misc/InnocuousThread +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LL_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod L_L +@lambda-proxy jdk/internal/module/DefaultRoots test ()Ljava/util/function/Predicate; (Ljava/lang/Object;)Z REF_invokeStatic jdk/internal/module/DefaultRoots lambda$compute$0 (Ljava/lang/module/ModuleReference;)Z (Ljava/lang/module/ModuleReference;)Z +java/util/stream/ReferencePipeline$StatelessOp +java/util/stream/ReferencePipeline$2 +java/util/stream/StreamShape +@lambda-proxy jdk/internal/module/DefaultRoots apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual java/lang/module/ModuleReference descriptor ()Ljava/lang/module/ModuleDescriptor; (Ljava/lang/module/ModuleReference;)Ljava/lang/module/ModuleDescriptor; +java/util/stream/ReferencePipeline$3 +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L3_I +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder newInvokeSpecial LL_L +java/lang/invoke/DirectMethodHandle$Constructor +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial L3_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod LL_L +@lambda-proxy jdk/internal/module/DefaultRoots test (Ljava/lang/module/ModuleFinder;)Ljava/util/function/Predicate; (Ljava/lang/Object;)Z REF_invokeStatic jdk/internal/module/DefaultRoots lambda$compute$1 (Ljava/lang/module/ModuleFinder;Ljava/lang/module/ModuleDescriptor;)Z (Ljava/lang/module/ModuleDescriptor;)Z +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeVirtual LL_L +@lambda-proxy jdk/internal/module/DefaultRoots apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual java/lang/module/ModuleDescriptor name ()Ljava/lang/String; (Ljava/lang/module/ModuleDescriptor;)Ljava/lang/String; +java/util/stream/Collectors +java/util/stream/Collector$Characteristics +java/util/EnumSet +java/util/RegularEnumSet +java/util/stream/Collector +java/util/stream/Collectors$CollectorImpl +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder newInvokeSpecial L_L +@lambda-proxy java/util/stream/Collectors get ()Ljava/util/function/Supplier; ()Ljava/lang/Object; REF_newInvokeSpecial java/util/HashSet ()V ()Ljava/util/HashSet; +java/util/function/BiConsumer +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeInterface L3_I +java/lang/invoke/DirectMethodHandle$Interface +@lambda-proxy java/util/stream/Collectors accept ()Ljava/util/function/BiConsumer; (Ljava/lang/Object;Ljava/lang/Object;)V REF_invokeInterface java/util/Set add (Ljava/lang/Object;)Z (Ljava/util/HashSet;Ljava/lang/Object;)V +java/util/function/BiFunction +java/util/function/BinaryOperator +@lambda-proxy java/util/stream/Collectors apply ()Ljava/util/function/BinaryOperator; (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; REF_invokeStatic java/util/stream/Collectors lambda$toSet$7 (Ljava/util/HashSet;Ljava/util/HashSet;)Ljava/util/HashSet; (Ljava/util/HashSet;Ljava/util/HashSet;)Ljava/util/HashSet; +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LL_L +@lambda-proxy java/util/stream/Collectors apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeStatic java/util/stream/Collectors lambda$castingIdentity$2 (Ljava/lang/Object;)Ljava/lang/Object; (Ljava/lang/Object;)Ljava/lang/Object; +java/util/stream/ReduceOps +java/util/stream/TerminalOp +java/util/stream/ReduceOps$ReduceOp +java/util/stream/ReduceOps$3 +java/util/stream/ReduceOps$Box +java/util/function/Consumer +java/util/stream/Sink +java/util/stream/TerminalSink +java/util/stream/ReduceOps$AccumulatingSink +java/util/stream/ReduceOps$3ReducingSink +java/util/stream/Sink$ChainedReference +java/util/stream/ReferencePipeline$3$1 +java/util/stream/ReferencePipeline$2$1 +java/util/AbstractList$RandomAccessSpliterator +@lambda-proxy java/lang/module/ModuleFinder$2 apply (Ljava/lang/String;)Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeStatic java/lang/module/ModuleFinder$2 lambda$find$0 (Ljava/lang/String;Ljava/lang/module/ModuleFinder;)Ljava/util/Optional; (Ljava/lang/module/ModuleFinder;)Ljava/util/Optional; +@lambda-proxy java/lang/module/ModuleFinder$2 apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual java/util/Optional stream ()Ljava/util/stream/Stream; (Ljava/util/Optional;)Ljava/util/stream/Stream; +java/util/stream/ReferencePipeline$7 +java/util/stream/FindOps +java/util/stream/FindOps$FindSink +java/util/stream/FindOps$FindSink$OfRef +java/util/stream/FindOps$FindOp +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LL_I +@lambda-proxy java/util/stream/FindOps$FindSink$OfRef test ()Ljava/util/function/Predicate; (Ljava/lang/Object;)Z REF_invokeVirtual java/util/Optional isPresent ()Z (Ljava/util/Optional;)Z +@lambda-proxy java/util/stream/FindOps$FindSink$OfRef get ()Ljava/util/function/Supplier; ()Ljava/lang/Object; REF_newInvokeSpecial java/util/stream/FindOps$FindSink$OfRef ()V ()Ljava/util/stream/TerminalSink; +@lambda-proxy java/util/stream/FindOps$FindSink$OfRef test ()Ljava/util/function/Predicate; (Ljava/lang/Object;)Z REF_invokeVirtual java/util/Optional isPresent ()Z (Ljava/util/Optional;)Z +@lambda-proxy java/util/stream/FindOps$FindSink$OfRef get ()Ljava/util/function/Supplier; ()Ljava/lang/Object; REF_newInvokeSpecial java/util/stream/FindOps$FindSink$OfRef ()V ()Ljava/util/stream/TerminalSink; +java/util/stream/ReferencePipeline$7$1 +java/util/stream/Streams$AbstractStreamBuilderImpl +java/util/stream/Stream$Builder +java/util/stream/Streams$StreamBuilderImpl +java/util/stream/Streams +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial L4_V +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder newInvokeSpecial L3_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial L4_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod L3_L +@lambda-proxy java/lang/module/ModuleFinder$2 accept (Ljava/lang/module/ModuleFinder$2;Ljava/lang/String;)Ljava/util/function/Consumer; (Ljava/lang/Object;)V REF_invokeVirtual java/lang/module/ModuleFinder$2 lambda$find$1 (Ljava/lang/String;Ljava/lang/module/ModuleReference;)V (Ljava/lang/module/ModuleReference;)V +@lambda-proxy jdk/internal/module/DefaultRoots test ()Ljava/util/function/Predicate; (Ljava/lang/Object;)Z REF_invokeStatic jdk/internal/module/DefaultRoots lambda$exportsAPI$2 (Ljava/lang/module/ModuleDescriptor$Exports;)Z (Ljava/lang/module/ModuleDescriptor$Exports;)Z +java/util/HashMap$KeySet +java/util/HashMap$KeyIterator +java/lang/module/Configuration +java/lang/module/Resolver +java/lang/module/ModuleFinder$1 +java/util/ListIterator +java/util/ImmutableCollections$ListItr +java/util/HashMap$Values +java/util/HashMap$ValueIterator +@lambda-proxy java/lang/module/ModuleFinder$2 apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeStatic java/lang/module/ModuleFinder$2 lambda$findAll$2 (Ljava/lang/module/ModuleFinder;)Ljava/util/stream/Stream; (Ljava/lang/module/ModuleFinder;)Ljava/util/stream/Stream; +@lambda-proxy java/lang/module/ModuleFinder$2 accept (Ljava/lang/module/ModuleFinder$2;Ljava/util/Set;)Ljava/util/function/Consumer; (Ljava/lang/Object;)V REF_invokeVirtual java/lang/module/ModuleFinder$2 lambda$findAll$3 (Ljava/util/Set;Ljava/lang/module/ModuleReference;)V (Ljava/lang/module/ModuleReference;)V +java/util/stream/ForEachOps +java/util/stream/ForEachOps$ForEachOp +java/util/stream/ForEachOps$ForEachOp$OfRef +java/nio/file/attribute/BasicFileAttributes +java/nio/file/CopyOption +java/nio/file/LinkOption +java/nio/file/Files +java/nio/file/attribute/AttributeView +java/nio/file/attribute/FileAttributeView +java/nio/file/attribute/BasicFileAttributeView +sun/nio/fs/Util +sun/nio/fs/WindowsFileAttributeViews +sun/nio/fs/DynamicFileAttributeView +sun/nio/fs/AbstractBasicFileAttributeView +sun/nio/fs/WindowsFileAttributeViews$Basic +java/nio/file/attribute/DosFileAttributes +sun/nio/fs/WindowsFileAttributes +sun/nio/fs/NativeBuffers +jdk/internal/misc/TerminatingThreadLocal +sun/nio/fs/NativeBuffers$1 +jdk/internal/misc/TerminatingThreadLocal$1 +java/lang/ThreadLocal$ThreadLocalMap +java/lang/ThreadLocal$ThreadLocalMap$Entry +java/util/IdentityHashMap +java/util/IdentityHashMap$KeySet +sun/nio/fs/NativeBuffer +sun/nio/fs/NativeBuffer$Deallocator +sun/nio/fs/WindowsNativeDispatcher +jdk/internal/loader/NativeLibraries$LibraryPaths +jdk/internal/loader/NativeLibraries$1 +java/util/ArrayDeque$DeqIterator +jdk/internal/loader/NativeLibrary +jdk/internal/loader/NativeLibraries$NativeLibraryImpl +java/util/concurrent/ConcurrentHashMap$CollectionView +java/util/concurrent/ConcurrentHashMap$ValuesView +java/util/concurrent/ConcurrentHashMap$Traverser +java/util/concurrent/ConcurrentHashMap$BaseIterator +java/util/Enumeration +java/util/concurrent/ConcurrentHashMap$ValueIterator +sun/nio/fs/WindowsNativeDispatcher$FirstFile +sun/nio/fs/WindowsNativeDispatcher$FirstStream +sun/nio/fs/WindowsNativeDispatcher$VolumeInformation +sun/nio/fs/WindowsNativeDispatcher$DiskFreeSpace +sun/nio/fs/WindowsNativeDispatcher$Account +sun/nio/fs/WindowsNativeDispatcher$AclInformation +sun/nio/fs/WindowsNativeDispatcher$CompletionStatus +java/util/zip/ZipFile$CleanableResource +java/util/zip/ZipCoder +java/util/zip/ZipCoder$UTF8ZipCoder +java/util/zip/ZipFile$Source +java/util/zip/ZipFile$Source$Key +java/io/DataOutput +java/io/DataInput +java/io/RandomAccessFile +jdk/internal/access/JavaIORandomAccessFileAccess +java/io/RandomAccessFile$2 +java/io/FileCleanable +java/util/zip/ZipFile$Source$End +java/util/zip/ZipUtils +java/util/concurrent/TimeUnit +java/nio/file/attribute/FileTime +java/util/Locale +sun/util/locale/BaseLocale +sun/util/locale/LocaleUtils +jdk/internal/perf/PerfCounter$CoreCounters +java/util/zip/ZipEntry +java/util/jar/JarEntry +java/util/jar/JarFile$JarFileEntry +java/util/zip/ZipFile$ZipFileInputStream +java/util/zip/InflaterInputStream +java/util/zip/ZipFile$ZipFileInflaterInputStream +java/util/zip/Inflater +java/util/zip/Inflater$InflaterZStreamRef +java/util/zip/ZipFile$InflaterCleanupAction +sun/security/util/SignatureFileVerifier +sun/security/util/Debug +sun/security/action/GetIntegerAction +java/util/jar/JarVerifier +java/security/CodeSigner +java/io/ByteArrayOutputStream +java/util/jar/Attributes +java/util/LinkedHashMap +java/util/jar/Manifest$FastInputStream +jdk/internal/module/ModulePath$Patterns +java/util/regex/Pattern +java/util/regex/Pattern$Node +java/util/regex/Pattern$LastNode +java/util/regex/Pattern$GroupHead +java/util/regex/Pattern$CharPredicate +java/util/regex/Pattern$BmpCharPredicate +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LII_I +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder newInvokeSpecial LI_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLI_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod IL_L +@lambda-proxy java/util/regex/Pattern is (I)Ljava/util/regex/Pattern$BmpCharPredicate; (I)Z REF_invokeStatic java/util/regex/Pattern lambda$Single$7 (II)Z (I)Z +java/util/regex/Pattern$CharProperty +java/util/regex/Pattern$BmpCharProperty +java/util/regex/Pattern$GroupTail +java/util/regex/CharPredicates +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LI_I +@lambda-proxy java/util/regex/CharPredicates is ()Ljava/util/regex/Pattern$BmpCharPredicate; (I)Z REF_invokeStatic java/util/regex/CharPredicates lambda$ASCII_DIGIT$18 (I)Z (I)Z +java/util/regex/Pattern$Qtype +java/util/regex/Pattern$CharPropertyGreedy +java/util/regex/Pattern$BmpCharPropertyGreedy +java/util/regex/Pattern$Dollar +java/util/regex/Pattern$BranchConn +java/util/regex/Pattern$Branch +java/util/regex/Pattern$SliceNode +java/util/regex/Pattern$Slice +java/util/regex/Pattern$Begin +java/util/regex/Pattern$First +java/util/regex/Pattern$Start +java/util/regex/Pattern$TreeInfo +java/util/regex/Pattern$BitClass +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LI3_I +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder newInvokeSpecial LII_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLII_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod IIL_L +@lambda-proxy java/util/regex/Pattern is (II)Ljava/util/regex/Pattern$BmpCharPredicate; (I)Z REF_invokeStatic java/util/regex/Pattern lambda$Range$10 (III)Z (I)Z +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecialIFC L3I_I +@lambda-proxy java/util/regex/Pattern$BmpCharPredicate is (Ljava/util/regex/Pattern$BmpCharPredicate;Ljava/util/regex/Pattern$CharPredicate;)Ljava/util/regex/Pattern$BmpCharPredicate; (I)Z REF_invokeInterface java/util/regex/Pattern$BmpCharPredicate lambda$union$2 (Ljava/util/regex/Pattern$CharPredicate;I)Z (I)Z +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecialIFC LLI_I +@lambda-proxy java/util/regex/Pattern$CharPredicate is (Ljava/util/regex/Pattern$CharPredicate;)Ljava/util/regex/Pattern$CharPredicate; (I)Z REF_invokeInterface java/util/regex/Pattern$CharPredicate lambda$negate$3 (I)Z (I)Z +java/util/regex/Pattern$StartS +java/util/regex/Pattern$BackRef +java/util/regex/Pattern$Curly +java/util/regex/Pattern$Ques +java/util/regex/Pattern$GroupCurly +java/util/regex/MatchResult +java/util/regex/Matcher +java/util/regex/IntHashSet +java/lang/module/ModuleDescriptor$Builder +jdk/internal/module/Checks +java/util/Spliterators$AbstractSpliterator +java/util/zip/ZipFile$EntrySpliterator +java/util/function/IntFunction +@lambda-proxy java/util/zip/ZipFile apply (Ljava/util/zip/ZipFile;)Ljava/util/function/IntFunction; (I)Ljava/lang/Object; REF_invokeVirtual java/util/zip/ZipFile lambda$jarStream$1 (I)Ljava/util/jar/JarEntry; (I)Ljava/util/jar/JarEntry; +@lambda-proxy jdk/internal/module/ModulePath test ()Ljava/util/function/Predicate; (Ljava/lang/Object;)Z REF_invokeStatic jdk/internal/module/ModulePath lambda$deriveModuleDescriptor$2 (Ljava/util/jar/JarEntry;)Z (Ljava/util/jar/JarEntry;)Z +@lambda-proxy jdk/internal/module/ModulePath apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual java/util/zip/ZipEntry getName ()Ljava/lang/String; (Ljava/util/jar/JarEntry;)Ljava/lang/String; +@lambda-proxy jdk/internal/module/ModulePath test ()Ljava/util/function/Predicate; (Ljava/lang/Object;)Z REF_invokeStatic jdk/internal/module/ModulePath lambda$deriveModuleDescriptor$3 (Ljava/lang/String;)Z (Ljava/lang/String;)Z +@lambda-proxy jdk/internal/module/ModulePath test ()Ljava/util/function/Predicate; (Ljava/lang/Object;)Z REF_invokeStatic jdk/internal/module/ModulePath lambda$deriveModuleDescriptor$4 (Ljava/lang/String;)Z (Ljava/lang/String;)Z +java/util/stream/Collectors$Partition +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L5_V +@lambda-proxy java/util/stream/Collectors accept (Ljava/util/function/BiConsumer;Ljava/util/function/Predicate;)Ljava/util/function/BiConsumer; (Ljava/lang/Object;Ljava/lang/Object;)V REF_invokeStatic java/util/stream/Collectors lambda$partitioningBy$62 (Ljava/util/function/BiConsumer;Ljava/util/function/Predicate;Ljava/util/stream/Collectors$Partition;Ljava/lang/Object;)V (Ljava/util/stream/Collectors$Partition;Ljava/lang/Object;)V +@lambda-proxy java/util/stream/Collectors apply (Ljava/util/function/BinaryOperator;)Ljava/util/function/BinaryOperator; (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; REF_invokeStatic java/util/stream/Collectors lambda$partitioningBy$63 (Ljava/util/function/BinaryOperator;Ljava/util/stream/Collectors$Partition;Ljava/util/stream/Collectors$Partition;)Ljava/util/stream/Collectors$Partition; (Ljava/util/stream/Collectors$Partition;Ljava/util/stream/Collectors$Partition;)Ljava/util/stream/Collectors$Partition; +@lambda-proxy java/util/stream/Collectors get (Ljava/util/stream/Collector;)Ljava/util/function/Supplier; ()Ljava/lang/Object; REF_invokeStatic java/util/stream/Collectors lambda$partitioningBy$64 (Ljava/util/stream/Collector;)Ljava/util/stream/Collectors$Partition; ()Ljava/util/stream/Collectors$Partition; +java/util/stream/Collectors$Partition$1 +java/util/AbstractMap$SimpleImmutableEntry +java/util/HashMap$HashMapSpliterator +java/util/HashMap$KeySpliterator +@lambda-proxy jdk/internal/module/ModulePath apply (Ljdk/internal/module/ModulePath;)Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual jdk/internal/module/ModulePath toPackageName (Ljava/lang/String;)Ljava/util/Optional; (Ljava/lang/String;)Ljava/util/Optional; +@lambda-proxy jdk/internal/module/ModulePath apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual java/util/Optional stream ()Ljava/util/stream/Stream; (Ljava/util/Optional;)Ljava/util/stream/Stream; +java/util/stream/DistinctOps +java/util/stream/ReferencePipeline$StatefulOp +java/util/stream/DistinctOps$1 +java/util/stream/DistinctOps$1$2 +@lambda-proxy java/lang/module/ModuleDescriptor$Builder accept ()Ljava/util/function/Consumer; (Ljava/lang/Object;)V REF_invokeStatic jdk/internal/module/Checks requirePackageName (Ljava/lang/String;)Ljava/lang/String; (Ljava/lang/String;)V +@lambda-proxy jdk/internal/module/ModulePath apply (Ljdk/internal/module/ModulePath;)Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual jdk/internal/module/ModulePath toServiceName (Ljava/lang/String;)Ljava/util/Optional; (Ljava/lang/String;)Ljava/util/Optional; +@lambda-proxy jdk/internal/module/ModulePath apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual java/util/Optional stream ()Ljava/util/stream/Stream; (Ljava/util/Optional;)Ljava/util/stream/Stream; +jdk/internal/module/ModuleInfo$Attributes +jdk/internal/module/ModuleReferences +sun/nio/fs/WindowsUriSupport +java/net/URI$Parser +java/lang/module/ModuleReader +@lambda-proxy jdk/internal/module/ModuleReferences get (Ljava/nio/file/Path;Ljava/net/URI;)Ljava/util/function/Supplier; ()Ljava/lang/Object; REF_invokeStatic jdk/internal/module/ModuleReferences lambda$newJarModule$0 (Ljava/nio/file/Path;Ljava/net/URI;)Ljava/lang/module/ModuleReader; ()Ljava/lang/module/ModuleReader; +jdk/internal/module/ModuleHashes$HashSupplier +@lambda-proxy jdk/internal/module/ModuleReferences generate (Ljava/util/function/Supplier;)Ljdk/internal/module/ModuleHashes$HashSupplier; (Ljava/lang/String;)[B REF_invokeStatic jdk/internal/module/ModuleReferences lambda$newJarModule$1 (Ljava/util/function/Supplier;Ljava/lang/String;)[B (Ljava/lang/String;)[B +java/io/RandomAccessFile$1 +java/util/ImmutableCollections$Map1 +java/util/HashMap$ValueSpliterator +java/util/Collections$UnmodifiableCollection$1 +java/lang/ModuleLayer +java/util/LinkedHashSet +java/lang/module/ResolvedModule +jdk/internal/module/ModuleLoaderMap +jdk/internal/module/ModuleLoaderMap$Mapper +jdk/internal/module/ModuleLoaderMap$Modules +jdk/internal/loader/AbstractClassLoaderValue$Memoizer +jdk/internal/module/ServicesCatalog$ServiceProvider +java/util/concurrent/CopyOnWriteArrayList +java/lang/ModuleLayer$Controller +jdk/internal/module/ModuleBootstrap$SafeModuleFinder +java/lang/invoke/StringConcatFactory +java/lang/invoke/StringConcatFactory$1 +java/lang/invoke/StringConcatFactory$2 +java/lang/invoke/StringConcatFactory$3 +sun/launcher/LauncherHelper +java/nio/charset/CharsetDecoder +sun/nio/cs/ArrayDecoder +sun/nio/cs/SingleByte$Decoder +sun/net/util/URLUtil +java/security/PrivilegedExceptionAction +jdk/internal/loader/URLClassPath$3 +jdk/internal/loader/URLClassPath$Loader +jdk/internal/loader/URLClassPath$JarLoader +sun/net/www/protocol/jar/Handler +jdk/internal/loader/URLClassPath$JarLoader$1 +jdk/internal/loader/FileURLMapper +java/nio/file/FileSystems$DefaultFileSystemHolder +java/nio/file/FileSystems$DefaultFileSystemHolder$1 +jdk/internal/util/jar/JarIndex +jdk/internal/loader/Resource +jdk/internal/loader/URLClassPath$JarLoader$2 +java/lang/NamedPackage +java/lang/Package +java/lang/Package$VersionInfo +sun/nio/ByteBuffered +java/util/zip/Checksum +java/util/zip/CRC32 +java/util/zip/Checksum$1 +java/security/SecureClassLoader$CodeSourceKey +java/security/SecureClassLoader$1 +java/security/PermissionCollection +sun/security/util/LazyCodeSourcePermissionCollection +java/security/Permissions +java/lang/RuntimePermission +java/security/BasicPermissionCollection +java/security/AllPermission +java/security/UnresolvedPermission +java/security/SecureClassLoader$DebugHolder +java/time/temporal/TemporalAccessor +java/util/logging/Logger +java/util/logging/Handler +java/util/logging/Level +java/util/logging/Level$KnownLevel +@lambda-proxy java/util/logging/Level$KnownLevel apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeStatic java/util/logging/Level$KnownLevel lambda$add$3 (Ljava/lang/String;)Ljava/util/List; (Ljava/lang/String;)Ljava/util/List; +@lambda-proxy java/util/logging/Level$KnownLevel apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeStatic java/util/logging/Level$KnownLevel lambda$add$4 (Ljava/lang/Integer;)Ljava/util/List; (Ljava/lang/Integer;)Ljava/util/List; +java/util/logging/Logger$LoggerBundle +java/util/logging/Logger$ConfigurationData +java/util/logging/LogManager +java/util/logging/LogManager$1 +java/util/logging/LogManager$LoggerContext +java/util/logging/LogManager$SystemLoggerContext +java/util/logging/LogManager$LogNode +java/util/concurrent/locks/AbstractQueuedSynchronizer +java/util/concurrent/locks/ReentrantLock$Sync +java/util/concurrent/locks/ReentrantLock$NonfairSync +java/util/Collections$SynchronizedMap +java/util/logging/LogManager$Cleaner +java/lang/ApplicationShutdownHooks +java/lang/ApplicationShutdownHooks$1 +java/lang/Shutdown +java/lang/Shutdown$Lock +java/util/logging/LoggingPermission +sun/util/logging/internal/LoggingProviderImpl$LogManagerAccess +java/util/logging/LogManager$LoggingProviderAccess +sun/security/util/FilePermCompat +sun/security/util/SecurityProperties +java/security/Security +java/security/Security$1 +java/util/Properties$LineReader +java/util/concurrent/ConcurrentHashMap$ForwardingNode +java/io/FileInputStream$1 +java/util/concurrent/ConcurrentHashMap$EntrySetView +java/util/concurrent/ConcurrentHashMap$EntryIterator +java/util/concurrent/ConcurrentHashMap$MapEntry +jdk/internal/access/JavaSecurityPropertiesAccess +java/security/Security$2 +java/io/FilePermission +java/lang/System$LoggerFinder +jdk/internal/logger/DefaultLoggerFinder +sun/util/logging/internal/LoggingProviderImpl +java/util/logging/LogManager$2 +java/util/logging/LogManager$RootLogger +java/nio/file/Paths +java/util/logging/LogManager$LoggerWeakRef +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L6_L +java/lang/invoke/MethodHandleImpl$AsVarargsCollector +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial L7_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DelegatingMethodHandle$Holder delegate L6_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder invokeExact_MT L7_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DelegatingMethodHandle$Holder reinvoke_L L3_L +java/lang/invoke/BoundMethodHandle$Species_LL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L5_L +java/util/logging/LogManager$VisitedLoggers +java/util/logging/LogManager$LoggerContext$1 +java/util/concurrent/ConcurrentHashMap$KeySetView +java/util/Collections$3 +java/util/concurrent/ConcurrentHashMap$KeyIterator +java/util/Properties$EntrySet +java/util/Collections$SynchronizedCollection +java/util/Collections$SynchronizedSet +java/util/Hashtable$Enumerator +@lambda-proxy java/util/logging/Level apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual java/util/logging/Level$KnownLevel mirrored ()Ljava/util/Optional; (Ljava/util/logging/Level$KnownLevel;)Ljava/util/Optional; +java/util/ArrayList$ArrayListSpliterator +@lambda-proxy java/util/logging/Level$KnownLevel apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual java/util/Optional stream ()Ljava/util/stream/Stream; (Ljava/util/Optional;)Ljava/util/stream/Stream; +java/util/IdentityHashMap$Values +java/lang/System$Logger +sun/util/logging/PlatformLogger$Bridge +sun/util/logging/PlatformLogger$ConfigurableBridge +jdk/internal/logger/BootstrapLogger +jdk/internal/logger/BootstrapLogger$DetectBackend +jdk/internal/logger/BootstrapLogger$DetectBackend$1 +java/util/ServiceLoader +java/util/ServiceLoader$ModuleServicesLookupIterator +java/util/Spliterators$1Adapter +java/util/ServiceLoader$LazyClassPathLookupIterator +java/util/ServiceLoader$2 +java/util/ServiceLoader$3 +jdk/internal/module/Resources +jdk/internal/loader/BuiltinClassLoader$2 +jdk/internal/loader/BuiltinClassLoader$5 +jdk/internal/module/SystemModuleFinders$SystemModuleReader +jdk/internal/module/SystemModuleFinders$SystemImage +jdk/internal/jimage/ImageReaderFactory +jdk/internal/jimage/ImageReaderFactory$1 +jdk/internal/jimage/ImageReader +jdk/internal/jimage/BasicImageReader +jdk/internal/jimage/ImageReader$SharedImageReader +jdk/internal/jimage/BasicImageReader$1 +jdk/internal/jimage/NativeImageBuffer +jdk/internal/jimage/NativeImageBuffer$1 +jdk/internal/jimage/ImageHeader +java/nio/IntBuffer +java/nio/DirectIntBufferU +java/nio/DirectByteBufferR +java/nio/DirectIntBufferRU +jdk/internal/jimage/ImageStrings +jdk/internal/jimage/ImageStringsReader +jdk/internal/jimage/decompressor/Decompressor +java/util/Collections$EmptyIterator +java/util/Collections$EmptyEnumeration +jdk/internal/loader/BuiltinClassLoader$1 +java/lang/CompoundEnumeration +jdk/internal/loader/URLClassPath$1 +java/util/concurrent/CopyOnWriteArrayList$COWIterator +java/util/ServiceLoader$1 +java/util/ServiceLoader$Provider +java/util/ServiceLoader$ProviderImpl +jdk/internal/logger/BootstrapLogger$LoggingBackend +jdk/internal/logger/BootstrapLogger$RedirectedLoggers +jdk/internal/logger/BootstrapLogger$BootstrapExecutors +java/util/logging/LogManager$4 +java/util/logging/Logger$SystemLoggerHelper +java/util/logging/Logger$SystemLoggerHelper$1 +jdk/internal/logger/DefaultLoggerFinder$1 +java/net/InetAddress +jdk/internal/access/JavaNetInetAddressAccess +java/net/InetAddress$1 +java/net/InetAddress$InetAddressHolder +java/util/SortedSet +java/util/NavigableSet +java/util/concurrent/ConcurrentSkipListSet +java/util/SortedMap +java/util/NavigableMap +java/util/concurrent/ConcurrentNavigableMap +java/util/concurrent/ConcurrentSkipListMap +java/util/concurrent/ConcurrentSkipListMap$Index +java/lang/invoke/VarHandles +java/lang/ClassValue +java/lang/invoke/VarHandles$1 +java/lang/ClassValue$Entry +java/lang/ClassValue$Identity +java/lang/ClassValue$Version +java/lang/invoke/VarHandleReferences$FieldInstanceReadOnly +java/lang/invoke/VarHandleReferences$FieldInstanceReadWrite +java/lang/invoke/VarHandle$1 +jdk/internal/util/Preconditions$1 +java/lang/invoke/VarHandleGuards +java/lang/invoke/VarForm +java/util/concurrent/atomic/Striped64 +java/util/concurrent/atomic/LongAdder +java/util/concurrent/ConcurrentSkipListMap$Node +java/net/InetAddressImplFactory +java/net/InetAddressImpl +java/net/Inet6AddressImpl +java/net/InetAddress$NameService +java/net/InetAddress$PlatformNameService +java/net/Inet4Address +java/net/NetworkInterface +java/net/InterfaceAddress +java/net/Inet6Address +java/net/Inet6Address$Inet6AddressHolder +java/net/DefaultInterface +java/util/Spliterators$ArraySpliterator +java/util/StringJoiner +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder newInvokeSpecial L4_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial L5_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod L4_L +@lambda-proxy java/util/stream/Collectors get (Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/function/Supplier; ()Ljava/lang/Object; REF_invokeStatic java/util/stream/Collectors lambda$joining$11 (Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/StringJoiner; ()Ljava/util/StringJoiner; +@lambda-proxy java/util/stream/Collectors accept ()Ljava/util/function/BiConsumer; (Ljava/lang/Object;Ljava/lang/Object;)V REF_invokeVirtual java/util/StringJoiner add (Ljava/lang/CharSequence;)Ljava/util/StringJoiner; (Ljava/util/StringJoiner;Ljava/lang/CharSequence;)V +@lambda-proxy java/util/stream/Collectors apply ()Ljava/util/function/BinaryOperator; (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual java/util/StringJoiner merge (Ljava/util/StringJoiner;)Ljava/util/StringJoiner; (Ljava/util/StringJoiner;Ljava/util/StringJoiner;)Ljava/util/StringJoiner; +@lambda-proxy java/util/stream/Collectors apply ()Ljava/util/function/Function; (Ljava/lang/Object;)Ljava/lang/Object; REF_invokeVirtual java/util/StringJoiner toString ()Ljava/lang/String; (Ljava/util/StringJoiner;)Ljava/lang/String; +java/util/concurrent/Future +java/util/concurrent/ForkJoinTask +java/util/concurrent/CountedCompleter +java/util/stream/AbstractTask +java/util/stream/ReduceOps$ReduceTask +java/lang/invoke/VarHandleInts$FieldInstanceReadOnly +java/lang/invoke/VarHandleInts$FieldInstanceReadWrite +java/util/concurrent/ForkJoinTask$Aux +java/util/concurrent/Executor +java/util/concurrent/ExecutorService +java/util/concurrent/AbstractExecutorService +java/util/concurrent/ForkJoinPool +java/lang/invoke/VarHandleLongs$FieldInstanceReadOnly +java/lang/invoke/VarHandleLongs$FieldInstanceReadWrite +java/lang/invoke/VarHandleInts$FieldStaticReadOnly +java/lang/invoke/VarHandleInts$FieldStaticReadWrite +java/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory +java/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory +java/util/concurrent/ForkJoinPool$1 +java/util/concurrent/ForkJoinPool$DefaultCommonPoolForkJoinWorkerThreadFactory +java/util/concurrent/ForkJoinPool$WorkQueue +java/util/concurrent/ForkJoinWorkerThread +java/util/random/RandomGenerator +java/util/Random +java/util/concurrent/ThreadLocalRandom +jdk/internal/util/random/RandomSupport +java/lang/invoke/VarHandleReferences$Array +java/lang/invoke/VarHandle$AccessDescriptor +java/util/concurrent/ForkJoinPool$DefaultCommonPoolForkJoinWorkerThreadFactory$1 +java/util/regex/ASCII +@lambda-proxy java/util/regex/CharPredicates is ()Ljava/util/regex/Pattern$BmpCharPredicate; (I)Z REF_invokeStatic java/util/regex/CharPredicates lambda$ASCII_SPACE$20 (I)Z (I)Z +java/util/ArrayList$SubList +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeVirtual L3_V +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LLJ_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial L3J_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DelegatingMethodHandle$Holder reinvoke_L LLJ_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LJL3_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJL3_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DelegatingMethodHandle$Holder reinvoke_L LJL3_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJLL_J +java/lang/invoke/BoundMethodHandle$Species_LLL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LLL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LJ_L +java/lang/invoke/BoundMethodHandle$Species_LLLL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LLLL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJ_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LJL_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJL_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DelegatingMethodHandle$Holder reinvoke_L LJL_J +java/lang/invoke/BoundMethodHandle$Species_LLLLL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LLLLL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L8_L +java/lang/Long$LongCache +java/lang/invoke/MethodHandles$1 +java/lang/invoke/BoundMethodHandle$Species_LJ +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LJ +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L4J_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder getLong LL_J +java/lang/invoke/BoundMethodHandle$Species_LLLLLL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LLLLLL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L9_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial L3_J +java/lang/invoke/BoundMethodHandle$Species_LLLLLLL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LLLLLLL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L10_L +java/util/TreeMap +java/lang/invoke/LambdaFormEditor$1 +java/util/TreeMap$Entry +java/util/TreeMap$EntrySet +java/util/TreeMap$PrivateEntryIterator +java/util/TreeMap$EntryIterator +java/lang/invoke/BoundMethodHandle$Species_LLLLLLLL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LLLLLLLL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L11_L +java/lang/invoke/BoundMethodHandle$Species_LLLLLLLLL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LLLLLLLLL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L12_L +java/lang/invoke/BoundMethodHandle$Species_LLLLLLLLLL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LLLLLLLLLL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L13_L +java/lang/invoke/BoundMethodHandle$Species_LLLLLLLLLLL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LLLLLLLLLLL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L14_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial L6_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod L5_L +java/lang/invoke/BoundMethodHandle$Species_LLLLLLLLLLLL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LLLLLLLLLLLL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L15_L +java/lang/invoke/BoundMethodHandle$Species_LLLLLLLLLLLLL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_LLLLLLLLLLLLL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L16_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod L6_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LJLIL_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJLIL_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DelegatingMethodHandle$Holder reinvoke_L LJLIL_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJLI_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LJI_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJI_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DelegatingMethodHandle$Holder reinvoke_L LJI_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLI_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial L3I_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod LIL_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLIL_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod ILL_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LJLJL_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJLJL_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DelegatingMethodHandle$Holder reinvoke_L LJLJL_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJLJ_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LJJ_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJJ_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DelegatingMethodHandle$Holder reinvoke_L LJJ_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJ_J +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod JL_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLJJ_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod JJL_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LD_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LLD_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder linkToTargetMethod DL_L +jdk/internal/math/FloatingDecimal +jdk/internal/math/FloatingDecimal$BinaryToASCIIConverter +jdk/internal/math/FloatingDecimal$ExceptionalBinaryToASCIIBuffer +jdk/internal/math/FloatingDecimal$BinaryToASCIIBuffer +jdk/internal/math/FloatingDecimal$1 +jdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter +jdk/internal/math/FloatingDecimal$PreparedASCIIToBinaryBuffer +java/time/format/DateTimeFormatter +java/time/format/DateTimeFormatterBuilder +java/time/temporal/TemporalQuery +java/time/ZoneId +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStaticInit LL_L +@lambda-proxy java/time/format/DateTimeFormatterBuilder queryFrom ()Ljava/time/temporal/TemporalQuery; (Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object; REF_invokeStatic java/time/format/DateTimeFormatterBuilder lambda$static$0 (Ljava/time/temporal/TemporalAccessor;)Ljava/time/ZoneId; (Ljava/time/temporal/TemporalAccessor;)Ljava/time/ZoneId; +java/lang/Character$CharacterCache +java/time/temporal/TemporalField +java/time/temporal/ChronoField +java/time/temporal/TemporalUnit +java/time/temporal/ChronoUnit +java/time/temporal/TemporalAmount +java/time/Duration +java/math/BigInteger +java/time/temporal/ValueRange +java/time/temporal/IsoFields +java/time/temporal/IsoFields$Field +java/time/temporal/IsoFields$Field$1 +java/time/temporal/IsoFields$Field$2 +java/time/temporal/IsoFields$Field$3 +java/time/temporal/IsoFields$Field$4 +java/time/temporal/IsoFields$Unit +java/time/temporal/JulianFields +java/time/temporal/JulianFields$Field +java/time/format/SignStyle +java/time/format/DateTimeFormatterBuilder$DateTimePrinterParser +java/time/format/DateTimeFormatterBuilder$NumberPrinterParser +java/time/format/DateTimeFormatterBuilder$CharLiteralPrinterParser +java/time/format/ResolverStyle +java/time/chrono/Chronology +java/time/chrono/AbstractChronology +java/time/chrono/IsoChronology +java/util/Locale$Category +java/time/format/DateTimeFormatterBuilder$CompositePrinterParser +java/time/format/DecimalStyle +java/time/format/DateTimeFormatterBuilder$SettingsParser +java/time/format/DateTimeFormatterBuilder$OffsetIdPrinterParser +java/time/format/DateTimeFormatterBuilder$FractionPrinterParser +java/time/format/DateTimeFormatterBuilder$ZoneIdPrinterParser +java/time/format/DateTimeFormatterBuilder$StringLiteralPrinterParser +java/time/format/DateTimeFormatterBuilder$InstantPrinterParser +java/time/format/TextStyle +java/util/Collections$SingletonMap +java/time/format/DateTimeTextProvider$LocaleStore +java/util/Collections$SingletonSet +java/util/Collections$1 +java/util/LinkedHashMap$LinkedEntrySet +java/util/LinkedHashMap$LinkedHashIterator +java/util/LinkedHashMap$LinkedEntryIterator +java/time/format/DateTimeTextProvider +java/time/format/DateTimeTextProvider$1 +java/util/Arrays$LegacyMergeSort +java/util/TimSort +java/time/format/DateTimeFormatterBuilder$1 +java/time/format/DateTimeFormatterBuilder$TextPrinterParser +java/time/chrono/ChronoPeriod +java/time/Period +@lambda-proxy java/time/format/DateTimeFormatter queryFrom ()Ljava/time/temporal/TemporalQuery; (Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object; REF_invokeStatic java/time/format/DateTimeFormatter lambda$static$0 (Ljava/time/temporal/TemporalAccessor;)Ljava/time/Period; (Ljava/time/temporal/TemporalAccessor;)Ljava/time/Period; +@lambda-proxy java/time/format/DateTimeFormatter queryFrom ()Ljava/time/temporal/TemporalQuery; (Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object; REF_invokeStatic java/time/format/DateTimeFormatter lambda$static$1 (Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Boolean; (Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Boolean; +java/time/temporal/TemporalAdjuster +java/time/ZoneOffset +java/time/ZoneRegion +java/time/zone/ZoneRules +java/time/zone/ZoneOffsetTransitionRule +java/time/temporal/Temporal +java/time/chrono/ChronoLocalDateTime +java/time/LocalDateTime +java/time/chrono/ChronoLocalDate +java/time/LocalDate +java/time/LocalTime +java/time/InstantSource +java/time/Clock +java/time/Clock$SystemClock +java/time/Instant +java/time/format/DateTimePrintContext +java/time/temporal/TemporalQueries +java/time/temporal/TemporalQueries$1 +java/time/temporal/TemporalQueries$2 +java/time/temporal/TemporalQueries$3 +java/time/temporal/TemporalQueries$4 +java/time/temporal/TemporalQueries$5 +java/time/temporal/TemporalQueries$6 +java/time/temporal/TemporalQueries$7 +java/time/LocalDate$1 +java/time/format/DateTimeFormatterBuilder$2 +java/time/LocalTime$1 +java/math/BigDecimal +java/math/RoundingMode +java/text/Format +java/text/DateFormat +java/util/spi/LocaleServiceProvider +java/text/spi/DateFormatProvider +sun/util/locale/provider/LocaleProviderAdapter +sun/util/locale/provider/LocaleProviderAdapter$Type +java/util/Collections$UnmodifiableList +java/util/Collections$UnmodifiableRandomAccessList +sun/util/locale/provider/LocaleProviderAdapter$1 +sun/util/locale/provider/ResourceBundleBasedAdapter +sun/util/locale/provider/JRELocaleProviderAdapter +sun/util/cldr/CLDRLocaleProviderAdapter +sun/util/locale/provider/LocaleDataMetaInfo +sun/util/cldr/CLDRBaseLocaleDataMetaInfo +sun/util/locale/LanguageTag +sun/util/locale/ParseStatus +sun/util/locale/StringTokenIterator +sun/util/locale/InternalLocaleBuilder +sun/util/locale/InternalLocaleBuilder$CaseInsensitiveChar +sun/util/locale/BaseLocale$Key +sun/util/locale/LocaleObjectCache +sun/util/locale/BaseLocale$Cache +sun/util/locale/LocaleObjectCache$CacheEntry +java/util/Locale$Cache +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L_L +@lambda-proxy sun/util/cldr/CLDRLocaleProviderAdapter run ()Ljava/security/PrivilegedExceptionAction; ()Ljava/lang/Object; REF_invokeStatic sun/util/cldr/CLDRLocaleProviderAdapter lambda$new$0 ()Lsun/util/locale/provider/LocaleDataMetaInfo; ()Lsun/util/locale/provider/LocaleDataMetaInfo; +@lambda-proxy sun/util/locale/provider/JRELocaleProviderAdapter run (Lsun/util/locale/provider/JRELocaleProviderAdapter;)Ljava/security/PrivilegedAction; ()Ljava/lang/Object; REF_invokeVirtual sun/util/locale/provider/JRELocaleProviderAdapter lambda$getDateFormatProvider$2 ()Ljava/text/spi/DateFormatProvider; ()Ljava/text/spi/DateFormatProvider; +sun/util/locale/provider/AvailableLanguageTags +sun/util/locale/provider/DateFormatProviderImpl +java/util/StringTokenizer +sun/util/locale/provider/CalendarDataUtility +java/util/Locale$Builder +java/text/SimpleDateFormat +java/text/AttributedCharacterIterator$Attribute +java/text/Format$Field +java/text/DateFormat$Field +java/util/Calendar +java/util/TimeZone +sun/util/calendar/ZoneInfo +sun/util/calendar/ZoneInfoFile +sun/util/calendar/ZoneInfoFile$1 +java/io/DataInputStream +sun/util/calendar/ZoneInfoFile$ZoneOffsetTransitionRule +sun/util/spi/CalendarProvider +@lambda-proxy sun/util/locale/provider/JRELocaleProviderAdapter run (Lsun/util/locale/provider/JRELocaleProviderAdapter;)Ljava/security/PrivilegedAction; ()Ljava/lang/Object; REF_invokeVirtual sun/util/locale/provider/JRELocaleProviderAdapter lambda$getCalendarProvider$11 ()Lsun/util/spi/CalendarProvider; ()Lsun/util/spi/CalendarProvider; +sun/util/locale/provider/CalendarProviderImpl +java/util/Calendar$Builder +java/util/GregorianCalendar +sun/util/calendar/CalendarSystem +sun/util/calendar/CalendarSystem$GregorianHolder +sun/util/calendar/AbstractCalendar +sun/util/calendar/BaseCalendar +sun/util/calendar/Gregorian +java/util/spi/CalendarDataProvider +sun/util/locale/provider/LocaleServiceProviderPool +java/text/spi/BreakIteratorProvider +java/text/spi/CollatorProvider +java/text/spi/DateFormatSymbolsProvider +java/text/spi/DecimalFormatSymbolsProvider +java/text/spi/NumberFormatProvider +java/util/spi/CurrencyNameProvider +java/util/spi/LocaleNameProvider +java/util/spi/TimeZoneNameProvider +sun/util/locale/provider/LocaleServiceProviderPool$LocalizedObjectGetter +sun/util/locale/provider/CalendarDataUtility$CalendarWeekParameterGetter +java/util/ResourceBundle$Control +java/util/ResourceBundle +java/util/ResourceBundle$Control$CandidateListCache +java/util/ResourceBundle$SingleFormatControl +java/util/ResourceBundle$NoFallbackControl +java/util/AbstractSequentialList +java/util/LinkedList +java/util/LinkedList$Node +@lambda-proxy sun/util/cldr/CLDRLocaleProviderAdapter run (Lsun/util/cldr/CLDRLocaleProviderAdapter;)Ljava/security/PrivilegedAction; ()Ljava/lang/Object; REF_invokeVirtual sun/util/cldr/CLDRLocaleProviderAdapter lambda$getCalendarDataProvider$1 ()Ljava/util/spi/CalendarDataProvider; ()Ljava/util/spi/CalendarDataProvider; +sun/util/locale/provider/CalendarDataProviderImpl +sun/util/cldr/CLDRCalendarDataProviderImpl +sun/util/locale/provider/LocaleResources +sun/util/resources/LocaleData +sun/util/resources/LocaleData$1 +sun/util/resources/Bundles$Strategy +sun/util/resources/LocaleData$LocaleDataStrategy +sun/util/resources/Bundles +sun/util/resources/Bundles$1 +jdk/internal/access/JavaUtilResourceBundleAccess +java/util/ResourceBundle$1 +java/util/ResourceBundle$2 +sun/util/resources/Bundles$CacheKey +java/util/ListResourceBundle +sun/util/resources/cldr/CalendarData +java/util/ResourceBundle$ResourceBundleProviderHelper +@lambda-proxy java/util/ResourceBundle$ResourceBundleProviderHelper run (Ljava/lang/reflect/Constructor;)Ljava/security/PrivilegedAction; ()Ljava/lang/Object; REF_invokeStatic java/util/ResourceBundle$ResourceBundleProviderHelper lambda$newResourceBundle$0 (Ljava/lang/reflect/Constructor;)Ljava/lang/Void; ()Ljava/lang/Void; +sun/util/resources/Bundles$CacheKeyReference +sun/util/resources/Bundles$BundleReference +sun/util/locale/provider/LocaleResources$ResourceReference +sun/util/calendar/CalendarDate +sun/util/calendar/BaseCalendar$Date +sun/util/calendar/Gregorian$Date +sun/util/calendar/CalendarUtils +java/text/DateFormatSymbols +@lambda-proxy sun/util/locale/provider/JRELocaleProviderAdapter run (Lsun/util/locale/provider/JRELocaleProviderAdapter;)Ljava/security/PrivilegedAction; ()Ljava/lang/Object; REF_invokeVirtual sun/util/locale/provider/JRELocaleProviderAdapter lambda$getDateFormatSymbolsProvider$3 ()Ljava/text/spi/DateFormatSymbolsProvider; ()Ljava/text/spi/DateFormatSymbolsProvider; +sun/util/locale/provider/DateFormatSymbolsProviderImpl +sun/text/resources/cldr/FormatData +java/text/NumberFormat +@lambda-proxy sun/util/locale/provider/JRELocaleProviderAdapter run (Lsun/util/locale/provider/JRELocaleProviderAdapter;)Ljava/security/PrivilegedAction; ()Ljava/lang/Object; REF_invokeVirtual sun/util/locale/provider/JRELocaleProviderAdapter lambda$getNumberFormatProvider$5 ()Ljava/text/spi/NumberFormatProvider; ()Ljava/text/spi/NumberFormatProvider; +sun/util/locale/provider/NumberFormatProviderImpl +java/text/DecimalFormatSymbols +@lambda-proxy sun/util/locale/provider/JRELocaleProviderAdapter run (Lsun/util/locale/provider/JRELocaleProviderAdapter;)Ljava/security/PrivilegedAction; ()Ljava/lang/Object; REF_invokeVirtual sun/util/locale/provider/JRELocaleProviderAdapter lambda$getDecimalFormatSymbolsProvider$4 ()Ljava/text/spi/DecimalFormatSymbolsProvider; ()Ljava/text/spi/DecimalFormatSymbolsProvider; +sun/util/locale/provider/DecimalFormatSymbolsProviderImpl +java/lang/StringLatin1$CharsSpliterator +java/util/stream/IntStream +java/util/stream/IntPipeline +java/util/stream/IntPipeline$Head +java/util/function/IntPredicate +@lambda-proxy java/text/DecimalFormatSymbols test ()Ljava/util/function/IntPredicate; (I)Z REF_invokeStatic java/text/DecimalFormatSymbols lambda$findNonFormatChar$0 (I)Z (I)Z +java/util/stream/IntPipeline$StatelessOp +java/util/stream/IntPipeline$10 +java/util/function/IntConsumer +java/util/stream/Sink$OfInt +java/util/stream/FindOps$FindSink$OfInt +java/util/OptionalInt +@lambda-proxy java/util/stream/FindOps$FindSink$OfInt test ()Ljava/util/function/Predicate; (Ljava/lang/Object;)Z REF_invokeVirtual java/util/OptionalInt isPresent ()Z (Ljava/util/OptionalInt;)Z +@lambda-proxy java/util/stream/FindOps$FindSink$OfInt get ()Ljava/util/function/Supplier; ()Ljava/lang/Object; REF_newInvokeSpecial java/util/stream/FindOps$FindSink$OfInt ()V ()Ljava/util/stream/TerminalSink; +@lambda-proxy java/util/stream/FindOps$FindSink$OfInt test ()Ljava/util/function/Predicate; (Ljava/lang/Object;)Z REF_invokeVirtual java/util/OptionalInt isPresent ()Z (Ljava/util/OptionalInt;)Z +@lambda-proxy java/util/stream/FindOps$FindSink$OfInt get ()Ljava/util/function/Supplier; ()Ljava/lang/Object; REF_newInvokeSpecial java/util/stream/FindOps$FindSink$OfInt ()V ()Ljava/util/stream/TerminalSink; +java/util/stream/Sink$ChainedInt +java/util/stream/IntPipeline$10$1 +java/lang/StringUTF16$CharsSpliterator +java/lang/CharacterData00 +java/text/DecimalFormat +java/text/FieldPosition +java/text/DigitList +java/util/Date +java/text/DontCareFieldPosition +java/text/Format$FieldDelegate +java/text/DontCareFieldPosition$1 +java/text/NumberFormat$Field +java/util/Formatter +java/util/Formatter$Conversion +java/util/Formatter$FormatString +java/util/Formatter$FormatSpecifier +java/util/Formatter$Flags +java/util/Formattable +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.LambdaForm$Holder identity_D LD_D +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.LambdaForm$Holder zero_D L_D +java/lang/invoke/BoundMethodHandle$Species_D +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_D +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L3D_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder getDouble LL_D +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.Invokers$Holder invoke_MT LL_L +sun/invoke/util/ValueConversions$WrapperCache +java/lang/invoke/BoundMethodHandle$Species_DL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_DL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L3DL_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.LambdaForm$Holder identity_I LI_I +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.LambdaForm$Holder zero_I L_I +java/lang/invoke/BoundMethodHandle$Species_I +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_I +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L3I_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder getInt LL_I +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic LI_L +java/lang/invoke/BoundMethodHandle$Species_IL +@lambda-form-invoker [SPECIES_RESOLVE] java.lang.invoke.BoundMethodHandle$Species_IL +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L3IL_L +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeStatic L_V +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DirectMethodHandle$Holder invokeSpecial LL_V +@lambda-form-invoker [LF_RESOLVE] java.lang.invoke.DelegatingMethodHandle$Holder reinvoke_L L_V +java/util/IdentityHashMap$IdentityHashMapIterator +java/util/IdentityHashMap$KeyIterator diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/ct.sym b/VRStagelighting GridNode SPOUT OLD/java/lib/ct.sym new file mode 100644 index 0000000..b4c4cd0 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/java/lib/ct.sym differ diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/fontconfig.bfc b/VRStagelighting GridNode SPOUT OLD/java/lib/fontconfig.bfc new file mode 100644 index 0000000..8f4eb44 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/java/lib/fontconfig.bfc differ diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/fontconfig.properties.src b/VRStagelighting GridNode SPOUT OLD/java/lib/fontconfig.properties.src new file mode 100644 index 0000000..5be779b --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/lib/fontconfig.properties.src @@ -0,0 +1,328 @@ +# +# +# Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved. +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# This code is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 2 only, as +# published by the Free Software Foundation. Oracle designates this +# particular file as subject to the "Classpath" exception as provided +# by Oracle in the LICENSE file that accompanied this code. +# +# This code is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# version 2 for more details (a copy is included in the LICENSE file that +# accompanied this code). +# +# You should have received a copy of the GNU General Public License version +# 2 along with this work; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA +# or visit www.oracle.com if you need additional information or have any +# questions. +# + +# Version + +version=1 + +# Component Font Mappings + +allfonts.chinese-ms936=SimSun +allfonts.chinese-ms936-extb=SimSun-ExtB +allfonts.chinese-gb18030=SimSun-18030 +allfonts.chinese-gb18030-extb=SimSun-ExtB +allfonts.chinese-hkscs=MingLiU_HKSCS +allfonts.chinese-ms950-extb=MingLiU-ExtB +allfonts.devanagari=Mangal +allfonts.bengali=Vrinda +allfonts.gujarati=Shruti +allfonts.gurmukhi=Raavi +allfonts.kannada=Tunga +allfonts.malayalam=Kartika +allfonts.oriya=Kalinga +allfonts.sinhala=Iskoola Pota +allfonts.tamil=Latha +allfonts.telugu=Gautami +allfonts.khmer=Khmer UI +allfonts.mongolian=Mongolian Baiti +allfonts.myanmar=Myanmar Text +allfonts.dingbats=Wingdings +allfonts.symbol=Symbol +allfonts.symbols=Segoe UI Symbol +allfonts.thai=DokChampa +allfonts.georgian=Sylfaen + +serif.plain.alphabetic=Times New Roman +serif.plain.chinese-ms950=MingLiU +serif.plain.chinese-ms950-extb=MingLiU-ExtB +serif.plain.hebrew=David +serif.plain.japanese=MS Mincho +serif.plain.korean=Batang + +serif.bold.alphabetic=Times New Roman Bold +serif.bold.chinese-ms950=PMingLiU +serif.bold.chinese-ms950-extb=PMingLiU-ExtB +serif.bold.hebrew=David Bold +serif.bold.japanese=MS Mincho +serif.bold.korean=Batang + +serif.italic.alphabetic=Times New Roman Italic +serif.italic.chinese-ms950=PMingLiU +serif.italic.chinese-ms950-extb=PMingLiU-ExtB +serif.italic.hebrew=David +serif.italic.japanese=MS Mincho +serif.italic.korean=Batang + +serif.bolditalic.alphabetic=Times New Roman Bold Italic +serif.bolditalic.chinese-ms950=PMingLiU +serif.bolditalic.chinese-ms950-extb=PMingLiU-ExtB +serif.bolditalic.hebrew=David Bold +serif.bolditalic.japanese=MS Mincho +serif.bolditalic.korean=Batang + +sansserif.plain.alphabetic=Arial +sansserif.plain.chinese-ms950=MingLiU +sansserif.plain.chinese-ms950-extb=MingLiU-ExtB +sansserif.plain.hebrew=David +sansserif.plain.japanese=MS Gothic +sansserif.plain.korean=Gulim + +sansserif.bold.alphabetic=Arial Bold +sansserif.bold.chinese-ms950=PMingLiU +sansserif.bold.chinese-ms950-extb=PMingLiU-ExtB +sansserif.bold.hebrew=David Bold +sansserif.bold.japanese=MS Gothic +sansserif.bold.korean=Gulim + +sansserif.italic.alphabetic=Arial Italic +sansserif.italic.chinese-ms950=PMingLiU +sansserif.italic.chinese-ms950-extb=PMingLiU-ExtB +sansserif.italic.hebrew=David +sansserif.italic.japanese=MS Gothic +sansserif.italic.korean=Gulim + +sansserif.bolditalic.alphabetic=Arial Bold Italic +sansserif.bolditalic.chinese-ms950=PMingLiU +sansserif.bolditalic.chinese-ms950-extb=PMingLiU-ExtB +sansserif.bolditalic.hebrew=David Bold +sansserif.bolditalic.japanese=MS Gothic +sansserif.bolditalic.korean=Gulim + +monospaced.plain.alphabetic=Courier New +monospaced.plain.chinese-ms950=MingLiU +monospaced.plain.chinese-ms950-extb=MingLiU-ExtB +monospaced.plain.hebrew=Courier New +monospaced.plain.japanese=MS Gothic +monospaced.plain.korean=GulimChe + +monospaced.bold.alphabetic=Courier New Bold +monospaced.bold.chinese-ms950=PMingLiU +monospaced.bold.chinese-ms950-extb=PMingLiU-ExtB +monospaced.bold.hebrew=Courier New Bold +monospaced.bold.japanese=MS Gothic +monospaced.bold.korean=GulimChe + +monospaced.italic.alphabetic=Courier New Italic +monospaced.italic.chinese-ms950=PMingLiU +monospaced.italic.chinese-ms950-extb=PMingLiU-ExtB +monospaced.italic.hebrew=Courier New +monospaced.italic.japanese=MS Gothic +monospaced.italic.korean=GulimChe + +monospaced.bolditalic.alphabetic=Courier New Bold Italic +monospaced.bolditalic.chinese-ms950=PMingLiU +monospaced.bolditalic.chinese-ms950-extb=PMingLiU-ExtB +monospaced.bolditalic.hebrew=Courier New Bold +monospaced.bolditalic.japanese=MS Gothic +monospaced.bolditalic.korean=GulimChe + +dialog.plain.alphabetic=Arial +dialog.plain.chinese-ms950=MingLiU +dialog.plain.chinese-ms950-extb=MingLiU-ExtB +dialog.plain.hebrew=David +dialog.plain.japanese=MS Gothic +dialog.plain.korean=Gulim + +dialog.bold.alphabetic=Arial Bold +dialog.bold.chinese-ms950=PMingLiU +dialog.bold.chinese-ms950-extb=PMingLiU-ExtB +dialog.bold.hebrew=David Bold +dialog.bold.japanese=MS Gothic +dialog.bold.korean=Gulim + +dialog.italic.alphabetic=Arial Italic +dialog.italic.chinese-ms950=PMingLiU +dialog.italic.chinese-ms950-extb=PMingLiU-ExtB +dialog.italic.hebrew=David +dialog.italic.japanese=MS Gothic +dialog.italic.korean=Gulim + +dialog.bolditalic.alphabetic=Arial Bold Italic +dialog.bolditalic.chinese-ms950=PMingLiU +dialog.bolditalic.chinese-ms950-extb=PMingLiU-ExtB +dialog.bolditalic.hebrew=David Bold +dialog.bolditalic.japanese=MS Gothic +dialog.bolditalic.korean=Gulim + +dialoginput.plain.alphabetic=Courier New +dialoginput.plain.chinese-ms950=MingLiU +dialoginput.plain.chinese-ms950-extb=MingLiU-ExtB +dialoginput.plain.hebrew=David +dialoginput.plain.japanese=MS Gothic +dialoginput.plain.korean=Gulim + +dialoginput.bold.alphabetic=Courier New Bold +dialoginput.bold.chinese-ms950=PMingLiU +dialoginput.bold.chinese-ms950-extb=PMingLiU-ExtB +dialoginput.bold.hebrew=David Bold +dialoginput.bold.japanese=MS Gothic +dialoginput.bold.korean=Gulim + +dialoginput.italic.alphabetic=Courier New Italic +dialoginput.italic.chinese-ms950=PMingLiU +dialoginput.italic.chinese-ms950-extb=PMingLiU-ExtB +dialoginput.italic.hebrew=David +dialoginput.italic.japanese=MS Gothic +dialoginput.italic.korean=Gulim + +dialoginput.bolditalic.alphabetic=Courier New Bold Italic +dialoginput.bolditalic.chinese-ms950=PMingLiU +dialoginput.bolditalic.chinese-ms950-extb=PMingLiU-ExtB +dialoginput.bolditalic.hebrew=David Bold +dialoginput.bolditalic.japanese=MS Gothic +dialoginput.bolditalic.korean=Gulim + +# Search Sequences + +sequence.allfonts=alphabetic/default,dingbats,symbol + +sequence.serif.GBK=alphabetic,chinese-ms936,dingbats,symbol,chinese-ms936-extb +sequence.sansserif.GBK=alphabetic,chinese-ms936,dingbats,symbol,chinese-ms936-extb +sequence.monospaced.GBK=chinese-ms936,alphabetic,dingbats,symbol,chinese-ms936-extb +sequence.dialog.GBK=alphabetic,chinese-ms936,dingbats,symbol,chinese-ms936-extb +sequence.dialoginput.GBK=alphabetic,chinese-ms936,dingbats,symbol,chinese-ms936-extb + +sequence.serif.GB18030=alphabetic,chinese-gb18030,dingbats,symbol,chinese-gb18030-extb +sequence.sansserif.GB18030=alphabetic,chinese-gb18030,dingbats,symbol,chinese-gb18030-extb +sequence.monospaced.GB18030=chinese-gb18030,alphabetic,dingbats,symbol,chinese-gb18030-extb +sequence.dialog.GB18030=alphabetic,chinese-gb18030,dingbats,symbol,chinese-gb18030-extb +sequence.dialoginput.GB18030=alphabetic,chinese-gb18030,dingbats,symbol,chinese-gb18030-extb + +sequence.serif.x-windows-950=alphabetic,chinese-ms950,dingbats,symbol,chinese-ms950-extb +sequence.sansserif.x-windows-950=alphabetic,chinese-ms950,dingbats,symbol,chinese-ms950-extb +sequence.monospaced.x-windows-950=chinese-ms950,alphabetic,dingbats,symbol,chinese-ms950-extb +sequence.dialog.x-windows-950=alphabetic,chinese-ms950,dingbats,symbol,chinese-ms950-extb +sequence.dialoginput.x-windows-950=alphabetic,chinese-ms950,dingbats,symbol,chinese-ms950-extb + +sequence.serif.x-MS950-HKSCS=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb +sequence.sansserif.x-MS950-HKSCS=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb +sequence.monospaced.x-MS950-HKSCS=chinese-ms950,alphabetic,chinese-hkscs,dingbats,symbol,chinese-ms950-extb +sequence.dialog.x-MS950-HKSCS=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb +sequence.dialoginput.x-MS950-HKSCS=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb + +sequence.serif.x-MS950-HKSCS-XP=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb +sequence.sansserif.x-MS950-HKSCS-XP=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb +sequence.monospaced.x-MS950-HKSCS-XP=chinese-ms950,alphabetic,chinese-hkscs,dingbats,symbol,chinese-ms950-extb +sequence.dialog.x-MS950-HKSCS-XP=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb +sequence.dialoginput.x-MS950-HKSCS-XP=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb + +sequence.allfonts.UTF-8.hi=alphabetic/1252,devanagari,dingbats,symbol +sequence.allfonts.UTF-8.ja=alphabetic,japanese,dingbats,symbol + +sequence.allfonts.windows-1255=hebrew,alphabetic/1252,dingbats,symbol + +sequence.serif.windows-31j=alphabetic,japanese,dingbats,symbol +sequence.sansserif.windows-31j=alphabetic,japanese,dingbats,symbol +sequence.monospaced.windows-31j=japanese,alphabetic,dingbats,symbol +sequence.dialog.windows-31j=alphabetic,japanese,dingbats,symbol +sequence.dialoginput.windows-31j=alphabetic,japanese,dingbats,symbol + +sequence.serif.x-windows-949=alphabetic,korean,dingbats,symbol +sequence.sansserif.x-windows-949=alphabetic,korean,dingbats,symbol +sequence.monospaced.x-windows-949=korean,alphabetic,dingbats,symbol +sequence.dialog.x-windows-949=alphabetic,korean,dingbats,symbol +sequence.dialoginput.x-windows-949=alphabetic,korean,dingbats,symbol + +sequence.allfonts.x-windows-874=alphabetic,thai,dingbats,symbol + +sequence.fallback=symbols,\ + chinese-ms950,chinese-hkscs,chinese-ms936,chinese-gb18030,\ + japanese,korean,chinese-ms950-extb,chinese-ms936-extb,\ + georgian,devanagari,bengali,gujarati,gurmukhi,kannada,\ + malayalam,oriya,sinhala,tamil,telugu,thai,khmer,mongolian,\ + myanmar + +# Exclusion Ranges + +exclusion.alphabetic=0700-1cff,1d80-1e9f,1f00-2017,2020-20ab,20ad-20b8,20bb-20bc,20be-f8ff +exclusion.chinese-gb18030=0390-03d6,2200-22ef,2701-27be +exclusion.hebrew=0041-005a,0060-007a,007f-00ff,20ac-20ac + +# Monospaced to Proportional width variant mapping +# (Experimental private syntax) +proportional.MS_Gothic=MS PGothic +proportional.MS_Mincho=MS PMincho +proportional.MingLiU=PMingLiU +proportional.MingLiU-ExtB=PMingLiU-ExtB + +# Font File Names + +filename.Arial=ARIAL.TTF +filename.Arial_Bold=ARIALBD.TTF +filename.Arial_Italic=ARIALI.TTF +filename.Arial_Bold_Italic=ARIALBI.TTF + +filename.Courier_New=COUR.TTF +filename.Courier_New_Bold=COURBD.TTF +filename.Courier_New_Italic=COURI.TTF +filename.Courier_New_Bold_Italic=COURBI.TTF + +filename.Times_New_Roman=TIMES.TTF +filename.Times_New_Roman_Bold=TIMESBD.TTF +filename.Times_New_Roman_Italic=TIMESI.TTF +filename.Times_New_Roman_Bold_Italic=TIMESBI.TTF + +filename.SimSun=SIMSUN.TTC +filename.SimSun-18030=SIMSUN18030.TTC +filename.SimSun-ExtB=SIMSUNB.TTF + +filename.MingLiU=MINGLIU.TTC +filename.MingLiU-ExtB=MINGLIUB.TTC +filename.PMingLiU=MINGLIU.TTC +filename.PMingLiU-ExtB=MINGLIUB.TTC +filename.MingLiU_HKSCS=hkscsm3u.ttf + +filename.David=DAVID.TTF +filename.David_Bold=DAVIDBD.TTF + +filename.MS_Mincho=MSMINCHO.TTC +filename.MS_PMincho=MSMINCHO.TTC +filename.MS_Gothic=MSGOTHIC.TTC +filename.MS_PGothic=MSGOTHIC.TTC + +filename.Gulim=gulim.TTC +filename.Batang=batang.TTC +filename.GulimChe=gulim.TTC + +filename.Gautami=gautami.ttf +filename.Iskoola_Pota=iskpota.ttf +filename.Kalinga=kalinga.ttf +filename.Kartika=kartika.ttf +filename.Latha=latha.ttf +filename.Mangal=MANGAL.TTF +filename.Raavi=raavi.ttf +filename.Shruti=shruti.ttf +filename.Tunga=TUNGA.TTF +filename.Vrinda=vrinda.ttf +filename.DokChampa=dokchamp.ttf +filename.Khmer_UI=KhmerUI.ttf +filename.Mongolian_Baiti=monbaiti.ttf +filename.Myanmar_Text=mmrtext.ttf +filename.Symbol=SYMBOL.TTF +filename.Wingdings=WINGDING.TTF + +filename.Sylfaen=sylfaen.ttf +filename.Segoe_UI_Symbol=SEGUISYM.TTF diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/jawt.lib b/VRStagelighting GridNode SPOUT OLD/java/lib/jawt.lib new file mode 100644 index 0000000..61db1dd Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/java/lib/jawt.lib differ diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/jfr/default.jfc b/VRStagelighting GridNode SPOUT OLD/java/lib/jfr/default.jfc new file mode 100644 index 0000000..9c265eb --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/lib/jfr/default.jfc @@ -0,0 +1,1069 @@ + + + + + + + true + everyChunk + + + + true + 1000 ms + + + + true + everyChunk + + + + true + 1000 ms + + + + true + 10 s + + + + true + 10 s + + + + true + 10 s + + + + true + 10 s + + + + true + 10 s + + + + true + true + + + + true + + + + true + true + 20 ms + + + + true + true + 20 ms + + + + true + true + 20 ms + + + + true + true + 20 ms + + + + false + true + 20 ms + + + + true + true + + + + true + true + 0 ms + + + + true + true + 0 ms + + + + true + true + 0 ms + + + + true + true + + + + false + true + 0 ms + + + + false + true + + + + true + true + 0 ms + + + + true + true + 0 ms + + + + true + + + + false + + + + true + beginChunk + + + + true + beginChunk + + + + true + 20 ms + + + + true + 20 ms + + + + true + 10 ms + + + + false + 10 ms + + + + false + 10 ms + + + + false + 10 ms + + + + false + 10 ms + + + + true + 10 ms + + + + true + true + + + + true + everyChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + false + everyChunk + + + + true + everyChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + false + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + true + + + + true + true + + + + true + + + + true + 0 ms + + + + true + 0 ms + true + + + + true + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + false + 0 ms + + + + false + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + 0 ms + + + + true + + + + true + + + + false + + + + false + + + + true + + + + false + true + + + + true + + + + false + everyChunk + + + + false + + + + false + everyChunk + + + + false + + + + true + false + 0 ns + + + + true + beginChunk + + + + true + 1000 ms + + + + true + 1000 ms + + + + true + 60 s + + + + false + + + + false + + + + true + + + + true + beginChunk + + + + true + everyChunk + + + + true + 100 ms + + + + true + beginChunk + + + + true + everyChunk + + + + true + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + 30 s + + + + true + 30 s + + + + true + 30 s + + + + true + 30 s + + + + true + beginChunk + + + + true + 10 s + + + + true + 1000 ms + + + + true + 10 s + + + + true + beginChunk + + + + true + endChunk + + + + true + true + + + + true + 5 s + + + + true + beginChunk + + + + true + everyChunk + + + + false + true + + + + false + true + + + + true + 150/s + true + + + + true + everyChunk + + + + true + endChunk + + + + true + endChunk + + + + true + true + 20 ms + + + + true + true + 20 ms + + + + true + true + 20 ms + + + + true + true + 20 ms + + + + true + true + 20 ms + + + + false + true + + + + true + beginChunk + + + + false + true + + + + false + true + + + + false + true + + + + false + true + + + + false + true + + + + false + true + + + + true + true + + + + true + 1000 ms + + + + true + + + + true + + + + false + 0 ns + + + + true + + + + true + + + + true + 0 ms + + + + true + true + 1 ms + + + + true + 0 ms + + + + true + 0 ms + + + + false + 0 ms + + + + false + 0 ms + + + + false + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + false + + + + true + 0 ns + true + + + + true + 5 s + + + + true + 1 s + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 20 ms + + 20 ms + + 20 ms + + false + + + + diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/jfr/profile.jfc b/VRStagelighting GridNode SPOUT OLD/java/lib/jfr/profile.jfc new file mode 100644 index 0000000..dd2708d --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/lib/jfr/profile.jfc @@ -0,0 +1,1069 @@ + + + + + + + true + everyChunk + + + + true + 1000 ms + + + + true + everyChunk + + + + true + 1000 ms + + + + true + 10 s + + + + true + 10 s + + + + true + 10 s + + + + true + 10 s + + + + true + 10 s + + + + true + true + + + + true + + + + true + true + 10 ms + + + + true + true + 10 ms + + + + true + true + 10 ms + + + + true + true + 10 ms + + + + true + true + 10 ms + + + + true + true + + + + true + true + 0 ms + + + + true + true + 0 ms + + + + true + true + 0 ms + + + + true + true + + + + false + true + 0 ms + + + + false + true + + + + true + true + 0 ms + + + + true + true + 0 ms + + + + true + + + + false + + + + true + beginChunk + + + + true + beginChunk + + + + true + 10 ms + + + + true + 20 ms + + + + true + 0 ms + + + + false + 0 ms + + + + false + 0 ms + + + + false + 0 ms + + + + false + 0 ms + + + + true + 0 ms + + + + true + true + + + + true + 60 s + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + false + everyChunk + + + + true + everyChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + false + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + true + + + + true + true + + + + true + + + + true + 0 ms + + + + true + 0 ms + true + + + + true + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + false + 0 ms + + + + false + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + 0 ms + + + + true + + + + true + + + + true + + + + true + + + + true + + + + false + true + + + + true + + + + false + everyChunk + + + + false + + + + false + everyChunk + + + + false + + + + true + true + 0 ns + + + + true + beginChunk + + + + true + 1000 ms + + + + true + 100 ms + + + + true + 10 s + + + + true + + + + false + + + + true + + + + true + beginChunk + + + + true + everyChunk + + + + true + 100 ms + + + + true + beginChunk + + + + true + everyChunk + + + + true + + + + true + beginChunk + + + + true + beginChunk + + + + true + beginChunk + + + + true + 30 s + + + + true + 30 s + + + + true + 30 s + + + + true + 30 s + + + + true + beginChunk + + + + true + 10 s + + + + true + 1000 ms + + + + true + 10 s + + + + true + beginChunk + + + + true + endChunk + + + + true + true + + + + true + 5 s + + + + true + beginChunk + + + + true + everyChunk + + + + false + true + + + + false + true + + + + true + 300/s + true + + + + true + everyChunk + + + + true + endChunk + + + + true + endChunk + + + + true + true + 10 ms + + + + true + true + 10 ms + + + + true + true + 10 ms + + + + true + true + 10 ms + + + + true + true + 10 ms + + + + false + true + + + + true + beginChunk + + + + false + true + + + + false + true + + + + false + true + + + + false + true + + + + false + true + + + + false + true + + + + true + true + + + + true + 1000 ms + + + + true + + + + true + + + + false + 0 ns + + + + true + + + + true + + + + true + 0 ms + + + + true + true + 1 ms + + + + true + 0 ms + + + + true + 0 ms + + + + false + 0 ms + + + + false + 0 ms + + + + false + 0 ms + + + + true + 0 ms + + + + true + 0 ms + + + + true + true + + + + true + 0 ns + true + + + + true + 5 s + + + + true + 100 ms + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 10 ms + + 10 ms + + 10 ms + + false + + + + diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/jrt-fs.jar b/VRStagelighting GridNode SPOUT OLD/java/lib/jrt-fs.jar new file mode 100644 index 0000000..28f201b Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/java/lib/jrt-fs.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/jvm.cfg b/VRStagelighting GridNode SPOUT OLD/java/lib/jvm.cfg new file mode 100644 index 0000000..97225c8 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/lib/jvm.cfg @@ -0,0 +1,2 @@ +-server KNOWN +-client IGNORE diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/jvm.lib b/VRStagelighting GridNode SPOUT OLD/java/lib/jvm.lib new file mode 100644 index 0000000..a03197c Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/java/lib/jvm.lib differ diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/modules b/VRStagelighting GridNode SPOUT OLD/java/lib/modules new file mode 100644 index 0000000..af0e67a Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/java/lib/modules differ diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/psfont.properties.ja b/VRStagelighting GridNode SPOUT OLD/java/lib/psfont.properties.ja new file mode 100644 index 0000000..d17cf40 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/lib/psfont.properties.ja @@ -0,0 +1,119 @@ +# +# +# Copyright (c) 1996, 2000, Oracle and/or its affiliates. All rights reserved. +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# This code is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 2 only, as +# published by the Free Software Foundation. Oracle designates this +# particular file as subject to the "Classpath" exception as provided +# by Oracle in the LICENSE file that accompanied this code. +# +# This code is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# version 2 for more details (a copy is included in the LICENSE file that +# accompanied this code). +# +# You should have received a copy of the GNU General Public License version +# 2 along with this work; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA +# or visit www.oracle.com if you need additional information or have any +# questions. +# + +# +# Japanese PostScript printer property file +# +font.num=16 +# +serif=serif +timesroman=serif +sansserif=sansserif +helvetica=sansserif +monospaced=monospaced +courier=monospaced +dialog=sansserif +dialoginput=monospaced +# +serif.latin1.plain=Times-Roman +serif.latin1.italic=Times-Italic +serif.latin1.bolditalic=Times-BoldItalic +serif.latin1.bold=Times-Bold +# +sansserif.latin1.plain=Helvetica +sansserif.latin1.italic=Helvetica-Oblique +sansserif.latin1.bolditalic=Helvetica-BoldOblique +sansserif.latin1.bold=Helvetica-Bold +# +monospaced.latin1.plain=Courier +monospaced.latin1.italic=Courier-Oblique +monospaced.latin1.bolditalic=Courier-BoldOblique +monospaced.latin1.bold=Courier-Bold +# +serif.x11jis0208.plain=Ryumin-Light-H +serif.x11jis0208.italic=Ryumin-Light-H +serif.x11jis0208.bolditalic=Ryumin-Light-H +serif.x11jis0208.bold=Ryumin-Light-H +# +sansserif.x11jis0208.plain=GothicBBB-Medium-H +sansserif.x11jis0208.italic=GothicBBB-Medium-H +sansserif.x11jis0208.bolditalic=GothicBBB-Medium-H +sansserif.x11jis0208.bold=GothicBBB-Medium-H +# +monospaced.x11jis0208.plain=GothicBBB-Medium-H +monospaced.x11jis0208.italic=GothicBBB-Medium-H +monospaced.x11jis0208.bolditalic=GothicBBB-Medium-H +monospaced.x11jis0208.bold=GothicBBB-Medium-H +# +serif.x11jis0201.plain=Ryumin-Light.Hankaku +serif.x11jis0201.italic=Ryumin-Light.Hankaku +serif.x11jis0201.bolditalic=Ryumin-Light.Hankaku +serif.x11jis0201.bold=Ryumin-Light.Hankaku +# +sansserif.x11jis0201.plain=GothicBBB-Medium.Hankaku +sansserif.x11jis0201.italic=GothicBBB-Medium.Hankaku +sansserif.x11jis0201.bolditalic=GothicBBB-Medium.Hankaku +sansserif.x11jis0201.bold=GothicBBB-Medium.Hankaku +# +monospaced.x11jis0201.plain=GothicBBB-Medium.Hankaku +monospaced.x11jis0201.italic=GothicBBB-Medium.Hankaku +monospaced.x11jis0201.bolditalic=GothicBBB-Medium.Hankaku +monospaced.x11jis0201.bold=GothicBBB-Medium.Hankaku +# +Helvetica=0 +Helvetica-Bold=1 +Helvetica-Oblique=2 +Helvetica-BoldOblique=3 +Times-Roman=4 +Times-Bold=5 +Times-Italic=6 +Times-BoldItalic=7 +Courier=8 +Courier-Bold=9 +Courier-Oblique=10 +Courier-BoldOblique=11 +GothicBBB-Medium-H=12 +Ryumin-Light-H=13 +GothicBBB-Medium.Hankaku=14 +Ryumin-Light.Hankaku=15 +# +font.0=Helvetica ISOF +font.1=Helvetica-Bold ISOF +font.2=Helvetica-Oblique ISOF +font.3=Helvetica-BoldOblique ISOF +font.4=Times-Roman ISOF +font.5=Times-Bold ISOF +font.6=Times-Italic ISOF +font.7=Times-BoldItalic ISOF +font.8=Courier ISOF +font.9=Courier-Bold ISOF +font.10=Courier-Oblique ISOF +font.11=Courier-BoldOblique ISOF +font.12=GothicBBB-Medium-H findfont +font.13=Ryumin-Light-H findfont +font.14=GothicBBB-Medium.Hankaku findfont +font.15=Ryumin-Light.Hankaku findfont +# diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/psfontj2d.properties b/VRStagelighting GridNode SPOUT OLD/java/lib/psfontj2d.properties new file mode 100644 index 0000000..5eb2c4b --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/lib/psfontj2d.properties @@ -0,0 +1,323 @@ +# +# +# Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved. +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# This code is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 2 only, as +# published by the Free Software Foundation. Oracle designates this +# particular file as subject to the "Classpath" exception as provided +# by Oracle in the LICENSE file that accompanied this code. +# +# This code is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# version 2 for more details (a copy is included in the LICENSE file that +# accompanied this code). +# +# You should have received a copy of the GNU General Public License version +# 2 along with this work; if not, write to the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA +# or visit www.oracle.com if you need additional information or have any +# questions. + +# +# PostScript printer property file for Java 2D printing. +# +# WARNING: This is an internal implementation file, not a public file. +# Any customisation or reliance on the existence of this file and its +# contents or syntax is discouraged and unsupported. +# It may be incompatibly changed or removed without any notice. +# +# +font.num=35 +# +# Legacy logical font family names and logical font aliases should all +# map to the primary logical font names. +# +serif=serif +times=serif +timesroman=serif +sansserif=sansserif +helvetica=sansserif +dialog=sansserif +dialoginput=monospaced +monospaced=monospaced +courier=monospaced +# +# Next, physical fonts which can be safely mapped to standard postscript fonts +# These keys generally map to a value which is the same as the key, so +# the key/value is just a way to say the font has a mapping. +# Sometimes however we map more than one screen font to the same PS font. +# +avantgarde=avantgarde_book +avantgarde_book=avantgarde_book +avantgarde_demi=avantgarde_demi +avantgarde_book_oblique=avantgarde_book_oblique +avantgarde_demi_oblique=avantgarde_demi_oblique +# +itcavantgarde=avantgarde_book +itcavantgarde=avantgarde_book +itcavantgarde_demi=avantgarde_demi +itcavantgarde_oblique=avantgarde_book_oblique +itcavantgarde_demi_oblique=avantgarde_demi_oblique +# +bookman=bookman_light +bookman_light=bookman_light +bookman_demi=bookman_demi +bookman_light_italic=bookman_light_italic +bookman_demi_italic=bookman_demi_italic +# +# Exclude "helvetica" on its own as that's a legacy name for a logical font +helvetica_bold=helvetica_bold +helvetica_oblique=helvetica_oblique +helvetica_bold_oblique=helvetica_bold_oblique +# +itcbookman_light=bookman_light +itcbookman_demi=bookman_demi +itcbookman_light_italic=bookman_light_italic +itcbookman_demi_italic=bookman_demi_italic +# +# Exclude "courier" on its own as that's a legacy name for a logical font +courier_bold=courier_bold +courier_oblique=courier_oblique +courier_bold_oblique=courier_bold_oblique +# +courier_new=courier +courier_new_bold=courier_bold +# +monotype_century_schoolbook=newcenturyschoolbook +monotype_century_schoolbook_bold=newcenturyschoolbook_bold +monotype_century_schoolbook_italic=newcenturyschoolbook_italic +monotype_century_schoolbook_bold_italic=newcenturyschoolbook_bold_italic +# +newcenturyschoolbook=newcenturyschoolbook +newcenturyschoolbook_bold=newcenturyschoolbook_bold +newcenturyschoolbook_italic=newcenturyschoolbook_italic +newcenturyschoolbook_bold_italic=newcenturyschoolbook_bold_italic +# +palatino=palatino +palatino_bold=palatino_bold +palatino_italic=palatino_italic +palatino_bold_italic=palatino_bold_italic +# +# Exclude "times" on its own as that's a legacy name for a logical font +times_bold=times_roman_bold +times_italic=times_roman_italic +times_bold_italic=times_roman_bold_italic +# +times_roman=times_roman +times_roman_bold=times_roman_bold +times_roman_italic=times_roman_italic +times_roman_bold_italic=times_roman_bold_italic +# +times_new_roman=times_roman +times_new_roman_bold=times_roman_bold +times_new_roman_italic=times_roman_italic +times_new_roman_bold_italic=times_roman_bold_italic +# +zapfchancery_italic=zapfchancery_italic +itczapfchancery_italic=zapfchancery_italic +# +# Next the mapping of the font name + charset + style to Postscript font name +# for the logical fonts. +# +serif.latin1.plain=Times-Roman +serif.latin1.bold=Times-Bold +serif.latin1.italic=Times-Italic +serif.latin1.bolditalic=Times-BoldItalic +serif.symbol.plain=Symbol +serif.dingbats.plain=ZapfDingbats +serif.symbol.bold=Symbol +serif.dingbats.bold=ZapfDingbats +serif.symbol.italic=Symbol +serif.dingbats.italic=ZapfDingbats +serif.symbol.bolditalic=Symbol +serif.dingbats.bolditalic=ZapfDingbats +# +sansserif.latin1.plain=Helvetica +sansserif.latin1.bold=Helvetica-Bold +sansserif.latin1.italic=Helvetica-Oblique +sansserif.latin1.bolditalic=Helvetica-BoldOblique +sansserif.symbol.plain=Symbol +sansserif.dingbats.plain=ZapfDingbats +sansserif.symbol.bold=Symbol +sansserif.dingbats.bold=ZapfDingbats +sansserif.symbol.italic=Symbol +sansserif.dingbats.italic=ZapfDingbats +sansserif.symbol.bolditalic=Symbol +sansserif.dingbats.bolditalic=ZapfDingbats +# +monospaced.latin1.plain=Courier +monospaced.latin1.bold=Courier-Bold +monospaced.latin1.italic=Courier-Oblique +monospaced.latin1.bolditalic=Courier-BoldOblique +monospaced.symbol.plain=Symbol +monospaced.dingbats.plain=ZapfDingbats +monospaced.symbol.bold=Symbol +monospaced.dingbats.bold=ZapfDingbats +monospaced.symbol.italic=Symbol +monospaced.dingbats.italic=ZapfDingbats +monospaced.symbol.bolditalic=Symbol +monospaced.dingbats.bolditalic=ZapfDingbats +# +# Next the mapping of the font name + charset + style to Postscript font name +# for the physical fonts. Since these always report style as plain, the +# style key is always plain. So we map using the face name to the correct +# style for the postscript font. This is possible since the face names can +# be replied upon to be different for each style. +# However an application may try to create a Font applying a style to an +# physical name. We want to map to the correct Postscript font there too +# if possible but we do not map cases where the application tries to +# augment a style (eg ask for a bold version of a bold font) +# Defer to the 2D package to attempt create an artificially styled version +# +avantgarde_book.latin1.plain=AvantGarde-Book +avantgarde_demi.latin1.plain=AvantGarde-Demi +avantgarde_book_oblique.latin1.plain=AvantGarde-BookOblique +avantgarde_demi_oblique.latin1.plain=AvantGarde-DemiOblique +# +avantgarde_book.latin1.bold=AvantGarde-Demi +avantgarde_book.latin1.italic=AvantGarde-BookOblique +avantgarde_book.latin1.bolditalic=AvantGarde-DemiOblique +avantgarde_demi.latin1.italic=AvantGarde-DemiOblique +avantgarde_book_oblique.latin1.bold=AvantGarde-DemiOblique +# +bookman_light.latin1.plain=Bookman-Light +bookman_demi.latin1.plain=Bookman-Demi +bookman_light_italic.latin1.plain=Bookman-LightItalic +bookman_demi_italic.latin1.plain=Bookman-DemiItalic +# +bookman_light.latin1.bold=Bookman-Demi +bookman_light.latin1.italic=Bookman-LightItalic +bookman_light.latin1.bolditalic=Bookman-DemiItalic +bookman_light_bold.latin1.italic=Bookman-DemiItalic +bookman_light_italic.latin1.bold=Bookman-DemiItalic +# +courier.latin1.plain=Courier +courier_bold.latin1.plain=Courier-Bold +courier_oblique.latin1.plain=Courier-Oblique +courier_bold_oblique.latin1.plain=Courier-BoldOblique +courier.latin1.bold=Courier-Bold +courier.latin1.italic=Courier-Oblique +courier.latin1.bolditalic=Courier-BoldOblique +courier_bold.latin1.italic=Courier-BoldOblique +courier_italic.latin1.bold=Courier-BoldOblique +# +helvetica_bold.latin1.plain=Helvetica-Bold +helvetica_oblique.latin1.plain=Helvetica-Oblique +helvetica_bold_oblique.latin1.plain=Helvetica-BoldOblique +helvetica.latin1.bold=Helvetica-Bold +helvetica.latin1.italic=Helvetica-Oblique +helvetica.latin1.bolditalic=Helvetica-BoldOblique +helvetica_bold.latin1.italic=Helvetica-BoldOblique +helvetica_italic.latin1.bold=Helvetica-BoldOblique +# +newcenturyschoolbook.latin1.plain=NewCenturySchlbk-Roman +newcenturyschoolbook_bold.latin1.plain=NewCenturySchlbk-Bold +newcenturyschoolbook_italic.latin1.plain=NewCenturySchlbk-Italic +newcenturyschoolbook_bold_italic.latin1.plain=NewCenturySchlbk-BoldItalic +newcenturyschoolbook.latin1.bold=NewCenturySchlbk-Bold +newcenturyschoolbook.latin1.italic=NewCenturySchlbk-Italic +newcenturyschoolbook.latin1.bolditalic=NewCenturySchlbk-BoldItalic +newcenturyschoolbook_bold.latin1.italic=NewCenturySchlbk-BoldItalic +newcenturyschoolbook_italic.latin1.bold=NewCenturySchlbk-BoldItalic +# +palatino.latin1.plain=Palatino-Roman +palatino_bold.latin1.plain=Palatino-Bold +palatino_italic.latin1.plain=Palatino-Italic +palatino_bold_italic.latin1.plain=Palatino-BoldItalic +palatino.latin1.bold=Palatino-Bold +palatino.latin1.italic=Palatino-Italic +palatino.latin1.bolditalic=Palatino-BoldItalic +palatino_bold.latin1.italic=Palatino-BoldItalic +palatino_italic.latin1.bold=Palatino-BoldItalic +# +times_roman.latin1.plain=Times-Roman +times_roman_bold.latin1.plain=Times-Bold +times_roman_italic.latin1.plain=Times-Italic +times_roman_bold_italic.latin1.plain=Times-BoldItalic +times_roman.latin1.bold=Times-Bold +times_roman.latin1.italic=Times-Italic +times_roman.latin1.bolditalic=Times-BoldItalic +times_roman_bold.latin1.italic=Times-BoldItalic +times_roman_italic.latin1.bold=Times-BoldItalic +# +zapfchancery_italic.latin1.plain=ZapfChancery-MediumItalic +# +# Finally the mappings of PS font names to indexes. +# +AvantGarde-Book=0 +AvantGarde-BookOblique=1 +AvantGarde-Demi=2 +AvantGarde-DemiOblique=3 +Bookman-Demi=4 +Bookman-DemiItalic=5 +Bookman-Light=6 +Bookman-LightItalic=7 +Courier=8 +Courier-Bold=9 +Courier-BoldOblique=10 +Courier-Oblique=11 +Helvetica=12 +Helvetica-Bold=13 +Helvetica-BoldOblique=14 +Helvetica-Narrow=15 +Helvetica-Narrow-Bold=16 +Helvetica-Narrow-BoldOblique=17 +Helvetica-Narrow-Oblique=18 +Helvetica-Oblique=19 +NewCenturySchlbk-Bold=20 +NewCenturySchlbk-BoldItalic=21 +NewCenturySchlbk-Italic=22 +NewCenturySchlbk-Roman=23 +Palatino-Bold=24 +Palatino-BoldItalic=25 +Palatino-Italic=26 +Palatino-Roman=27 +Symbol=28 +Times-Bold=29 +Times-BoldItalic=30 +Times-Italic=31 +Times-Roman=32 +ZapfDingbats=33 +ZapfChancery-MediumItalic=34 +# +font.0=AvantGarde-Book ISOF +font.1=AvantGarde-BookOblique ISOF +font.2=AvantGarde-Demi ISOF +font.3=AvantGarde-DemiOblique ISOF +font.4=Bookman-Demi ISOF +font.5=Bookman-DemiItalic ISOF +font.6=Bookman-Light ISOF +font.7=Bookman-LightItalic ISOF +font.8=Courier ISOF +font.9=Courier-Bold ISOF +font.10=Courier-BoldOblique ISOF +font.11=Courier-Oblique ISOF +font.12=Helvetica ISOF +font.13=Helvetica-Bold ISOF +font.14=Helvetica-BoldOblique ISOF +font.15=Helvetica-Narrow ISOF +font.16=Helvetica-Narrow-Bold ISOF +font.17=Helvetica-Narrow-BoldOblique ISOF +font.18=Helvetica-Narrow-Oblique ISOF +font.19=Helvetica-Oblique ISOF +font.20=NewCenturySchlbk-Bold ISOF +font.21=NewCenturySchlbk-BoldItalic ISOF +font.22=NewCenturySchlbk-Italic ISOF +font.23=NewCenturySchlbk-Roman ISOF +font.24=Palatino-Bold ISOF +font.25=Palatino-BoldItalic ISOF +font.26=Palatino-Italic ISOF +font.27=Palatino-Roman ISOF +font.28=Symbol findfont +font.29=Times-Bold ISOF +font.30=Times-BoldItalic ISOF +font.31=Times-Italic ISOF +font.32=Times-Roman ISOF +font.33=ZapfDingbats findfont +font.34=ZapfChancery-MediumItalic ISOF +# diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/security/blocked.certs b/VRStagelighting GridNode SPOUT OLD/java/lib/security/blocked.certs new file mode 100644 index 0000000..beded9e --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/lib/security/blocked.certs @@ -0,0 +1,39 @@ +Algorithm=SHA-256 +03DB9E5E79FE6117177F81C11595AF598CB176AF766290DBCEB2C318B32E39A2 +08C396C006A21055D00826A5781A5CCFCE2C8D053AB3C197637A4A7A5BB9A650 +14E6D2764A4B06701C6CBC376A253775F79C782FBCB6C0EE6F99DE4BA1024ADD +1C5E6985ACC09221DBD1A4B7BBC6D3A8C3F8540D19F20763A9537FDD42B4FFE7 +1F6BF8A3F2399AF7FD04516C2719C566CBAD51F412738F66D0457E1E6BDE6F2D +2A464E4113141352C7962FBD1706ED4B88533EF24D7BBA6CCC5D797FD202F1C4 +31C8FD37DB9B56E708B03D1F01848B068C6DA66F36FB5D82C008C6040FA3E133 +3946901F46B0071E90D78279E82FABABCA177231A704BE72C5B0E8918566EA66 +3E11CF90719F6FB44D94EAC9A156B89BEBE7B8598F28EC58913F2BFCAF91D0C0 +423279423B9FC8CB06F1BB7C3B247522B948D5F18939F378ECC901126DE40BFB +450F1B421BB05C8609854884559C323319619E8B06B001EA2DCBB74A23AA3BE2 +4CBBF8256BC9888A8007B2F386940A2E394378B0D903CBB3863C5A6394B889CE +4FEE0163686ECBD65DB968E7494F55D84B25486D438E9DE558D629D28CD4D176 +535D04DFCE027C70BD5F8A9E0AD4F218E9AFDCF5BBCF9B6DE0D81E148E2E3172 +568FAF38D9F155F624838E2181B1CEB4D8459305EE652B0F810C97C3611BFE19 +585CFE6B7436CBD4E732763A2137D7F49599BA9B1790E688FCEC799C58EB84A6 +5E83124D68D24E8E177E306DF643D5EA99C5A94D6FC34B072F7544A1CABB7C7B +71CB00749B9130FB2707A2664BFF958D0FCC8E161D9674C7450BA0FC2BEAF9D3 +76A45A496031E4DD2D7ED23E8F6FF97DBDEA980BAAC8B0BA94D7EDB551348645 +8A1BD21661C60015065212CC98B1ABB50DFD14C872A208E66BAE890F25C448AF +9ED8F9B0E8E42A1656B8E1DD18F42BA42DC06FE52686173BA2FC70E756F207DC +9FADCE80D62A959F9930D748488C1E22E821F4E1E4A43584B848C2FC11E04D77 +A686FEE577C88AB664D0787ECDFFF035F4806F3DE418DC9E4D516324FFF02083 +A90132CEA1D4F7185E4F688EFFD16F6AC14DFD78356A807599A5DABBEEF3333E +B8686723E415534BC0DBD16326F9486F85B0B0799BF6639334E61DAAE67F36CD +C0D1F42B9F4BF7ACC045B7BB5D4805E10737F67B6310CE505248D543D0D5FE07 +D0156949F1381943442C6974E9B5B49EF441BB799EF20477B90A89C3F33620CE +D151962D954970501C60079258EBCFA38502E0A9F03CD640322B08C0A3117FE5 +D24566BF315F4E597D6E381C87119FB4198F5E9E2607F5F4AB362EF7E2E7672F +D3A936E1A7775A45217C8296A1F22AC5631DCDEC45594099E78EEEBBEDCBA967 +D6CEAE5D9E047FAF7D797858D229AC991AD44316D1E2A37A21926D763153593A +DF21016B00FC54F9FE3BC8B039911BB216E9162FAD2FD14D990AB96E951B49BE +E0E740E4B0F8B3548181FF75B5372FAF4C70B99EC995D694ED0FB91B03FF8D21 +EC30C9C3065A06BB07DC5B1C6B497F370C1CA65C0F30C08E042BA6BCECC78F2C +F5B6F88F75D391A4B1EB336F9E201239FB6B1377DB8CFA7B84736216E5AFFFD7 +FBB12938ABD86C125796EDF4162D291028890A7D6C0C1CCA75FD4B95EBFA7A1A +FC02FD48DB92D4DCE6F11679D38354CF750CFC7F584A520EB90BDE80E241F2BD +FDEDB5BDFCB67411513A61AEE5CB5B5D7C52AF06028EFC996CC1B05B1D6CEA2B diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/security/cacerts b/VRStagelighting GridNode SPOUT OLD/java/lib/security/cacerts new file mode 100644 index 0000000..9066a15 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/java/lib/security/cacerts differ diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/security/default.policy b/VRStagelighting GridNode SPOUT OLD/java/lib/security/default.policy new file mode 100644 index 0000000..5982d27 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/lib/security/default.policy @@ -0,0 +1,241 @@ +// +// Permissions required by modules stored in a run-time image and loaded +// by the platform class loader. +// +// NOTE that this file is not intended to be modified. If additional +// permissions need to be granted to the modules in this file, it is +// recommended that they be configured in a separate policy file or +// ${java.home}/conf/security/java.policy. +// + + +grant codeBase "jrt:/java.compiler" { + permission java.security.AllPermission; +}; + + +grant codeBase "jrt:/java.net.http" { + permission java.lang.RuntimePermission "accessClassInPackage.sun.net"; + permission java.lang.RuntimePermission "accessClassInPackage.sun.net.util"; + permission java.lang.RuntimePermission "accessClassInPackage.sun.net.www"; + permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.misc"; + permission java.lang.RuntimePermission "modifyThread"; + permission java.net.SocketPermission "*","connect,resolve"; + permission java.net.URLPermission "http:*","*:*"; + permission java.net.URLPermission "https:*","*:*"; + permission java.net.URLPermission "ws:*","*:*"; + permission java.net.URLPermission "wss:*","*:*"; + permission java.net.URLPermission "socket:*","CONNECT"; // proxy + // For request/response body processors, fromFile, asFile + permission java.io.FilePermission "<>","read,write,delete"; + permission java.util.PropertyPermission "*","read"; + permission java.net.NetPermission "getProxySelector"; +}; + +grant codeBase "jrt:/java.scripting" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/java.security.jgss" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/java.smartcardio" { + permission javax.smartcardio.CardPermission "*", "*"; + permission java.lang.RuntimePermission "loadLibrary.j2pcsc"; + permission java.lang.RuntimePermission + "accessClassInPackage.sun.security.jca"; + permission java.lang.RuntimePermission + "accessClassInPackage.sun.security.util"; + permission java.util.PropertyPermission + "javax.smartcardio.TerminalFactory.DefaultType", "read"; + permission java.util.PropertyPermission "os.name", "read"; + permission java.util.PropertyPermission "os.arch", "read"; + permission java.util.PropertyPermission "sun.arch.data.model", "read"; + permission java.util.PropertyPermission + "sun.security.smartcardio.library", "read"; + permission java.util.PropertyPermission + "sun.security.smartcardio.t0GetResponse", "read"; + permission java.util.PropertyPermission + "sun.security.smartcardio.t1GetResponse", "read"; + permission java.util.PropertyPermission + "sun.security.smartcardio.t1StripLe", "read"; + // needed for looking up native PC/SC library + permission java.io.FilePermission "<>","read"; + permission java.security.SecurityPermission "putProviderProperty.SunPCSC"; + permission java.security.SecurityPermission + "clearProviderProperties.SunPCSC"; + permission java.security.SecurityPermission + "removeProviderProperty.SunPCSC"; +}; + +grant codeBase "jrt:/java.sql" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/java.sql.rowset" { + permission java.security.AllPermission; +}; + + +grant codeBase "jrt:/java.xml.crypto" { + permission java.lang.RuntimePermission + "getStackWalkerWithClassReference"; + permission java.lang.RuntimePermission + "accessClassInPackage.sun.security.util"; + permission java.util.PropertyPermission "*", "read"; + permission java.security.SecurityPermission "putProviderProperty.XMLDSig"; + permission java.security.SecurityPermission + "clearProviderProperties.XMLDSig"; + permission java.security.SecurityPermission + "removeProviderProperty.XMLDSig"; + permission java.security.SecurityPermission + "com.sun.org.apache.xml.internal.security.register"; + permission java.security.SecurityPermission + "getProperty.jdk.xml.dsig.secureValidationPolicy"; + permission java.lang.RuntimePermission + "accessClassInPackage.com.sun.org.apache.xml.internal.*"; + permission java.lang.RuntimePermission + "accessClassInPackage.com.sun.org.apache.xpath.internal"; + permission java.lang.RuntimePermission + "accessClassInPackage.com.sun.org.apache.xpath.internal.*"; + permission java.io.FilePermission "<>","read"; + permission java.net.SocketPermission "*", "connect,resolve"; +}; + + +grant codeBase "jrt:/jdk.accessibility" { + permission java.lang.RuntimePermission "accessClassInPackage.sun.awt"; +}; + +grant codeBase "jrt:/jdk.charsets" { + permission java.util.PropertyPermission "os.name", "read"; + permission java.lang.RuntimePermission "charsetProvider"; + permission java.lang.RuntimePermission + "accessClassInPackage.jdk.internal.access"; + permission java.lang.RuntimePermission + "accessClassInPackage.jdk.internal.misc"; + permission java.lang.RuntimePermission "accessClassInPackage.sun.nio.cs"; +}; + +grant codeBase "jrt:/jdk.crypto.ec" { + permission java.lang.RuntimePermission + "accessClassInPackage.sun.security.*"; + permission java.lang.RuntimePermission "loadLibrary.sunec"; + permission java.security.SecurityPermission "putProviderProperty.SunEC"; + permission java.security.SecurityPermission "clearProviderProperties.SunEC"; + permission java.security.SecurityPermission "removeProviderProperty.SunEC"; +}; + +grant codeBase "jrt:/jdk.crypto.cryptoki" { + permission java.lang.RuntimePermission + "accessClassInPackage.com.sun.crypto.provider"; + permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.misc"; + permission java.lang.RuntimePermission + "accessClassInPackage.sun.security.*"; + permission java.lang.RuntimePermission "accessClassInPackage.sun.nio.ch"; + permission java.lang.RuntimePermission "loadLibrary.j2pkcs11"; + permission java.util.PropertyPermission "sun.security.pkcs11.allowSingleThreadedModules", "read"; + permission java.util.PropertyPermission "sun.security.pkcs11.disableKeyExtraction", "read"; + permission java.util.PropertyPermission "os.name", "read"; + permission java.util.PropertyPermission "os.arch", "read"; + permission java.util.PropertyPermission "jdk.crypto.KeyAgreement.legacyKDF", "read"; + permission java.security.SecurityPermission "putProviderProperty.*"; + permission java.security.SecurityPermission "clearProviderProperties.*"; + permission java.security.SecurityPermission "removeProviderProperty.*"; + permission java.security.SecurityPermission + "getProperty.auth.login.defaultCallbackHandler"; + permission java.security.SecurityPermission "authProvider.*"; + // Needed for reading PKCS11 config file and NSS library check + permission java.io.FilePermission "<>", "read"; +}; + +grant codeBase "jrt:/jdk.dynalink" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/jdk.httpserver" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/jdk.internal.le" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/jdk.internal.vm.compiler" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/jdk.internal.vm.compiler.management" { + permission java.lang.RuntimePermission "accessClassInPackage.jdk.internal.vm.compiler.collections"; + permission java.lang.RuntimePermission "accessClassInPackage.jdk.vm.ci.runtime"; + permission java.lang.RuntimePermission "accessClassInPackage.jdk.vm.ci.services"; + permission java.lang.RuntimePermission "accessClassInPackage.org.graalvm.compiler.core.common"; + permission java.lang.RuntimePermission "accessClassInPackage.org.graalvm.compiler.debug"; + permission java.lang.RuntimePermission "accessClassInPackage.org.graalvm.compiler.hotspot"; + permission java.lang.RuntimePermission "accessClassInPackage.org.graalvm.compiler.options"; + permission java.lang.RuntimePermission "accessClassInPackage.org.graalvm.compiler.phases.common.jmx"; + permission java.lang.RuntimePermission "accessClassInPackage.org.graalvm.compiler.serviceprovider"; +}; + +grant codeBase "jrt:/jdk.jsobject" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/jdk.localedata" { + permission java.lang.RuntimePermission "accessClassInPackage.sun.text.*"; + permission java.lang.RuntimePermission "accessClassInPackage.sun.util.*"; +}; + +grant codeBase "jrt:/jdk.naming.dns" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/jdk.scripting.nashorn" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/jdk.scripting.nashorn.shell" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/jdk.security.auth" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/jdk.security.jgss" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/jdk.zipfs" { + permission java.io.FilePermission "<>", "read,write,delete"; + permission java.lang.RuntimePermission "fileSystemProvider"; + permission java.lang.RuntimePermission "accessUserInformation"; + permission java.util.PropertyPermission "os.name", "read"; + permission java.util.PropertyPermission "user.dir", "read"; + permission java.util.PropertyPermission "user.name", "read"; +}; + +// permissions needed by applications using java.desktop module +grant { + permission java.lang.RuntimePermission "accessClassInPackage.com.sun.beans"; + permission java.lang.RuntimePermission "accessClassInPackage.com.sun.beans.*"; + permission java.lang.RuntimePermission "accessClassInPackage.com.sun.java.swing.plaf.*"; + permission java.lang.RuntimePermission "accessClassInPackage.com.apple.*"; +}; +grant codeBase "jrt:/jdk.accessibility" { + permission java.security.AllPermission; +}; + +grant codeBase "jrt:/jdk.crypto.mscapi" { + permission java.lang.RuntimePermission + "accessClassInPackage.sun.security.*"; + permission java.lang.RuntimePermission "loadLibrary.sunmscapi"; + permission java.security.SecurityPermission "putProviderProperty.SunMSCAPI"; + permission java.security.SecurityPermission + "clearProviderProperties.SunMSCAPI"; + permission java.security.SecurityPermission + "removeProviderProperty.SunMSCAPI"; + permission java.security.SecurityPermission "authProvider.SunMSCAPI"; + permission java.util.PropertyPermission "*", "read"; +}; diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/security/public_suffix_list.dat b/VRStagelighting GridNode SPOUT OLD/java/lib/security/public_suffix_list.dat new file mode 100644 index 0000000..06a3a69 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/java/lib/security/public_suffix_list.dat differ diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/src.zip b/VRStagelighting GridNode SPOUT OLD/java/lib/src.zip new file mode 100644 index 0000000..36e23d7 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/java/lib/src.zip differ diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/tzdb.dat b/VRStagelighting GridNode SPOUT OLD/java/lib/tzdb.dat new file mode 100644 index 0000000..671b6fa Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/java/lib/tzdb.dat differ diff --git a/VRStagelighting GridNode SPOUT OLD/java/lib/tzmappings b/VRStagelighting GridNode SPOUT OLD/java/lib/tzmappings new file mode 100644 index 0000000..a40a1bf --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/lib/tzmappings @@ -0,0 +1,505 @@ +AUS Central Standard Time:AU:Australia/Darwin: +AUS Central Standard Time:001:Australia/Darwin: +AUS Eastern Standard Time:AU:Australia/Sydney: +AUS Eastern Standard Time:001:Australia/Sydney: +Afghanistan Standard Time:AF:Asia/Kabul: +Afghanistan Standard Time:001:Asia/Kabul: +Alaskan Standard Time:US:America/Anchorage: +Alaskan Standard Time:001:America/Anchorage: +Aleutian Standard Time:US:America/Adak: +Aleutian Standard Time:001:America/Adak: +Altai Standard Time:RU:Asia/Barnaul: +Altai Standard Time:001:Asia/Barnaul: +Arab Standard Time:BH:Asia/Bahrain: +Arab Standard Time:KW:Asia/Kuwait: +Arab Standard Time:QA:Asia/Qatar: +Arab Standard Time:SA:Asia/Riyadh: +Arab Standard Time:YE:Asia/Aden: +Arab Standard Time:001:Asia/Riyadh: +Arabian Standard Time:AE:Asia/Dubai: +Arabian Standard Time:OM:Asia/Muscat: +Arabian Standard Time:ZZ:Etc/GMT-4: +Arabian Standard Time:001:Asia/Dubai: +Arabic Standard Time:IQ:Asia/Baghdad: +Arabic Standard Time:001:Asia/Baghdad: +Argentina Standard Time:AR:America/Buenos_Aires: +Argentina Standard Time:001:America/Buenos_Aires: +Astrakhan Standard Time:RU:Europe/Astrakhan: +Astrakhan Standard Time:001:Europe/Astrakhan: +Atlantic Standard Time:BM:Atlantic/Bermuda: +Atlantic Standard Time:CA:America/Halifax: +Atlantic Standard Time:GL:America/Thule: +Atlantic Standard Time:001:America/Halifax: +Aus Central W. Standard Time:AU:Australia/Eucla: +Aus Central W. Standard Time:001:Australia/Eucla: +Azerbaijan Standard Time:AZ:Asia/Baku: +Azerbaijan Standard Time:001:Asia/Baku: +Azores Standard Time:GL:America/Scoresbysund: +Azores Standard Time:PT:Atlantic/Azores: +Azores Standard Time:001:Atlantic/Azores: +Bahia Standard Time:BR:America/Bahia: +Bahia Standard Time:001:America/Bahia: +Bangladesh Standard Time:BD:Asia/Dhaka: +Bangladesh Standard Time:BT:Asia/Thimphu: +Bangladesh Standard Time:001:Asia/Dhaka: +Belarus Standard Time:BY:Europe/Minsk: +Belarus Standard Time:001:Europe/Minsk: +Bougainville Standard Time:PG:Pacific/Bougainville: +Bougainville Standard Time:001:Pacific/Bougainville: +Canada Central Standard Time:CA:America/Regina: +Canada Central Standard Time:001:America/Regina: +Cape Verde Standard Time:CV:Atlantic/Cape_Verde: +Cape Verde Standard Time:ZZ:Etc/GMT+1: +Cape Verde Standard Time:001:Atlantic/Cape_Verde: +Caucasus Standard Time:AM:Asia/Yerevan: +Caucasus Standard Time:001:Asia/Yerevan: +Cen. Australia Standard Time:AU:Australia/Adelaide: +Cen. Australia Standard Time:001:Australia/Adelaide: +Central America Standard Time:BZ:America/Belize: +Central America Standard Time:CR:America/Costa_Rica: +Central America Standard Time:EC:Pacific/Galapagos: +Central America Standard Time:GT:America/Guatemala: +Central America Standard Time:HN:America/Tegucigalpa: +Central America Standard Time:NI:America/Managua: +Central America Standard Time:SV:America/El_Salvador: +Central America Standard Time:ZZ:Etc/GMT+6: +Central America Standard Time:001:America/Guatemala: +Central Asia Standard Time:AQ:Antarctica/Vostok: +Central Asia Standard Time:CN:Asia/Urumqi: +Central Asia Standard Time:IO:Indian/Chagos: +Central Asia Standard Time:KG:Asia/Bishkek: +Central Asia Standard Time:KZ:Asia/Almaty: +Central Asia Standard Time:ZZ:Etc/GMT-6: +Central Asia Standard Time:001:Asia/Almaty: +Central Brazilian Standard Time:BR:America/Cuiaba: +Central Brazilian Standard Time:001:America/Cuiaba: +Central Europe Standard Time:AL:Europe/Tirane: +Central Europe Standard Time:CZ:Europe/Prague: +Central Europe Standard Time:HU:Europe/Budapest: +Central Europe Standard Time:ME:Europe/Podgorica: +Central Europe Standard Time:RS:Europe/Belgrade: +Central Europe Standard Time:SI:Europe/Ljubljana: +Central Europe Standard Time:SK:Europe/Bratislava: +Central Europe Standard Time:001:Europe/Budapest: +Central European Standard Time:BA:Europe/Sarajevo: +Central European Standard Time:HR:Europe/Zagreb: +Central European Standard Time:MK:Europe/Skopje: +Central European Standard Time:PL:Europe/Warsaw: +Central European Standard Time:001:Europe/Warsaw: +Central Pacific Standard Time:AQ:Antarctica/Casey: +Central Pacific Standard Time:FM:Pacific/Ponape: +Central Pacific Standard Time:NC:Pacific/Noumea: +Central Pacific Standard Time:SB:Pacific/Guadalcanal: +Central Pacific Standard Time:VU:Pacific/Efate: +Central Pacific Standard Time:ZZ:Etc/GMT-11: +Central Pacific Standard Time:001:Pacific/Guadalcanal: +Central Standard Time:CA:America/Winnipeg: +Central Standard Time:MX:America/Matamoros: +Central Standard Time:US:America/Chicago: +Central Standard Time:ZZ:CST6CDT: +Central Standard Time:001:America/Chicago: +Central Standard Time (Mexico):MX:America/Mexico_City: +Central Standard Time (Mexico):001:America/Mexico_City: +Chatham Islands Standard Time:NZ:Pacific/Chatham: +Chatham Islands Standard Time:001:Pacific/Chatham: +China Standard Time:CN:Asia/Shanghai: +China Standard Time:HK:Asia/Hong_Kong: +China Standard Time:MO:Asia/Macau: +China Standard Time:001:Asia/Shanghai: +Cuba Standard Time:CU:America/Havana: +Cuba Standard Time:001:America/Havana: +Dateline Standard Time:ZZ:Etc/GMT+12: +Dateline Standard Time:001:Etc/GMT+12: +E. Africa Standard Time:AQ:Antarctica/Syowa: +E. Africa Standard Time:DJ:Africa/Djibouti: +E. Africa Standard Time:ER:Africa/Asmera: +E. Africa Standard Time:ET:Africa/Addis_Ababa: +E. Africa Standard Time:KE:Africa/Nairobi: +E. Africa Standard Time:KM:Indian/Comoro: +E. Africa Standard Time:MG:Indian/Antananarivo: +E. Africa Standard Time:SO:Africa/Mogadishu: +E. Africa Standard Time:TZ:Africa/Dar_es_Salaam: +E. Africa Standard Time:UG:Africa/Kampala: +E. Africa Standard Time:YT:Indian/Mayotte: +E. Africa Standard Time:ZZ:Etc/GMT-3: +E. Africa Standard Time:001:Africa/Nairobi: +E. Australia Standard Time:AU:Australia/Brisbane: +E. Australia Standard Time:001:Australia/Brisbane: +E. Europe Standard Time:MD:Europe/Chisinau: +E. Europe Standard Time:001:Europe/Chisinau: +E. South America Standard Time:BR:America/Sao_Paulo: +E. South America Standard Time:001:America/Sao_Paulo: +Easter Island Standard Time:CL:Pacific/Easter: +Easter Island Standard Time:001:Pacific/Easter: +Eastern Standard Time:BS:America/Nassau: +Eastern Standard Time:CA:America/Toronto: +Eastern Standard Time:US:America/New_York: +Eastern Standard Time:ZZ:EST5EDT: +Eastern Standard Time:001:America/New_York: +Eastern Standard Time (Mexico):MX:America/Cancun: +Eastern Standard Time (Mexico):001:America/Cancun: +Egypt Standard Time:EG:Africa/Cairo: +Egypt Standard Time:001:Africa/Cairo: +Ekaterinburg Standard Time:RU:Asia/Yekaterinburg: +Ekaterinburg Standard Time:001:Asia/Yekaterinburg: +FLE Standard Time:AX:Europe/Mariehamn: +FLE Standard Time:BG:Europe/Sofia: +FLE Standard Time:EE:Europe/Tallinn: +FLE Standard Time:FI:Europe/Helsinki: +FLE Standard Time:LT:Europe/Vilnius: +FLE Standard Time:LV:Europe/Riga: +FLE Standard Time:UA:Europe/Kiev: +FLE Standard Time:001:Europe/Kiev: +Fiji Standard Time:FJ:Pacific/Fiji: +Fiji Standard Time:001:Pacific/Fiji: +GMT Standard Time:ES:Atlantic/Canary: +GMT Standard Time:FO:Atlantic/Faeroe: +GMT Standard Time:GB:Europe/London: +GMT Standard Time:GG:Europe/Guernsey: +GMT Standard Time:IE:Europe/Dublin: +GMT Standard Time:IM:Europe/Isle_of_Man: +GMT Standard Time:JE:Europe/Jersey: +GMT Standard Time:PT:Europe/Lisbon: +GMT Standard Time:001:Europe/London: +GTB Standard Time:CY:Asia/Nicosia: +GTB Standard Time:GR:Europe/Athens: +GTB Standard Time:RO:Europe/Bucharest: +GTB Standard Time:001:Europe/Bucharest: +Georgian Standard Time:GE:Asia/Tbilisi: +Georgian Standard Time:001:Asia/Tbilisi: +Greenland Standard Time:GL:America/Godthab: +Greenland Standard Time:001:America/Godthab: +Greenwich Standard Time:BF:Africa/Ouagadougou: +Greenwich Standard Time:CI:Africa/Abidjan: +Greenwich Standard Time:GH:Africa/Accra: +Greenwich Standard Time:GL:America/Danmarkshavn: +Greenwich Standard Time:GM:Africa/Banjul: +Greenwich Standard Time:GN:Africa/Conakry: +Greenwich Standard Time:GW:Africa/Bissau: +Greenwich Standard Time:IS:Atlantic/Reykjavik: +Greenwich Standard Time:LR:Africa/Monrovia: +Greenwich Standard Time:ML:Africa/Bamako: +Greenwich Standard Time:MR:Africa/Nouakchott: +Greenwich Standard Time:SH:Atlantic/St_Helena: +Greenwich Standard Time:SL:Africa/Freetown: +Greenwich Standard Time:SN:Africa/Dakar: +Greenwich Standard Time:TG:Africa/Lome: +Greenwich Standard Time:001:Atlantic/Reykjavik: +Haiti Standard Time:HT:America/Port-au-Prince: +Haiti Standard Time:001:America/Port-au-Prince: +Hawaiian Standard Time:CK:Pacific/Rarotonga: +Hawaiian Standard Time:PF:Pacific/Tahiti: +Hawaiian Standard Time:UM:Pacific/Johnston: +Hawaiian Standard Time:US:Pacific/Honolulu: +Hawaiian Standard Time:ZZ:Etc/GMT+10: +Hawaiian Standard Time:001:Pacific/Honolulu: +India Standard Time:IN:Asia/Calcutta: +India Standard Time:001:Asia/Calcutta: +Iran Standard Time:IR:Asia/Tehran: +Iran Standard Time:001:Asia/Tehran: +Israel Standard Time:IL:Asia/Jerusalem: +Israel Standard Time:001:Asia/Jerusalem: +Jordan Standard Time:JO:Asia/Amman: +Jordan Standard Time:001:Asia/Amman: +Kaliningrad Standard Time:RU:Europe/Kaliningrad: +Kaliningrad Standard Time:001:Europe/Kaliningrad: +Korea Standard Time:KR:Asia/Seoul: +Korea Standard Time:001:Asia/Seoul: +Libya Standard Time:LY:Africa/Tripoli: +Libya Standard Time:001:Africa/Tripoli: +Line Islands Standard Time:KI:Pacific/Kiritimati: +Line Islands Standard Time:ZZ:Etc/GMT-14: +Line Islands Standard Time:001:Pacific/Kiritimati: +Lord Howe Standard Time:AU:Australia/Lord_Howe: +Lord Howe Standard Time:001:Australia/Lord_Howe: +Magadan Standard Time:RU:Asia/Magadan: +Magadan Standard Time:001:Asia/Magadan: +Magallanes Standard Time:CL:America/Punta_Arenas: +Magallanes Standard Time:001:America/Punta_Arenas: +Marquesas Standard Time:PF:Pacific/Marquesas: +Marquesas Standard Time:001:Pacific/Marquesas: +Mauritius Standard Time:MU:Indian/Mauritius: +Mauritius Standard Time:RE:Indian/Reunion: +Mauritius Standard Time:SC:Indian/Mahe: +Mauritius Standard Time:001:Indian/Mauritius: +Middle East Standard Time:LB:Asia/Beirut: +Middle East Standard Time:001:Asia/Beirut: +Montevideo Standard Time:UY:America/Montevideo: +Montevideo Standard Time:001:America/Montevideo: +Morocco Standard Time:EH:Africa/El_Aaiun: +Morocco Standard Time:MA:Africa/Casablanca: +Morocco Standard Time:001:Africa/Casablanca: +Mountain Standard Time:CA:America/Edmonton: +Mountain Standard Time:MX:America/Ojinaga: +Mountain Standard Time:US:America/Denver: +Mountain Standard Time:ZZ:MST7MDT: +Mountain Standard Time:001:America/Denver: +Mountain Standard Time (Mexico):MX:America/Chihuahua: +Mountain Standard Time (Mexico):001:America/Chihuahua: +Myanmar Standard Time:CC:Indian/Cocos: +Myanmar Standard Time:MM:Asia/Rangoon: +Myanmar Standard Time:001:Asia/Rangoon: +N. Central Asia Standard Time:RU:Asia/Novosibirsk: +N. Central Asia Standard Time:001:Asia/Novosibirsk: +Namibia Standard Time:NA:Africa/Windhoek: +Namibia Standard Time:001:Africa/Windhoek: +Nepal Standard Time:NP:Asia/Katmandu: +Nepal Standard Time:001:Asia/Katmandu: +New Zealand Standard Time:AQ:Antarctica/McMurdo: +New Zealand Standard Time:NZ:Pacific/Auckland: +New Zealand Standard Time:001:Pacific/Auckland: +Newfoundland Standard Time:CA:America/St_Johns: +Newfoundland Standard Time:001:America/St_Johns: +Norfolk Standard Time:NF:Pacific/Norfolk: +Norfolk Standard Time:001:Pacific/Norfolk: +North Asia East Standard Time:RU:Asia/Irkutsk: +North Asia East Standard Time:001:Asia/Irkutsk: +North Asia Standard Time:RU:Asia/Krasnoyarsk: +North Asia Standard Time:001:Asia/Krasnoyarsk: +North Korea Standard Time:KP:Asia/Pyongyang: +North Korea Standard Time:001:Asia/Pyongyang: +Omsk Standard Time:RU:Asia/Omsk: +Omsk Standard Time:001:Asia/Omsk: +Pacific SA Standard Time:CL:America/Santiago: +Pacific SA Standard Time:001:America/Santiago: +Pacific Standard Time:CA:America/Vancouver: +Pacific Standard Time:US:America/Los_Angeles: +Pacific Standard Time:ZZ:PST8PDT: +Pacific Standard Time:001:America/Los_Angeles: +Pacific Standard Time (Mexico):MX:America/Tijuana: +Pacific Standard Time (Mexico):001:America/Tijuana: +Pakistan Standard Time:PK:Asia/Karachi: +Pakistan Standard Time:001:Asia/Karachi: +Paraguay Standard Time:PY:America/Asuncion: +Paraguay Standard Time:001:America/Asuncion: +Qyzylorda Standard Time:KZ:Asia/Qyzylorda: +Qyzylorda Standard Time:001:Asia/Qyzylorda: +Romance Standard Time:BE:Europe/Brussels: +Romance Standard Time:DK:Europe/Copenhagen: +Romance Standard Time:ES:Europe/Madrid: +Romance Standard Time:FR:Europe/Paris: +Romance Standard Time:001:Europe/Paris: +Russia Time Zone 10:RU:Asia/Srednekolymsk: +Russia Time Zone 10:001:Asia/Srednekolymsk: +Russia Time Zone 11:RU:Asia/Kamchatka: +Russia Time Zone 11:001:Asia/Kamchatka: +Russia Time Zone 3:RU:Europe/Samara: +Russia Time Zone 3:001:Europe/Samara: +Russian Standard Time:RU:Europe/Moscow: +Russian Standard Time:UA:Europe/Simferopol: +Russian Standard Time:001:Europe/Moscow: +SA Eastern Standard Time:AQ:Antarctica/Rothera: +SA Eastern Standard Time:BR:America/Fortaleza: +SA Eastern Standard Time:FK:Atlantic/Stanley: +SA Eastern Standard Time:GF:America/Cayenne: +SA Eastern Standard Time:SR:America/Paramaribo: +SA Eastern Standard Time:ZZ:Etc/GMT+3: +SA Eastern Standard Time:001:America/Cayenne: +SA Pacific Standard Time:BR:America/Rio_Branco: +SA Pacific Standard Time:CA:America/Coral_Harbour: +SA Pacific Standard Time:CO:America/Bogota: +SA Pacific Standard Time:EC:America/Guayaquil: +SA Pacific Standard Time:JM:America/Jamaica: +SA Pacific Standard Time:KY:America/Cayman: +SA Pacific Standard Time:PA:America/Panama: +SA Pacific Standard Time:PE:America/Lima: +SA Pacific Standard Time:ZZ:Etc/GMT+5: +SA Pacific Standard Time:001:America/Bogota: +SA Western Standard Time:AG:America/Antigua: +SA Western Standard Time:AI:America/Anguilla: +SA Western Standard Time:AW:America/Aruba: +SA Western Standard Time:BB:America/Barbados: +SA Western Standard Time:BL:America/St_Barthelemy: +SA Western Standard Time:BO:America/La_Paz: +SA Western Standard Time:BQ:America/Kralendijk: +SA Western Standard Time:BR:America/Manaus: +SA Western Standard Time:CA:America/Blanc-Sablon: +SA Western Standard Time:CW:America/Curacao: +SA Western Standard Time:DM:America/Dominica: +SA Western Standard Time:DO:America/Santo_Domingo: +SA Western Standard Time:GD:America/Grenada: +SA Western Standard Time:GP:America/Guadeloupe: +SA Western Standard Time:GY:America/Guyana: +SA Western Standard Time:KN:America/St_Kitts: +SA Western Standard Time:LC:America/St_Lucia: +SA Western Standard Time:MF:America/Marigot: +SA Western Standard Time:MQ:America/Martinique: +SA Western Standard Time:MS:America/Montserrat: +SA Western Standard Time:PR:America/Puerto_Rico: +SA Western Standard Time:SX:America/Lower_Princes: +SA Western Standard Time:TT:America/Port_of_Spain: +SA Western Standard Time:VC:America/St_Vincent: +SA Western Standard Time:VG:America/Tortola: +SA Western Standard Time:VI:America/St_Thomas: +SA Western Standard Time:ZZ:Etc/GMT+4: +SA Western Standard Time:001:America/La_Paz: +SE Asia Standard Time:AQ:Antarctica/Davis: +SE Asia Standard Time:CX:Indian/Christmas: +SE Asia Standard Time:ID:Asia/Jakarta: +SE Asia Standard Time:KH:Asia/Phnom_Penh: +SE Asia Standard Time:LA:Asia/Vientiane: +SE Asia Standard Time:TH:Asia/Bangkok: +SE Asia Standard Time:VN:Asia/Saigon: +SE Asia Standard Time:ZZ:Etc/GMT-7: +SE Asia Standard Time:001:Asia/Bangkok: +Saint Pierre Standard Time:PM:America/Miquelon: +Saint Pierre Standard Time:001:America/Miquelon: +Sakhalin Standard Time:RU:Asia/Sakhalin: +Sakhalin Standard Time:001:Asia/Sakhalin: +Samoa Standard Time:WS:Pacific/Apia: +Samoa Standard Time:001:Pacific/Apia: +Sao Tome Standard Time:ST:Africa/Sao_Tome: +Sao Tome Standard Time:001:Africa/Sao_Tome: +Saratov Standard Time:RU:Europe/Saratov: +Saratov Standard Time:001:Europe/Saratov: +Singapore Standard Time:BN:Asia/Brunei: +Singapore Standard Time:ID:Asia/Makassar: +Singapore Standard Time:MY:Asia/Kuala_Lumpur: +Singapore Standard Time:PH:Asia/Manila: +Singapore Standard Time:SG:Asia/Singapore: +Singapore Standard Time:ZZ:Etc/GMT-8: +Singapore Standard Time:001:Asia/Singapore: +South Africa Standard Time:BI:Africa/Bujumbura: +South Africa Standard Time:BW:Africa/Gaborone: +South Africa Standard Time:CD:Africa/Lubumbashi: +South Africa Standard Time:LS:Africa/Maseru: +South Africa Standard Time:MW:Africa/Blantyre: +South Africa Standard Time:MZ:Africa/Maputo: +South Africa Standard Time:RW:Africa/Kigali: +South Africa Standard Time:SS:Africa/Juba: +South Africa Standard Time:SZ:Africa/Mbabane: +South Africa Standard Time:ZA:Africa/Johannesburg: +South Africa Standard Time:ZM:Africa/Lusaka: +South Africa Standard Time:ZW:Africa/Harare: +South Africa Standard Time:ZZ:Etc/GMT-2: +South Africa Standard Time:001:Africa/Johannesburg: +Sri Lanka Standard Time:LK:Asia/Colombo: +Sri Lanka Standard Time:001:Asia/Colombo: +Sudan Standard Time:SD:Africa/Khartoum: +Sudan Standard Time:001:Africa/Khartoum: +Syria Standard Time:SY:Asia/Damascus: +Syria Standard Time:001:Asia/Damascus: +Taipei Standard Time:TW:Asia/Taipei: +Taipei Standard Time:001:Asia/Taipei: +Tasmania Standard Time:AU:Australia/Hobart: +Tasmania Standard Time:001:Australia/Hobart: +Tocantins Standard Time:BR:America/Araguaina: +Tocantins Standard Time:001:America/Araguaina: +Tokyo Standard Time:ID:Asia/Jayapura: +Tokyo Standard Time:JP:Asia/Tokyo: +Tokyo Standard Time:PW:Pacific/Palau: +Tokyo Standard Time:TL:Asia/Dili: +Tokyo Standard Time:ZZ:Etc/GMT-9: +Tokyo Standard Time:001:Asia/Tokyo: +Tomsk Standard Time:RU:Asia/Tomsk: +Tomsk Standard Time:001:Asia/Tomsk: +Tonga Standard Time:TO:Pacific/Tongatapu: +Tonga Standard Time:001:Pacific/Tongatapu: +Transbaikal Standard Time:RU:Asia/Chita: +Transbaikal Standard Time:001:Asia/Chita: +Turkey Standard Time:TR:Europe/Istanbul: +Turkey Standard Time:001:Europe/Istanbul: +Turks And Caicos Standard Time:TC:America/Grand_Turk: +Turks And Caicos Standard Time:001:America/Grand_Turk: +US Eastern Standard Time:US:America/Indianapolis: +US Eastern Standard Time:001:America/Indianapolis: +US Mountain Standard Time:CA:America/Creston: +US Mountain Standard Time:MX:America/Hermosillo: +US Mountain Standard Time:US:America/Phoenix: +US Mountain Standard Time:ZZ:Etc/GMT+7: +US Mountain Standard Time:001:America/Phoenix: +UTC:ZZ:Etc/UTC: +UTC:001:Etc/UTC: +UTC+12:KI:Pacific/Tarawa: +UTC+12:MH:Pacific/Majuro: +UTC+12:NR:Pacific/Nauru: +UTC+12:TV:Pacific/Funafuti: +UTC+12:UM:Pacific/Wake: +UTC+12:WF:Pacific/Wallis: +UTC+12:ZZ:Etc/GMT-12: +UTC+12:001:Etc/GMT-12: +UTC+13:KI:Pacific/Enderbury: +UTC+13:TK:Pacific/Fakaofo: +UTC+13:ZZ:Etc/GMT-13: +UTC+13:001:Etc/GMT-13: +UTC-02:BR:America/Noronha: +UTC-02:GS:Atlantic/South_Georgia: +UTC-02:ZZ:Etc/GMT+2: +UTC-02:001:Etc/GMT+2: +UTC-08:PN:Pacific/Pitcairn: +UTC-08:ZZ:Etc/GMT+8: +UTC-08:001:Etc/GMT+8: +UTC-09:PF:Pacific/Gambier: +UTC-09:ZZ:Etc/GMT+9: +UTC-09:001:Etc/GMT+9: +UTC-11:AS:Pacific/Pago_Pago: +UTC-11:NU:Pacific/Niue: +UTC-11:UM:Pacific/Midway: +UTC-11:ZZ:Etc/GMT+11: +UTC-11:001:Etc/GMT+11: +Ulaanbaatar Standard Time:MN:Asia/Ulaanbaatar: +Ulaanbaatar Standard Time:001:Asia/Ulaanbaatar: +Venezuela Standard Time:VE:America/Caracas: +Venezuela Standard Time:001:America/Caracas: +Vladivostok Standard Time:RU:Asia/Vladivostok: +Vladivostok Standard Time:001:Asia/Vladivostok: +Volgograd Standard Time:RU:Europe/Volgograd: +Volgograd Standard Time:001:Europe/Volgograd: +W. Australia Standard Time:AU:Australia/Perth: +W. Australia Standard Time:001:Australia/Perth: +W. Central Africa Standard Time:AO:Africa/Luanda: +W. Central Africa Standard Time:BJ:Africa/Porto-Novo: +W. Central Africa Standard Time:CD:Africa/Kinshasa: +W. Central Africa Standard Time:CF:Africa/Bangui: +W. Central Africa Standard Time:CG:Africa/Brazzaville: +W. Central Africa Standard Time:CM:Africa/Douala: +W. Central Africa Standard Time:DZ:Africa/Algiers: +W. Central Africa Standard Time:GA:Africa/Libreville: +W. Central Africa Standard Time:GQ:Africa/Malabo: +W. Central Africa Standard Time:NE:Africa/Niamey: +W. Central Africa Standard Time:NG:Africa/Lagos: +W. Central Africa Standard Time:TD:Africa/Ndjamena: +W. Central Africa Standard Time:TN:Africa/Tunis: +W. Central Africa Standard Time:ZZ:Etc/GMT-1: +W. Central Africa Standard Time:001:Africa/Lagos: +W. Europe Standard Time:AD:Europe/Andorra: +W. Europe Standard Time:AT:Europe/Vienna: +W. Europe Standard Time:CH:Europe/Zurich: +W. Europe Standard Time:DE:Europe/Berlin: +W. Europe Standard Time:GI:Europe/Gibraltar: +W. Europe Standard Time:IT:Europe/Rome: +W. Europe Standard Time:LI:Europe/Vaduz: +W. Europe Standard Time:LU:Europe/Luxembourg: +W. Europe Standard Time:MC:Europe/Monaco: +W. Europe Standard Time:MT:Europe/Malta: +W. Europe Standard Time:NL:Europe/Amsterdam: +W. Europe Standard Time:NO:Europe/Oslo: +W. Europe Standard Time:SE:Europe/Stockholm: +W. Europe Standard Time:SJ:Arctic/Longyearbyen: +W. Europe Standard Time:SM:Europe/San_Marino: +W. Europe Standard Time:VA:Europe/Vatican: +W. Europe Standard Time:001:Europe/Berlin: +W. Mongolia Standard Time:MN:Asia/Hovd: +W. Mongolia Standard Time:001:Asia/Hovd: +West Asia Standard Time:AQ:Antarctica/Mawson: +West Asia Standard Time:KZ:Asia/Oral: +West Asia Standard Time:MV:Indian/Maldives: +West Asia Standard Time:TF:Indian/Kerguelen: +West Asia Standard Time:TJ:Asia/Dushanbe: +West Asia Standard Time:TM:Asia/Ashgabat: +West Asia Standard Time:UZ:Asia/Tashkent: +West Asia Standard Time:ZZ:Etc/GMT-5: +West Asia Standard Time:001:Asia/Tashkent: +West Bank Standard Time:PS:Asia/Hebron: +West Bank Standard Time:001:Asia/Hebron: +West Pacific Standard Time:AQ:Antarctica/DumontDUrville: +West Pacific Standard Time:FM:Pacific/Truk: +West Pacific Standard Time:GU:Pacific/Guam: +West Pacific Standard Time:MP:Pacific/Saipan: +West Pacific Standard Time:PG:Pacific/Port_Moresby: +West Pacific Standard Time:ZZ:Etc/GMT-10: +West Pacific Standard Time:001:Pacific/Port_Moresby: +Yakutsk Standard Time:RU:Asia/Yakutsk: +Yakutsk Standard Time:001:Asia/Yakutsk: +Yukon Standard Time:CA:America/Whitehorse: +Yukon Standard Time:001:America/Whitehorse: diff --git a/VRStagelighting GridNode SPOUT OLD/java/release b/VRStagelighting GridNode SPOUT OLD/java/release new file mode 100644 index 0000000..2981394 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/java/release @@ -0,0 +1,19 @@ +IMPLEMENTOR="Eclipse Adoptium" +IMPLEMENTOR_VERSION="Temurin-17.0.8.1+1" +JAVA_RUNTIME_VERSION="17.0.8.1+1" +JAVA_VERSION="17.0.8.1" +JAVA_VERSION_DATE="2023-08-24" +LIBC="default" +MODULES="java.base java.compiler java.datatransfer java.xml java.prefs java.desktop java.instrument java.logging java.management java.security.sasl java.naming java.rmi java.management.rmi java.net.http java.scripting java.security.jgss java.transaction.xa java.sql java.sql.rowset java.xml.crypto java.se java.smartcardio jdk.accessibility jdk.internal.jvmstat jdk.attach jdk.charsets jdk.compiler jdk.crypto.ec jdk.crypto.cryptoki jdk.crypto.mscapi jdk.dynalink jdk.internal.ed jdk.editpad jdk.hotspot.agent jdk.httpserver jdk.incubator.foreign jdk.incubator.vector jdk.internal.le jdk.internal.opt jdk.internal.vm.ci jdk.internal.vm.compiler jdk.internal.vm.compiler.management jdk.jartool jdk.javadoc jdk.jcmd jdk.management jdk.management.agent jdk.jconsole jdk.jdeps jdk.jdwp.agent jdk.jdi jdk.jfr jdk.jlink jdk.jpackage jdk.jshell jdk.jsobject jdk.jstatd jdk.localedata jdk.management.jfr jdk.naming.dns jdk.naming.rmi jdk.net jdk.nio.mapmode jdk.random jdk.sctp jdk.security.auth jdk.security.jgss jdk.unsupported jdk.unsupported.desktop jdk.xml.dom jdk.zipfs" +OS_ARCH="x86_64" +OS_NAME="Windows" +SOURCE=".:git:fff1345a12f3" +BUILD_SOURCE="git:703915ba6475bcdaafeb6ee21d2fe56d1ed79f1b" +BUILD_SOURCE_REPO="https://github.com/adoptium/temurin-build.git" +SOURCE_REPO="https://github.com/adoptium/jdk17u.git" +FULL_VERSION="17.0.8.1+1" +SEMANTIC_VERSION="17.0.8.1+1" +BUILD_INFO="OS: Windows Server 2012 R2 Version: 6.3" +JVM_VARIANT="Hotspot" +JVM_VERSION="17.0.8.1+1" +IMAGE_TYPE="JDK" diff --git a/VRStagelighting GridNode SPOUT OLD/lib/JNISpout_32.dll b/VRStagelighting GridNode SPOUT OLD/lib/JNISpout_32.dll new file mode 100644 index 0000000..a5afa50 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/JNISpout_32.dll differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/JNISpout_64.dll b/VRStagelighting GridNode SPOUT OLD/lib/JNISpout_64.dll new file mode 100644 index 0000000..09c151e Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/JNISpout_64.dll differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/VRStageLightingGridNode.jar b/VRStagelighting GridNode SPOUT OLD/lib/VRStageLightingGridNode.jar new file mode 100644 index 0000000..76b202b Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/VRStageLightingGridNode.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/annotations-13.0.jar b/VRStagelighting GridNode SPOUT OLD/lib/annotations-13.0.jar new file mode 100644 index 0000000..fb794be Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/annotations-13.0.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/antlr-2.7.7.jar b/VRStagelighting GridNode SPOUT OLD/lib/antlr-2.7.7.jar new file mode 100644 index 0000000..5e5f14b Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/antlr-2.7.7.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/artnet4j.jar b/VRStagelighting GridNode SPOUT OLD/lib/artnet4j.jar new file mode 100644 index 0000000..93c4dba Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/artnet4j.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/artnet4j.jar.BACKUP b/VRStagelighting GridNode SPOUT OLD/lib/artnet4j.jar.BACKUP new file mode 100644 index 0000000..5fd2d16 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/artnet4j.jar.BACKUP differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/core-4.4.4.jar b/VRStagelighting GridNode SPOUT OLD/lib/core-4.4.4.jar new file mode 100644 index 0000000..228957a Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/core-4.4.4.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-android-aarch64.jar b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-android-aarch64.jar new file mode 100644 index 0000000..2b72359 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-android-aarch64.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-linux-aarch64.jar b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-linux-aarch64.jar new file mode 100644 index 0000000..c928dd6 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-linux-aarch64.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-linux-amd64.jar b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-linux-amd64.jar new file mode 100644 index 0000000..625b847 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-linux-amd64.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-linux-armv6hf.jar b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-linux-armv6hf.jar new file mode 100644 index 0000000..7320b65 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-linux-armv6hf.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-macosx-universal.jar b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-macosx-universal.jar new file mode 100644 index 0000000..0e791ff Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-macosx-universal.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-windows-amd64.jar b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-windows-amd64.jar new file mode 100644 index 0000000..2ae552b Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0-natives-windows-amd64.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0.jar b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0.jar new file mode 100644 index 0000000..51cd1a8 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-2.5.0.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-main-2.5.0.jar b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-main-2.5.0.jar new file mode 100644 index 0000000..5eed158 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/gluegen-rt-main-2.5.0.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-android-aarch64.jar b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-android-aarch64.jar new file mode 100644 index 0000000..f008817 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-android-aarch64.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-linux-aarch64.jar b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-linux-aarch64.jar new file mode 100644 index 0000000..0c49516 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-linux-aarch64.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-linux-amd64.jar b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-linux-amd64.jar new file mode 100644 index 0000000..fa74de8 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-linux-amd64.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-linux-armv6hf.jar b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-linux-armv6hf.jar new file mode 100644 index 0000000..837d014 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-linux-armv6hf.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-macosx-universal.jar b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-macosx-universal.jar new file mode 100644 index 0000000..23d78f5 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-macosx-universal.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-windows-amd64.jar b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-windows-amd64.jar new file mode 100644 index 0000000..7b8dcff Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0-natives-windows-amd64.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0.jar b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0.jar new file mode 100644 index 0000000..ab93476 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-2.5.0.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-main-2.5.0.jar b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-main-2.5.0.jar new file mode 100644 index 0000000..5eed158 Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/jogl-all-main-2.5.0.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/kotlin-stdlib-2.0.20.jar b/VRStagelighting GridNode SPOUT OLD/lib/kotlin-stdlib-2.0.20.jar new file mode 100644 index 0000000..dbbba3a Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/kotlin-stdlib-2.0.20.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/oscP5.jar b/VRStagelighting GridNode SPOUT OLD/lib/oscP5.jar new file mode 100644 index 0000000..28fe7bd Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/oscP5.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/spout.jar b/VRStagelighting GridNode SPOUT OLD/lib/spout.jar new file mode 100644 index 0000000..87a0bbb Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/spout.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/lib/themidibus.jar b/VRStagelighting GridNode SPOUT OLD/lib/themidibus.jar new file mode 100644 index 0000000..c9bd69a Binary files /dev/null and b/VRStagelighting GridNode SPOUT OLD/lib/themidibus.jar differ diff --git a/VRStagelighting GridNode SPOUT OLD/settings.properties b/VRStagelighting GridNode SPOUT OLD/settings.properties new file mode 100644 index 0000000..292f5e6 --- /dev/null +++ b/VRStagelighting GridNode SPOUT OLD/settings.properties @@ -0,0 +1,24 @@ +dataInputType=DMX +dmxIP=localhost +dmxPort=6454 +oscInPort=11000 +oscInMessagePrefix=/VRSLIN +oscInIPAddress=127.0.0.1 +oscOutEnabled=true +oscOutMessagePrefix=/VRSL +oscOutPort=12000 +midiEnabled=false +loopBackMidiDeviceName=VRSLMidi +legacyMode=false +debugArtnet=true +wideScreenMode=true +rgbGrid=false +autoStart=true +defaultAMUniverse=10 +defaultAMChannel=2 +useCustomNetworkInterface=false +customNetworkInterfaceName=lo +useDummyAudioDevice=false +twelveBitMode=false +spout=true +scaleDivisor=2 \ No newline at end of file