Skip to content

Instantly share code, notes, and snippets.

@Smithjoe1
Created May 22, 2013 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Smithjoe1/5626522 to your computer and use it in GitHub Desktop.
Save Smithjoe1/5626522 to your computer and use it in GitHub Desktop.
Flipdot
import processing.core.PApplet;
import processing.core.PGraphics;
class Animation extends Flipdot{
PApplet parent;
Animation(Flipdot p){
parent = p;
}
Animation() {
}
//This renders the animation
PGraphics drawAnimation(PGraphics pg) { return pg; }
//This updates the animation
void updateAnimation(){}
//This resets the animation
void resetAnimation(){}
void loadAnimation(){}
void pauseAnimation(){}
}
import processing.core.PApplet;
/**
* Created with IntelliJ IDEA.
* User: Duncan
* Date: 13/03/13
* Time: 2:06 PM
* To change this template use File | Settings | File Templates.
*/
public class AnimationFactory {
Animation animation = null;
PApplet parent;
AnimationFactory(){
}
Animation createGif(Flipdot p, String strLines){
return new Images(p, strLines);
}
Animation createTetris(Flipdot p){
return new TetrisClock(p);
}
Animation createDrones(Flipdot p){
return new Drones(p);
}
Animation createDrones2(Flipdot p){
return new Drones2(p);
}
Animation createMatrix(Flipdot p){
return new Matrix(p);
}
Animation createSnow(Flipdot p){
return new Snowflakes(p);
}
}
import java.util.*;
/**
* If you use this code, please retain this comment block.
* @author Isak du Preez
* isak at du-preez dot com
* www.du-preez.com
*/
public class CircularArrayList<E>
extends AbstractList<E> implements RandomAccess {
private final int n; // buffer length
private final List<E> buf; // a List implementing RandomAccess
private int head = 0;
private int tail = 0;
public CircularArrayList(int capacity) {
n = capacity + 1;
buf = new ArrayList<E>(Collections.nCopies(n, (E) null));
}
public int capacity() {
return n - 1;
}
private int wrapIndex(int i) {
int m = i % n;
if (m < 0) { // java modulus can be negative
m += n;
}
return m;
}
// This method is O(n) but will never be called if the
// CircularArrayList is used in its typical/intended role.
private void shiftBlock(int startIndex, int endIndex) {
assert (endIndex > startIndex);
for (int i = endIndex - 1; i >= startIndex; i--) {
set(i + 1, get(i));
}
}
@Override
public int size() {
return tail - head + (tail < head ? n : 0);
}
@Override
public E get(int i) {
if (i < 0 || i >= size()) {
System.out.println(i);
throw new IndexOutOfBoundsException();
}
return buf.get(wrapIndex(head + i));
}
@Override
public E set(int i, E e) {
if (i < 0 || i >= size()) {
System.out.print("s:");System.out.println(size());
System.out.print("i:");System.out.println(i);
throw new IndexOutOfBoundsException();
}
return buf.set(wrapIndex(head + i), e);
}
@Override
public void add(int i, E e) {
int s = size();
if (s == n - 1) {
System.out.println(s);
throw new IllegalStateException("Cannot add element."
+ " CircularArrayList is filled to capacity.");
}
if (i < 0 || i > s) {
System.out.print("s:");System.out.println(s);
System.out.print("i:");System.out.println(i);
throw new IndexOutOfBoundsException();
}
tail = wrapIndex(tail + 1);
if (i < s) {
shiftBlock(i, s);
}
set(i, e);
}
@Override
public E remove(int i) {
int s = size();
if (i < 0 || i >= s) {
System.out.println(0);
throw new IndexOutOfBoundsException();
}
E e = get(i);
if (i > 0) {
shiftBlock(0, i);
}
head = wrapIndex(head + 1);
return e;
}
}
import processing.core.PApplet;
import processing.core.PGraphics;
import processing.core.PImage;
import java.util.ArrayList;
import java.util.List;
/**
* Created with IntelliJ IDEA.
* User: Duncan
* Date: 10/02/13
* Time: 1:21 PM
* To change this template use File | Settings | File Templates.
*/
class Drones extends Animation implements Observer{
static final int NUM_DRONES = 2000;
List<Drone> drones = new ArrayList<Drone>(NUM_DRONES);
static float TWO_PI = (float)Math.PI * 2f;
float t;
float dt;
PImage attractor;
Wanderer wanderer;
PApplet parent;
Drones(Flipdot p){
parent = p;
attractor = p.loadImage("data/BuzzLogoStatic.gif");
attractor.loadPixels();
createDrones(attractor.get());
wanderer = new Wanderer(parent, parent.random(xbound), parent.random(ybound));
p.addObserver(this);
}
void createDrones(PImage pg){
for(int i=0; i < pg.width; i++){
for(int j = 0; j < pg.height; j++){
pg.loadPixels();
if(pg.get(i,j) != color(255)){
drones.add(new Drone(parent, parent.random(i-5,i+5), parent.random(j-5,j+5), i, j, parent.random(TWO_PI)));
}
}
}
// for (int i = 0; i < NUM_DRONES; i++){
// drones.add(new Drone(parent, parent.random(xbound), parent.random(ybound), parent.random(TWO_PI)));
// }
t = parent.millis() * (float)1e-3;
}
void resetAnimation(){
for (Drone drone : drones) {
drone.x = parent.random(xbound);
drone.y = parent.random(ybound);
}
}
PGraphics drawAnimation(PGraphics pg) {
pg.loadPixels();
pg.stroke(255);
pg.strokeWeight(1);
pg.beginDraw();
pg.background(0);
for (Drone drone : drones) {
pg.point(drone.x, drone.y);
}
pg.endDraw();
return pg;
}
void updateAnimation(){
dt = -t;
t = parent.millis() * (float)1e-4;
dt += t;
wanderer.stayInsideCanvas();
wanderer.move();
for (Drone drone : drones) {
drone.update(dt);
}
}
public void update(char key){
}
class Drone {
PApplet parent;
// Speed limits
final float MIN_SPEED = 50;
final float MAX_SPEED = 100;
// Acceleration and turning speed maximums
final float MAX_ACCEL = 50;
final float MAX_TURN = TWO_PI;
// Ranges used to determine behaviour mode
static final float OUTER_RANGE = 300;
static final float INNER_RANGE = 2;
// Enumerated behaviour modes
static final int MODE_ATTACK = 0;
static final int MODE_EVADE = 1;
public int Dmode = 0;
float xGoal, yGoal; //Where does the point want to go when in the right mode.
float x, y; // position (in pixel coordinates)
float theta; // direction
float speed;
float phi;
int mode;
Drone(PApplet p, float x, float y, float xGoal, float yGoal, float theta) {
this.x = x;
this.y = y;
this.xGoal = xGoal;
this.yGoal = yGoal;
this.theta = theta;
this.speed = MIN_SPEED;
this.mode = MODE_ATTACK;
parent = p;
}
void update(float dt) {
// Modify mode based on distance from cursor
float s = parent.dist(x, y, wanderer.getX() - x, wanderer.getY());
if(Dmode == 0){
switch (mode) {
case MODE_ATTACK:
if (parent.random(s) < parent.random(INNER_RANGE))
mode = MODE_EVADE;
break;
case MODE_EVADE:
if (parent.random(s) > parent.random(OUTER_RANGE))
mode = MODE_ATTACK;
break;
default:
return;
}
}
// Calculate accel and turn based on set mode.
if(Dmode == 0){
phi = (float)(Math.atan2(wanderer.getY() - y, wanderer.getX() - x) - theta);
}else{
phi = (float)(Math.atan2(yGoal - y, xGoal - x)-theta);
}
float accel, turn;
if(Dmode == 0){
switch (mode) {
case MODE_ATTACK:
accel = (float)Math.cos(phi) * MAX_ACCEL;
turn = (float)Math.sin(phi) * MAX_TURN;
break;
case MODE_EVADE:
accel = (float)Math.sin(phi) * MAX_ACCEL;
turn = (float)Math.cos(phi) * MAX_TURN;
break;
default:
return;
}
}else{
accel = (float)Math.cos(phi) * MAX_ACCEL/10;
turn = (float)Math.sin(phi) * MAX_TURN;
}
// Recalculate speed, keeping it between the predefined limits
float k = 0;
if(Dmode == 0){
if (accel > 0)
k = (MAX_SPEED - speed) / (MAX_SPEED - MIN_SPEED);
else
k = (speed - MIN_SPEED) / (MAX_SPEED - MIN_SPEED);
}else{
if(parent.dist(x, y, xGoal - x, yGoal) < 5){
k = (MAX_SPEED/10 - speed) / (MAX_SPEED - MIN_SPEED);
} else{
k = (speed - MIN_SPEED) / (MAX_SPEED/10 - MIN_SPEED);
}
}
speed += k * accel;
// Update direction
theta = (theta + turn * dt) % TWO_PI;
// Update position
x += speed * dt * Math.cos(theta);
y += speed * dt * Math.sin(theta);
//Check for extended bounds
if(x<xbound*-0.5){
x = 0;
} else if(x>xbound*1.5){
x = xbound;
}
if(y<ybound*-0.5){
y = 0;
}else if(y>ybound*1.5){
y = ybound;
}
}
}
class Wanderer {
PApplet parent;
float x;
float y;
float wander_theta;
float wander_radius;
// bigger = more edgier, hectic
float max_wander_offset = .30f;
// bigger = faster turns
float max_wander_radius = 3.5f;
Wanderer(PApplet p, float _x, float _y)
{
parent = p;
x = _x;
y = _y;
wander_theta = parent.random(TWO_PI);
wander_radius = parent.random(max_wander_radius);
}
void stayInsideCanvas()
{
if (x<5)
wander_theta = wander_theta * -1;
if (x>xbound-5)
wander_theta = wander_theta * -1;
if (y<5)
wander_theta = wander_theta * -1;
if (y> ybound-5)
wander_theta = wander_theta * -1;
if (x<=0)
x=xbound-3;
if (y<=0)
y=ybound-3;
x %= xbound;
y %= ybound;
}
void move()
{
float wander_offset = parent.random(-max_wander_offset, max_wander_offset);
wander_theta += wander_offset;
x += Math.cos(wander_theta);
y += Math.sin(wander_theta);
parent.ellipse(getX(),getY(),2,2);
}
float getX()
{
return x;
}
float getY()
{
return y;
}
}
}
import processing.core.PApplet;
import processing.core.PGraphics;
import processing.core.PImage;
import java.util.ArrayList;
import java.util.List;
/**
* Created with IntelliJ IDEA.
* User: Duncan
* Date: 2/04/13
* Time: 3:43 PM
* To change this template use File | Settings | File Templates.
*/
public class Drones2 extends Animation implements Observer{
static final int NUM_DRONES = 2000;
List<Drone> drones = new ArrayList<Drone>(NUM_DRONES);
boolean free=false; //when this becomes false, the particles move toward their goals
float pAccel=.2f; //acceleration rate of the particles
float pMaxSpeed=2; //max speed the particles can move at
PApplet parent;
PImage attractor;
Drones2(Flipdot p){
parent = p;
attractor = p.loadImage("data/BuzzLogoStatic.gif");
attractor.loadPixels();
createDrones(attractor.get());
p.addObserver(this);
}
void createDrones(PImage pg){
for(int i=0; i < pg.width; i++){
for(int j = 0; j < pg.height; j++){
pg.loadPixels();
if(pg.get(i,j) != color(255)){
drones.add(new Drone(i, j));
}
}
}
}
void resetAnimation(){
for (Drone drone : drones) {
drone.x = parent.random(xbound);
drone.y = parent.random(ybound);
}
}
PGraphics drawAnimation(PGraphics pg) {
pg.loadPixels();
pg.stroke(255);
pg.strokeWeight(1);
pg.beginDraw();
pg.background(0);
for (Drone drone : drones) {
pg.point(drone.x, drone.y);
}
pg.endDraw();
return pg;
}
void updateAnimation(){
for (Drone drone : drones) {
drone.update();
}
}
class Drone{
float x,y;
float xVel, yVel;
float xAccel, yAccel;
float xVelMax, yVelMax;
float ang;
float xGoal, yGoal;
Drone(float newXGoal, float newYGoal){
x = parent.random(newXGoal-50,newXGoal+50);
y = parent.random(newYGoal-50,newYGoal+50);
xGoal = newXGoal;
yGoal = newYGoal;
ang = random(0,TWO_PI);
xVel = 0;
yVel = 0;
xAccel = pAccel * cos(ang);
yAccel = pAccel * sin(ang);
}
void update(){
//println(degrees(ang));
x+=xVel;
y+=yVel;
xVel+=xAccel;
yVel+=yAccel;
//if the particles are not free, move this particle toward its goal
if (!free){
//get the ange of the thing point the particle should move toward
ang= atan2(yGoal-y, xGoal-x);
xAccel=pAccel*cos(ang);
yAccel=pAccel*sin(ang);
//slow it down a lot if it's close to the point
if (abs(x-xGoal) <abs(xVel*2) || abs(y-yGoal) <abs(yVel*2) ){
xVel*=0.6;
yVel*=0.6;
}
}else{
//make it bounce off edges if it's free moving
// CheckEdge();
}
}
void CheckEdge(){
if(x<xbound*-0.5){
x = 0;
xAccel*=-1;
} else if(x>xbound*1.5){
x = xbound;
xAccel*=-1;
}
if(y<ybound*-0.5){
y = 0;
yAccel*=-1;
}else if(y>ybound*1.5){
y = ybound;
yAccel*=-1;
}
}
}
@Override
public void update(char keyCode) {
//To change body of implemented methods use File | Settings | File Templates.
}
}
/**
* Created with IntelliJ IDEA.
* User: Duncan
* Date: 28/01/13
* Time: 3:58 PM
* To change this template use File | Settings | File Templates.
*/
import processing.core.*;
import java.util.*;
public class Fader{
public PImage src1; //Start image
public PImage src2; //End image
public PGraphics alphaMask;
PApplet parent;
public int x, y;
boolean t = true;
double tmp;
Fader(PApplet p){
parent = p;
alphaMask = new PGraphics();
src1 = new PImage();
src2 = new PImage();
}
public void setImages(PImage sr1, PImage sr2) {
src1=sr1;
src2=sr2;
alphaMask = parent.createGraphics(src1.width, src1.height);
startFade();
}
public void setXY(int x_, int y_){
x = x_;
y = y_;
}
/**
* called to initialise fade. This default implementation starts
* with a black mask. Subclasses can override this to do other initialisation.
*/
public void startFade() {
alphaMask.beginDraw();
alphaMask.fill(0);
alphaMask.stroke(0);
alphaMask.rect(0, 0, src1.width, src1.height);
alphaMask.endDraw();
}
/**
* called to end the fade. This default implementation creates a 100% white mask.
* May not be needed, but I've had some problems with rounding errors
* and arc drawing leaving gaps. Calling this will
* guarantee you see 100% final image.
*/
public void endFade() {
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
alphaMask.rect(0, 0, src1.width, src1.height);
alphaMask.endDraw();
}
/**
* called for each frame of the animation. pass in the percentage (0.0-1.0) of the effect.
* this should be overridden for each effect subclass.
*/
public void animateFade(float percent) {
;
}
/**
* Renders blended images. You shouldn't need to override this.
*/
public PGraphics draw(PGraphics pg) {
pg.loadPixels();
pg.beginDraw();
src1.loadPixels();
src2.loadPixels();
int w=src1.width;
for (int ix=0;ix<src1.pixels.length;ix++) {
int y=ix/w;
int x=ix%w;
int col1=src1.pixels[ix];
int r1=(col1&0xFF0000)>>16;
int g1=(col1&0xFF00)>>8;
int b1=(col1&0xFF);
int col2=src2.pixels[ix];
int r2=(col2&0xFF0000)>>16;
int g2=(col2&0xFF00)>>8;
int b2=(col2&0xFF);
int colmask= alphaMask.pixels[ix];
int level=(colmask&0xFF); // use blue channel
float lev= (float)level/256.0f;
int rr=(int)((r1*lev)+(r2*(1-lev)));
int gg=(int)((g1*lev)+(g2*(1-lev)));
int bb=(int)((b1*lev)+(b2*(1-lev)));
pg.pixels[ix]=0xFF000000|rr<<16|gg<<8|bb;
}
pg.updatePixels();
pg.endDraw();
return pg;
}
}
class CrossFade extends Fader {
CrossFade(PApplet p) {
super(p);
}
// simple crossfade. Mask is gradually changed from black (first image)
// to white (second image)
public void animateFade(float percent) {
alphaMask.beginDraw();
alphaMask.fill(255 * percent);
alphaMask.stroke(255 * percent);
alphaMask.rect(0, 0, src1.width, src1.height);
alphaMask.endDraw();
}
}
class DownFade extends Fader {
DownFade(PApplet p) {
super(p);
}
// Second image is introduced from the top
public void animateFade(float percent) {
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
alphaMask.rect(0, 0, src1.width, src1.height * percent);
alphaMask.endDraw();
}
}
class EllipseFade extends Fader {
EllipseFade(PApplet p) {
super(p);
}
// second image is introduced from the centre as an ellipse
public void animateFade(float percent) {
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
parent.strokeWeight(3);
parent.ellipseMode(PConstants.CENTER);
alphaMask.ellipse(src1.width / 2.0f, src1.height / 2f, src1.width * 5f * percent, src1.height * 5f * percent);
alphaMask.endDraw();
}
}
class EllipseFadePoint extends Fader {
EllipseFadePoint(PApplet p){
super(p);
}
public void animateFade(float percent){
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
alphaMask.strokeWeight(3);
alphaMask.ellipseMode(PConstants.CENTER);
alphaMask.ellipse(x, y, src1.height * 5f * percent, src1.height * 5f * percent);
alphaMask.endDraw();
}
}
class EllipseFadePointReverse extends Fader {
EllipseFadePointReverse(PApplet p){
super(p);
}
public void animateFade(float percent){
alphaMask.beginDraw();
alphaMask.background(255);
alphaMask.fill(0);
alphaMask.stroke(0);
alphaMask.strokeWeight(3);
alphaMask.ellipseMode(PConstants.CENTER);
alphaMask.ellipse(x, y, src1.height * 5f * (1-percent), src1.height * 5f * (1-percent));
alphaMask.endDraw();
}
}
class LeftFade extends Fader {
LeftFade(PApplet p) {
super(p);
}
// second image is introduced from the left to right
public void animateFade(float percent) {
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
alphaMask.rect(0, 0, src1.width * percent, src1.height);
alphaMask.endDraw();
}
}
class RandomBlockFade extends Fader {
// second image is introduced using random 8x8 pixel blocks
boolean[][] used;
RandomBlockFade(PApplet p) {
super(p);
}
public void startFade() {
used=new boolean[200][200];
super.startFade();
}
public void animateFade(float percent) {
int numcells=(src1.height/8)*(src1.width/8);
if (percent==0.0f) used=new boolean[200][200];
for (int i=0;i<(int)((float)numcells*percent);i++) {
int cellx=(int)parent.random((src1.width / 8.0f) + 1);
int celly=(int)parent.random((src1.height / 8.0f) + 1);
used[celly][cellx]=true;
}
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
for (int y=0;y<=src1.height/8;y++) {
for (int x=0;x<=src1.width/8;x++) {
if (used[y][x]) {
alphaMask.fill(255);
alphaMask.stroke(255);
} else {
alphaMask.fill(0);
alphaMask.stroke(0);
}
alphaMask.rect(x * 8, y * 8, 8, 8);
}
}
alphaMask.endDraw();
}
}
class RightFade extends Fader {
RightFade(PApplet p) {
super(p);
}
// second image is introduced from the right
public void animateFade(float percent) {
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
if(percent<=1.2){
alphaMask.rect(src1.width - (src1.width * percent), 0, src1.width, src1.height);
}else alphaMask.rect(0, 0, src1.width, src1.height);
alphaMask.endDraw();
}
}
class RotateBoxFader extends Fader {
RotateBoxFader(PApplet p) {
super(p);
}
// second image is introduced using a growing spiral from the centre
public void animateFade(float percent) {
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
alphaMask.pushMatrix();
alphaMask.rectMode(parent.CENTER);
alphaMask.translate(src1.width / 2, src1.height / 2);
alphaMask.rotate((parent.TWO_PI * percent)/parent.frameRate);
alphaMask.rect(0, 0, src1.width * percent, src1.height * percent);
alphaMask.popMatrix();
alphaMask.endDraw();
}
}
class RotateFade extends Fader {
RotateFade(PApplet p) {
super(p);
}
// second image is introduced using a clockwise circular sweep from 3 o'clock
public void animateFade(float percent) {
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
parent.strokeWeight(3);
alphaMask.arc(src1.width / 2.0f, src1.height / 2f, src1.width * 2.0f, src1.height * 2.0f, 0.0f, parent.TWO_PI * percent);
alphaMask.endDraw();
}
}
class SanfuFade extends Fader{
SanfuFade (PApplet p){
super(p);
}
public void animateFade(float percent){
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
parent.strokeWeight(3);
float x;
for (int y = 0; y < src1.height; y=y+3){
if(percent < 0.5){
x = src1.width * percent*2;
if(y%3 == 0){
alphaMask.line(0,y,x,y);
}
} else if(percent > 0.4){
if(y%3 == 0){
alphaMask.line(0,y,src1.width,y);
}
x = src1.width * (percent-0.5f)*2;
alphaMask.rect(0,0,x,src1.height);
}
}
alphaMask.endDraw();
}
}
class SnakeFade extends Fader {
SnakeFade(PApplet p) {
super(p);
}
// second image is introduced from the left to right
public void animateFade(float percent) {
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
alphaMask.strokeWeight(3);
alphaMask.noSmooth();
int lines = 4;
float step=src1.pixels.length/(100*lines);
//parent.println(step);
float currPos = step*percent*100;
double currRow = Math.floor((currPos/(float)src1.width)*lines);
float PosX = (currPos*lines)-((float)currRow*src1.width);
alphaMask.rect(0,0,src1.width,(float)currRow-lines/2);
if(t){
alphaMask.line(0, (float)currRow,PosX,(float)currRow);
if(currRow!=tmp){
t =! t;
tmp = currRow;
}
//alphaMask.line(src1.width,(float)currRow,PosX,(float)currRow);
} else {
//alphaMask.line(0, (float)currRow,PosX,(float)currRow-1);
alphaMask.line(src1.width-PosX,(float)currRow,src1.width,(float)currRow);
if(currRow!=tmp){
t =! t;
tmp = currRow;
}
}
alphaMask.endDraw();
}
}
class SnakeFadeRight extends Fader {
SnakeFadeRight(PApplet p) {
super(p);
}
// second image is introduced from the left to right
public void animateFade(float percent) {
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
alphaMask.strokeWeight(4);
float step=src1.pixels.length/900;
//parent.println(step);
float currPos = step*percent*100;
double currRow = Math.floor(currPos/(float)src1.width);
float PosX = currPos-((float)currRow*src1.width);
alphaMask.rect(0,0,src1.width,(float)currRow-1);
alphaMask.line(0,(float)currRow,PosX,(float)currRow);
alphaMask.endDraw();
}
}
class waveFade extends Fader {
waveFade(PApplet p) {
super(p);
}
// second image is introduced from the left to right
public void animateFade(float percent) {
alphaMask.beginDraw();
alphaMask.fill(255);
alphaMask.stroke(255);
alphaMask.strokeWeight(1);
float x = 0;
float wave = percent * 200;
while (x < src1.width){
float k = wave * parent.noise(x/100,percent);
alphaMask.noStroke();
alphaMask.ellipse(x,src1.height-k, 3, 3);
alphaMask.stroke(255);
alphaMask.strokeWeight(1);
alphaMask.line(x,src1.height-k,x,src1.height);
x++;
}
//parent.println(step);
alphaMask.endDraw();
}
}
/**
Observer class from http://stackoverflow.com/questions/5131547/java-keylistener-in-separate-class
*/
import processing.core.*;
//import processing.serial.*;
import java.io.File;
import java.util.*;
import g4p_controls.*;
//import processing.serial.Serial;
public class Flipdot extends PApplet implements Observabe{
Fader f;
int Dmode;
// GSketchPad draw;
PGraphics pg;
PGraphics pgIN;
public ImageProcessor imgPr;
AnimationFactory af = new AnimationFactory();
boolean animationBlock = true;
FrameSaver saver = new FrameSaver(this);
// sample set of faders to pick from at random
Fader[] faders=new Fader[]{
//new RotateBoxFader(this),
new RightFade(this),
new RotateFade(this),
new EllipseFade(this),
new EllipseFadePoint(this),
new EllipseFadePointReverse(this),
// new CrossFade(this), //Wont work
new DownFade(this),
new LeftFade(this),
new RandomBlockFade(this),
new SanfuFade(this),
new SnakeFade(this),
new SnakeFadeRight(this),
new waveFade(this),
};
ArrayList<Animation> images = new ArrayList<Animation>();
ArrayList<String[]> config = new ArrayList<String[]>();
//========================================================================
//Transisiton Stuff
float delay = 1.0f*5; //How long until the transition happens
float speed = 100.0f; //How long will the transition takes, in frames (5/sec)
//This is the number of panels high
int partHeight = 14; // Number of pixels high per panel
int partWidth = 28; // Number of pixels wide per panel
int panelx = 7;
int panely = 4;
int xbound = panelx*partWidth;
int ybound = panely*partHeight;
int currImg = 0;
int nextImg = 2;
int carousel = 0;
int scale = 5;
int framerate = 5;
int validX, validY;
static public void main(String args[]){
PApplet.main(new String[] {"Flipdot"});
}
public void setup() {
size(xbound*scale, ybound*scale);
ybound = panely*partHeight;
pg = createGraphics(xbound, ybound);
pgIN = createGraphics(xbound, ybound);
// draw = new GSketchPad(this, 0, 0, xbound*scale, ybound*scale);
noSmooth();
// draw.setGraphic(pg);
frameRate(framerate);
f=faders[(int)(random(0,faders.length))];
loadConfig();
f.setXY(120, 30);
reset();
// saver.start();
imgPr.start();
}
public void draw(){
background(250);
pg.beginDraw();
pgIN.beginDraw();
images.get(currImg).updateAnimation();
images.get(nextImg).updateAnimation();
images.get(currImg).drawAnimation(pg); //Draw the animation routine
images.get(nextImg).drawAnimation(pgIN);
f.setImages(pg.get(), pgIN.get());
if(frameCount > delay){
float percent = ((frameCount-delay)*framerate)/speed;
if (percent<=1) {
// show next frame of the animation
blockAnimationCheck(percent);
//Draw blocked animations to flush the buffer
images.get(currImg).updateAnimation();
images.get(nextImg).updateAnimation();
images.get(currImg).drawAnimation(pg);
images.get(nextImg).drawAnimation(pgIN);
f.setImages(pg.get(), pgIN.get());
f.animateFade(percent);
} else {
// show end image
f.endFade();
reset();
}
} else {
f.startFade();
}
//Buffer the animation once per draw cycle
// pg = imgPr.drawSplit();
pg.filter(THRESHOLD);
pg = f.draw(pg);
pg.loadPixels();
pg.filter(THRESHOLD);
imgPr.bufferImg(pg);
pg.endDraw();
pgIN.endDraw();
image(pg,0,0,xbound*scale, ybound*scale);
// saver.addImage(pg.get());
// saver.run();
}
void loadConfig(){
String[] strValue;
String[] screenRes;
String[] strLines = loadStrings("config.txt");
strValue = split(strLines[0], "=");
//Load serial port configuration
// println(Serial.list());
try{
imgPr = new ImageProcessor((strValue[2]),this);
}catch(UnsatisfiedLinkError e){
println(e);
}catch(RuntimeException e){
println(e);
}
//Load the screen resolution
if (strValue.length > 0) {
screenRes = split(strValue[1], "x");
panelx = Integer.parseInt(screenRes[0]);//7 //This is the number of panels wide
panely = Integer.parseInt(screenRes[1]);//4
}
//Create animation objects
images.add(af.createTetris(this));
images.add(af.createDrones(this));
images.add(af.createDrones2(this));
images.add(af.createMatrix(this));
images.add(af.createSnow(this));
//Load the list of files
//TODO: Test this works, creates an array list for each line in the config file and then loads the file.
for (int i = 1; i < strLines.length; i++) {
try {
images.add(af.createGif(this, strLines[i]));
// print(i+3 + " :");
// println(strLines[i]);
} catch (NullPointerException e) {
println(strLines[i]);
}
}
//Load the slideshow images into the caourosel
loadSlideshow();
}
//Slideshow stuff
void loadSlideshow(){
String[] strValue;
String[] strLines = loadStrings("Slideshow.txt");
for (int i = 0; i < strLines.length; i++) {
try {
strValue = split(strLines[i], '\t');
config.add(strValue);
}catch (NullPointerException e) {
println(strLines[i]);
}
}
}
public void blockAnimationCheck(float percent){ //Method to block animations while transitioning if they have problems with the draw before render stuff
//Lets reset all the animations the first time the loop is called.
if(animationBlock == true){
for(int i = 0; i < images.size()-1; i++){
//We wanto to reset everything asides the outbound animation
if(i != nextImg)images.get(i).resetAnimation();
if(i != nextImg)images.get(i).updateAnimation();
}
animationBlock = false;
}
//Custom animation blocks for circle animations
//Lets start the animations early otherwise we get an ugly pause before the image and animations load.
int img;
if(carousel == 0){
img = 0;
}else{
img = carousel-1;
}
if(Integer.parseInt(config.get(img)[1]) == 2){
if(percent<0.25f){
images.get(currImg).resetAnimation();
}
}
else if(Integer.parseInt(config.get(img)[1]) >= 3 && Integer.parseInt(config.get(img)[1]) <= 4){
if(percent<0.7f){
images.get(currImg).resetAnimation();
}
}
//Lets do the same for the Sanfu and Sname animations, blocking the outbound animations otherwise the visual is too noisy
else if(Integer.parseInt(config.get(img)[1]) >= 8 && Integer.parseInt(config.get(img)[1]) <= 10){
if(percent<1){
//Lets block both animations completley
images.get(currImg).resetAnimation();
images.get(nextImg).loadAnimation();
}
}
//Everything else
else{
if(currImg==0){//Tetris clock
//Bugs out when not on screen, resulting in incomplete letters or are already drawn, want to see the inital animation
//So we will block the animation from rendering until the fade is complete. (possibly half complete)
if(percent<0.2f){
images.get(currImg).resetAnimation();
println("Blocking tetrisclock");
}
println(percent);
} else if(currImg == 1){ //Drones
//Doesn't look right when not animating and transitioning.
} else {
//Everything else
if(percent<0.9f){
images.get(nextImg).pauseAnimation();
} else { //Make sure we unpause our animations once the transition is complete
images.get(nextImg).resetAnimation();
}
if(currImg >= 21 && percent<=0.9f) { //If the animation isn't a city outbound, then stop it from looping
images.get(currImg).resetAnimation(); //This should be forcing the animation to stick to the 1st frame and reset all it's timer variables
images.get(nextImg).loadAnimation();//Keep the outbound animation stuck on the last frame
}
if( currImg >= 21 && percent >= 0.9f){
images.get(nextImg).resetAnimation();
}
}
}
}
public void reset() {
// println("Reset");
frameCount=0;
animationBlock = true;
try{
f = faders[Integer.parseInt(config.get(carousel)[1])];
nextImg = Integer.parseInt(config.get(carousel)[0]);
if (1 + carousel <= config.size()-1)
currImg = Integer.parseInt(config.get(carousel + 1)[0]); //Wrap if greater than the arrayList
else currImg = Integer.parseInt(config.get(0)[0]);
images.get(currImg).drawAnimation(pg);
images.get(nextImg).drawAnimation(pgIN);
// println("Carolsel is :"+carousel);
// println("CurrImg is :"+currImg);
// println("NextImg is :"+nextImg);
f.setImages(pg, pgIN);//Draw the gif routine
f.startFade();
speed = Integer.parseInt(config.get(carousel)[2]);
delay = Float.parseFloat(config.get(carousel)[3]);
if(Integer.parseInt(config.get(carousel)[4])==0){ //See if the current frame has a XY value, if it doesn;t, load a safe value
if(carousel + 1 < config.size()){
if(Integer.parseInt(config.get(carousel+1)[4])!=0) { //See if the next frame has an XYvalue
f.setXY(Integer.parseInt(config.get(carousel+1)[4]),Integer.parseInt(config.get(carousel+1)[5]));
} else {f.setXY(validX, validY);}
}
}else{ //If the curent frame has an XY value, load it and set the safe value.
f.setXY(Integer.parseInt(config.get(carousel)[4]),Integer.parseInt(config.get(carousel)[5]));
validX = Integer.parseInt(config.get(carousel)[4]);
validY = Integer.parseInt(config.get(carousel)[5]);
}
// images.get(currImg).resetAnimation();
// images.get(nextImg).resetAnimation();
if(carousel < config.size()-1){
carousel++;
} else {
carousel = 0;
println("looping");
}
}catch(NumberFormatException e){
println(e);
}
}
//Observers
private ArrayList<Observer> obsList = new ArrayList();
public void keyPressed(){
notifyObservers(key);
}
public void keyReleased(){}
public void keyTyped(){}
public void notifyObservers(char KeyCode){
for(Observer obs: obsList){
obs.update(key);
}
}
//Setters and Getters
public void addObserver(Observer obs){
if(obs != null)
obsList.add(obs);
}
public void delObserver(Observer obs){
if (obs != null)
obsList.remove(obs);
}
//Setters and getters
int getXbound(){return xbound;}
int getYbound(){return ybound;}
int getpartWidth(){return partWidth;}
int getpartHeight(){return partHeight;}
}
import processing.core.PApplet;
import processing.core.PImage;
import java.io.File;
import java.util.ArrayList;
class FrameSaver extends Thread {
CircularArrayList<PImage> imgstore;
int savecnt=0;
int index=0;
boolean running;
PApplet parent;
public FrameSaver (PApplet p) {
running = false;
parent = p;
imgstore = new CircularArrayList<PImage>(500);
}
public void start() {
parent.println("recording frames!");
running = true;
try{
super.start();
}
catch(java.lang.IllegalThreadStateException itse){
parent.println("cannot execute! ->" + itse);
}
}
public void addImage(PImage img){
index ++;
try{
imgstore.add(img);
} catch(OutOfMemoryError e){
parent.println(e);
}
}
public void run(){
while(running){
if(imgstore.size()>1){
saveIncremental(imgstore.get(0),"imageSequence/Flipdot","bmp");
imgstore.remove(0);
}
}
}
public void quit() {
parent.println("stopped recording..");
running = false;
interrupt();
}
// Saves a file with automatically incrementing filename,
// so that existing files are not overwritten. Will
// function correctly for less than 1000 files.
void saveIncremental(PImage img,String prefix,String extension) {
boolean ok=false;
String filename="";
File f;
while(!ok) {
// Get a correctly configured filename
filename=prefix;
if(savecnt<10) filename+="0000";
else if(savecnt<100) filename+="000";
else if(savecnt<1000) filename+="00";
else if(savecnt<10000) filename+="0";
filename+=""+savecnt+"."+extension;
// Check to see if file exists, using the undocumented
// savePath() to find sketch folder
f=new File(parent.savePath(filename));
if(!f.exists()) ok=true; // File doesn't exist
savecnt++;
}
parent.println("Saving "+filename);
try{
img.save(filename);
}catch(NullPointerException e){
parent.println(e);
parent.println(imgstore.size());
}
}
}
package gifAnimation;/*
* GifAnimation is a processing library to play gif animations and to
* extract frames from a gif file. It can also export animated GIF animations
* This file class is under a GPL license. The Decoder used to open the
* gif files was written by Kevin Weiner. please see the separate copyright
* notice in the header of the GifDecoder / GifEncoder class.
*
* by extrapixel 2007
* http://extrapixel.ch
*
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 3 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, see <http://www.gnu.org/licenses/>.
*/
import java.awt.image.BufferedImage;
import java.io.*;
import gifAnimation.GifDecoder;
import processing.core.*;
public class Gif extends PImage implements PConstants, Runnable {
private PApplet parent;
Thread runner;
// if the animation is currently playing
public boolean play;
// if the animation is currently looping
private boolean loop;
// wehter the repeat setting from the gif-file should be ignored
private boolean ignoreRepeatSetting = false;
// nr of repeats specified in the gif-file. 0 means repeat forever
private int repeatSetting = 1;
// how often this animation has repeated since last call to play()
private int repeatCount = 0;
// the current frame number
private int currentFrame;
// array containing the frames as PImages
private PImage[] frames;
// array containing the delay in ms of every frame
private int[] delays;
// last time the frame changed
private long lastJumpTime;
// version
private static String version = "2.3";
public Gif(PApplet parent, String filename) {
// this creates a fake image so that the first time this
// attempts to draw, something happens that's not an exception
super(1, 1, ARGB);
this.parent = parent;
// create the GifDecoder
GifDecoder gifDecoder = createDecoder(parent, filename);
// fill up the PImage and the delay arrays
frames = extractFrames(gifDecoder);
delays = extractDelays(gifDecoder);
// get the GIFs repeat count
repeatSetting = gifDecoder.getLoopCount();
// re-init our PImage with the new size
super.init(frames[0].width, frames[0].height, ARGB);
jump(0);
parent.registerDispose(this);
// and now, make the magic happen
runner = new Thread(this);
runner.start();
}
public void dispose() {
// fin
// System.out.println("disposing");
stop();
runner = null;
}
/*
* the thread's run method
*/
public void run() {
while (Thread.currentThread() == runner) {
try {
Thread.sleep(5);
} catch (InterruptedException e) {
}
if (play) {
// if playing, check if we need to go to next frame
if (parent.millis() - lastJumpTime >= delays[currentFrame]) {
// we need to jump
if (currentFrame == frames.length - 1) {
// its the last frame
if (loop) {
jump(0); // loop is on, so rewind
} else if (!ignoreRepeatSetting) {
// we're not looping, but we need to respect the
// GIF's repeat setting
repeatCount++;
if (repeatSetting == 0) {
// we need to repeat forever
jump(0);
} else if (repeatCount == repeatSetting) {
// stop repeating, we've reached the repeat
// setting
stop();
}
} else {
// no loop & ignoring the repeat setting, so just
// stop.
stop();
}
} else {
// go to the next frame
jump(currentFrame + 1);
}
}
}
}
}
/*
* creates an input stream using processings openStream() method to read
* from the sketch data-directory
*/
private static InputStream createInputStream(PApplet parent, String filename) {
try{
InputStream inputStream = parent.createInput(filename);
return inputStream;
}catch(RuntimeException e){
parent.println(e);
return null;
}
}
/*
* in case someone wants to mess with the frames directly, they can get an
* array of PImages containing the animation frames. without having a
* gif-object with a seperate thread
*
* it takes a filename of a file in the datafolder.
*/
public static PImage[] getPImages(PApplet parent, String filename) {
GifDecoder gifDecoder = createDecoder(parent, filename);
return extractFrames(gifDecoder);
}
/*
* probably someone wants all the frames even if he has a playback-gif...
*/
public PImage[] getPImages() {
return frames;
}
public int getNumFrames(){
return frames.length-1;
}
/*
* creates a GifDecoder object and loads a gif file
*/
private static GifDecoder createDecoder(PApplet parent, String filename) {
GifDecoder gifDecoder = new GifDecoder();
gifDecoder.read(createInputStream(parent, filename));
return gifDecoder;
}
/*
* creates a PImage-array of gif frames in a GifDecoder object
*/
private static PImage[] extractFrames(GifDecoder gifDecoder) {
int n = gifDecoder.getFrameCount();
PImage[] frames = new PImage[n];
for (int i = 0; i < n; i++) {
BufferedImage frame = gifDecoder.getFrame(i);
frames[i] = new PImage(frame.getWidth(), frame.getHeight(), ARGB);
System.arraycopy(frame.getRGB(0, 0, frame.getWidth(), frame
.getHeight(), null, 0, frame.getWidth()), 0,
frames[i].pixels, 0, frame.getWidth() * frame.getHeight());
}
return frames;
}
/*
* creates an int-array of frame delays in the gifDecoder object
*/
private static int[] extractDelays(GifDecoder gifDecoder) {
int n = gifDecoder.getFrameCount();
int[] delays = new int[n];
for (int i = 0; i < n; i++) {
delays[i] = gifDecoder.getDelay(i); // display duration of frame in
// milliseconds
}
return delays;
}
/*
* Can be called to ignore the repeat-count set in the gif-file. this does
* not affect loop()/noLoop() settings.
*/
public void ignoreRepeat() {
ignoreRepeatSetting = true;
}
/*
* returns the number of repeats that is specified in the gif-file 0 means
* repeat forever
*/
public int getRepeat() {
return repeatSetting;
}
/*
* returns true if this GIF object is playing
*/
public boolean isPlaying() {
return play;
}
/*
* returns the current frame number
*/
public int currentFrame() {
return currentFrame;
}
/*
* returns true if the animation is set to loop
*/
public boolean isLooping() {
return loop;
}
/*
* returns true if this animation is set to ignore the file's repeat setting
*/
public boolean isIgnoringRepeat() {
return ignoreRepeatSetting;
}
/*
* returns the version of the library
*/
public static String version() {
return version;
}
/*
* following methods mimic the behaviour of processing's movie class.
*/
/**
* Begin playing the animation, with no repeat.
*/
public void play() {
play = true;
jump(0);
if (!ignoreRepeatSetting) {
repeatCount = 0;
}
}
/**
* Begin playing the animation, with repeat.
*/
public void loop() {
play = true;
loop = true;
}
/**
* Shut off the repeating loop.
*/
public void noLoop() {
loop = false;
}
/**
* Pause the animation at its current frame.
*/
public void pause() {
// System.out.println("pause");
play = false;
}
/**
* Stop the animation, and rewind.
*/
public void stop() {
//System.out.println("stop");
play = false;
currentFrame = 0;
repeatCount = 0;
}
/**
* Jump to a specific location (in frames). if the frame does not exist, go
* to last frame
*/
public void jump(int where) {
if (frames.length > where) {
currentFrame = where;
// update the pixel-array
loadPixels();
System.arraycopy(frames[currentFrame].pixels, 0, pixels, 0, width
* height);
updatePixels();
// set the jump time
lastJumpTime = parent.millis();
}
}
}
package gifAnimation;
import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.image.BufferedImage;
import java.awt.image.DataBufferInt;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.ArrayList;
/**
* Class GifDecoder - Decodes a GIF file into one or more frames. <br>
* <p/>
* <pre>
* Example:
* GifDecoder d = new GifDecoder();
* d.read(&quot;sample.gif&quot;);
* int n = d.getFrameCount();
* for (int i = 0; i &lt; n; i++) {
* BufferedImage frame = d.getFrame(i); // frame i
* int t = d.getDelay(i); // display duration of frame in milliseconds
* // do something with frame
* }
* </pre>
* <p/>
* No copyright asserted on the source code of this class. May be used for any
* purpose, however, refer to the Unisys LZW patent for any additional
* restrictions. Please forward any corrections to kweiner@fmsware.com.
*
* @author Kevin Weiner, FM Software; LZW decoder adapted from John Cristy's
* ImageMagick.
* @version 1.03 November 2003
*/
public class GifDecoder {
/**
* File read status: No errors.
*/
public static final int STATUS_OK = 0;
/**
* File read status: Error decoding file (may be partially decoded)
*/
public static final int STATUS_FORMAT_ERROR = 1;
/**
* File read status: Unable to open source.
*/
public static final int STATUS_OPEN_ERROR = 2;
protected BufferedInputStream in;
protected int status;
protected int width; // full image width
protected int height; // full image height
protected boolean gctFlag; // global color table used
protected int gctSize; // size of global color table
protected int loopCount = 1; // iterations; 0 = repeat forever
protected int[] gct; // global color table
protected int[] lct; // local color table
protected int[] act; // active color table
protected int bgIndex; // background color index
protected int bgColor; // background color
protected int lastBgColor; // previous bg color
protected int pixelAspect; // pixel aspect ratio
protected boolean lctFlag; // local color table flag
protected boolean interlace; // interlace flag
protected int lctSize; // local color table size
protected int ix, iy, iw, ih; // current image rectangle
protected Rectangle lastRect; // last image rect
protected BufferedImage image; // current frame
protected BufferedImage lastImage; // previous frame
protected byte[] block = new byte[256]; // current data block
protected int blockSize = 0; // block size
// last graphic control extension info
protected int dispose = 0;
// 0=no action; 1=leave in place; 2=restore to bg; 3=restore to prev
protected int lastDispose = 0;
protected boolean transparency = false; // use transparent color
protected int delay = 0; // delay in milliseconds
protected int transIndex; // transparent color index
protected static final int MaxStackSize = 4096;
// max decoder pixel stack size
// LZW decoder working arrays
protected short[] prefix;
protected byte[] suffix;
protected byte[] pixelStack;
protected byte[] pixels;
protected ArrayList frames; // frames read from current file
protected int frameCount;
static class GifFrame {
public GifFrame(BufferedImage im, int del) {
image = im;
delay = del;
}
public BufferedImage image;
public int delay;
}
/**
* Gets display duration for specified frame.
*
* @param n int index of frame
* @return delay in milliseconds
*/
public int getDelay(int n) {
//
delay = -1;
if ((n >= 0) && (n < frameCount)) {
delay = ((GifFrame) frames.get(n)).delay;
}
return delay;
}
/**
* Gets the number of frames read from file.
*
* @return frame count
*/
public int getFrameCount() {
return frameCount;
}
/**
* Gets the first (or only) image read.
*
* @return BufferedImage containing first frame, or null if none.
*/
public BufferedImage getImage() {
return getFrame(0);
}
/**
* Gets the "Netscape" iteration count, if any. A count of 0 means repeat
* indefinitiely.
*
* @return iteration count if one was specified, else 1.
*/
public int getLoopCount() {
return loopCount;
}
/**
* Creates new frame image from current data (and previous frames as specified
* by their disposition codes).
*/
protected void setPixels() {
// expose destination image's pixels as int array
int[] dest = ((DataBufferInt) image.getRaster().getDataBuffer()).getData();
// fill in starting image contents based on last image's dispose code
if (lastDispose > 0) {
if (lastDispose == 3) {
// use image before last
int n = frameCount - 2;
if (n > 0) {
lastImage = getFrame(n - 1);
} else {
lastImage = null;
}
}
if (lastImage != null) {
int[] prev = ((DataBufferInt) lastImage.getRaster().getDataBuffer()).getData();
System.arraycopy(prev, 0, dest, 0, width * height);
// copy pixels
if (lastDispose == 2) {
// fill last image rect area with background color
Graphics2D g = image.createGraphics();
Color c = null;
if (transparency) {
c = new Color(0, 0, 0, 0); // assume background is transparent
} else {
c = new Color(lastBgColor); // use given background color
}
g.setColor(c);
g.setComposite(AlphaComposite.Src); // replace area
g.fill(lastRect);
g.dispose();
}
}
}
// copy each source line to the appropriate place in the destination
int pass = 1;
int inc = 8;
int iline = 0;
for (int i = 0; i < ih; i++) {
int line = i;
if (interlace) {
if (iline >= ih) {
pass++;
switch (pass) {
case 2:
iline = 4;
break;
case 3:
iline = 2;
inc = 4;
break;
case 4:
iline = 1;
inc = 2;
}
}
line = iline;
iline += inc;
}
line += iy;
if (line < height) {
int k = line * width;
int dx = k + ix; // start of line in dest
int dlim = dx + iw; // end of dest line
if ((k + width) < dlim) {
dlim = k + width; // past dest edge
}
int sx = i * iw; // start of line in source
while (dx < dlim) {
// map color and insert in destination
int index = ((int) pixels[sx++]) & 0xff;
int c = act[index];
if (c != 0) {
dest[dx] = c;
}
dx++;
}
}
}
}
/**
* Gets the image contents of frame n.
*
* @return BufferedImage representation of frame, or null if n is invalid.
*/
public BufferedImage getFrame(int n) {
BufferedImage im = null;
if ((n >= 0) && (n < frameCount)) {
im = ((GifFrame) frames.get(n)).image;
}
return im;
}
/**
* Gets image size.
*
* @return GIF image dimensions
*/
public Dimension getFrameSize() {
return new Dimension(width, height);
}
/**
* Reads GIF image from stream
*
* @param BufferedInputStream containing GIF file.
* @return read status code (0 = no errors)
*/
public int read(BufferedInputStream is) {
init();
if (is != null) {
in = is;
readHeader();
if (!err()) {
readContents();
if (frameCount < 0) {
status = STATUS_FORMAT_ERROR;
}
}
} else {
status = STATUS_OPEN_ERROR;
}
try {
is.close();
} catch (IOException e) {
}
return status;
}
/**
* Reads GIF image from stream
*
* @param InputStream containing GIF file.
* @return read status code (0 = no errors)
*/
public int read(InputStream is) {
init();
if (is != null) {
if (!(is instanceof BufferedInputStream))
is = new BufferedInputStream(is);
in = (BufferedInputStream) is;
readHeader();
if (!err()) {
readContents();
if (frameCount < 0) {
status = STATUS_FORMAT_ERROR;
}
}
} else {
status = STATUS_OPEN_ERROR;
}
try {
is.close();
} catch (IOException e) {
}
return status;
}
/**
* Reads GIF file from specified file/URL source (URL assumed if name contains
* ":/" or "file:")
*
* @param name String containing source
* @return read status code (0 = no errors)
*/
public int read(String name) {
status = STATUS_OK;
try {
name = name.trim().toLowerCase();
if ((name.indexOf("file:") >= 0) || (name.indexOf(":/") > 0)) {
URL url = new URL(name);
in = new BufferedInputStream(url.openStream());
} else {
in = new BufferedInputStream(new FileInputStream(name));
}
status = read(in);
} catch (IOException e) {
status = STATUS_OPEN_ERROR;
}
return status;
}
/**
* Decodes LZW image data into pixel array. Adapted from John Cristy's
* ImageMagick.
*/
protected void decodeImageData() {
int NullCode = -1;
int npix = iw * ih;
int available, clear, code_mask, code_size, end_of_information, in_code, old_code, bits, code, count, i, datum, data_size, first, top, bi, pi;
if ((pixels == null) || (pixels.length < npix)) {
pixels = new byte[npix]; // allocate new pixel array
}
if (prefix == null)
prefix = new short[MaxStackSize];
if (suffix == null)
suffix = new byte[MaxStackSize];
if (pixelStack == null)
pixelStack = new byte[MaxStackSize + 1];
// Initialize GIF data stream decoder.
data_size = read();
clear = 1 << data_size;
end_of_information = clear + 1;
available = clear + 2;
old_code = NullCode;
code_size = data_size + 1;
code_mask = (1 << code_size) - 1;
for (code = 0; code < clear; code++) {
prefix[code] = 0;
suffix[code] = (byte) code;
}
// Decode GIF pixel stream.
datum = bits = count = first = top = pi = bi = 0;
for (i = 0; i < npix; ) {
if (top == 0) {
if (bits < code_size) {
// Load bytes until there are enough bits for a code.
if (count == 0) {
// Read a new data block.
count = readBlock();
if (count <= 0)
break;
bi = 0;
}
datum += (((int) block[bi]) & 0xff) << bits;
bits += 8;
bi++;
count--;
continue;
}
// Get the next code.
code = datum & code_mask;
datum >>= code_size;
bits -= code_size;
// Interpret the code
if ((code > available) || (code == end_of_information))
break;
if (code == clear) {
// Reset decoder.
code_size = data_size + 1;
code_mask = (1 << code_size) - 1;
available = clear + 2;
old_code = NullCode;
continue;
}
if (old_code == NullCode) {
pixelStack[top++] = suffix[code];
old_code = code;
first = code;
continue;
}
in_code = code;
if (code == available) {
pixelStack[top++] = (byte) first;
code = old_code;
}
while (code > clear) {
pixelStack[top++] = suffix[code];
code = prefix[code];
}
first = ((int) suffix[code]) & 0xff;
// Add a new string to the string table,
if (available >= MaxStackSize)
break;
pixelStack[top++] = (byte) first;
prefix[available] = (short) old_code;
suffix[available] = (byte) first;
available++;
if (((available & code_mask) == 0) && (available < MaxStackSize)) {
code_size++;
code_mask += available;
}
old_code = in_code;
}
// Pop a pixel off the pixel stack.
top--;
pixels[pi++] = pixelStack[top];
i++;
}
for (i = pi; i < npix; i++) {
pixels[i] = 0; // clear missing pixels
}
}
/**
* Returns true if an error was encountered during reading/decoding
*/
protected boolean err() {
return status != STATUS_OK;
}
/**
* Initializes or re-initializes reader
*/
protected void init() {
status = STATUS_OK;
frameCount = 0;
frames = new ArrayList();
gct = null;
lct = null;
}
/**
* Reads a single byte from the input stream.
*/
protected int read() {
int curByte = 0;
try {
curByte = in.read();
} catch (IOException e) {
status = STATUS_FORMAT_ERROR;
}
return curByte;
}
/**
* Reads next variable length block from input.
*
* @return number of bytes stored in "buffer"
*/
protected int readBlock() {
blockSize = read();
int n = 0;
if (blockSize > 0) {
try {
int count = 0;
while (n < blockSize) {
count = in.read(block, n, blockSize - n);
if (count == -1)
break;
n += count;
}
} catch (IOException e) {
}
if (n < blockSize) {
status = STATUS_FORMAT_ERROR;
}
}
return n;
}
/**
* Reads color table as 256 RGB integer values
*
* @param ncolors int number of colors to read
* @return int array containing 256 colors (packed ARGB with full alpha)
*/
protected int[] readColorTable(int ncolors) {
int nbytes = 3 * ncolors;
int[] tab = null;
byte[] c = new byte[nbytes];
int n = 0;
try {
n = in.read(c);
} catch (IOException e) {
}
if (n < nbytes) {
status = STATUS_FORMAT_ERROR;
} else {
tab = new int[256]; // max size to avoid bounds checks
int i = 0;
int j = 0;
while (i < ncolors) {
int r = ((int) c[j++]) & 0xff;
int g = ((int) c[j++]) & 0xff;
int b = ((int) c[j++]) & 0xff;
tab[i++] = 0xff000000 | (r << 16) | (g << 8) | b;
}
}
return tab;
}
/**
* Main file parser. Reads GIF content blocks.
*/
protected void readContents() {
// read GIF file content blocks
boolean done = false;
while (!(done || err())) {
int code = read();
switch (code) {
case 0x2C: // image separator
readImage();
break;
case 0x21: // extension
code = read();
switch (code) {
case 0xf9: // graphics control extension
readGraphicControlExt();
break;
case 0xff: // application extension
readBlock();
String app = "";
for (int i = 0; i < 11; i++) {
app += (char) block[i];
}
if (app.equals("NETSCAPE2.0")) {
readNetscapeExt();
} else
skip(); // don't care
break;
default: // uninteresting extension
skip();
}
break;
case 0x3b: // terminator
done = true;
break;
case 0x00: // bad byte, but keep going and see what happens
break;
default:
status = STATUS_FORMAT_ERROR;
}
}
}
/**
* Reads Graphics Control Extension values
*/
protected void readGraphicControlExt() {
read(); // block size
int packed = read(); // packed fields
dispose = (packed & 0x1c) >> 2; // disposal method
if (dispose == 0) {
dispose = 1; // elect to keep old image if discretionary
}
transparency = (packed & 1) != 0;
delay = readShort() * 10; // delay in milliseconds
transIndex = read(); // transparent color index
read(); // block terminator
}
/**
* Reads GIF file header information.
*/
protected void readHeader() {
String id = "";
for (int i = 0; i < 6; i++) {
id += (char) read();
}
if (!id.startsWith("GIF")) {
status = STATUS_FORMAT_ERROR;
return;
}
readLSD();
if (gctFlag && !err()) {
gct = readColorTable(gctSize);
bgColor = gct[bgIndex];
}
}
/**
* Reads next frame image
*/
protected void readImage() {
ix = readShort(); // (sub)image position & size
iy = readShort();
iw = readShort();
ih = readShort();
int packed = read();
lctFlag = (packed & 0x80) != 0; // 1 - local color table flag
interlace = (packed & 0x40) != 0; // 2 - interlace flag
// 3 - sort flag
// 4-5 - reserved
lctSize = 2 << (packed & 7); // 6-8 - local color table size
if (lctFlag) {
lct = readColorTable(lctSize); // read table
act = lct; // make local table active
} else {
act = gct; // make global table active
if (bgIndex == transIndex)
bgColor = 0;
}
int save = 0;
if (transparency) {
save = act[transIndex];
act[transIndex] = 0; // set transparent color if specified
}
if (act == null) {
status = STATUS_FORMAT_ERROR; // no color table defined
}
if (err())
return;
decodeImageData(); // decode pixel data
skip();
if (err())
return;
frameCount++;
// create new image to receive frame data
image = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB_PRE);
setPixels(); // transfer pixel data to image
frames.add(new GifFrame(image, delay)); // add image to frame list
if (transparency) {
act[transIndex] = save;
}
resetFrame();
}
/**
* Reads Logical Screen Descriptor
*/
protected void readLSD() {
// logical screen size
width = readShort();
height = readShort();
// packed fields
int packed = read();
gctFlag = (packed & 0x80) != 0; // 1 : global color table flag
// 2-4 : color resolution
// 5 : gct sort flag
gctSize = 2 << (packed & 7); // 6-8 : gct size
bgIndex = read(); // background color index
pixelAspect = read(); // pixel aspect ratio
}
/**
* Reads Netscape extenstion to obtain iteration count
*/
protected void readNetscapeExt() {
do {
readBlock();
if (block[0] == 1) {
// loop count sub-block
int b1 = ((int) block[1]) & 0xff;
int b2 = ((int) block[2]) & 0xff;
loopCount = (b2 << 8) | b1;
}
} while ((blockSize > 0) && !err());
}
/**
* Reads next 16-bit value, LSB first
*/
protected int readShort() {
// read 16-bit value, LSB first
return read() | (read() << 8);
}
/**
* Resets frame state for reading next image.
*/
protected void resetFrame() {
lastDispose = dispose;
lastRect = new Rectangle(ix, iy, iw, ih);
lastImage = image;
lastBgColor = bgColor;
int dispose = 0;
boolean transparency = false;
int delay = 0;
lct = null;
}
/**
* Skips variable length blocks up to and including next zero length block.
*/
protected void skip() {
do {
readBlock();
} while ((blockSize > 0) && !err());
}
}
package gifAnimation;
import java.io.*;
import java.awt.*;
import java.awt.image.*;
/**
* Class AnimatedGifEncoder - Encodes a GIF file consisting of one or more
* frames.
* <p/>
* <pre>
* Example:
* AnimatedGifEncoder e = new AnimatedGifEncoder();
* e.start(outputFileName);
* e.setDelay(1000); // 1 frame per sec
* e.addFrame(image1);
* e.addFrame(image2);
* e.finish();
* </pre>
* <p/>
* No copyright asserted on the source code of this class. May be used for any
* purpose, however, refer to the Unisys LZW patent for restrictions on use of
* the associated LZWEncoder class. Please forward any corrections to
* kweiner@fmsware.com.
*
* @author Kevin Weiner, FM Software
* @version 1.03 November 2003
*/
public class GifEncoder {
protected int width; // image size
protected int height;
protected Color transparent = null; // transparent color if given
protected int transIndex; // transparent index in color table
protected int repeat = -1; // no repeat
protected int delay = 0; // frame delay (hundredths)
protected boolean started = false; // ready to output frames
protected OutputStream out;
protected BufferedImage image; // current frame
protected byte[] pixels; // BGR byte array from frame
protected byte[] indexedPixels; // converted frame indexed to palette
protected int colorDepth; // number of bit planes
protected byte[] colorTab; // RGB palette
protected boolean[] usedEntry = new boolean[256]; // active palette entries
protected int palSize = 7; // color table size (bits-1)
protected int dispose = -1; // disposal code (-1 = use default)
protected boolean closeStream = false; // close stream when finished
protected boolean firstFrame = true;
protected boolean sizeSet = false; // if false, get size from first frame
protected int sample = 10; // default sample interval for quantizer
/**
* Sets the delay time between each frame, or changes it for subsequent frames
* (applies to last frame added).
*
* @param ms int delay time in milliseconds
*/
public void setDelay(int ms) {
delay = Math.round(ms / 10.0f);
}
/**
* Sets the GIF frame disposal code for the last added frame and any
* subsequent frames. Default is 0 if no transparent color has been set,
* otherwise 2.
*
* @param code int disposal code.
*/
public void setDispose(int code) {
if (code >= 0) {
dispose = code;
}
}
/**
* Sets the number of times the set of GIF frames should be played. Default is
* 1; 0 means play indefinitely. Must be invoked before the first image is
* added.
*
* @param iter int number of iterations.
* @return
*/
public void setRepeat(int iter) {
if (iter >= 0) {
repeat = iter;
}
}
/**
* Sets the transparent color for the last added frame and any subsequent
* frames. Since all colors are subject to modification in the quantization
* process, the color in the final palette for each frame closest to the given
* color becomes the transparent color for that frame. May be set to null to
* indicate no transparent color.
*
* @param c Color to be treated as transparent on display.
*/
public void setTransparent(Color c) {
transparent = c;
}
/**
* Adds next GIF frame. The frame is not written immediately, but is actually
* deferred until the next frame is received so that timing data can be
* inserted. Invoking <code>finish()</code> flushes all frames. If
* <code>setSize</code> was not invoked, the size of the first image is used
* for all subsequent frames.
*
* @param im BufferedImage containing frame to write.
* @return true if successful.
*/
public boolean addFrame(BufferedImage im) {
if ((im == null) || !started) {
return false;
}
boolean ok = true;
try {
if (!sizeSet) {
// use first frame's size
setSize(im.getWidth(), im.getHeight());
}
image = im;
getImagePixels(); // convert to correct format if necessary
analyzePixels(); // build color table & map pixels
if (firstFrame) {
writeLSD(); // logical screen descriptior
writePalette(); // global color table
if (repeat >= 0) {
// use NS app extension to indicate reps
writeNetscapeExt();
}
}
writeGraphicCtrlExt(); // write graphic control extension
writeImageDesc(); // image descriptor
if (!firstFrame) {
writePalette(); // local color table
}
writePixels(); // encode and write pixel data
firstFrame = false;
} catch (IOException e) {
ok = false;
}
return ok;
}
/**
* Flushes any pending data and closes output file. If writing to an
* OutputStream, the stream is not closed.
*/
public boolean finish() {
if (!started)
return false;
boolean ok = true;
started = false;
try {
out.write(0x3b); // gif trailer
out.flush();
if (closeStream) {
out.close();
}
} catch (IOException e) {
ok = false;
}
// reset for subsequent use
transIndex = 0;
out = null;
image = null;
pixels = null;
indexedPixels = null;
colorTab = null;
closeStream = false;
firstFrame = true;
return ok;
}
/**
* Sets frame rate in frames per second. Equivalent to
* <code>setDelay(1000/fps)</code>.
*
* @param fps float frame rate (frames per second)
*/
public void setFrameRate(float fps) {
if (fps != 0f) {
delay = Math.round(100f / fps);
}
}
/**
* Sets quality of color quantization (conversion of images to the maximum 256
* colors allowed by the GIF specification). Lower values (minimum = 1)
* produce better colors, but slow processing significantly. 10 is the
* default, and produces good color mapping at reasonable speeds. Values
* greater than 20 do not yield significant improvements in speed.
*
* @param quality int greater than 0.
* @return
*/
public void setQuality(int quality) {
if (quality < 1)
quality = 1;
sample = quality;
}
/**
* Sets the GIF frame size. The default size is the size of the first frame
* added if this method is not invoked.
*
* @param w int frame width.
* @param h int frame width.
*/
public void setSize(int w, int h) {
if (started && !firstFrame)
return;
width = w;
height = h;
if (width < 1)
width = 320;
if (height < 1)
height = 240;
sizeSet = true;
}
/**
* Initiates GIF file creation on the given stream. The stream is not closed
* automatically.
*
* @param os OutputStream on which GIF images are written.
* @return false if initial write failed.
*/
public boolean start(OutputStream os) {
if (os == null)
return false;
boolean ok = true;
closeStream = false;
out = os;
try {
writeString("GIF89a"); // header
} catch (IOException e) {
ok = false;
}
return started = ok;
}
/**
* Initiates writing of a GIF file with the specified name.
*
* @param file String containing output file name.
* @return false if open or initial write failed.
*/
public boolean start(String file) {
boolean ok = true;
try {
out = new BufferedOutputStream(new FileOutputStream(file));
ok = start(out);
closeStream = true;
} catch (IOException e) {
ok = false;
}
return started = ok;
}
/**
* Analyzes image colors and creates color map.
*/
protected void analyzePixels() {
int len = pixels.length;
int nPix = len / 3;
indexedPixels = new byte[nPix];
NeuQuant nq = new NeuQuant(pixels, len, sample);
// initialize quantizer
colorTab = nq.process(); // create reduced palette
// convert map from BGR to RGB
for (int i = 0; i < colorTab.length; i += 3) {
byte temp = colorTab[i];
colorTab[i] = colorTab[i + 2];
colorTab[i + 2] = temp;
usedEntry[i / 3] = false;
}
// map image pixels to new palette
int k = 0;
for (int i = 0; i < nPix; i++) {
int index = nq.map(pixels[k++] & 0xff, pixels[k++] & 0xff, pixels[k++] & 0xff);
usedEntry[index] = true;
indexedPixels[i] = (byte) index;
}
pixels = null;
colorDepth = 8;
palSize = 7;
// get closest match to transparent color if specified
if (transparent != null) {
transIndex = findClosest(transparent);
}
}
/**
* Returns index of palette color closest to c
*/
protected int findClosest(Color c) {
if (colorTab == null)
return -1;
int r = c.getRed();
int g = c.getGreen();
int b = c.getBlue();
int minpos = 0;
int dmin = 256 * 256 * 256;
int len = colorTab.length;
for (int i = 0; i < len; ) {
int dr = r - (colorTab[i++] & 0xff);
int dg = g - (colorTab[i++] & 0xff);
int db = b - (colorTab[i] & 0xff);
int d = dr * dr + dg * dg + db * db;
int index = i / 3;
if (usedEntry[index] && (d < dmin)) {
dmin = d;
minpos = index;
}
i++;
}
return minpos;
}
/**
* Extracts image pixels into byte array "pixels"
*/
protected void getImagePixels() {
int w = image.getWidth();
int h = image.getHeight();
int type = image.getType();
if ((w != width) || (h != height) || (type != BufferedImage.TYPE_3BYTE_BGR)) {
// create new image with right size/format
BufferedImage temp = new BufferedImage(width, height, BufferedImage.TYPE_3BYTE_BGR);
Graphics2D g = temp.createGraphics();
g.drawImage(image, 0, 0, null);
image = temp;
}
pixels = ((DataBufferByte) image.getRaster().getDataBuffer()).getData();
}
/**
* Writes Graphic Control Extension
*/
protected void writeGraphicCtrlExt() throws IOException {
out.write(0x21); // extension introducer
out.write(0xf9); // GCE label
out.write(4); // data block size
int transp, disp;
if (transparent == null) {
transp = 0;
disp = 0; // dispose = no action
} else {
transp = 1;
disp = 2; // force clear if using transparent color
}
if (dispose >= 0) {
disp = dispose & 7; // user override
}
disp <<= 2;
// packed fields
out.write(0 | // 1:3 reserved
disp | // 4:6 disposal
0 | // 7 user input - 0 = none
transp); // 8 transparency flag
writeShort(delay); // delay x 1/100 sec
out.write(transIndex); // transparent color index
out.write(0); // block terminator
}
/**
* Writes Image Descriptor
*/
protected void writeImageDesc() throws IOException {
out.write(0x2c); // image separator
writeShort(0); // image position x,y = 0,0
writeShort(0);
writeShort(width); // image size
writeShort(height);
// packed fields
if (firstFrame) {
// no LCT - GCT is used for first (or only) frame
out.write(0);
} else {
// specify normal LCT
out.write(0x80 | // 1 local color table 1=yes
0 | // 2 interlace - 0=no
0 | // 3 sorted - 0=no
0 | // 4-5 reserved
palSize); // 6-8 size of color table
}
}
/**
* Writes Logical Screen Descriptor
*/
protected void writeLSD() throws IOException {
// logical screen size
writeShort(width);
writeShort(height);
// packed fields
out.write((0x80 | // 1 : global color table flag = 1 (gct used)
0x70 | // 2-4 : color resolution = 7
0x00 | // 5 : gct sort flag = 0
palSize)); // 6-8 : gct size
out.write(0); // background color index
out.write(0); // pixel aspect ratio - assume 1:1
}
/**
* Writes Netscape application extension to define repeat count.
*/
protected void writeNetscapeExt() throws IOException {
out.write(0x21); // extension introducer
out.write(0xff); // app extension label
out.write(11); // block size
writeString("NETSCAPE" + "2.0"); // app id + auth code
out.write(3); // sub-block size
out.write(1); // loop sub-block id
writeShort(repeat); // loop count (extra iterations, 0=repeat forever)
out.write(0); // block terminator
}
/**
* Writes color table
*/
protected void writePalette() throws IOException {
out.write(colorTab, 0, colorTab.length);
int n = (3 * 256) - colorTab.length;
for (int i = 0; i < n; i++) {
out.write(0);
}
}
/**
* Encodes and writes pixel data
*/
protected void writePixels() throws IOException {
LZWEncoder encoder = new LZWEncoder(width, height, indexedPixels, colorDepth);
encoder.encode(out);
}
/**
* Write 16-bit value to output stream, LSB first
*/
protected void writeShort(int value) throws IOException {
out.write(value & 0xff);
out.write((value >> 8) & 0xff);
}
/**
* Writes string to output stream
*/
protected void writeString(String s) throws IOException {
for (int i = 0; i < s.length(); i++) {
out.write((byte) s.charAt(i));
}
}
}
/*
* NeuQuant Neural-Net Quantization Algorithm
* ------------------------------------------
*
* Copyright (c) 1994 Anthony Dekker
*
* NEUQUANT Neural-Net quantization algorithm by Anthony Dekker, 1994. See
* "Kohonen neural networks for optimal colour quantization" in "Network:
* Computation in Neural Systems" Vol. 5 (1994) pp 351-367. for a discussion of
* the algorithm.
*
* Any party obtaining a copy of these files from the author, directly or
* indirectly, is granted, free of charge, a full and unrestricted irrevocable,
* world-wide, paid up, royalty-free, nonexclusive right and license to deal in
* this software and documentation files (the "Software"), including without
* limitation the rights to use, copy, modify, merge, publish, distribute,
* sublicense, and/or sell copies of the Software, and to permit persons who
* receive copies from any such party to do so, with the only requirement being
* that this copyright notice remain intact.
*/
// Ported to Java 12/00 K Weiner
class NeuQuant {
protected static final int netsize = 256; /* number of colours used */
/* four primes near 500 - assume no image has a length so large */
/* that it is divisible by all four primes */
protected static final int prime1 = 499;
protected static final int prime2 = 491;
protected static final int prime3 = 487;
protected static final int prime4 = 503;
protected static final int minpicturebytes = (3 * prime4);
/* minimum size for input image */
/*
* Program Skeleton ---------------- [select samplefac in range 1..30] [read
* image from input file] pic = (unsigned char*) malloc(3*width*height);
* initnet(pic,3*width*height,samplefac); learn(); unbiasnet(); [write output
* image header, using writecolourmap(f)] inxbuild(); write output image using
* inxsearch(b,g,r)
*/
/*
* Network Definitions -------------------
*/
protected static final int maxnetpos = (netsize - 1);
protected static final int netbiasshift = 4; /* bias for colour values */
protected static final int ncycles = 100; /* no. of learning cycles */
/* defs for freq and bias */
protected static final int intbiasshift = 16; /* bias for fractions */
protected static final int intbias = (((int) 1) << intbiasshift);
protected static final int gammashift = 10; /* gamma = 1024 */
protected static final int gamma = (((int) 1) << gammashift);
protected static final int betashift = 10;
protected static final int beta = (intbias >> betashift); /* beta = 1/1024 */
protected static final int betagamma = (intbias << (gammashift - betashift));
/* defs for decreasing radius factor */
protected static final int initrad = (netsize >> 3); /*
* for 256 cols, radius
* starts
*/
protected static final int radiusbiasshift = 6; /* at 32.0 biased by 6 bits */
protected static final int radiusbias = (((int) 1) << radiusbiasshift);
protected static final int initradius = (initrad * radiusbias); /*
* and
* decreases
* by a
*/
protected static final int radiusdec = 30; /* factor of 1/30 each cycle */
/* defs for decreasing alpha factor */
protected static final int alphabiasshift = 10; /* alpha starts at 1.0 */
protected static final int initalpha = (((int) 1) << alphabiasshift);
protected int alphadec; /* biased by 10 bits */
/* radbias and alpharadbias used for radpower calculation */
protected static final int radbiasshift = 8;
protected static final int radbias = (((int) 1) << radbiasshift);
protected static final int alpharadbshift = (alphabiasshift + radbiasshift);
protected static final int alpharadbias = (((int) 1) << alpharadbshift);
/*
* Types and Global Variables --------------------------
*/
protected byte[] thepicture; /* the input image itself */
protected int lengthcount; /* lengthcount = H*W*3 */
protected int samplefac; /* sampling factor 1..30 */
// typedef int pixel[4]; /* BGRc */
protected int[][] network; /* the network itself - [netsize][4] */
protected int[] netindex = new int[256];
/* for network lookup - really 256 */
protected int[] bias = new int[netsize];
/* bias and freq arrays for learning */
protected int[] freq = new int[netsize];
protected int[] radpower = new int[initrad];
/* radpower for precomputation */
/*
* Initialise network in range (0,0,0) to (255,255,255) and set parameters
* -----------------------------------------------------------------------
*/
public NeuQuant(byte[] thepic, int len, int sample) {
int i;
int[] p;
thepicture = thepic;
lengthcount = len;
samplefac = sample;
network = new int[netsize][];
for (i = 0; i < netsize; i++) {
network[i] = new int[4];
p = network[i];
p[0] = p[1] = p[2] = (i << (netbiasshift + 8)) / netsize;
freq[i] = intbias / netsize; /* 1/netsize */
bias[i] = 0;
}
}
public byte[] colorMap() {
byte[] map = new byte[3 * netsize];
int[] index = new int[netsize];
for (int i = 0; i < netsize; i++)
index[network[i][3]] = i;
int k = 0;
for (int i = 0; i < netsize; i++) {
int j = index[i];
map[k++] = (byte) (network[j][0]);
map[k++] = (byte) (network[j][1]);
map[k++] = (byte) (network[j][2]);
}
return map;
}
/*
* Insertion sort of network and building of netindex[0..255] (to do after
* unbias)
* -------------------------------------------------------------------------------
*/
public void inxbuild() {
int i, j, smallpos, smallval;
int[] p;
int[] q;
int previouscol, startpos;
previouscol = 0;
startpos = 0;
for (i = 0; i < netsize; i++) {
p = network[i];
smallpos = i;
smallval = p[1]; /* index on g */
/* find smallest in i..netsize-1 */
for (j = i + 1; j < netsize; j++) {
q = network[j];
if (q[1] < smallval) { /* index on g */
smallpos = j;
smallval = q[1]; /* index on g */
}
}
q = network[smallpos];
/* swap p (i) and q (smallpos) entries */
if (i != smallpos) {
j = q[0];
q[0] = p[0];
p[0] = j;
j = q[1];
q[1] = p[1];
p[1] = j;
j = q[2];
q[2] = p[2];
p[2] = j;
j = q[3];
q[3] = p[3];
p[3] = j;
}
/* smallval entry is now in position i */
if (smallval != previouscol) {
netindex[previouscol] = (startpos + i) >> 1;
for (j = previouscol + 1; j < smallval; j++)
netindex[j] = i;
previouscol = smallval;
startpos = i;
}
}
netindex[previouscol] = (startpos + maxnetpos) >> 1;
for (j = previouscol + 1; j < 256; j++)
netindex[j] = maxnetpos; /* really 256 */
}
/*
* Main Learning Loop ------------------
*/
public void learn() {
int i, j, b, g, r;
int radius, rad, alpha, step, delta, samplepixels;
byte[] p;
int pix, lim;
if (lengthcount < minpicturebytes)
samplefac = 1;
alphadec = 30 + ((samplefac - 1) / 3);
p = thepicture;
pix = 0;
lim = lengthcount;
samplepixels = lengthcount / (3 * samplefac);
delta = samplepixels / ncycles;
alpha = initalpha;
radius = initradius;
rad = radius >> radiusbiasshift;
if (rad <= 1)
rad = 0;
for (i = 0; i < rad; i++)
radpower[i] = alpha * (((rad * rad - i * i) * radbias) / (rad * rad));
// fprintf(stderr,"beginning 1D learning: initial radius=%d\n", rad);
if (lengthcount < minpicturebytes)
step = 3;
else if ((lengthcount % prime1) != 0)
step = 3 * prime1;
else {
if ((lengthcount % prime2) != 0)
step = 3 * prime2;
else {
if ((lengthcount % prime3) != 0)
step = 3 * prime3;
else
step = 3 * prime4;
}
}
i = 0;
while (i < samplepixels) {
b = (p[pix + 0] & 0xff) << netbiasshift;
g = (p[pix + 1] & 0xff) << netbiasshift;
r = (p[pix + 2] & 0xff) << netbiasshift;
j = contest(b, g, r);
altersingle(alpha, j, b, g, r);
if (rad != 0)
alterneigh(rad, j, b, g, r); /* alter neighbours */
pix += step;
if (pix >= lim)
pix -= lengthcount;
i++;
if (delta == 0)
delta = 1;
if (i % delta == 0) {
alpha -= alpha / alphadec;
radius -= radius / radiusdec;
rad = radius >> radiusbiasshift;
if (rad <= 1)
rad = 0;
for (j = 0; j < rad; j++)
radpower[j] = alpha * (((rad * rad - j * j) * radbias) / (rad * rad));
}
}
// fprintf(stderr,"finished 1D learning: final alpha=%f
// !\n",((float)alpha)/initalpha);
}
/*
* Search for BGR values 0..255 (after net is unbiased) and return colour
* index
* ----------------------------------------------------------------------------
*/
public int map(int b, int g, int r) {
int i, j, dist, a, bestd;
int[] p;
int best;
bestd = 1000; /* biggest possible dist is 256*3 */
best = -1;
i = netindex[g]; /* index on g */
j = i - 1; /* start at netindex[g] and work outwards */
while ((i < netsize) || (j >= 0)) {
if (i < netsize) {
p = network[i];
dist = p[1] - g; /* inx key */
if (dist >= bestd)
i = netsize; /* stop iter */
else {
i++;
if (dist < 0)
dist = -dist;
a = p[0] - b;
if (a < 0)
a = -a;
dist += a;
if (dist < bestd) {
a = p[2] - r;
if (a < 0)
a = -a;
dist += a;
if (dist < bestd) {
bestd = dist;
best = p[3];
}
}
}
}
if (j >= 0) {
p = network[j];
dist = g - p[1]; /* inx key - reverse dif */
if (dist >= bestd)
j = -1; /* stop iter */
else {
j--;
if (dist < 0)
dist = -dist;
a = p[0] - b;
if (a < 0)
a = -a;
dist += a;
if (dist < bestd) {
a = p[2] - r;
if (a < 0)
a = -a;
dist += a;
if (dist < bestd) {
bestd = dist;
best = p[3];
}
}
}
}
}
return (best);
}
public byte[] process() {
learn();
unbiasnet();
inxbuild();
return colorMap();
}
/*
* Unbias network to give byte values 0..255 and record position i to prepare
* for sort
* -----------------------------------------------------------------------------------
*/
public void unbiasnet() {
int i, j;
for (i = 0; i < netsize; i++) {
network[i][0] >>= netbiasshift;
network[i][1] >>= netbiasshift;
network[i][2] >>= netbiasshift;
network[i][3] = i; /* record colour no */
}
}
/*
* Move adjacent neurons by precomputed alpha*(1-((i-j)^2/[r]^2)) in
* radpower[|i-j|]
* ---------------------------------------------------------------------------------
*/
protected void alterneigh(int rad, int i, int b, int g, int r) {
int j, k, lo, hi, a, m;
int[] p;
lo = i - rad;
if (lo < -1)
lo = -1;
hi = i + rad;
if (hi > netsize)
hi = netsize;
j = i + 1;
k = i - 1;
m = 1;
while ((j < hi) || (k > lo)) {
a = radpower[m++];
if (j < hi) {
p = network[j++];
try {
p[0] -= (a * (p[0] - b)) / alpharadbias;
p[1] -= (a * (p[1] - g)) / alpharadbias;
p[2] -= (a * (p[2] - r)) / alpharadbias;
} catch (Exception e) {
} // prevents 1.3 miscompilation
}
if (k > lo) {
p = network[k--];
try {
p[0] -= (a * (p[0] - b)) / alpharadbias;
p[1] -= (a * (p[1] - g)) / alpharadbias;
p[2] -= (a * (p[2] - r)) / alpharadbias;
} catch (Exception e) {
}
}
}
}
/*
* Move neuron i towards biased (b,g,r) by factor alpha
* ----------------------------------------------------
*/
protected void altersingle(int alpha, int i, int b, int g, int r) {
/* alter hit neuron */
int[] n = network[i];
n[0] -= (alpha * (n[0] - b)) / initalpha;
n[1] -= (alpha * (n[1] - g)) / initalpha;
n[2] -= (alpha * (n[2] - r)) / initalpha;
}
/*
* Search for biased BGR values ----------------------------
*/
protected int contest(int b, int g, int r) {
/* finds closest neuron (min dist) and updates freq */
/* finds best neuron (min dist-bias) and returns position */
/* for frequently chosen neurons, freq[i] is high and bias[i] is negative */
/* bias[i] = gamma*((1/netsize)-freq[i]) */
int i, dist, a, biasdist, betafreq;
int bestpos, bestbiaspos, bestd, bestbiasd;
int[] n;
bestd = ~(((int) 1) << 31);
bestbiasd = bestd;
bestpos = -1;
bestbiaspos = bestpos;
for (i = 0; i < netsize; i++) {
n = network[i];
dist = n[0] - b;
if (dist < 0)
dist = -dist;
a = n[1] - g;
if (a < 0)
a = -a;
dist += a;
a = n[2] - r;
if (a < 0)
a = -a;
dist += a;
if (dist < bestd) {
bestd = dist;
bestpos = i;
}
biasdist = dist - ((bias[i]) >> (intbiasshift - netbiasshift));
if (biasdist < bestbiasd) {
bestbiasd = biasdist;
bestbiaspos = i;
}
betafreq = (freq[i] >> betashift);
freq[i] -= betafreq;
bias[i] += (betafreq << gammashift);
}
freq[bestpos] += beta;
bias[bestpos] -= betagamma;
return (bestbiaspos);
}
}
// ==============================================================================
// Adapted from Jef Poskanzer's Java port by way of J. M. G. Elliott.
// K Weiner 12/00
class LZWEncoder {
private static final int EOF = -1;
private int imgW, imgH;
private byte[] pixAry;
private int initCodeSize;
private int remaining;
private int curPixel;
// GIFCOMPR.C - GIF Image compression routines
//
// Lempel-Ziv compression based on 'compress'. GIF modifications by
// David Rowley (mgardi@watdcsu.waterloo.edu)
// General DEFINEs
static final int BITS = 12;
static final int HSIZE = 5003; // 80% occupancy
// GIF Image compression - modified 'compress'
//
// Based on: compress.c - File compression ala IEEE Computer, June 1984.
//
// By Authors: Spencer W. Thomas (decvax!harpo!utah-cs!utah-gr!thomas)
// Jim McKie (decvax!mcvax!jim)
// Steve Davies (decvax!vax135!petsd!peora!srd)
// Ken Turkowski (decvax!decwrl!turtlevax!ken)
// James A. Woods (decvax!ihnp4!ames!jaw)
// Joe Orost (decvax!vax135!petsd!joe)
int n_bits; // number of bits/code
int maxbits = BITS; // user settable max # bits/code
int maxcode; // maximum code, given n_bits
int maxmaxcode = 1 << BITS; // should NEVER generate this code
int[] htab = new int[HSIZE];
int[] codetab = new int[HSIZE];
int hsize = HSIZE; // for dynamic table sizing
int free_ent = 0; // first unused entry
// block compression parameters -- after all codes are used up,
// and compression rate changes, start over.
boolean clear_flg = false;
// Algorithm: use open addressing double hashing (no chaining) on the
// prefix code / next character combination. We do a variant of Knuth's
// algorithm D (vol. 3, sec. 6.4) along with G. Knott's relatively-prime
// secondary probe. Here, the modular division first probe is gives way
// to a faster exclusive-or manipulation. Also do block compression with
// an adaptive reset, whereby the code table is cleared when the compression
// ratio decreases, but after the table fills. The variable-length output
// codes are re-sized at this point, and a special CLEAR code is generated
// for the decompressor. Late addition: construct the table according to
// file size for noticeable speed improvement on small files. Please direct
// questions about this implementation to ames!jaw.
int g_init_bits;
int ClearCode;
int EOFCode;
// output
//
// Output the given code.
// Inputs:
// code: A n_bits-bit integer. If == -1, then EOF. This assumes
// that n_bits =< wordsize - 1.
// Outputs:
// Outputs code to the file.
// Assumptions:
// Chars are 8 bits long.
// Algorithm:
// Maintain a BITS character long buffer (so that 8 codes will
// fit in it exactly). Use the VAX insv instruction to insert each
// code in turn. When the buffer fills up empty it and start over.
int cur_accum = 0;
int cur_bits = 0;
int masks[] = {0x0000, 0x0001, 0x0003, 0x0007, 0x000F, 0x001F, 0x003F, 0x007F, 0x00FF, 0x01FF,
0x03FF, 0x07FF, 0x0FFF, 0x1FFF, 0x3FFF, 0x7FFF, 0xFFFF};
// Number of characters so far in this 'packet'
int a_count;
// Define the storage for the packet accumulator
byte[] accum = new byte[256];
// ----------------------------------------------------------------------------
LZWEncoder(int width, int height, byte[] pixels, int color_depth) {
imgW = width;
imgH = height;
pixAry = pixels;
initCodeSize = Math.max(2, color_depth);
}
// Add a character to the end of the current packet, and if it is 254
// characters, flush the packet to disk.
void char_out(byte c, OutputStream outs) throws IOException {
accum[a_count++] = c;
if (a_count >= 254)
flush_char(outs);
}
// Clear out the hash table
// table clear for block compress
void cl_block(OutputStream outs) throws IOException {
cl_hash(hsize);
free_ent = ClearCode + 2;
clear_flg = true;
output(ClearCode, outs);
}
// reset code table
void cl_hash(int hsize) {
for (int i = 0; i < hsize; ++i)
htab[i] = -1;
}
void compress(int init_bits, OutputStream outs) throws IOException {
int fcode;
int i /* = 0 */;
int c;
int ent;
int disp;
int hsize_reg;
int hshift;
// Set up the globals: g_init_bits - initial number of bits
g_init_bits = init_bits;
// Set up the necessary values
clear_flg = false;
n_bits = g_init_bits;
maxcode = MAXCODE(n_bits);
ClearCode = 1 << (init_bits - 1);
EOFCode = ClearCode + 1;
free_ent = ClearCode + 2;
a_count = 0; // clear packet
ent = nextPixel();
hshift = 0;
for (fcode = hsize; fcode < 65536; fcode *= 2)
++hshift;
hshift = 8 - hshift; // set hash code range bound
hsize_reg = hsize;
cl_hash(hsize_reg); // clear hash table
output(ClearCode, outs);
outer_loop:
while ((c = nextPixel()) != EOF) {
fcode = (c << maxbits) + ent;
i = (c << hshift) ^ ent; // xor hashing
if (htab[i] == fcode) {
ent = codetab[i];
continue;
} else if (htab[i] >= 0) // non-empty slot
{
disp = hsize_reg - i; // secondary hash (after G. Knott)
if (i == 0)
disp = 1;
do {
if ((i -= disp) < 0)
i += hsize_reg;
if (htab[i] == fcode) {
ent = codetab[i];
continue outer_loop;
}
} while (htab[i] >= 0);
}
output(ent, outs);
ent = c;
if (free_ent < maxmaxcode) {
codetab[i] = free_ent++; // code -> hashtable
htab[i] = fcode;
} else
cl_block(outs);
}
// Put out the final code.
output(ent, outs);
output(EOFCode, outs);
}
// ----------------------------------------------------------------------------
void encode(OutputStream os) throws IOException {
os.write(initCodeSize); // write "initial code size" byte
remaining = imgW * imgH; // reset navigation variables
curPixel = 0;
compress(initCodeSize + 1, os); // compress and write the pixel data
os.write(0); // write block terminator
}
// Flush the packet to disk, and reset the accumulator
void flush_char(OutputStream outs) throws IOException {
if (a_count > 0) {
outs.write(a_count);
outs.write(accum, 0, a_count);
a_count = 0;
}
}
final int MAXCODE(int n_bits) {
return (1 << n_bits) - 1;
}
// ----------------------------------------------------------------------------
// Return the next pixel from the image
// ----------------------------------------------------------------------------
private int nextPixel() {
if (remaining == 0)
return EOF;
--remaining;
byte pix = pixAry[curPixel++];
return pix & 0xff;
}
void output(int code, OutputStream outs) throws IOException {
cur_accum &= masks[cur_bits];
if (cur_bits > 0)
cur_accum |= (code << cur_bits);
else
cur_accum = code;
cur_bits += n_bits;
while (cur_bits >= 8) {
char_out((byte) (cur_accum & 0xff), outs);
cur_accum >>= 8;
cur_bits -= 8;
}
// If the next entry is going to be too big for the code size,
// then increase it, if possible.
if (free_ent > maxcode || clear_flg) {
if (clear_flg) {
maxcode = MAXCODE(n_bits = g_init_bits);
clear_flg = false;
} else {
++n_bits;
if (n_bits == maxbits)
maxcode = maxmaxcode;
else
maxcode = MAXCODE(n_bits);
}
}
if (code == EOFCode) {
// At EOF, write the rest of the buffer.
while (cur_bits > 0) {
char_out((byte) (cur_accum & 0xff), outs);
cur_accum >>= 8;
cur_bits -= 8;
}
flush_char(outs);
}
}
}
/*
* GifAnimation is a processing library to play gif animations and to
* extract frames from a gif file. It can also export animated GIF animations
* This file class is under a GPL license. The Decoder used to open the
* gif files was written by Kevin Weiner. please see the separate copyright
* notice in the header of the GifDecoder / GifEncoder class.
*
* by extrapixel 2007
* http://extrapixel.ch
*
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 3 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, see <http://www.gnu.org/licenses/>.
*/
package gifAnimation;
import java.awt.Color;
import java.awt.image.BufferedImage;
import processing.core.PApplet;
import processing.core.PConstants;
import processing.core.PImage;
public class GifMaker implements PConstants {
public final static int DISPOSE_NOTHING = 0;
public final static int DISPOSE_KEEP = 1;
public final static int DISPOSE_RESTORE_BACKGROUND = 2;
public final static int DISPOSE_REMOVE = 3;
private GifEncoder encoder;
private PApplet parent;
public GifMaker(PApplet parent, String filename) {
this.parent = parent;
parent.registerDispose(this);
encoder = initEncoder(filename);
}
public GifMaker(PApplet parent, String filename, int quality) {
this.parent = parent;
parent.registerDispose(this);
encoder = initEncoder(filename);
setQuality(quality);
}
public GifMaker(PApplet parent, String filename, int quality, int bgColor) {
this.parent = parent;
parent.registerDispose(this);
encoder = initEncoder(filename);
setQuality(quality);
setTransparent(bgColor);
}
/*
* finish stuff up when sketch is killed
*/
public void dispose() {
finish();
}
private GifEncoder initEncoder(String filename) {
GifEncoder returnEncoder = new GifEncoder();
returnEncoder.start(parent.savePath(filename));
return returnEncoder;
}
/*
* adds a delay to the last added frame int in milliseconds
*/
public void setDelay(int delay) {
encoder.setDelay(delay);
}
/*
* set the disposal mode for the last added frame
*
* from GIF specs: CODE MEANING 00 Nothing special 01 KEEP - retain the
* current image 02 RESTORE BACKGROUND - restore the background color 03
* REMOVE - remove the current image, and restore whatever image was beneath
* it.
*/
public void setDispose(int dispose) {
encoder.setDispose(dispose);
}
/**
* description taken from GifEncoder-class: Sets quality of color
* quantization (conversion of images to the maximum 256 colors allowed by
* the GIF specification). Lower values (minimum = 1) produce better colors,
* but slow processing significantly. 10 is the default, and produces good
* color mapping at reasonable speeds. Values greater than 20 do not yield
* significant improvements in speed.
*
* @param quality int greater than 0.
* @return
*/
public void setQuality(int quality) {
encoder.setQuality(quality);
}
/*
* sets the amount of times the animation should repeat
*
*/
public void setRepeat(int repeat) {
encoder.setRepeat(repeat);
}
/*
* sets the size of the GIF-file. if this method is not invoked, the size of
* the first added frame will be the image size.
*/
public void setSize(int width, int height) {
encoder.setSize(width, height);
}
/*
* Sets the transparent color. Every pixel with this color will be
* transparent in the output File
*/
public void setTransparent(int color) {
setTransparent((int) parent.red(color), (int) parent.green(color),
(int) parent.blue(color));
}
public void setTransparent(float red, float green, float blue) {
setTransparent((int) red, (int) green, (int) blue);
}
public void setTransparent(int red, int green, int blue) {
encoder.setTransparent(new Color(red, green, blue));
}
/*
* adds a frame to the current animation takes a PImage, or a pixel-array.
* if no parameter is passed, the currently displayed pixels in the sketch
* window is used.
*/
public void addFrame() {
parent.loadPixels();
addFrame(parent.pixels, parent.width, parent.height);
}
public void addFrame(PImage newImage) {
addFrame(newImage.pixels, newImage.width, newImage.height);
}
public void addFrame(int[] pixels, int width, int height) {
BufferedImage frame = new BufferedImage(width, height,
BufferedImage.TYPE_INT_ARGB);
frame.setRGB(0, 0, width, height, pixels, 0, width);
encoder.addFrame(frame);
}
/*
* finishes off the GIF-file and saves it to the given filename
* in the sketch directory. if the file already exists, it will
* be overridden!
*/
public boolean finish() {
return encoder.finish();
}
}
import processing.core.*;
//import processing.serial.*;
import jssc.SerialPort;
import jssc.SerialPortException;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
public class ImageProcessor extends Thread {
int maxBytes = 112;
byte[] bytes = new byte[maxBytes];
CircularArrayList<byte[]> outputBuffer;
PImage buff;
boolean running;
boolean addingFrame;
String serPort;
// CloseThread serCloser = new CloseThread();
PGraphics buffer;
Flipdot parent;
SerialPort port;
int xcount;
int ycount;
PImage[] r;
ByteArrayOutputStream outputStream;
ImageProcessor(String Port, Flipdot p){
parent = p;
initSer(Port);
buffer = parent.createGraphics(p.getXbound(),p.getYbound());
xcount = (int)Math.ceil(p.getXbound()/(p.getpartWidth() + 0.0)); //Number of panels wide from the total pixel width
ycount = (int)Math.ceil(p.getYbound()/(p.getpartHeight() + 0.0)); // Number of panels high from the total pixel height
r = new PImage[xcount*ycount];
outputBuffer = new CircularArrayList<byte[]>(1000); //Lets create a 100 frame output buffer
}
public void start() {
parent.println("Starting data steam!");
running = true;
try{
if(!port.isOpened())initSer(serPort);
super.start();
}
catch(java.lang.IllegalThreadStateException itse){
parent.println("cannot execute! ->" + itse);
}
}
public void run(){
if(outputBuffer.size()>100)System.out.println(outputBuffer.size());// Print if the buffer gets too big
while(running){
while(!addingFrame){
if(outputBuffer.size()>1){
try{
sendData(outputBuffer.get(0));
// parent.println("sending data");
outputBuffer.remove(0);
}catch(IllegalStateException e){
outputBuffer.clear();//Lets flush the buffer if we have any problems
parent.println("Trying to reinit serial");
quit();
start();
parent.println(e);
}
}
}
}
}
public void quit() {
parent.println("stopped sending data..");
closePort();
running = false;
interrupt();
}
void initSer(String _port){
parent.println("Opening port");
try{
// parent.println(port.);
port = new SerialPort(_port);
try{
port.openPort();
port.setParams(57600, 8, 1, 0);
}catch(SerialPortException e){
System.out.println(e);
}
serPort = _port;
System.out.println(port.toString());
System.out.print("Is Opened?:"); System.out.println(port.isOpened());
for (int i=0; i < maxBytes; i++) bytes[i] = parent.parseByte(0);
} catch (RuntimeException e){
e.printStackTrace();
}
}
void closePort(){
try{
port.closePort();
}catch(SerialPortException e){System.out.println(e);}
// initSer(serPort);
}
void bufferImg(PGraphics pg){
addingFrame = true;
buff = parent.createImage(parent.getXbound(), parent.getYbound(), parent.ARGB);
pg.loadPixels();
buff.loadPixels();
parent.arrayCopy(pg.pixels, buff.pixels);
buff.updatePixels();
r = splitImage(buff);
for(int i = 0; i < r.length; i++){
convertToByte(r[i],i);
try{
outputBuffer.add(outputStream.toByteArray());
}catch(Exception e){
outputBuffer.clear();
parent.print("Adding frame: ");parent.println(addingFrame);
parent.print("Running: ");parent.println(running);
parent.println("Trying to reinit serial");
quit();
start();
parent.println(e);
}
// sendData();
} finishFrame();
outputBuffer.add(outputStream.toByteArray()); //Lets add the a byte array of the output stream to our buffer. //Does this need to be called twice, or does it get captured when the loop runs?
addingFrame = false;
// sendData();
}
PImage[] splitImage(PImage originalImg){
PImage[] output = new PImage[xcount*ycount];
int index = 0;
for (int ax = 0; ax < xcount; ax ++) { // Shifting panel width
for (int ay = 0; ay < ycount; ay ++) { // Shifting panel height
//Create image at coordinate (ax, ay) from the top left of the original image
output[index] = parent.createImage(parent.getpartWidth(), parent.getpartHeight(), parent.ALPHA);
output[index].loadPixels();
originalImg.loadPixels();
//Loop to copy pixels for each chunk
for (int px = 0; px < parent.getpartWidth(); px ++){
for (int py = 0; py < parent.getpartHeight(); py ++ ){
int newLoc = px + py * parent.getpartWidth(); // Create a 2d location of the array
int oldLoc = (ax * parent.getpartHeight() + px) + ((ay * parent.getpartHeight()+py)*parent.getXbound()) ;
output[index].pixels[newLoc] = originalImg.pixels[oldLoc];
}
}
index++;
}
}
return output;
}
PGraphics drawSplit(){
buffer = parent.createGraphics(parent.getXbound(),parent.getYbound());
buffer.beginDraw();
int index = 0;
for (int dy = 0; dy < ycount; dy++) {
for (int dx = 0; dx < xcount; dx++) {
r[index].loadPixels();
// buffer.image(r[index], dx * partWidth, dy * partHeight, partWidth, partHeight);
buffer.set( dx * parent.getpartWidth(), dy * parent.getpartHeight(), r[index]);
index ++;
}
}
buffer.endDraw();
// buffer.loadPixels();
return buffer;
}
void convertToByte(PImage frame, int address){
int index = 0;
StringBuilder byteBuff = new StringBuilder();
String[] Str = new String[2048]; //String for Stirngbuffer debugging
byte[] data = new byte[112];
outputStream = new ByteArrayOutputStream(); //Flush the outputStream
outputStream.write(0x80); //Header ("0x80 ");
outputStream.write(0x84); //Command Byte ("0x84");
outputStream.write(address); //Address (hex(address,2));
for (int py = 0; py < parent.getpartHeight(); py ++ ){
for (int px = 0; px < parent.getpartWidth(); px ++){
int newLoc = px + py * parent.partWidth; // Create a 2d location of the array
//Convert the row of pixels into a string for byte conversion
//There are 7 bits before the byte resets
//We check the last bit, then append another byte onto the end for downstream processing.
//println((frame.pixels[newLoc]));
if (byteBuff.length() == 7)
//When the array is at it's 7th bit, append a 0 to the end and reverse the string direction
//Then convert the string from binary to an int and then into a byte
{
byteBuff.append("0");
byteBuff.reverse();
data[index] = parent.parseByte(parent.unbinary(byteBuff.toString()));
byteBuff.delete(0,byteBuff.length());
//print(hex(data[index])); //print the raw hex string as it's being created
outputStream.write(data[index]); //We append the data array to the output stream
index++;
//println("pop!");
} else {
// parent.println(frame.pixels[newLoc]);
{ if (frame.pixels[newLoc] != -1) //Here we can test the value of the pixel, to determine if it's black or white
{
byteBuff.append("1");
} else {
byteBuff.append("0");
}
}
}
}
}
//println(" hex");
outputStream.write(0x8F);
//println();
// println(" 0x84");
}
void sendData(byte[] byteArray) {
//Prepare the outputbytestream so it's ready to be sent
// =outputStream.toByteArray(); //Convert the outputbytestream to a byte array to be sent down the serial port.
try{
port.writeBytes(byteArray);
}catch(SerialPortException e){
System.out.println(e);
}
}
void finishFrame(){
outputStream = new ByteArrayOutputStream();//Flush the outputStream
//Refresh the entire panel
outputStream.write(0x80);
outputStream.write(0x82);
outputStream.write(0x8F);
}
}
import gifAnimation.Gif;
import processing.core.*;
public class Images extends Animation{
PImage[] image;
Gif animation;
Images(Flipdot p, String file){
animation = new Gif(this, file);
animation.loop(); //Set the animation to loop over and over
// animation
}
PGraphics drawAnimation(PGraphics pg) {
pg.image(animation,0,0);
return pg;
}
void updateAnimation(){
animation.run();
}
void resetAnimation(){
animation.play();
}
void loadAnimation(){
if(animation.getNumFrames()>1){
animation.jump(animation.getNumFrames()-1);
} else {
animation.jump(0);
}
}
void pauseAnimation(){
animation.pause();
}
}
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. 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
them 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 prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. 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.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey 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;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If 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 convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU 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 that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
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.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
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.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
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
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
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 3 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, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program 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, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU 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 Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
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 that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU 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 as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
PKfn�?javadoc/PKfn�?*�"NXjavadoc/allclasses-frame.html�T]k�0}�?�
Ŗ�tdv�_i�;8*�OC���ŵ;KM���Ir2R�FX^l���sν�ʹ����#��Y�?�@��a�qH���ʴl mx%���5�Q���xa��n���l�&9^���
�m˙Y��߾q. #e�9]1�P{Ū�����5����p��{��e[��.�6?������6��!!+``�=}�G��3ri G�˶�W�E���`?��������=2E�s�`�B��
Śv� ��L�/�:�IɅW�Ԕs�%��A&�f��J*$q��$J������I�~�<J�E\�j�׌ �
�6
�L�hrajTIʰ��{>eD�P/�,��:Ȓ,w�v] �L���/�K[�K���E��>�)�eլ&�:���`�`����^�x~���a$U,�8$Sٖ���f6��[����7�4[��|���0 �Ы;޾�{� �`]E딊j�byM�Z0S�Q�Z�R(�P5�$J�{Xq��_eq�����D�m'�SI��BmXs���?](��P��R�:��ߢN<� ����I� ����s
>p�"( ��\�~,�9�ޑ�s Wj�&O��w�7PKfn�?#$ B�javadoc/allclasses-noframe.html�T]o�0}���pkiҦ
I�� ��J�F "��>M.x ��I�_?�$[*�/`_�{ι�\��(��*�Y���
�$d`���G$.L��Ӗע�Z�`g�V�������Oͮ�Ť�[q�\��83+Q!��;��02�_�[fj�X�;���9\���T�
n���hՕ���n*��/��s��t-l$$b%Ll�����̶�rIέ�̲`b�6 *˘�<��c�sQص��� � A9�\$ؓж�C��=g½"s㛶N��r�7 � �q���Q&󗱋**$q�g$Έ��Þ �4�~@��".�Ʒ� �
6J�,�x~�0uTIJ�Z�>eD�P/�<���2�Ӽp�~[ s����sѹ-ݥ�z�yO�قѪno�x'e:8����Q1�?Hc�"����`�Dd�"۲> X_-�~q?w�~F���_y�� �`����ʾ��k�״ɨ�w,�����%3�!�hd-�r u *y�f8����5�U׋�
6�*ޱv,�Ž'Mk.�|�$��u�p�T'�(���=�1[�?�\�� =�<|�r�"�#CP�r��jt��� PKfn�?f�P� yjavadoc/constant-values.html�]�o�@��������~��t�:C����N�I�Z�� *�Uc��}���THO�%��8���w�p����ލE��FC4�t�1�F��7�&�{�&�4W�=�7[� Qbs�����z����u�=mhJ��?����xF}�ϙ��7o�j���F�����V�p?ze؆����|E� }����i�[RoN[O �F�PE0f��"��|�}�6ѫ����~�l�V�eie$j�k��y�ax�� ۯi_��f$�a|��~�fg��~g��jtm� EH�����>� z�[+Ã�BԠč�3�}h��%M���Q��V��2��p �F�8D��Z�wf>��2B@3�cP_{���7 �T\�O��XC>H�)�f���q��ʞaݡ�iϝ�f�q����n�@�3���t\�~��:T3�ȋ��L��3\P{�wWƽ��A5��dž����uP��'|8?�J�����@s-�I����,6����;�}��CY�0�33�ؖ��!��E����Y'�!U� �=��c�ڛ.�D{C��i�'�;��%s�O�w6��J����'sYKUD!*�#(7O��˴?yLt��u�"�ʊ �,M��a�f���8�9AH�����1�C>��NF#Ny�a��*��ג:����"�z=8ŐS�#�]�� �b��N���E������L�(ↃWR��6X�ބyh7�#��-)��Gϛ5����4���\w��q�!z��g�`aO�hL9ltAH\1���}�-_@~ӕ���y�����x�_i �չ0� �X�|�0�����e3B27��1��D�2=?!>�D���-L�� �f�થ:3�e <q}��  �WA�')�8����陟��H���>:G�Q��O�rZ��Hu�<U��=;V�7$�H�[-� 7�Gml�:���,�j������SB�p����*��=ea�'�y6IF??�/���7�[sq� ���>��!|�G�}�^ R���]�W�����W �, �dg��ރ`����50~\1�����F����j�4�d�����]
DI�"d��(�8�E���T��*^�0� Ф*+���1$�sF ҆�*u2<
�ƣ$��cs���FT�R2⽿�ٟ��_�)��/�4��2�>7�Sޱ�я܆e,�l{�7"R���65Bz ����"�6%PW'�"����P#وD5\S�$/��x��u&F�L�m=���#A�8�,v�Y��7�����N��d�6k3��~�I����p��˜W��G� W$i��a#�|�?oFP)/���Q
C��>fō4S�J%w��S�P�o�>�`�]˪<䔁J'�1�$���VU$A>���|�.@1���_x��s�;��c������4��&��i�e��mo1W���ӹ�Ɩ3,m���j��+��-(�.ԯ�`*�� ��U{Ф�Z;SP�ރf5����/A��bwo�r�Q��T��gxV�kh�?��5D���\ԯ�5�)d7����ڮ���m�:�/�o���۽
�%�S�"��TB���'2�N�p �+!�Fj����R���*�d ��Tb�f 4u�O �i�I:?����:2q��O�
�|J��8I�'�idPG& N���<(�LQQde<�A �ȩ��)���D���t&���r��R��aR{G��t.?�{�Q����pEN%Y���_ƽQR����A)�ʃ�P������`+e[�h���^���r�[Yz+�z��w��B^����j��[v3�c����v�{M �i�I:?�OJ�����Z � �0U�٬��RP�h �F��4�%ޒ Ј
]<x�T[e��R�$'�s��/�(��*��e8N��]b�J���]]<��d�t���� 9�:z9���%�Gcznie1'���E�M�7"5W��I��5g�&����@N2.��y9(�'Uw[3�Ifwxd��p)�8N�J�C8�Uڬ3Ĝ���2ǣ��J����׫��S�:�-pW��Q)D�EzB� Щl��īx�H��Vc�a�����T "m5f��j�~U��`�а�P�F���Y��&p�yl2�9�yt��8?Ԣ�P@�������E/ ���t\���� J&)�n��wg~�`�b~2Ec�wG�& ,*�&S xweV��bV2Ea�wg&$ 0:&$S$��3I��1���ޙiH���i���ݙ�$�h��LQAޝ�G�����1�5��O_�|�K�7)Q�.Ub8���S����"��=�L�
���t���uK�O����03���XW�*�Y^�?��k��W���;Ÿ���<F'�e�g�%�v|���Ɯ)ϏlѨ*j0㪖y5Z�*y.��p��K:�s��T�N";�rC���M�W�e�tU)�*���Y "d�L�B��W�Zq����X
xAï䍵K�ۤ�y�?Q��U�L�1Nw��+ԧ4�7Դ�XTF��P�6���(�4ieY��4�sӯRK�����j���E�˜�JWW�����R������C?3�@3Dž5/��S��חǢ�Ot��Rm�S�������Yv�� #�N�2/@+��%�/p}Jtq��V���{�D�g�IJ�˅�;�a geW�/�?��eJ�k�b"���wv6�f��0[W�4y-���N�w���F�ҽ@��z��?\2�z������m�]��v�F��m��h���d���*m���˴����A{�2�?PKfn�?��Dr��javadoc/deprecated-list.html�Xm��@�n����ŔR�-w�L�� �����~1����b���wv��x��� %i�ev��ݙ'4�n�׷���l�7�n ��������)'�V��Y����$�U�r�1c�cU],�E��fW��c6���q��2dCrz�^ぢ8t�����>�*��a�pF����>�`��px9��!h���ڋ#H�@��P�@�?ӎ�*���'��q�
�����ҳ|8F�~�Es��҄ф)���eO'�~a� �� �)����R@���maäӌ��� g�r�4�=K'C�!�r�r|�p<�VSj��v�y �e�Nrv�|L)#�����9��g�W%*b��D�.� Z^��C���<xy�ES�EF�$��(� ?b1=<����{�O4��8 .RgtTA1��D���h���lF�@�Aю��-�i�a+�Y� o0ԏ@6�EN�o��}㡓�y|����tx��l��;h��\��t�G<�i�������]�xb]q���ox>�m��>�כ�ᕳš)�1 �A���Srʕ��j�bs柢��"�����8J>�\�Mۂ���R%p�5�N�j�˶�iv�3��A�ha_�{=�{�y:=�6�q)G��D顅O��*lc0Љ̛A֢q��{�ae9�����[0o��n��o�@�`��3G'!M�LxS��n)c�����.|��P��'�]��dd�~�щ6��u m���4O�rICm��\P��8�̧'x����t��V�4�L����(��i6��Ba����蝢����H<:G0r�-&���z�h����Q�X�mm�8t��]�3�1��
f�]PtP� T�=Tq�e˔餼�Yt5f�W<�Bd��i��U�Y..����ʹ��f�te�}��H��| ��=�l�#���/|�&����^���.O�c���ڃ�"Y(*B��a���O�0��w���s����<g�o4:�%Q�Q�Z/K�"�����d�!�P4W�t�y�2#��%'KlG���/U�*qKI��kc����oߛ��Y���-*`9�X�%�h�,�r�թ�{-���J�rN]�����z�1LK�.h�t����g��lі���n��3�r�2�Nv�.R���/҇=���R�g0w����О��̞�܉�, � �Y�0۬`��H��Oa����;PKfn�?�H�ؚ
O%javadoc/help-doc.html�is�6�{g�?�LI�مt8�(8�n�t�ற\Ɇ�N�{�{�m���ׇ΄̀%=���ǭA�{?l��džw�^�ɜ���_6]������
��t�2���sI�q��z]^_������]$�� 7�R��4�:W�>�~\*��z��T�1b��v�e�ٵ��≘�Ɇ��W|*}v2I�p�*���?]|}�d���%|vQa��7_V�T���������svq^�0C����X�����4e��()y�X8�7����_b�-�\i���N�b��z�6<ԇ]v#���l.�ѯ߶kΔ'��9�{�Ws��R�tQq h������=Vst� �^�8 �oy�v�ͨ�ن(�,��1N[|��;�X���5� Nd�F>����h*�^������G����'���P�A� %fe�f'�]tB��k�J��SV��R��^���J���dzr��?^}���p���gwk�Ct���޳�us��j�z�reJ>��Do�N7#�g���}�ث�<6�0o0C�k�G٪u��~_M��)��s�Hp��� �Z��!�K[��J=�y������ �l�Wo�ڬ1�� ˹��-��T��?�i�z�z���_Ô���&� x|w{[��9�G��GC�~���'m�t:��W�kN��\5EV��%�i(�(��E>����{l^��0���u���"gr�;;�L�̣'�V�Ykߍ���N�K�6e�_�᷋�a^�����l�� I�Ϣ���BP��OG�5C��!�_����_!��U��Zb]J��Q��Ŀ�͌�������@'�ᥕo�O8��X���]�\yW]�+ u��0C#����#4��b.�PtMq)��S�d�,dU0_$��F�{J8�W��-킟|�E�������L����!-�.0-f���;����?xV$�h��L���V�zF#H�\���"4�:#Ȟc��:��.9Ƨ���qLOVv�0Y�o0;1��V�y}΋�Z�V���u�CS�ХH�_�H'��aȚf1���)��?��u�<���wi���k�}�-*�~=&|=@��:�vz���6�н��M�o�y�@3�jZV����@�y����|gR��0�MC0Tr�Xќu�θ/NsC��,�⤡-UJ�XFS�M$K������ ��M���b@2�a(׺\��f�G�j�7h~�������~��_0[M� N�%�P�̃'139V43օ�hʂL}�f�P[����/� Z�GVXOÜ=�*�M��wE��U7G�N���Oq�:>��ti~�E��0#����z��h �}�6���Q�Q�u3�O���?+D?c��Pzh��b'rR-�N�#�E��]�TRf�S�и��i�1X�6�_`p 憘�S�~@�8�m��I�A��WK����!S~�e�|!�>B�G���V��6N'~n
��"� �3�����8��$��%�bfE����RZ� Tߨ۰>6��|'�t{� ��;��H�=}+���-�A�4�������4�jn��p�0����o�> �\�|n�mI1�(")`<������ODi'�p\��8iG�S��
�O��Xp�-h�Q_�S��1�'h��"�s$��J�1XV3�����Wy�m�����q7t�G��c�|$�(A!G6M�^��K�#�3�f�#<mP |۸� bs��К��u�� S�:�������*(�(Rx!��B!�1���ַ"��SL��u�'�c�ڤ[Ԥ��j��ːi� ��8S��!3��Y� 7x*��T���JD�#�-Q��y^���ϐӜKX��t
��<�v�t�1L��|�T�D�����l �w�0�G_����:��L�bs�9��U6���5�E�R��P�3 m��`&�8 �C�%w7���úxb��Mdž�_lN�Ȕ��@��_t��aI�R慆v�+�0Et [�9�W�� :�v�b�(��� (Df�'X`�D{�
���k [��}���G��`�3�uեi���!� �e��&=��H�h_T+�&K��I��;hA�
�|C��Pׁ���9Z���y��gЅ#� �On���Sq�-�1|�`cK�z�Q6���m�W�4R`,��ֈ`M�) ��t�$c�A's:oA�i*0��%��� �/r� z�i�"��)�2٭�vy�l�7�l\��a���[Y�G��l:/yZ��Oc,���V�E[mQd C�� ���E�/r�·J��>��[�=���90����4K��QE�=�L���D���D��5u�P�@�����\׋`JM��˙<��:�<kWP��U��P�_�&��K�c�<�4ԑ�����K� ј��l�Hj^3���bY��I����e[� �Y�,gB�*V��9�1b$q�D(c�Љ!d!Uf��Q&f�Hglc�"�E�9�l�=A.���a�����X��� ��N֊�4`�l�o�:ye�]��0��V� �{�`��VbC��v���̫��V�n�
�� Ό��38sѾ�NK�� � .����D�����<�!,̇�N��"h�e�$ң$2:�:�j <op�=v;4�I"�ϻ 2���;"#��5�?�Fx�&�7��rM�rM�rM�rM�����
^��\��7E�6��
ѳ���'PKfn�?javadoc/index-files/PKfn�?��_�q� javadoc/index-files/index-1.html�Ym��@�n�kT.ږ��RL��@KK��_.�v9���=������;�����3�������Ѻa�]�vdA m��؃.H��5��j"S���(�<"Q��Z�Ҕ��SU],ʢ��٩�<uJ���j��9VBJ���Z7d�����e��٬��2��C���'8����ޟ�a@��<�CД�J��������hh�5�>Оju8�����zuM�eh!G<���M�"��3,A Z�D�'�i?�`�g9&�+ԓs�h�l��� �'ڣ�]�
�Z��N�ud9H�Yk� M���y �e�.��s��)�D���B���=��K����0�Tr̺�)�]o0B@�9��oy�E3�D&�I� Q� ���_�r��'�@-N��(� O����Njw�\��ጮ�N�s|�td�������B���:?%RxJz&$�^���yM�e.u�ջ��`M��o�s�um�ӥ�4b�M�8�C�\7�_����Ѥ����!p{��]���+�"N�L���t&��$ n�)��f�!��k�P=��@�S�{<���TGFǶ��z�Em�Kp40Q_��z��˶G�i�C�%��ѥm.<~5�[]��O���r���K7-��zt
��u���?��8֤jK�'Q��,],M��y�f}�fs�&%
�=8tt)� �% ^m���1�H�ER�X��y�3?��rJ~~v�g����=�/Nң[]�H�=CZj��������|���l�gh��׍�<j���W9�-
�\��q6��B&�W�)���u���2�cA���\����#�z��&��9�%�P�d�n���߽(S�d�i��>���tUd�or�f��R��,:���[<��g�f�e �(�\L���6�����Ҕ���Kr��Av�Y����<�QK���Jnp�p�� *�����/q��\3��\��D�������bz�`Y���y4��Kb;��dDž�Ot��ez�Mj� �u:��l_苌z(Njw�m��8`y �r�N2� ���c�
��w����U��ˎ��A��U��]\�͐_��G:�o�a9��%bu��*���m�U���*�Y��*�~�U������ث�a�U��|Qj�V����J�tҨ-��U���ƕh�'T���:h�[�c���]��oP���F�4m���[��1�"?��8�n�ah��v����j��RVR�����^& �_b2MC��; ����-o�| ̇I�X�]L�m�!`�₀�'|p�� ?�>���j����V��qr�e��^�r���]�`��v�"lؗ-�^h/��/[�e˾lٗ-��/[ġ�Q��
��žr�*=��<��_^�PKfn�?2����!javadoc/index-files/index-10.html�Y{s�@��3�+�ڎC�oC�����i�:�\�B��8~w�!M���q2��$���n����sKw4�nd�Y&�^�̡�(I�mM�t�s�A�)J�8 �0��H� [a��g��X,�v#I�$�J��<z EI���8 ���-Q��b�aQ�2�}�^�p�c��9������q���E�An<j4OZ�!�ᘨ�8�� r��C�܄# �o��5��j�2p+��T�E��"�+���9�s}�a.)B�?��s�~��\y���F �i�K�c�HeSi�V-C�~N�6R�C�[bK��9�_�k��Y�%���\��B�e \����T)5@�M�6Cz�;!ȉ;�4nY�����L.�N,�x�,P�G��p����'��A�>UiLS<i��Egrp/�D2N�\+yz�����(�[<3?%�k�y�8�/9�)"%<�����Ѩq�4��S�K+iF�מ���ޑ明��iHÛ�Q⏉���s6Q��+�I)��"p���7=�-�"O������L��A(ܑT�R����c8W�p�#�@��3�E<
㏙PvGj�4�縺A|i
p<��@�f���4G���#��eo�jDf��k�R�w���e�:I5�e+�*J� ���dS�<E��y�O5E�P���$L�<MK���F��F��F��ي���o
��-u�����Q���!�i�鞒]����]�ď>Y��铥.���.�G��ݻ�i6{NV��+����E~�q3��� �+�M�8��x!�)�7�)J� �
�1��8�ǂ�Y~:��ϐꓧ�����|�a��l�����ӓ2��L$;�M0 �׸.�]Db����|[)�l�M��K\��8�nǰX/��\ ��E�oߛ��JW��{�/�-�/p�K�١$>e��5�o�42\�f��]e��ko��e���E��1��� �b�� �d9<�� �݉��K�g�dp�_� c;�㑮�:��~��~�*
~yX���(��z�GQ@7?��q2I�s\M�E�q��w�]��I"g��������<���:1��}6��]ð���Fu�`&�� ��YZ[ث��Ձ
P��Q>*�~����'8�����7�kբe��Z� Ҩ-��֢e��Z���E�@st஦ˉur�B��(��Z<����u7�6NC?%)?�n[�����+�ܕ�\�"��y9�}0�I��C[@�l\gdy�e}Hg�M�VjE��z��� y y�z)l q�s�R��ˉ��wɿ��R�ꦧ3�Ki{���*ϘJޢ�y�7U�6��=�����+�W ��I77�+�����c���UWN�<O�oV`��]c�>��,��~-�]�eWfٕYve�]��W��Uf�'�Z��*�l^;v�����B���B�Ҩ�9�;PKfn�?8�Zd �!javadoc/index-files/index-11.html�Y{s�@�?3�[:m��b�L�
&�\���8�g�%`��t��{PcHc_3}H&�������kY�M����-8B=��-��IVՓ���C��ʂ$�H�&A���#�4!dz����\��+iv�"O�����i��I�[;�۲��y?8Ų��L+�� ���'8 ����`���;<��h�c�6�?ك4�*b��h�����=���P�A��i ��,d�Q�ϣ�.�ӄ����b�%EK��D���!�Y��~�:�S�:�"ۢ7��MF�}���J�ѳti���:�r�.1?d�.�5I��]�x� �������,� a�Kp�Y]Ru)�p�Y��>{\���^���P:�
�<̢)a"��$d�(�s������|k��a7NÀ�(� ���Qtǻ��\��pF�Z'�9������oqM���O��t~�n�O)"%=�_n�|aQβ�:��^]i�&���o�u�vm�ӥ�$b�M�8 F��J�9�#��+f�^^�#�C�v�}:T�[�W��<)G0 f� �t*5�7T���r'�M�A(H��9���i�#Gɇ\*�#�e[�r=Ӣ\j�tMt�KZ�v��˶�iv�C�H��Ѧm.��z��V�Ą��I��r��2Jw,zu:T�m�.9��dmǚT�t0���d�|A���ܬ�����&u �{��R�:�$x]���R���y6��ru���P������ggAv��5Lyt����C��F�V�/�4���9�{�0�>�+�����׎�<f~����+�Mg8�Ex.� �Mb�2�k���O3�cA���l⎹��=Nu�U픇g�/���L���;3�e��Lw�MpDeo���]D�\ܙb[)�l�N��% �{�w��f���^�kѹP��E�o�W��K*~�ݗ�:��� ��P���.�g��B���%���֗}� �ܷ���S~_1n��}!�G�</�8@O� ;�4a[1w��� �/=���Mj��������;��Vש�E�8���Q���_e�q�v?��I:΂3�#��-�ҽ�{<[��>T�B�d � 3k �<�� cyd��\ߕd�r�+��2��&�ǰp�ࣴ��U�`�
|X�f��*�qv��'xX>-�n�_r��ݫD���h�~%ZFɫD�0�h'T���:葷:]��rF�8�3��t�dM�柨y%��q�C����i�br�I�8��e+V���T�I%�{|�/���b ���N�I:�(�n��R���"��ݙ�AjV�(��i6]�L�S�d˼^��F��ɰ�0`bK�Y �q�h �&�gwM'%���fw̙��<�`{��] Z��[&�S��śݕ�Ȅ�܉�����&y�ǥl\��Oh�f�1��f��c-�b�3��%�-�� ?ߵ ��sz������`�h���TӾZ4�R2h����(�V�`���mV7�w�@p�Vn|��ѭm�`[=�V�Ճm���_����8:�
���ռc[@�
l��_��4*~&�
PKfn�?�G�� � !javadoc/index-files/index-12.html�Z{s�@��3�+�ڎ!�m�Ci�2�j�:�\�B�K���ݽ�<���3��$�����{�?�L���u-8A�� ��IVճ�������JM��q�0��HU-GiH�蹪N�Sez�$饊<uH���j�$V�/��ޒeO��%�e�f��o�0s9��>�}����Oػ�Q4�R;�?ه$�3:���5��?Ҟk58����k��J�B0�2�4'��Lb�c"�/#,A Z�D�g�a��`�&�)j�O9t�F�E_�r;��ϴG-�
�ѱt��:i�u�� ]b8d�.�5I ���k�,t)#_"� 1&0���,��ijZ��(j9H�f����|�^�kwJ'���- �pDؐ�8X�`��d�B��ݝ��;@�p{Q�l�2L�@ Ew�w/�d:Ni�u���}�u��}`��3�S�?��i|�^���=%�#���|c^`�K�|W���V�xm��;h7]��ti: �{�8J�>m�z�u�q�|5��=dx� �KC��ax�4_'Ecr��$IGl&>T >$����c8��BN�G����>�x�3�PGFö��z�E��$8k��D��Z�]3�mw �l;ǴK�{]�I�|p��1�w�$��?M���(G��^�mѧբS�F��K�?i�iG�&U3=�iF�d:�| �%��%�K0(P0����K��Z��Mަv�1���J:4���!�u�ٙ��������0�Ѣ{pq����4��B�PmP�l �{7��F/��6ֵ����e���2q��?b`ε���Oe�b��OQ���C����(���(��:p̙�πjѧ��'�P��0�m󓏙��A�h$ӓv�б7PW�)��M.�Lq�{6 /�dq˂�������p-�5S�'�;����U���J��Kr�� �=��dM���&��7`[Y�Y�N���u��hQ����[�#�Ms�/�AH��P� ��᧗�� �(��Z=�{2�kx�4��g�1w`��{��u:�,�]�Ӕ�(���ͳ��(`���8��.C`D4���wo�g �؇��K蚌����R��~���1�+s����$�c��e��M.�0l�(- 빰Q%,u�J�0�U�G�Ъ>΅�*�\x\%|� �U�g��U�P���N���[)-�ԭ�^�*���z���O�RZ8�LHO���r�=_̨O�T�/�EӴ�':Z�mz8 ��λ�5�6zwn�����ڳ=.��N��4��O�/" a |��U���,��:T��IG�|ٛf~��|� �����w\�����wM��/���;��� �z�ֹ�֠�L!�`�g�(4m��
e��P@+Q@����G��X&�ͪ?���hL�V6�^�@?�9���fL�I=BK��ඤQ��2X� ��hL��� {�8]3�%�
¿����w+�%æ�Z`[)�5\��N�����v��\�Wcc7��&8l+m7�`n����m+m�J۶Ҷ���r l�*m��\*����ռc[l��ml����e��K�wPKfn�?��y��N(!javadoc/index-files/index-13.html�Zmo�0���8��N���x-�Pڤ��6U^� �u�@���kA����N�A7^b��:���<w�����6�7=Z~ǁދ��n�����[�%w�r�Di��8"���]�1cӚ���sm���ɱ�{�M»z�)Նl�^�rpMU�t�#�TU�3�U�ڦ���)�hB��gxOfd�tt�C�h����=�#x�*@���ڽJ�R���vy�V.C�\���c�&p�*�x� �G�FL�?O��d(�~b�c�I�Rf���C�o�OmGC� k��*�kvlC��6ܮow}C�8�JU�V�괻���0��}i:��)�͟A��-�n���K%M����Y�������N��[:H�)�*��h�� �s?`!-�]�����+A)���hㄎ��StG�[A�bw4A_,9����0@��o�]S���4��Ʉ��@2K)���׫W�r�I�ܤ]wY�W�#�Y����?m����|p��Q�!>�z,��D�,���oz>�M����e��ri'�#2;"�;O�C� �P��r=�L�E�H���>8&��a}H���o��g�ȥ����� �R.�����gZV����s�g6�Y(�_t:���Pd@z�na�q��Q]Z麍W��]8f�o(]2���Að�3}7
��%�|A��0�0�7` P0��Ӯ� h��������u���H:0���}��)|�9%=�LH�Y�sy4q�w�ĩ^AI�'��u��ݛ�Q:}�3�:�S�k�$M�0�k�)�%��6��dй�Jw����_k�0C:M�/ j�l8֢�Y@5�*��⒍O�눱E����j��i8U1��b�����.��.&�,Y2��s6 ��l}ʂ�g����V�h�u���6��6�jN��~�yI�� �.؋E �RA]Nb�~ ����y. ����m�~?���i��u���ŸO$�Q��yh_p� �1�-O�^���ϑ���G�t]�~O?�;������\n �_���<A�Q��*{���h�F�(!�t��А�ޭ=�[��o����);.��a66�o��c�dn.�͆ݵ���͆rӇ`SxiC��|�H�� E�<�"�Lh �g�f��A&|Z$|� �E�G��Y��RΤ�Bin#�P��W(ͭ�Js3� ����Bin�WR��V���n}GuЪry�0K;��r��?����i�����m��ӈ dp_O(�?3������퉀/�_L�^�P6��Xb�G;���ͮh��� �������Ca�%��q¾˹�
[D�9�=>�����#H���?Ag��E!�1�!9
���.������� [�S�%At�t�Z�E�@*�-�Od2 i �MpM��i��zG|��Bk�6c��(���~��M3���=aq�� nVj��ZM���\�VC���b��{gB̜v.������-P.籋�S�2Ml�.2WH?��7����_�3/��pnV{�n�aŸ �k��r.)�f$<���3��e`1T��;K/Z�/vm�+ڹ�����K��� ~гg���4~ȒSݖ�i� )n0)b@v�o�8挞�_�^X�g�B2��Vh��Y��w��u�|��Pg���-���E�-� d���tLE��őn9�g[['[u���N���{g[G1c�d��-��o�pI��\?<��!��C��C��C��C��C�s�>�[�\r��8�Zsm�;.Ϲ��s.=��De��� PKfn�?X;���0!javadoc/index-files/index-14.html�[��@�o����R�4 �}D HP���x���&��&�̂���3�A�*��2�=�__� ��/郖�nh�s�ׅ�f��IV�7�Z��ۺ �V�5�c'L|�G���ї@S:y����L��R��D�MuLO��jE Q<�IO.^x|I��d6tN�,�k6+�4zJ�g$$�C��_��3u�ȅ��xPS�*գ����Yt�B��[��֪�gߨ�zX�B�Z��X�g� `:��ә?դVRR��2!��J�(�L�ڏ�;qB���n����v���Œ;�G>㈚ eK�=C�<�⤭A�6�&1=�Z]��$����_�itA��% ɘ*3���$<7��&)��3)��VEN� �SZ-�3��"�t
f�č� e,���e��z���i@*�/^�z���A%�\��(㘌�A�*��D��H���h|F�]M�v�l�81�OA?���/�GERKI�緋�1� e�I��p�.YD��́���Z���Ԥ��g�� r<�\�;����hҲXvôa�{0DW�n6̌��I��Й;��&�6 #?V�%����?�!������-���D���F�k@s`�b�J���5�V�^��1��aC�;�g8$��a��ל�z��5�w�$���:���k��J� |��8E�aY��w�M'n� �I�H�F~��8��!��yI�꒚���@E���<�k�KB�% ^�׸nƣo�<��Ǎ<;>$��N�#�)���QX#�6�`q�6�z )�'C!�Xm"N���^ ���#�l}�֮�
�$��%^%� ,�6��xꓙLcB�����tA�Lb�mA�n��>�E�6�ʕ2���kf<|m^�ز�vʘ+�6x�������<��7]��,gc�dL�) �� �8��<6z\
?��� %j�|�"�gP��{�Kr����=ߔ��-]$�i���aۆ�p�����e��[�(�ى��)���K�u�
-F>��B�9w'>!؂�R��k�X��L3�5�6M���g��;��}��n5 ��w�m����rm�.�~$��h;�$wA#�%��z׮�n�{SU܄�t ���,5�����ȷ�卟Ϸ�l}}��ț ��S��KK�zJl���h�o�D�����QF���e�{)�Y�~J���e�Z5��J������H�Rjf%�����*�fv�K�����ss1\���bG��y�ћOҔ�z���OVz�ľ�����k�F�+��rBB��c��M���<�K���/�� =BǑ���s�:� ϛ].��aғR�4=tɡ\/��w��0�b��,v��żc���QLW����)�l�-`2��c3�XH��߰{�('rB��]�α�\����3m�ƊV�i���Y#7�U�E������K�`�R�m��������RRE�Vt>�H�~ۥQ�i����d�;9hc� Μ�w�"/�u��3J��'�Ec��� 9��Y�o�Hζ��Y"�`n��[m��w�8�j�Pܫ�����+��頭+d{Ut�</��>�d�v��+Y�u>��t�\B( ��#��ᛇb��M� ������%�;'���k�kw�8�n�����%��G�u�b��O��m�f�8��\ a���� @k��Aucϯ $��m���2�? q�=����y�NzN�zǕ����.
������^,Z��gn�
`��b;�f��8
z�G�\�����s�
�+4����!7������2�=su��S�D�n�-��Ky��Mtب�؜�0Y�FM���`�v�>J��`���7Ǿ��Mw������e��2m�������A��ja����A�na���͎m��� ��]�:(|�_f�.�L�;����?�^T����W���i���2́mz�oX?:-sQ�nw`F���gf��c3TlT������c3��fΏ��}���:6#�Υ�3���վ�����sr�E;���(����PKfn�?c���%�"!javadoc/index-files/index-15.html�Z{s�@��3�'�ڎC�oC�&J��������Ҡ"�D��{ȓ4�5�1q&��w���{,k�wtKC6-�1��mm �$��h��#��*U�ċ� �� % ��Y6z!I�ɤ29��ɕ�i�]���0�S\�g}���~GM<��+,��Mge�P�s��'^���� ����~샣˛ ���R�՞�8�DD�>��@>y�X~!W�Y=����VA�*ˀk�@�j��?�cE��(�Q&�/#,��!ß3f�K��$ř�EM�3����Q&=R�U�0�T����I5�D�D�@��X�.j��7��P�4��t�q&���?M�r`S*i&Ta�J$]ڝO�jN�F #t�)��R? F�D> �Q?�� �������@>����Q��0��J@)Z��A*��pBb�d� ~p ��1�c���K��*$N7��!#�CrO /��Ão�k�X�RӚ=Ks ڤ+�?6,�4�4˰E� ��8
c�O��^�@�6._MJ�.R�&@�MB���:���"��7���^��S: ���D��M?#qN�]�Hp�1��A�1��Hm4,G��KU�m�A�V�5 �Vu�m��.�vmU#m&�v;չP� ����F�L�6��]H>�&��P]WLo�� ��,�3� �$͒x2����%3�Kf�,� 1�F��TGd- �m�&z }K��J�����!M}i��陒�\_{ɗ
�ÄG����I�d��i��|H]j�T�ѽ]���dg�?c�Z}Z�)W�TtS�[̹6�d���%o�S�����9c�x�`�^ b��6���!?bT�|ʍr����QLe�nv�Q��;(C�Dr�n���@]⧈�69��R��$�f�[8�9;qNN��F����|ҹ#j��^eZ+�����\k�\��NٳKI�1�|;�-0 BС<g׍}2k�whql�'J��^�S����V r��=f�=��
���̼�Ch�� �5�6McZ���6�����#~�*
�~�L��IB|FG��{a����b��B��!�8X����e ��$�KhM�@�_P��p���_��+s��g�$��WR�Y��T.�07XeQZk9�(OrP+�ݢ���s���^i��Os� |���2�y�.�j�vJ��GV)Z8�.E /9�h�&�-�J��Q�m9�˥�z�U�U#8�-�b�M�`��t%�qqx�'�]�t�E�`�Fly��� .��7#٧�{bD�m@��l�c�Ѳ�d6V8]��W���'�f�}<��1gB_{z�j��;�[�3�.yq����Z63.$�e]��>�.D���a�W�w�k��j8���G�!��H߂�{Ԣ�zm�dN�F� n�?�]������ь�*�C�m�fa�D��2���8PC��;��Aӝm���_�P�)�F���B��;��H�l��<���Q�jiπ�zK��Z%]��6,��N��r[��2β�z�B)��k��þ\����Ѭ}�t_.ݗK���}�����V��_�K�Y�t5��WL���)]=����2��.�;PKfn�?33C�%D!javadoc/index-files/index-16.html�Ymo�0���8��V���w���I�B�Ti��MY뮁,)��2!�;g;i�6cc!����~ξ{��wݾa� �m׆=�ӆ�z��IV��VCU-��}E��O�8 i��A���#�4�t�TUg��2�R��P�=uL���j�$Q�t(�\��}C�2��D�Y��ʿm��q�%1IJ�pp�i0LP98�!��CEۯ=�BCE,2������S]�ݎW�z�iP�t�����l����pjH�$�$��2! Dː(�B���`0ҌP�ߔs��߶�/��!�=j�U�p̎mHÀ� ��m�7$f����. �v�y ��C��ID�1!T��܄A�I���MCRu!�p�iE��Χ�5�V��t�)�߲AN(�0���0��!�H�z������p�(LD�d����;�� 3�#)�ڠ�1�S�Y��?� E�)��#�Bq~4$���LH~�~��0���q��R�5ي�u�z �݆�v=C��C��$��`��eB�x��<>._MF�@�7=�&�nC��nz���"�q0=�}�L�6 ��U���q��}
'� �{����Qʤb�o��6�]ϲ��&A�e�{��k�-\3v��5-���b�h��f�\����1���$��?-\jL�1j /ݴ�i6q�����L�A� Q�K�L�Ga��4��)�a�ڊ�[+f��`�[��! H�kI��y�2��g+i�\쎏Y6P'���)���Q��(l#�&��ӓ4q���w�bȶZG�L�ӽd�g���˘u��Fd�P�T���/Q���dJ�iHf2M ��O��Z�.3$�� ر GaF/b�5�3F5�)7�#S�K >C1��y�cjuP�$�Și/�=�=��*���7�x�DZ)�l���- ���gkg���Q�5�O���V��:�ZA��z�yI��� ���燒�?���&���ж}����b�c��s�� ��+u:�&n�sa�(��:��!�h�C�� �g��M�o�0�5�F�i~<ӹ���w8����0p���>?�g)�(�+w��Q4`��dr�����,bcF4X�w�ʯ�؇�� s�u��WP�r�`����������[�I؎�v�X�$�����<J+`-�e�V6���9h���>����9�,��n�8[e��|Q�Z�vJ��Gn)Z8�[�^�J��M�R��_��� t�[^.����ץ���(��hZm���]\z$ ����┴��h ��9 BjOq�e�0�U��W���^���:���!�1�l~�'�o�|8�� �vJG��²v�hn�9v��
b<��O(��� v���Ę� �abK�r��}`�&0A�K���t����Â�:vy��2���kp!��}k|ϠzU�W�(e����eX����ڶ�� � :&PAi����h�[���h_4 MҾ4���%��[�d�5��5�P�F�=�b����Et�XH��?��z��j�׋k%����n�����q�P�]��!d��҇఩~���fm���Ǧ�~l��B�C��+�E�c�R�)��?�z��r|��~PKfn�?k����" javadoc/index-files/index-2.html�Zms�@��L�Ê��� i��i�2�j�/J. J!Mt���!M��o3f �I�{�v���{�N��N ���A= ��m� J�Y�%I28�_�@��AđJ�i ��l�\�f�Ym֨�ɥ�\i�]��R�)� ���ܹw|_m<�{�Xi�jeߦf�8��'^��p�>xSo�{q�CPjOk�y�����PW@i<?P�+2�����\��.+
p+=i@}��`�
�8�p���� ��*d�s��~��KR����-2�QY&y��n4ğI�Tt&l�g���ˈҖc#�F�@���XW.ju�����B�} q:�8��?w�OS:��V�ZM*�j �V��v�*-��G�:�
��O�IFEFבO' fA4�g(�B���s���= O0��0�=*R'xT (Eg��8HE�'d��,�Ə�@UAT���͟������<]_ї��'��^p�o;��ѨqgiHm�|��I3�������c9�*�� o��7$�EB/�Du\6.�&�x`�4�����T��5�@�<)f0�^r���I�P�XҘH>/ҏ�D\�����.=�0�>�B1i�e�I���u �QE���1-��F�>!]�=�k-�fƒ�^OsߩOH�}$ը����(=0��n�6���Mu/i�0T�j�� I�$��)��y�My��ƒ��QЬ
>�H. �&o���qG�i&k���4��tOI�����K��a£M��M%m�����>r,�'dtE��Y�Ư���^+�Ҕ��[&NS�G ,�6��d���%�%�(�6� � �$�>=�0H���ċ�Sm�T;��)�^c��0�l�f����q8�N{�t��-�%��Hl��7�o+ŚM��qvsɂ뜱��<6{l�Ε.lQ���*�zAe�}O�%�N���=;�D�1�k�5߀e"d��f�o��F9�6ߢ�C�(Q�����b��ݗ܉Q@Ns�Zg����KL�tf޵]�;
�ְ�E�����zo�g�F��UU�~~�Ϗ�YB"F���{a�ӝ�b��
���!�8X��x����I"К�����e��ݜ��EQ�ˇ>ӷr�0mc�Q^4��59��Y��ߦ^��)ݪ�sШrЬ��`�
|��'U�av���|U*r��*�"FN%Z�_�Qr+�"L�J���D�@�q��.�˹~~�6uܩS\o�<yӰ�'j��k8 ��'�{�k���!�\Qd�ދ�U.�νAF��>L=��"�D��P��� �o�l ̆ �R,O|��wܟ'pP�Ke߆�X%�y�Dٷi4���,ʮM#q��OG��P���eB�}��P�e�M#p8_eצ���ÂCٳa�=�s(�6��
�M#p���蟧`NqT�pM�5������:Oe�H��Zt])��BN��w�GE׋8�⫻�]��f�^9�m��ֺܭnm������n���Tݬ�+?6�
�e�u�α-��?X�=�W,��|PKfn�?:����� javadoc/index-files/index-3.html�Y돓@�n��0bԻ���-5��B��~�pt{E9���j����>�W_�Ť�;������x�[�k�wC�hЇ��v�g�$��i�TU Y��@�i�� �#�I���H M�>S��|��J�]��S'�2~��i�ceDFR���-Yv�|\`Yfc���m�*�p����� |f�( ���*�G�)���Y��1� �R �P�@k<{�=�jp2@�k�g��k����F0�2�t�t�L�"�/S,A(F�D�g�a?�pd9&�kԑ�p訇�6�0�^2Ÿ�ZN�&c`��( T��:�v�.1�V��$X�=�xvt)'_b�O0&���<����]Ruɤp�J9}6]��M�7D@�;�
�<̢)a,�$d �(�s�߼��� �O4��8 ƢL2<V"�;>��2U�3��:ɮ�c�u��c`��3 2?����%� T?RDJz.8�ݼ�EM�e!u�巺2`C���Z�}b�}�ӥ�$b�M�8 Ft���s�P]��٤�����@�.՛���"O�L��y���t*��Fn�g)��v�1��+�P8��y���E�#G��\*ő����v=˦��$8�Y��KZ�v���� ��9'tJ��a�1g�_��N�DBz�ע�Ƹ����m�>�U�7|_��`�2DZ&U{z6���d�|���0k00(P0�G�B��\��M1�vKkO�,���rw|��P��Gv��W��A�Ea{��ѡ{p]I�nu�Rڭ�i�m�'c���M���s���_��Ӟy.��-�s�G ��6��l�L2���)�� �
��f8dׂG9����P�T������; 3n��|��^� ��2=i� @��^�*N�or�e�c�ܳYt1!�[<���8�V�p)�ZJW����{��z��{O�%���v�=���:�\�a�~}!�cn.��!�`)��oѺh%��o�^_/n��}!@�#z�����WG�]`Z�s���x�t�K`;��F��][7������ju��_���+����ѽU߃8�ɇs9I�Yp�� `�1��X»w�+�o�GU���Z`��0�Ql��K��)������m�cm��B���XB�l�Uڑ��*b� �K�v�[UćѮ">*��*��xRE|R{Uħ�eQ��A%���[I-�4���Q�*�e��Jj'TI-u*�]o5]�̳�j�٭3z�e�dC��Qk���q�C+���i�"�o�1?iF����\_�Zlzn�`2IG%�w
0��O�[��\��aR�R����2"�RH?t�a��jӥ_�����c�B�\ ݞ��o"���5�>�!
aP������=�]���
���������;(O��E�)!��~����#�áA��t�֡A:4H��� �_�\��I\�=ҲEڮ9=���#��a���Ө�+�wPKfn�?��ص�� javadoc/index-files/index-4.html�Yms�@�ޙ��Gm�!��wCH%��Ӫ_:�\�B�kb��{/�Bm�:c�Й�ݳ������N[w ��> M衁÷m��IV��fGQ d�Q��J�8 I��~�(�-�4!d�BQ��ymެ%驂\eB΢GJ�$���H:��iݑeχ�)�e�fZ��ԍ�C��'x'�ɟ�$����0�Z{R�7��C�1p ���� �����|Q�C��� � L��(�/��L�:ILpLdt1���I%��K&~�a��E]�����2�!���J{���0a�S�F>�J;��Li�!� ��JB���o�5-Ф�\D8�`L$`��)Y&A�5��T�)�P��*��Xw����!B��U��eAN ���0���(���Dxow����'�^�>�MR<���Eg�� �d��t�5����i �������Oi�jt������)�<R�K!�}w�;�� �Bj;已�`M�"�g�1>@��X��I�I�›�Q�hs١�|�z.��&�x�C����r�t�޵u�@�uR�`��N���$S�)apKѹH>/w���T^��i���O}�(�?gR1�m˄��&��.�Q�@=MR��{t͘�5� �o�.���z�����v0���$�� �Ԙ��5�(�5���R��y�d�vp�R����0�H��._�y�f}�fs�&%
��?�5)�1]K����n!c\�<[I-����,P�~�)��ٙ�^���~t�\Uҥ[]�H�`(���6�� rw��'��%����к�^'�L��[&�f�F ,�6��t�LR��S�� ����8`iA�Œ\����+����&���%_b��p���cfozR&8�����NzT�
�q�(|��/C+ŞM�� Yݲ�:G��i��E_���ҥ#j�����Q���?�sIn�sA�]xϓ��䞋=���22]�f��%C�Cm�=ZZD�9�G�W�[�v_ �fs�����᧧��?�9��u]z:{1�K��B����]yo`�����H��F�/��"��S�(�{��E;�p&��8��p9zAG������(
M@���f�.�ou��7E�.ד>׷q�0mc�Q^4�ɵ)Ts�:��5������ �*�Q%���*�Iv���9xX>��~�<_W�j=G�h#�-�4�D�(��h&�-�*�"PG�����8^�M�z ���$�h�E��� �T任�N�dyǏ��.��.��G��3��O�D�����v���M�����0���a�?�J�ɭ"�t���[E��*�g�6ys��������f83��%�d��+��YonT�m!gPd��՛' !���JN!{��N�ö�$��ֶ�����s[xn �ߪoW�)��Z�Y���w�m���Ԟl����e��w�PKfn�??3v�- javadoc/index-files/index-5.html�Ymo�0�>i��6�$M�;MQڤk!M��c��)K�5�%%�Z�㗤�ڌ�7!D3����;�g�ּe��vhA l��~$YUOU5�)�JM��q�0��HU-GiJ�왪. e�P��\E�:%�5J� +c2�Z�{�[�����?Dz��L+[���p�c�����3����8 ���2�Ơ)���i��!$1�PP�@k<{�=�jp4@�k�g��k����B0�2�x�u����DF�gX�@�t��O��~��O3L�cԕ�pꨏl�~Xr?�O�G-�
�1�ti����:�r�.1�V��$D��
<�]���gS��,�9� �$�yVW�E-�0�Trĺs����" ԝ\�[��0��e� �E��
I������}� DI�3e��2����0��:�ҹ�Iz�������?3?��S�<]^�B�S"y���B����W5A���q�ou���lE�϶k���Qǵ]O�Ӑ�7�����C��D�<>._Mz��� �ҩz�6���I1��??��S�̤S��jp�|^ng™�"��#��?<�yģ0��I�pd�m ڮgZԗ�'}�tI����5c���0;sD�D{44:�ͅGǃ���%� =�kҥƤ�^F�E�n�����H�����"M���t�I����k8�Ѭ��l���D���G�.8�kI��y��-d�-ɳ��4���>�u�XN�./.�����0��K��U%]��5��[C1�����L��{7>�f���6�ֵ�:��e�̟2q���b`%����/d�b�MLQ�o@WȌ�,�;�(��6t��!եO5)�)/1��L��晏��ݓ2��L��v���� ��"��|��/S��bϦ��\ݲ�'<�4ZMk�G��rp�t%E���MO�+��;���:� ���{~(���b{�k�-�,��Y�w��G�P�z��-�Ĝ�%�W�[�v_������!�G���cz�`y���z4;�
b�xu�Dž�+������'��u�~y�/��EJ#��V}��(`�gr�LR��`DtXлw�o
_ُ��������e��]���MQ��>׷qѰs�Q^4�ɵ)�r���5����*������*f�0���)�*�qU�Or�_>���U�V��A%Z�ȭD� +�"J^%Z�iT�qB�h������rj�^�M5{u��[�X��i���6�5#��~4LRb��.�n[�Ǘ6}/7� �{#Bo��}:�,����0U�V���X>�j�c�֚l��M3O�7�_w�S���e��8���D�}M��N�@���04�>z�{Pv�mT��,�6�����;(��ʷ����b�
N���E��aW��xÿ�֮���q�:nW��긟*���:N�k�\Y�m�9v���Sʱ������Q�ϪoPKfn�?&�_�I javadoc/index-files/index-6.html�Y{��@����0b�3(�o�Z�Z�������pt{E9����wwPz���W��Ҥe�7;ϝ���{Kw���؀Y0>�Y�>�,u�#���(��,��$�#Y6l�y�/���j��V)IOd����4z(GI�ai�O��7��D�ƫ��E��)W�khz���q��x
�_�����I{�ga4Ez,�&�'�!�ሐ�8��J��#�҂�z��<o���R�RFҀ�(�Og�R�I��8ї �#U��眩����f8W�)>e��!� �b��x�?���*E���P����}�F��T��!*m����گ�5,P�,��l�q.u�B�e \�TI�+"�T*���t����1���S��~˂4\�dv4`�
�i�Ba��7o|�y��`/J��H�Ϥ�����H���Z��3|�>�*��}�k�g�����)}� �H�)���v��7�5�,u��T��ƀ��=G���c9�*��!uoG�?%�M�^�@ \���Mj�4�cr�$Toz�[��>)#��c?���BاL(ܕ5FR��v�1\��P�y ���<���L(�#�g�s\� ��8�h�
J�u��òƚ��2���X�1#�G#�}�
|C��['[�R�j���m�<�IXX�穂�/{~��Q�͖Nfa��i�Z�|��[j����l� @�ت���%�c"��ѯ�<�I]�ʎY� ?�Hϔ����O�H4��&���LL��
Az�c��+������{7>�/Hf뿢օ��e\��q��?"`õ�����<��*>E)���Pf�)hY�0˯���^�3J��iV��K�_|�`J�d������A��h!���*�KL��)"�$�o:?VʜMÓy~>e�u�؉���#���L7����ni�4��'�ئ�Wvm=+J�#f9�a�x����R3+�.X�Zjo������x1�L�K��,$՜�>f�t�� &�z3�L���^��V]��v�nj.�7�Z@��/��Jد����R�(޻�i�E=�p&��,�Oq-����R�{��M��eR�.�-P�7�l]6��|跓�*��E��]4 [�]3���B�PXcQ���k;�o�^��<2���hV`=����8l��&Pi�-}�4���ƍh�%�-��5���P#Z:ꈣws�L����Tw�&8Mp��P��7گ�k<��~4NR^�n��sD ױ&�cl�oO��]��7��\CX��q�!���
P��e׷Z��,f˄�H]/N�_0�E^y��]ZSG��I�!Z�T���Qo�c��@աk�B�*Tu�_���[�ֶ�����QYt~��'y��^���׻��6�z�K��K�����w���z�]��K����qy��js�.�~�ص��O�Kw�o�m�⏼�PKfn�?""8Z�b/ javadoc/index-files/index-7.html�Z��0����8Z
x���A�M[��A���&�����&-�R^���p��n��fo-9�������AN�N����ڭ:QTM{q��i��K��|�H������w<M3�
Q&��j�r��/o��f�ڄO�ۚ��G|�T.^8���]��;o���=�*�U=��&�i�p:"�O䝳pF���s��b�n��t�: |�Xt:$�")�zx��X ͎}�p�a�@J�b��U:�]%��J?��EY�>�>W�O3����++�~�B�Gd8qBFy��P� ���6ࢩ���#Z</ѭv��2r8LZ�um�k��C-��RQ���V�)1�6)+��(�P���T2��S�h��|^K�򂀫���єV�l�m�N4ڍ CwƑe<���ad��`i�ܣ��/|�x����� d�OB:λ�7�]s�
������9�v���D-^'(}fN���>ͧx�a~P$���Hr~�x�+ZM*�&���km�o�#�e���"�f���ee9qѼ���n�=uj
�ț��XvմI�A�^��y�j���O����� ��`�Tp$�hU���e�ޝ�k�$m�8�q��#,��{���v��6H�g�`)(�EK�O�J�P�>c���M��V�Z�{�l=�t�櫲"��:�ru˥�J� �40E�jYe��,jNX��WT����!�a�\AޡsJ�BJ�[)5 EI��jv�ʐ��K
y�ú1�~���I'�$:�16�f��=�6�N��Scp4 7'i@��R���ȉV��(�^�l�"[?�Z;׫{cr�_��3F�k� 4\�t���Clj���tM���t�eA�\�QG_��R �d+e��%�w,�<bm��pٟ�)��Tȴ��x�@�d�D��+]��8fC��o�,1{/DƹU91:B
����I�RT:}o#-�P��k�Kj �Tv�^%��@.c�4���aۆ�0|;D�'�]㥽)[ A���~��ź��c����'ơt8�[
��a�]Ä�lŊ�՞Y�=���� �`-���8'Km� ӯ����/C���箭cw<o���2�ơ3��T=��%1V��u�)|�/M���[@�ˤ� ���H�e��� ��o�I�!�Lma1R�*v)E,E�Z�VD�goGD=�x'" q;�Y�{���c��E|�d����ɤ�6�eRc#�3����Ljl&+���ΤƆz!��溻�i���NNKH�U�����ve���h�:^:�ma�4v�ҹ/C����1 Y����}�s}~]��N�*����`D\���!�f��X5�B�A��)���W����E��� ��$�Y�3��X@"b��O�1|� @�Zd
z}m̑1 ����* B� ��߮C!� $|B��"L%TO��'��d�Hh8ϡ�wHQ)����\�ع�@e.��A��Wt9�� *F������`��N��0
{b :_GY�e�j��K=��y�i�F���/Er݀6���Qa����?^ߜ�~it�����9ߥFݶ"��1� �#=%� ������Ԓ�e�Ea� Q�m�iY;H�fէ�t!5/<���ű��5��s�a�Lp폈�C:��!qT$#� 7�i̵?>b�Cc$�ψ���? �P /X��0�:��&ej�v�j�t#C����)p'�x�̓ D���I(값+���' �,�e�K��39q������0�Z6��6-��0�L�O��w�U'� �4<��B l�~L��M;�F���� ��Xa��kXH��
ܧ ��Y��7��S��C�d�g�'�uDY0�@R[G#t��HE��4)I��9�<�P�A12�����9rcn���Éx�J�[:��‹1::����Z_��?w�ܳD3Fr=� ���%�����VW�W�ѝ�kW͖u}��$��|w}��s[��y��
�o��!���p{|��N?�G��h(~S�
X�����1.��� �8ޏ�Gr��d4���>9&���m�m;@R����SZ�ܡ���f�݅��'�d&x��pa��q:=S*�Դ ��T�եaP��S��,�N������3['>j=��u�_c�w�cpL;�!y�����{��U�����?�������3���Ȳ�:�����9����w����e�F� �oPKfn�?���wX% javadoc/index-files/index-8.html�Zmo�0�>i��6�4M�;MQڤ[!m��0�˔��Ȓ�x-��9;N���V@��Ν}�=糝��w,�F>�m8"M�o�N���i�5M��� �:�ďҀq䇚f�P� _h�x<.�
qr�O����qJ =�S*�;�;�ڢ�FU�����6-)�C��g�����?�{q�N/��z�I�xRz�qǨb�.�t�^<�_�E8l��Ń�"������ML�U��"J-���J� �ݬg(�~e�K��$��xK��3�4�cc��6��O��Qn�e6mC�� '��-b���p�^RK���:���l %e�B�(e
p�%�n�*p��uC)��RA�U����r�N�k� 0tGN�yK�I0d\�uy�`D�xLҽ�ݝ�;���{a���Ja��~!�.��A��t4�X,����0@�������� ���9o0��H�����ݝ�� ,���N��L�w�ȚU���Ú븞���7����aw֡�"PG�'W���CL��[�1T益�K�:�#�S?9a�P��I����BE��n�9�3� ���s����/��s��ÉYul���e�/E�92�X��k�v��iY��!>��YþP�m6Md ��.5��2JS�����q
��t �只~R�a�+�==�Iʒx<qy ���� 0(�N�e(]�ZR����\��<_Ies��Ҵ� ��g�����~��s�c�OR�T�QR���!e��~rE����4��̶�k��Z�if�O�x�ҭ��6�dб�J7�$t��΀��aB��XP� e���&C~T?�Ayt����k sa[�|�춃2��Pŝv�P�׵l�D�g-+�V�M���OY��c��T�vS�Ÿ�`9����}/{Z�]�4>⾤��x/%���<�a�~�M��q7����|:�e�'�Cs���B=/aY�}���x�g�g�9~rF����a������Ɂ���YZ.�z�K� �,�A/;j �����#� Ca��`�w? �|磩���?���a�L��{�/n
?�������0�p���_L��q�x��.v�Z�fL/��Bu �QZ����Jx ��U�GRh�>�B{���֧�� <\%|&���p9_��E)m����+�9I�Ҝ%o�4���R��DVJs��3�7�\N'��Q ��x�cֵ�M*K��M?l� �G�e��� �z��fo_,�Io��*��4)�="�|��F�O.�b � �*�]��-�"M%�]$Q
�%��PP�q_l.P>�(�R�N+��ߥ����1�d��~��K�ȉ����A��I†�O]?� R� �'�����s���#��r�A�:��@��I��ޯ "ڿB����"��N�x���޾ <�ޖx�)p�X��I��5�ؐ��%͂� ��T����{�/�g��}����q�N��anw)zNǒ,d�k��!kB�\%�[v⯄an'��T����+�7a�@���.Rw�<�e�F�:��d�#����m�A22��J$�M9�,g�ҿT篺�����W��Ә��|�b�{����%�K���º-�ߖ�oK��%�ے��j�7��� U�i���q[����|��U�H�_�OPKfn�?rG��%� javadoc/index-files/index-9.html�Y[s�@~�L��)���t��#v@0�"8�iھd������6���^@�b��:��(���s۳g���{��F�6tQ߁����� ɪz�h���,<Qj�,H�DiĪj�HB��Tu>�+�f�*�� ����q��X��Ժ{�yO�]<�X�٘i�߶a8�g�#8����,�!�]F�4�R;�?߇4�*b��h�WO�WZ ��q��V�zM�@X���棌?_F3]j� � ���K��.�p� �Y��~�:� �:�!Ǧ/Gr/�/tF-�J�ѷui����v�.1?d�.�5I�:=� ��������,� a�K���.)��R8��R�!�.T�~o���p
,oy�ES�DƗI�6 �Q2J�("1�ۿ{���;@�h {qLD�dx�D,Do��(�e�gt�u�]�G�� k����4�h��O��P�ԑ"Sҁ��v��7�5�,K��-�Օ����g���9��K�I�қ&q��p5��Q]��+�I/"�G�uy�UoM�/ѢN�L��Y���t*��7U���r?�M�A(��y���y�3Gɧ\*�#�tl0=߲i,5 Nz��V�=�5c;�����{H��x80�t̅�����%Q�>��h�1)W�/�tߦO�CU8�p�Kn03����X��#=GYN�t�y��kn���l�� @�����֒o�1�[�X�t�UR�X���y�� ��zJ~yqdW
;�4�=�וt�Q�(b�bIS5i�L���09˧�d[���V{�8�sa�o�8��1���t��Y��2�0�MNQ��lBW��i�Cv-�q��۸c-��S�T;���K,�b��pۼ�1�zS&8�ʴ��&]*{C��"*?���m�<�Yt>!׏,�� �8�V���U�k��P�Ң���f��2�a��Kr����"z~)�/x�� ��[pl�l����o�R��\������e�X���� 㦹��‹qD�s���ӻ#��1% �s�:>m���1�-aݠ���NJn$�2`��xOܵ�N�/��ŝ?�h��d��j�A����\N�q\��q m��=��T��PUzm� � 3kl��]���S��/�o}�o�iخ��3�L��\���a���X/@�
l`�
|R�V��*�Yv���x�7�g�
|Y�G�v<�h�#�-�4�D�,�h��a%Z� U�e�N��W�����:�jv� 7[G���r�'jݖؘ-�.N� ��i�Z�y�y�o�a�C�뗥�#F|��^܎ ���v��F�t�[;j���;j���;j�k��ߢ���\c�Kr�I:v���aǬz��ty?|PKfn�?��.T�fjavadoc/index.html�TQO�@~���ø���R�����`���e;�j�rݭ�\��t[E����@wvv��ٯ���o{���n������a����I��~Я�n˃�L�P��|0a��ƬۜE�'n�-x0�K�JNyT�tC����:{�3�b*�8e\���ۯ�p�
3a0��ųS ���飄c������z�Nڭ�<���.�����>�ʠ2N�Y#YE>3�b��s�K��L�>�rά�`��؊�2_Q�01�i�+��&毧;w��p�!���l@�,^��gD�@S�|` ��U�n�J �j�\�W���J�l��|��U�Q�0dͪ��6pu>�&�բ�5��qc�{���͚%��} ��\CE��vHI*��,�&���R% ]�2Z[����o3[�ZП򎪫)/ir�]��ՆW��xp7�,���qk�謵��^�ObS5��|VҽU�Τ�D�X����J-��@��gk!�H��}��& �% T1�5�����/�T�]�P�BM޴~ӟ����&qt�Z�l�#����O��GV��ur9j̀�i���|�Aͪ�V����1�[p�&���;���#X���Zv�Pe/)��c,(�5�Y"T��P�<C�l�4"�����nwE�u��ӲŎk1O
�S{1���rFrF�z"�Nnf����bR�F�t�vx��Ҷ{�j!ԟ��PKfn�? javadoc/jssc/PKfn�?javadoc/jssc/class-use/PKfn�?����1javadoc/jssc/class-use/SerialNativeInterface.html�Xmo�0���8��M(I��J�t�h�*� $��Ȓ�-�s��nm�Q�X6�v|�{���Gm<p�V����a��B����@�M�x�e�n䪅gF͂���Hx�g$5M��@s>�5��|n�w����Qh��Y��L�Ɛ����tݧ�>9��.�B����\��QF8��9|&32�c�:�&�,�Q�T� y�(���X;�ϭ]���img�V�zͲ@Y�y��N�N�����ӌ���j���q�K�{� +(�����JB�:Q���QA �G�JIQ�碈�e I}“�.6"1�-f����;=�ֆ���V�G�ٚ�[u�niJ����@�u��
~��bL)�@�����׶5�0��Bΐk�0
��R�v�pt��"b[�,�p!2�f�H*̓l�ϣ��tk������>���<&B�3:2P�~ F[O�BGu�a=؜M�m�mЭm{�gB���\N�Ā�~�i4�=����{?Dd�7"/~p16/M�T��6�=4ZA7mm>ND
�,����=ޓ�> 徲$��A�m��>��m� �ղت,gdvB�'�O�}�D,7LG���{X|I&�%A(�2����S"S�&ٗB��GN��A3]}�ip�q�C[�j�GXW^��w\���+5��Υ���s�����:��.������E�z�ۨ�� ��Y��MSK���O�������`^�Y[��������SQ�-�h��q7/*��,� Qz��_Do*�gg����+m<��z��2,\i��Ֆ��DW����qvRL��� ٕ�B�[M,�P��S� ����6>Wc� a����2�,�� �5H�YB�:g�n�����LڐN��-��I�7A�.��".ٴ�Q��E9�6����kLӉ�w�&XQ�PL��L�u��U}�j",9��ap,[��~���]��\*��3W�ug�+��l�z]4*�zoըz�{��'a�l\�w�ײ�|��B����B�)EbT�b��v����`"�=X��-�~7��%u���NF[�2�mT� �1g�4�z���2 �г|�șB+�9i
-�X!|�-���a�x�]CI��YZ!5�o�FVk��Z^%R���|w��,�� 5ZV9:��'�]"o��=S����B��ô����̤��l��5�(
z�7q�����l3Z�d�mf�|�#g�pqݑ� �tG�6�uG����9��ș��W��=[�6��L��rI{��?PKfn�?���`�j&javadoc/jssc/class-use/SerialPort.html�Xmo�0���8�`�P���M[3�6�V�&U�1@H(K�5�%�q[&��l'��+�}@Z6�v|�{�w�{���o���.���.�O��N �fg�-�pBG-<�k&�,ʊ�'y���zȘ�Ɂa��s}�����c�/ӧF��Շ|H���k<�4�����41Z�k;�:ӌ���!�_��h �vϧI:S��>�_�A���84�� ���3����q/|R�?�ՠ^3MPVznh����/�df�V�q�q-��P��Y�ӯ\�>�x��r�4lk/%��v]���|�4*
�T�>�,��~�8��`eس{�E�GS-� ]/��@��u�n%��x�!p�`��_��S� ����� p�m�躁�K9]� �(<�K��V�����R�8�"fɄ ��4�E$a�d�|&<��{��}��IF���q$D�1�#��W����� ���lJw���@3�@�-�I��`u ��R 8�G �=Br����8N傈��/�Ƶ���Ræ#�q���E��D�{��y4��u7e\O��L>�z`�A~B��1|Ӵ�j�L�*�Y4;��G�OȑP"��-Eʀ=,>'� �G1���H�!M�����v��B�}�8�8�E�Z�&����m��x��J�}��s)<8�����ET����R�U_��C�vUt���"^4kF�E��$?���(ag�|��/0������_� �@��v�=��4� #𦜣�J���Ȥ��rmD��(�,�P1���ؕ.n=������ĕ�Q_miMtUJ�g���o��-o��ȔX^�$�����b� �6>?�bU�aS�H�x��F����3�f �k�Q�M�BFo3RC:a4MJK��o��Yl�E\�<k��B96�����kLӉ�]`,'({C�2C�5rTq�*K.�|�p@��ɺ��p{r~-6�J���&��l�re�y��Q�������Uo<�mX�$L�����]��+YD>�j�M �YN"vA���y���ԑ��U� C7+�|���h&�;�^mY�~A*Lb���lwg� �4���B���.U����4��Z���I��]|6�_0��w��8��[͆��^v�u� �m��s6��
_��N��" ���:~"�B�8gGk�L9����v/�i�Q�����Mr�A��~�
����y�y~��R��7�R>ܱ�[hFw,�e��;�uDz�X����cY���%�ڤ.�DK��FI{�/�?PKfn�?[^��\+javadoc/jssc/class-use/SerialPortEvent.html�Y{��@���ﰮQ���|E)��� BKJ}��X�j����wwv�����y���z�����v^;s׸e{V�v�N����V�k!�h�뺥iv`˅jUGA&4bQ����9.Fx���V+uUW��D |m�N�Z����6�͛7��%�AxB��9W��v���IB��� }E�e8IǨ2ZD���#����� z $6�����Ӈ�S������j�i��jU]GRJ� L�1*��"Z�JF�_������/L�~�Ƴ0��/���D@�Aρ�KJ(J�ȊCJ�GJ��dQҌ9K`�ZA]Hw;c�I�@�幁�����t,I{]��20e_cBg�0��ertcJ1��N������Nk\0�����18l΅k���h�8�t���9�*J&�*�XL*G7o|�y�MQ%N�!'Qg��@F�x�ʽ�*��d� ���2 ��G��͟y��RT���� ����I&�o���u*��m�z��vf§ܕ���oQ���z�o��,��O�8 '0={�g��_����(4 L?@^� �e��j�`�}�p9
�,��&g—�)Hr�ݦ���r����{P#��O���sP��m�R��u�:֫�;�QN�70m���+9L �x��7����O�S�Fm���<�6��á��p�
3�ı��?�i�Q��������Z�Y/�D�"��=v <& �F��9�-h��sOj�[�ÝN���O<���i�}Uy��Q���|ڐ&tXi5rKCk�Q9�8��dD�� ��?����]�"l�DD��"�.�� ��h}��r�Odr!"|#�']�l���2B�X���4ׄ�32�w�G���^o�B\"Q+�n�|����I�֌�s�C�t�vM&4M�9�e�+�G���v�@��Z$�z����.�ZoΙ�ɖ�d����(��;H�J��( v�;��x�:o��L\�d�ow���"���BYP�f'
���j5�>d�Ի &�ƾ�v 7�C�f��DA��-�;�V��m�~]h���U���ʽ�J�8J TI�i�ʼ!�q�,�X �w$����C��N�I��/'�T��m�(���.���N���N�U��O�r�0�N >�V��e���4y�E+xlP�-{j�W�L}=s&Y�IEA8�I���(9��8��N�b2ex]�Rx݇���]�嚀� %|����G�<�(b�1�����p1������ �=E@��f�`� ��[I䐫0ծ�s}���6�t%հ�>*�r���e�my��_|�4��A�ع@� �U>A��W��|�[��nS�(*�%�#ܔ$k�qI��\�R �$^j$o��u\擫uo|��Ɲ�����/2ﯺ�Q�XzzX�(i���Q��}����av�>^�����u�x�>��?��䦁ܭdv;H)���]�����PKfn�?�5?"�3javadoc/jssc/class-use/SerialPortEventListener.html�Y{��@����֨\�-_Q�)m9�@I�Ϙ��]�ji�]���;���;�ԻhB�����o;3]jw,��>�m�����M$ɪ�j���Yb�R֐��8 i��8RU�'!iL��. eQU��D�\uL'�c5J��( ���[�;��#�>>!���L*�� +�G�$&)�$@�S��q��4��Q�4�R�\yv�����!����B+����\}Q.�JYӐX�k{be�m�u�LbJb*{�S"!_�t����~��1N3B�7^S~Ρ{m�c�͛�d(�60�#��%�|e@�G�$���uŒ2=�Q-8 $=�k�R�)�m:=��y����ZE�h� �{��kw�.e�4"٘*!���ej�vS�E�������@<`�s��m�=DA�\
�p��2��,��k�"��d�4"��۷~ܾ��
G�%>f$�8%#��wgTzf2�#)D�N�yp�t��b��5�)G��&솂|r5�J/����o�d�:1��ս�6`Cb��XP��t:��K�q���Q����{��r�<<��B�p=�4�����o�[��W�:��!N?�d*ՙ6]S N�{�n�5��k�(���#x�`�(��fR������k٠KYB�ږ��%�\��ew:}òڽcx$ƃ�a˜�t���A�D���ӂ�dT=����]�fDt��@�zx���I�H�����(L3�&����`ނYނY݂�EF�}��%������| �4�%��H���:��W����d��S��P� vSN҇3�z_���������a6} i��K����2l��V
c���`7#�eWAބ�l�.�x�|Κ��/ ;��_5U2'�<$ ���\�{^J��u���guM��c�Ad-Y�O��(�ʑ�k���f��kL�� u�2XZ@��*���s���D�+RI���f&A��'�j�fw9|-�s�k�s���*[)T�?B��+,] �}�~+�'=��Ė�5��;��+�U>�,ȳ���/8=!�,�լQo������rS��W��s�ł��2��þ�QI�u]�ˆdم,R0d�l�G7
��8�x"��gD2�d���oL~�U�zwNs���l�����m��v��
�v����6v��il6Z��-��64��U�O����Նi�~Nh%��B�
1c��Ch�=��}�Z�2�ZKSF�Ep�'f%��hY#"#*-&ik�=������s�u��
�b\��i�?�ޫ�ap��̆WrA��qd�gx�cxQa���<�s�M�o���v���Bn���_�
G�۪��7�΋�< ���v�P�&�7�4Q�>�� ��Ms��⥋�ÑT_ѯ Ŗ+ݐS�E��0K�6�.���}A�[�f����#���"���� � � ξ�t����w�.v.��9ݢ�_tt1L(M&�;�������p�q ov�Cg�3���� �p�q8�X+����S��.g�C��~���?J�PKfn�?���9
�V/javadoc/jssc/class-use/SerialPortException.html�\y��0���C���(�e��e䚶�:N�a�����8~w�Kz@a=)��+�j���yM�<����֋�N��n� �4:�&Q����fSU5K��J�
�B�g.w��TU�)D�p>���b�(-n���D� u§�-� FKw����\({t1�Oh��y�U��u-�'��OC�S� ?�w���#R�]�!�ҝR�퍻WI��g�D�#r�B*7��+�J�<�Z��7��2�Q�T���խ:A����=�)�����E�ӌ*d$s5�ӏ\�}��&v�(�=�Z�{�u�mutH<a��`L���y�بd�е�Ar����@���9�ջzMql4������l+7�7*�l�i�C��'�� �\!(���c
96�VM)�T�KەD��&G��M�=��G� �l�3�M�s�|���;��r�G Wϟ�|���;&/�ؤ4 ������p�eE莆� 5�镫�V#��U��F���%��|� �#?��r_v���/�� ʤ�O��R��R2��k/H�Q���5e1qQ��������>6�u�:��1��a�~�X��i�nĵ���2��ӡ���L9�N��ZM"�]d��Yq�!�01��@�{b �x���)��V���I�oh:����gm�:�)�r�h��� ���=�"�7�&�Ec�I�[7^��ц��@�U�v#E��V ���M����ӆ6��U��#};vC��`� � �3l�3l�̰I0J���^MQTM!O�<Ѝ�h?�<j҃���3{���O�v�~��C]��5�����ڀ�bC1�������k[�l�I�� �q}aA��Y���p܂�f� z
LˋϠ�mY����V!
Nix��E�����Ԭ��)2��B:��蹌�GZrI�| �]�0SD�ʏ��Ʀ9�5�ެ��r m�Ê*��*|�Li���.$tO&|Ճ��L8��G���
~���N�<fv6Y�x(f�%��� tS�ف�?�����?��1!�ߢ�Y�݇›�ޢ8g�~�O(D� �8j��M�}ĸ�B�'z��ɷ;�n�B�3�� r�ՠ�$�H��Ez~�J����`�S�?u�#MYsx�D������vF0���G)��U���y:!g�
��Z(����@f%��àMU�:����J��`������Ը��S��;�B�[�����7Kn� �%�d�C�S�q�f����8�s% ����]�|r'��9{C{D�D��UxU�+Ǜt%����ss>�)ػ�O���Ol_��)�u�#(�]x
�,$ߟ�by\�8|�7�̓�� !�(X�O�����(J�D���H.ڎ���7�@P�w腌ٯT^U���($W�6��kV��b�?�Gt�@��"D��! KtCh$V�k�u�! ����_��:I�\�i9��d������ ��������<X��l��d�o�&�Of@`�E� �*5�uAGؕ���}D9�)Zj0#hd�0�J��u�[���r�� �����=%2���h�뀷�ٜ7��1 �8e�`� 7rF]^^�a���N5.r@�����ī79ʢ����s�X-�w�p<�D� �����������O�}0���9G/.kZ&�/9��Mh �
��=wh5�@hEb��C�ր��V�v.�9t;�����N�:��n0�~|�����k�4 �8Gp��c�pZ�'Gã�onp�c���\�� �m��[��~�F X�R����A����f��D���՝8�J,YM{� ۲�ZG�۾�����
�M���!,��0�%����?�A�ၛ�!`QP8����}O�����������$���)#"Z�A*)�B{��OfK�ퟔL���S���$YBZ�ǭ8!��CIbi�n�E��%��G{:�`�o�H��W�`��c�N��Bf��(k}����l��l����2^�|B`�.nN�'���i�ˈR�*��j�^��B�>�*�^�?�s7���[e��7FIW� ����=�(�%x�B���z��NI|��\�y �m�'���T`�8
��7�+�!(*�m˄����{0��NH�`��?`*@d�ld����؞�~���}�w��#��}���CC:��NV��!���9�F=����0c�w���#�O�����C��vq7�  ���q_T|��<9p�2
�,��WH^���t�+��D�@@T<+�������l����V��坁�zf�_�zŮ���< ���Δ�5��K�"����s����v����v��ls- ή�E&�ںxq/��l�#��>�7��e����uOV�+u+�0eX���r�ܥ����KQ�,�}TD**/������� �2���=Q�]�!M"{���ypz���
rIJ��I�p�̶ߊ�H7(�m?�gWg�T���^���5I�BL
�W�I��F*��Gx�y��ē,��i�8IV��Kj���~.-�쩴H�!;IeY"�}�>s���qR��e���A �:PjpL�L)���>VJ����R9���K��?Y���R�O��������d)91g�JϖZ�j�����pNA/:
�+PKfn�?����*javadoc/jssc/class-use/SerialPortList.html�Xmo�0���8�`�P���M[3�6�V�&U�1@H(K�5�%�q[&��l'��n��i�����������[ᇾ Ga� ��f�����n�0��Q ��� !��"�I�E�a�2�|�g��\���9;3��������yA�!����4ͣ�~tF5M̅V���N��4�,�t��%�E�<���i���_���W;�gp�"��n������3kp� ��v�j5��L���� 0j��4�Y��g�f\ /&�@�f��;���!G���:��k =�]�- A+���E�(K���3�M
��F%\��k�a��\��B� -"jf]��D�v;�[�.X��)-Ɣr"1%��(n�"�n����.ׄa�ץ�A+��C��k�E��Y2�Bd4�b�M�'�0�� O����?>|�l�y }��HG1��mo%���(�B�8�ҭ�,��{�g1 ��I���G���0�}����?EH�"�96�L�T�6}�4[~�,2'"�y����W]ݗ�=
侲��Ah!�m�>��]��ղ���f��4b�y>!B�Xn�)����L�+�P�c���'g��E�d_ Rm�fׅ�8.�R#p�q�#����,(���ێ����v �Rxp������:䧃u(�<�~��.>�6��ڃ�E�h֌X���I����(ag�|�� �W`�V`��@�`w;��Eb�a�xW��n%�l^TR�^::��Iݨ���G�B�]i�]���&a�J󠯶4�&�*��O��b��'��GȖO����X�$������ �6>׃ � ��7�2�,��K��4:�YB�g�n���ѻ�֐N�Ņ����M9�-w�K�im���P��M�u����t��m� �#�����!ۍ9��U݃%gc��< �Od��=h�=� ��K�W���E��l�re��R�������Uo<�}X�$L�����.��F6�O�[hӂ^�R"vF���V�`���ۘ�e� c�)�|�[� ��X�w2�V��e���X0�9ð����J@�4�!����#���!��i
-�X!�ڑ���0 ��n`b��,���\��}y���o������\��K�{-I����.��);���)G�c���aZ� ��o���uµF��~�
���i�y~��R��7�R>�3�;����=��{\���y�3�?�C��R7�*��^�4f�|)���*i��E�PKfn�?N�-}� javadoc/jssc/package-frame.html�U]o�0}���pkiӦ
I��4D"@4q�ir�K�d�M����@�N��i������{|��#7r��ԃ1�0=�H�x�u0v��L�� ���DV4�� ������V�v��Z`�X�'8/K��T�h��U�H�B����45V��ݳ�v�X�**X
�;���� �����L�n|�|zesY�:&����gp6!�F�g�1L��GlP5��:�X�) �
��ݚ!H������SH���LX�d�}����|��<�C���C{�Y(�B":QH��XH��̎�1QS����,��.g|ɘ@��o���cod!]ǷEz=�Xe�L�n ��ھ�q�0<s� �-�]f�.돤"��Of�cS
���B����D�F҃�о�V��5M����׫�v����ՂIǒ�r�P$�*�c{�NJ��� ������w��B�a�A0;�L���B��q}u!��=<�x�h���f_n_��&���o�K�>m��m�/����0����Uͧe%��LC�q���oX�$�d{*�
P �oE�������d����凉��6T��>G �B*� ;��]�Z{v�^i�C{��$j�D~4O�W��P�x
�Z�����$l�Άgȓj����V��u{>�PKfn�?$�U>i�!javadoc/jssc/package-summary.html�Ymo�0���0F�&��iy4Ci��iR��_���k KJ�L����N�7c��eR���s/���:w,� ލl����:aEU�ڦ�Z�%'5�
2���҄Īj��c�窺\.�v#�N��Wg�4~��i��ƄM���[�;���刜PE�c�U�m�*��!MhF���s����I���EO��x�h~h=�Gi���Ģ!jiHk?�=ך�p<l��7����4$wځ�8F�~^Dg:6ӄф)��bʑ����(��,�L��gz0>�yC���]ch�xBp4=7��@�������%�3p_!�v��sv�|F)È��?�s����q����b��
�c��`96��(@ d)Xp��a�'�.��[ -�d�.���to�����o!��)ڋӐp��,����/�t�A�+��f`h�e �`�:R�}��לd��iq�� \M�$�v��7�2��+��V��ڀ�/�Ǯg�C�C�s<_��Y�u�&qJ&0\��0Q��
?�� ����C�7;��~9[xHi�����K��3���$�Q�柢��F�
������u�Q�)�����:6�z�e�,M��V�ױ�l���gdX��=�Wr<&����ph��t,]����r��JKwm�z=`�㱎]r�%�I�X�?���4�r���J� 0o�ln�lo�D�"��:i��ћb �4VM�ܓ:��hpS�$�ģI�8=%�y��^��p�I�3݃�\�Q� ''��O��� 8�����p?3&y.�����ċ�֑�u�g%݆�2Z G�ѫ�0��<e(q��:p�j�U�QT�F��g��'�*L3���u���8T�T'�%#Sy��d�6O=�#��{(V��Z\0]�r�`W�V)�x�B���E����qh�7�k� ʙBF�R{����_^�#� ��H:݃�z,Uo� 7aW���z�� Y? ���G�=�uu�WU@���*N��k��qȃ ͕$�f�T� Έcd��ރ}Q4|�?�
���_b�����m:��s�2�v��vj۵v*���C�+��ERBeu)^�`�geC��e�Z�0�Z 9�i��I���i�frE�<�1�2\�x��
��ыg�) )K�܈ A�T�
��mb�������=aҝB`L��ģ4c��y�G'�J���%B����uܦ�*$��"����f���t�\��\���h�<�F�ze���k�+Aϝ�dNv�8����i�1�Ⱥ���6����_B:�_��tx��+ 5-U�_�\��p�i�|�w� ��e>�Y�8e,=����w@�p� ����M' ���tn:7���� 3�v3`� �-?v�ro�_�_�ϱ�PKfn�?3[>b�javadoc/jssc/package-tree.html�XYo�@~G�? F@*d;N�q�;M�cG����g�,8v�� �ߙ]�ZH[x@�+Ż�ٙo���i��� �~߆�I��A�U��a[UM���(u �4�3�h��Z�Ҕ��KU].���PI�S���)�EO�(I2���X:�{�yO���D��so�0�u8&1IF�0:���"'!�Fg4��<S�� ����$����˧�K��}�q��e����A.�o�p�2�zF��NbFb&��s"A��t��oL�~�4H3���#���o[8�e!�� ˠKhN�qY-�Ky�ѷti0��v�r|]�d�!74)'�{��,t)c�ɦ�0 �/
<a�I����.)��"R����C��`9l{�� u+Xp#faJ猓L��{�4'K�������q��C'P��0�$�4%��7wR{D3ّ���<:]Y;��x�A��T�ig3>`��\d6�U����;?� s��؎��k>屒[��Z�m�v=]ZN)�uGI0��v�� ���Wę^>0� ���;@��m^�ZDP��8X���K��g—��!H
'�Ͼй�F����;= ��#ɤr�o�l Z�gZ�K]�w=���V�?��l{`�f�9�O�|80�8�Ó~��>�R���51�8��7VV�o��� �u� � m�(Ҥ�5�4�i��dY�| �-��-��[0(v��ѥ��X�-�(��1��#�i��
�8u�_x���f� =W��F=:x 7�t0 h��:�[�j ��B݇�(���cn^֥�ĉ���+'�G@��xd�2�͗��4�x~J�����G�֜9&��V�#��}�hV[��+�@��(O(f�b����I��)��2&�}�t��8�<����#3O.��M��m\��w"�5��؅�js�t-Qm'�]M�*��G�Nr�g�������c�� ���ɸ��´�7� ð�1��)�b��$ZG�0������Zq߇��������9��餖_����+����)Z)�k����(��dr�L�`�C��(�v�X�{t n��GU�����7�U$�M�o���۾����r̝�`�@(��f��JO�� �J�$)7 ���h�����lI+���ڽ�: i�;X���TqG�I�.��R�� rHRD�$ ��w�$skW�K(�X�>�pS鍫I$)�O��� kA�+��7�f��
���;��S�‚QD�Fg��s��X�����9��>�b} ɜ��׉��b���ՖJ_U�}U�
����l�h�f��&zZ���`w���N�r}��9�w�(a,���d��w���p�jܼ�m5���m�quL���m�q�j\�ը��U���l��
��F.��T�+��� PKfn�?���Pyjavadoc/jssc/package-use.html�X{o�0���p�P���%h��$]+ڤJ3^��4u�@���]A����N�d[a���Lj��|����wkޱ=+x7p��{08i��E��4,M�[.<Rk:y�1��4L4�q �)c�皶X,�EC��S-�);KiI�T�19�}�yGQ\���TQ�soǴ�u8�)�CF�0�
��p�Ep0���t��Z�PzY
o�Ħ�u�����������Z �5])��&p�
�<�� be)�)S��3J �3�0� �/ ��yA�q��gz� zN
Z@6�A}B=�cQD��U�<��;� %X�8n`J��J]'���u_���� ��bJ)#�}Q≊�@�w�QUmE��.)��s�rh��A u+Yp#Q�'��ӈ{q:�A�zpx�ַ۷�xI��D��t�"��Mą��h��7X>��0@���-�Y��1Ut���G ?3y!�}�}�;7�D΍�z���6�S+r���w�:����d1����4��1N׵{!\��ž2Ό�a`�xm���u����2�*w���(�?�lF�8���LAR:�n�)�)k�PZ`���ǧ�0��
Rm�Vρ����R#�k���= �����u����sA<<��M��Ad����Ƹ�T�Q_Y鮃O��,z�ph7<o��E�D'?���$� �g���`ނYۂ�؂ �@��u�]�D4��"𺜣܊��<����:*<´� 7������W��nԣ�r�I���+��2B�Z ��B��騘��cn�� �YIXR��"���\�O�Q��|� N#t;)�^��R��ԕ�YN�>� r�g����1��4◇�������@��LbL��X�X���-LS������ �84�r4��Ȗ9�:�y|:e��|�HO�������\2]�g۹~W�z�ʰ���R�ID���k9����۠ԉ�����x\���F�� �K��*i�}L�Cifݵ u�|N��3��B�����Ɂ�G �/������FIz�`]�0I"��h���$�$T�L��b���(��M���R��_C�V%��6��ī�p�F�v�ǵwj��*��@����u��x����(?�#�K"�ڵ��I�����
��Յ�Zz��YK/A8Jh���8=��$��Nu�:adY���S�P���E����|I��� ¯�[��S�|����oj�g�5 m`;bE(�c� i�� ˙s�gD�+\�7n�Vщﲦ���:�<����=�hy�v��+��\�/���}[�]���2[�U�2�muv��^��S��:����l�nG��� ����~�y����<7=�M�s����=���۞U׳[P�=R6����W���PKfn�?d�#[t'javadoc/jssc/SerialNativeInterface.html�]ys�6����;��M��Jz�!��0��`�����}Ʀ� /=�{w%���IӐ�������j�Z�?�nM��N.�v�\����5��
��Z���*/�2_,�5l��M�6�B��Q�2���i�0�������^a�O�/ ��x4?���Go�>��:t~e��\��U�]��A9��6u �I���n�Cg@�3��R��|���C���HT: �%R:9�tZ*����E��X$��R��^�u�B���cfޕ��c���s��*d��ʊO?����`l���o�F�[ƺ��[u�Q�4���w� ݑ1�P^ �;�v�� ��u;z����*W:��N�jv~$�z��Ͽ��7��W
#`h�y
���e%�/�<+�^�R��A�Z�׼҉� �@��kN}$�����M{��uӷ���Go��� ��9"�30�$?v�(d�Cwt���9��˾;���r��J������y��l�?|hI�M����7� ��u���� x���V��ϤzQ붺��2��c[�1����}τx�c�M+��镞N� �w�@p歹^X�P(O۸���L�sl��
FH��9�-�8O�yk0�-�~�)au�Rm�I��S�0��B���~YVJ�⧠A�V몢�������U�njX{�nWz?���=�_�C�N�X��I>�4ѪhZY�wUíQ�*)�#�����<r
�16�16Obl��J�y�)+�J��w�1�Ҩ�GM:�����
Sc��7�L �>���р��H�@ J��W��Y�
�DB6���7�湚�V>�l��p�+��4��ex��v��� 1�Vs3��`D�z����P8�K3�t7��� �ԥ\xr���Y�Q�*�b�������.ea�����iL�i�{F.�v n�
̖�_*�^�ip�۱�lH�{� ���Y��j�WT9ht��W y���P��/`�r�h~8�W��;^�����&�`W���'���$�M��ө���ᩄ��r�1f~���M@Ȭ��R����3&=X " I�Fmv�du�k�Bp�ost��r����������e|���aYL�����5&�U�\ŲH���}~�|��_�K_�����&����P��B�����'������N]��*��wL���Lj o�eS9o4�-9M!/��p�;��~���VԚP�,���eW�M��XG��:Mڐ�im62^'��8}���O�_q'�i���;��.9��� �I�.����"
���1�_B���hD�!���M3M&�F���
_8��a������gS�پ Z���K=g��Z7����9R`��n<�!��I���Sz�2L��h�j�����tַ��vKmk�=������p����@�.�”-��Q��P�����.��-���-,x5�,x�ѷ�%5��}[s,��5.õ٢#_��JlE��B\Ip0D�Yr��%�[����9s��z� ��ӘY�{�ZW��{>�{�'�i�4�lw�95 bѼ�YL?�j7���r�B���y?������̾Tە� |���ˇa�u[�^SS���W$��u��v�������^_ܹo�w{�B���,87/e���!m{�y��$*�^G�G�O�I�.�o��0���8,m�s�X���cQ�ޮMXp�`.A5��P�<�l�C�nW;k��BO�jD�ů�m]�Tg�u��O��3�C������I�$��S}� qF�G[�D�bC^��� �s�Þ�>�:}�@7,dԆ+GV��m�`���c2�=� t��/�"���.�\[�E�컰�U �����I,ؑ����i5�]�����m�v\ ���!�_.�5��x����M�ʿ'ſ��<)�tqZ�M= �:�[�|rov�"vLPǨ����4w=LcB�v��DE�j��9Ú�￉���.>%��vej/.�v�*������P$�9��ƾ@��Sb��p]��y>������ߙR��Z�r!�e!� �i�E�e+ԅΟ�j'��̽��G����d��?�K~�'*Yƭ�]��|�d:� tN��?�-�3�
켷m�\{�(¢P��� �c���
��H�5��u&/y�xp͸
�_Ftr3a g.Kݮ,4`�0n��ІEd�;�c�5��h;���=.���?�^8A ^xgX�-/5� ���X��>i�b����o˓%K\.��<i0��]�h�-j�+yȑ;!���P2{ϳ���VHWdFK��/�wѼ��6��ٰg�)���WM�K.���ҩY^�a�lZ�ឮ��s{�u5b W�-��DpGA�/�iA��"?�^g��*/�jUdѴm��s��_K�N�)�v ����I�g;Tv���_�[2��d�3y9�_nY��5�3?��8b9�M�NK�7��ai�7�t��l��M��h������(/�#ш�>G���[}\��+L�����G �;"#�J�p�|�� �Ɔ7�9C8g;�9��!����NG'���@M֦�\����tb��!�����OЏ��)�L&V�Xb�9��(�A�e�.O�L���a��$�� >�<z/�3V�,y�f.��Yj9%�sNy:��d�X��"����v)=�=/P j��;��+�{�u�[�@��@���T�3A����_�H�"*�
^e�P�^�H����M��ξgH�m�I",��B�l�/þ.$�>�ʦ�ʊ�H��b+o�98��k�XEBk(���/C��kzؒ^TN`T��.�!�M����/0c�A�e�b�z�G��3�����U�"x��,J)"� Hd���_�Dd���rI�>���(,� 1ᶶ��r�U��|�g�,�'�ٽ���dI &6��E�6�|���dHI�B#k!YJ# �M?��EaBG:ڐ��^�P�P󌥪;GsU� hH-c(,UH�-m `t�?m�WQT1pyf�h�-Xm8
ӱ��9d ����Q�ڢ!��E+ T̕�~�:�c|�� ��lo6�;o���ʆ��"в<�v��D�D��2���f��am���f�lAo��g��!qY-3ŵ7VY�P�D��D� ����q�LP�2X��IȠyV�����F�e1r.ȀE9^����� -�P���B��8u�Vԅ�庩3�ɦ*��/ȣ��պ��]h�!v�'��sy3� �R��sָİh�).'�$���l� �<�y������}v�֌/A��7��s��s.T3أ�<f�#8�=C ��� )2  S�� RvK�m�3D;5B�}97b��)�7�{�E{YV�Ĉ�L�c�b��P�� g�^�Zq�=� �8�.�!�T��KPrF����,�F�5�{ �"0�`q]4]A�mp����]�J��s'74�W{2+��f�0��?g�����jn��GUߐ���W�_��;�J�,Q�"
�#9�g��H2X�3� � �6�jR�B�d� v#cA��j�M��v"!��a� <� mw~3 �2�v&`h�U�
XN4O�oD�,b(�V7��tg/'�'�y9�|�� ��5x��̋��ρ��l��4���U��e�Zj��,��tmT�Q>Dx�i3��r_�#=�JD��D�\�1?�i��1������#uB�����Ϛ؍T7�W���C� ӌF1��,���7`��s�,:Aw�6�G|o7���)�w&!�V/��)�k�����Kt����`��f<�{�����Tbc�&a�:"?�#�pdS�pÚI5�L���n%���[�$v�/��ĉ�� ���+�]���bI0��•&h��-��(�q�SV�F~�@"d�dk�9A�5��ԁ���`�;a6�/k�a8i ԛ]t��M_��TM�؁�7�^�����2U9Uz�/����B���&�ɦM��k���,C��nt���U.�훻QBA�#*�g�J�r�Z��lK��ic�{e��lW���m�O�^�^�����$۫e8���2| �/�Y���<���̼�`��3�/�y}��� f^_0#�`&�v�w�ļ_ه��1���Y��=�PKfn�?<�A��8javadoc/jssc/SerialPort.html�]ys�6�?3�*�����J6gw�������t2ĖZb\�ɦ�w�{ 08�%;�zғ~�$�}��Օ����R��뛋N�N�B���~�Tj( �X��Tǖfk�X�K�fW"҃mONK������~�0�K�\z��%�0,Z�C����٧�B�>_���P�{L��m�N8��tH�^�o�:4d�n��CR)˷{G�1&?�H��^�T�O*��2��J�Z.��r�B����R#���c�=�Kuclӱ]P^&T"~w.���Ͳ�5<��E���U8fYW�J� }jj�~m�6<,�O]-��U�\�6�[�u�fW9�0+��^a�"q�N����r.Y��N�Jm�` 8�X�D.�f�\*KB��P+H��d�.��bC��$:k`jEF���<k��h�Nw�}���';~��Ս��"���� F?�F�_jV��&T��mN����9)T����LT ,BUM�†�!#,�k.��';� p<�l�'�K��E^�ˋ^�'r�m�������c�P�p�/�׬�.e��Թ�C�JMVH�E��5���5� u��V�X}�S�[ۘHUL��J5&�T�g��ڤ�$n��9��ڽ�@׵���FWj�&��ɍ&��,�� ��\��˟m���u��hw��G�]��=��\]���%NK��n�P�{�'P� ?�$ѩ���RW}�P�:���]�ۑfZ�i<{E���l�g��?�MB ���i�=�t t����=�ue13�L:� �Ͳ��:�=�5}|T͗"Z2��fL�_����5�rV��r� +��;k�5w#"[-�ΖL� g<��(��uղ�Z��U�`���EK����pc%� v~��MJ��C1�z2҉Iخt͊KË��L1'[i�ݝ�J���Qt]yz���<NF.AvA>J�C���W �e9�oj�v����f�ճ����N�>�7�4�K�����|^a}��'q�� ���Y��'���S#ژ`�K���\-""���E�h� \�����@�u��
�d��&�M/��yO��� �YK�f��!sʽ8�n�����n!�n�_m�˻�琼�Y�z(�& ��w���]�u<�
ccd����Y�j�N�<��ޗ�X���U*Ac9�g��+����?Q���5l)L��H�-�)����+���{�&?iT�: �Tm����t�8��-�:l���{�W�Wb=R���i��e�1C�� ܀�z�s]�!�UMOV2'~����rͺN�a��v2�����n#�� tuY7ٍ�!sI���D�3lۃ�DY�݅S�cҌ�DX�Y��g �v��:�/��~���I��[җ��PLjSs�Z�H�.�k# U�d<��Df9���Wu��CU^I�0�Ǔ靮 ���B02�q%��)�CJ"u,W��T�K��y!�6D��kAW����a����K�Ï����w:���P�� �0y�K����Ȗ�q�4Ӵ|Ō [, ���: �e�wʹ^�|��3��⾃ ��3V�=�^�Y�lh��.�1�&> ��*��B�p���E�!ה�m�R���;�5,6W�fe���o��VBx�WvPr �9c�R �Ń�%�����(�s���dƪOr�^ƽ�CǬŃܬ�r?��~�s�(�sϸ����619�G�Eq�Ø� �9�K@x��$1>�8kw�V�RU\��%����a_R�|���%��<�9|1�k�rO�e/���&0�����MW�ns�x]���OR��C�V��~D)�:��^�y�In��@)+�:4(m0�ǹ��j�F����sX����^��^���~��u5X9]�9_{U�w{!7k�IUq�×>�RսʡK]�/KU�*�. tM�s�r�A'��dRջ��K^�ߐ��e^"�~�_��n�Mn� luj`��&7�D*?6��qVG��:�!�`���0�7�@.!��7 8�M>�H �R�7�l��Ћ��nLB�pUP�� � ��m:/5XSX��|�*)��N;ԾۼK�D%�D%g�R ���LLbVz�OE@����K �������Oq�|�Ji:���/̾�+=�[�;w �oe���ĭ�"��7 I��]���o�P�wRU��� I�ʝ�HvNx�ִ���v���[���
K�i��y-=�0���lw�����TQH�����_���j�60����
fN<�߄�<I�2j�!�����߲�z�J~O�R6���{�H� =����*��N�q
l�e%k�����z�Ų��l�6�tz����պ�!��k��[j�Жq^ZIOF�ϱ8�[nK�܍a�F��RD8�t}0�h"��<��-¶=�L��hD͋�Zuc:f~`Nغ��<��1"w� � s@�X6�_~M��6�VƣS �>Y��c訉XL�6���Ԟ�e��d6��&�yv��N%\;�T�]ܮ�;#�Y�GƠ�La�4�j�������i���"��b}�2�@������wi�_�"��" A��؛�8h�@����ҵq��_�"��j}
B��-d$~Y�@�L�=[���N���0i�:��w�ٝY��xU�6=�ʹ��7���!xh��5�l�������~Љs��&|Ga {�7�w�^�L��=����qol���V�Uڐ�ΐL���͘��v*�3^�1��{��Q� �X �qMGl���49�u�wJT| LS}�J�9��{?��N6j[Cl�2���!�{I?��~�o�q� �Y���1^<˖������jb�~T':�������� p�YT�{2�%A��^IE�ŷ�D�� #嗕��Y����yʽJ�s��S�"�驄5zګ��B���>v�g_� �fdmo�\cj]��j�vc{~�A�ڦt߲��…�o������N 1���<3p�7����O�>�CL��ebd��`���7��(�<毩Y�l6dX��C��xfaoy �{�������L�h<��'{u��ޠ:��6g��W���{�a���r��A!a�D�Ӈ�{.�3?�n� m(ZC�w�s��� �j� 4L��넀R�����2Z�O=jG~����g�����m�|���
�������0��h�);���G�>��PL� ����f[ѡw~(L�h�K�5��=�z�D����۔���������]�m%�-d
6?��[�,I�et}�� ��(���;"߾���/��{ `��;�:��"��Ix��ml�=`�]�*���՜0���H{��Z���Z��c���6�rB�Ӟ�`�)86�Iv��>�n�c�L
��޺����&E��E�O|o^��^)�_���x�A��:��kq�}��̺s��9G�o�fo��緳��g�,� ?����ӻE+ӫ��s�x%�\�E��~�ښtN!\:�� �c���{2�`^J����<��=��C�³�ak��oM��C���{O�U���v��p�k�qw �.�h*�v'���Cj�$}v����Wϖo����>1�����
g�� <��=:�g�O�w�6 |���9!;�H<;<�Y��� {�n�L��x&���:� �� �L變>w,A݉B8$߳��E1��Ky��hD�8�3�a��� p8\��,q8L��� ��2HT������
��`!����q�X|8N��Er����dj"')�ȇ��ˠѲ�ԥ���B�q���8��m���7����CH,ŏ��L��?��9!���88��}��?* �r���T�5��A:6S�;.��D�,� ��З
&{�s1"Ka�2�����8�:
 e� U)�����&/�av�?L��G���(y�+�Q
�?~������]�/�ؗ7��"4v�E���_�J��{��/y���+�^
�D�"<A "e�
e���3L�0�c����v|�VƀC�@�&E�d�Z���$�0��`�� @]+c�C
c� N���
Ե2�y2a|ችF����U�A�P�0��H�c�
��ձpN�cH���L۪X(�x�,� %S^(��BY� e)^(��BY�� ��Hx� p��d���+ �a |�I1�8Ya��V��;�3 �?<
N�l`p���;�=�����!�������G:',�h�32�Fe���#�On`�ѓc�'W�
c'�ąܬE���/�� ��� ���p靰��o�q�)���v7��s��u�nV-]��B;���~���qr�3w��'�l��1�)$����)�rhKnۑ3*Q���V�b��%J�
�-��n��`�n⏮"����v��?�{�{�V r9�˲ˉ�5�����I/�ѥ��Ϝb���8 bO�m�p�����E��;r�k��}o"��/ߪ��oL~m+�O�ϩFA!��gE� ƳBY��X>��Y���X�;�s��:� ��X%�#99��� �q��M������˖?-��e�\�pU�"�r��r}qX�������ӠG���\�L�9�\�����HT��oLx��+��=�#74g"���ł���_��`�o-OJ���9�aê�g͂��R��+�{�At���Eew�x��GS��,��9�� �32��>q>fXsF{�+�'6���}����$�=�ջ�6^O'> @԰ :ּ5 �e�������ư,�=| ��K[A�<i|�u\_���Qr��6a�z����a
�
�����,�z��0�}��嚔�MG�,2�#u��3���w��9(�օ�Xx��yձ57oB��v+CH���w��x�;�X��1lF�W�����Y'��7���E�o�a���%-{�/8�-4{�kM�kc�мC���v{����Qy �BQ�W�ƙJ����Y�'�v�B�x측xNi�����aqz�B0|��fX�³�� �Wh&��,��zPy/���lm9�#���wl�-~��Ĥ#�#a]g�[" ������)n��v��I��HL��l����O�o
�~�X{��Ģ0I&��n�tX$-�����0PVQ6�7����@8��o����!0X��G
ݚ' l �Mȼ��y��!�5���$!ϣ�x�lx��.��EDz��f�s�5 u��� ���:F��;�/ljv���3iL-HW�x�!���yƻ2_�d��.4�����>��{8܁��fۤ�M����#����M�� ��"�Oh� 1�* � �L
�"2�w?#r/A+����f��6gFq��:��Cƺ��3a�O�����i�� $�Z �e��t�(Іx�̌������w, ������ 5��Ovޚ,�[�����ķ�O=x@R��̻Ih���V�M)�$����Qի4�"1hR��A.S����,�B;�F2͓Z8�%$��t���&�Q#��M���a��:_b�e�.ԛ�m
�^��%��-ߞ����E��3.�x��Ov6b��%7��z��ϟJuΤ�rs�߈/Vۭ<g]� n�&_@..��K�8ݮ���2{��TL��x�#�����D$y����E �!.��&):�mK��u�%�y��1�bCR�9��"+|�[򒕈N����[�-6�xe.��H�0E��zsv����Yx����;�[�-u��o{W��4 ���WX��D�
�ʛ���$hQ[�>!��[ M�$�@����K��%uҸ�S6�u�Xk�}��;�/��7&���@�/��B��J�~���z=6h�������R/�I�= g���0^n ˙r�F��3:9_��?�YqOPw���d�]�����[�Z�YCYk6�f��V�J/�U �<J�m������'�xٺ(� *bQ3�枭2�[|;�gp
#y��l�fy�n��]E`��(L�Hcz���� ��]��/����=ƃ� \�`<�p(�r<��'� b:��m.o��:���U �щ%�P��=����g;���"�C% FУATv7��Pl6�$P�c�ڰ��T������z ��Q�$��^�[�o ��b��/��^��k�J����KT;�š�O�U:�2����c�A5�
�� DOEt�3x,'P�̥�D�U� .�hi���3\�ɺ���4�J��� �z�'� ��e�a��� ��zy|Ѧ�
��yt9��n�B�\���{Q໯|[����Ҟ�(qWw;�›6��Y�4���j��{�_�e[v�����g&�ir�K�@og<�/x �]�ǣ��xt�d���F�e?�>���#sQ�}E�X/��^ �I�R��ڤw�"�5Q�6��Eē3 ��na$�}�:�AR� �A\1�1�9�g5���I&����<��S�d�^K?kLգ��@Ң?��V�m
UP</1��H�^Ы�l���l�D�UF�ɋ�.2���^�>Ix<������[ޝ���o�/�t���Q�q�C>�dJ���ș���xX�l4qj�+����vy�A]����IC�tFC#���S�<T4��EG�m 2� '��� �2���>�U��&���[��޵P���  _f,*�% +Uq�;� n���2�ӯ3�/4֒+]���F�n�:�ָ��ך� �jUs���۵^�5�mT�F���R��L��-h�q�;6#W!��}����Yn 5!+�W:���*]]m�6Źbn2J6��YX�O�.����0����-G�#��1�|jR�| �H��5��
�Ox~��?^<�m�Y���v*�Y� �xW����"f<�.��$=��b�Z(v��e"�A�6�^,��D2�C�)"`��NbwO�d,����Nq<�j��4�LDr�d�Dr�X&1�P:�^.D&0���rh��Y�C^�,��Y9q5H���-�`�^�M�J�D�B?� uD ����`Io~Q�bE���4$&�$���u�s��3Kn%���g#�q�O<�5J�S%�= �o��`��깓�EB�O�����ۖ
#�Z����o��(D�b�◶�'�T��dl �p �l�a$��cr8��No ��i���(���-U��R��R�Ѹ5#��`<�P�=n ��LA���x��E�4��,��;�gV��] {E ��SZ�c��5}2��u��������"�كTr�.����1��u����(� �_���h�ӣ%N.q��a�ڄ5�6��Nǐ�X^�g���OE=�O�<�FX�o�Fz�5j������)+��ḣa�?z���8#�U�b츍���Mu�/3!�>EJ6M��MXj
��IV$
�0�c��a '�@XTbt�Ѵt$W�t��'�+��� c'X��x:�n� #/��z>r���/���9=��� �B{��q�����15�4`j�gN$4#}���X����;[����$9����P� �o�[�5I/E�������L�j�ǝ� &%3ϲl.8�d���W
9� �\1�b�� ����Q{x�z,�Ȁ���J�wg �-�ߙ�_�P�'O�����E�|��-#Թ����ع�ʉa��'�ҪK�Z���T��w_�b�'�:<$;�X�?��ߌ�C7�j�-�^Ƀ���,�A�P �d�n�T���q�C�XZ�;L�1�hkO{'ݗ��\�T
`ED9��P�Ѫ(��70e�m�F�lˍ�h�F�W�kYu*�Mc|"P����e�ի�^e2�����Wh|�PKfn�?�F @[!javadoc/jssc/SerialPortEvent.html�\ms�6�~3��;m�i���mr�`�`l�]�_2ƈ��cSۄ^_�{w%�m��� ܍����Ͼi%]}����JZ�M����;��
���!ˊ���o��21|� ���\ӑe�+i��KY��f��E���dC�����x^@��p(U?{u�y�Х��yG |�VٷZSD9��.�͐��#��|0��ENS��r��b���S���(�"�eR���|Y.�����e�D�K�2�ܨF� ����~�H � ���*�?U���2�_kl� +o�f�Gƺ�6:*��ԷM������D�������" �o����5*�S(���'??M퐊��) %�j�XA ���6+R�(�DEV�����E�zCk� ,��/�|{"�h�Z�82�ݡ73�С'�����W>���8�e"Iq��Q������vP��:����~}J*R(��+>��A_�{� �}`$!1�5���g��A�q�Q��^|//<�#Z������~��uzZE��m��:�9��E`���Z�'��}�n�4������Aeo�5-*vi�5�z���`�\c$B?_�Ia��D��=�����$���@���zG%������$�wm�hU�r��%؎���k���^�+���k xf����"q��U�C�n�<��*|�Mh�S����5�ߠ�S���ގl?}o6������� 6 FI�Ӿ�V$��`Sy+��߈F��<Z�U-��߂��'��cL0��7�E�i��_\n� �_��z�ϫ\�u��� �W� ��W2�j�'�-�>g��^��u�p� ��]�rIX�jaP9�}yd�&�H�����������0v2��Z8�;�%e^幘b�0�!΋�r��H�\<��3)@H��H h��!�0%�(�������w�p9&�������z�j�׼�ht!&LJ4�����_�g6NbbB�]8�]�T<�h�[��!Ɵ�i�0EL��1J�L�.��U1���n(;�!�(C?e��j�wr(;{M F�9k��D�ֺ=�x�ksBp�o{t�ӄJ��g0�e惬���E)����M���|�G0�\�qH�F�}}ʲ��"�0x��t�|�n���� v��1��*m�����\�]U7T����P�#�:�[1�J�f[�(��
rȽ�'����J�3��H�{���^ �n��� lX�$�ݹ̆6��i;�!�u����q%�h��%�Pf%��W�*��w)�eisT/�1s1�f��B1�;��DY���C@� �f�L�%� ��:p�1ݻbo��B�,�k�k �-> ��o��r -��;{$�@�-���C>�d�<S�ՙ��9f�î m|=��"<�C3- -�. �����@l�'� 9V3����%�rbu/yۚL�����b��b!h�g!0́C[���]�s<��hE#�CG�4��H�1��s8b �s0Ki��Z
e�am�͛q�g�8�L>'j���0m���ڨm|��2UN ����~��싻7�dm�9�6�Fv�"�����.U�r��&RStM���(�M��j 5U;Jm#�i0�HU�嶑�:�"U�z��Fr�Ѫ���n(�f��ʾ�����_ԛ��^����Io>���i�e�i=m>�X9�X��~*�F �g��H��I<;�CP�0Hv9��3�ȞR���'@ׅ��3�/�9NC��s=�[ә��C�.�'[��7�e�%������צ�O4�(< �<�_|�����5 CP av�և9=�Dу�H�����\ |� .�vZ�T՘" �u�Op�F8����\B5�:]�>��,�Ђ�M�9ۅ��iH�ш�K�D.��9�z! ���t��۝�q��\4�g��M�l�����%ވ�+����5�g��7��.q���
�rU��C�.��U�-G�ڥ�"6�K���r��j�{3�U��{~������ =��i���s{%4q���$��ݸ�^��s��>���.�X�>�|���p��}P�c"�*X5�e�]�˻����-j?@�1�!�@��(�N���\�P��Њ^�`�@5��C�Xx�jP5��9�T�Ūs��;�"��� �FQ����^�&��
u!��/7F��+�C�>N!/6R��?*d�ph�6�QIb�5��܊-Ttx;��[���6��i��*|����t�n��:_J �ADb Wz�V}�%VaX����_����Ȇ?����70�ǽn�nl�7�w�ڣ��7l�<#��$03�p�*,m�Jz���Kz;�Ԙc7�|�?Eﶜ^~t3�°���B�� �e�W� �Ix��Q��o�\���
���s �o-�7�턔Ԝ��� ����~�3����)LY��� Q�p�oY=�X��WK[-"}h^�h$�h�k{�"�f�E�a ����m�E�@��܀�v?`���*z�#+z~/V�=�����0��B��sCE��`Ş�˖W�в��p�~𲮶�j�f�j��X��dƪ��������`jw�5���85K���Y�m:�F���Kg�4m��5i�JT�4��_{l�g�m9��Ή�9mU�=4�M��A�i��m��'~�M[�A��$MMg�3���0����;"�G_�#�4��&�j�"VP��B�w���6��J�c�\�#aNΏ{Y�{Y��˲��G�����f�X�Dc��V�y�5� V�w��� 8*��p�e� ��F</^Y�y���AC��̊փ������5HE_�X��k}w�ͻ�bk�w�Q��0�jg����(7�����P��X�o"����0],�a������ݔ�5HڳQ��<�L���L�=9��NtH����Ǡ��t�� �w��1h/ ��|'�q���ah��<���J�Cې��yh��Ў��C;��v<�xڳ��6O\�#��s: N����Ĭ?q~��PKfn�?�WL�S)javadoc/jssc/SerialPortEventListener.html�Ym��@�n�XkT.���o9)��rKK������rT{-� h����nK�z��H/i��ٙgf獽����wC���B�Wm��A��(oE1�!&Uk*‰� �� Ŵ%$M)��*�r��.�8�P��L�e�H �8%�1K�۷�wd�&ˡwAd��W�4u#�Gg$"�G��E��7�}T9����'�ڇ��G� ��Gu�����ZCg��8��P���HH�XG �L>σ�&u−����H�#M�� 尟#�%)��+ܕ�q踏-^F$ �p'�\�*+H) JN������Ic����cc�ƚ�p�j]��� ���K�Ҥ�~ I:%�J�mG�OS �\��IժRU��
�#�9c9��!F��X0;�~�(#��#�m Z�8^ �rr�ַ۷\�U���Iu��I��gRy�2�# �F�9yp�4 �� bk�k�%`�*���P�@vXNz.V��}����Ln;Ż�6`C�1���P��X��I�i��Ga�a���s��=��˼M�/4º���E��ֽn�n>��Q����8��4�I-ƄM7��d�t7���5B��#�\x|� �J�r��-��0A����� ��$�V�>dZ�P7��}��x4�;0�ģW����$�.��z���ꅕ�pu����G#M��E�K:$ U�jM?L�$�I�\��s f��Q��E��?�5���@��1��i��3Oj�E�|LS_�y�'�s��套|��=���L��
T�i��bISi�����{?:Og�!ҍ+`u��K�L,�!��p���K�B�țX�g\�yJ�Qx�M^��d�����CB���g�����,!>+?r�9��Z�@��+O��ٻz�>#�S��$�ɐ���=8���Mě!�W���bJ7sr�7<�5ZMs�W�c�8c�� �ub[�z�ʨ��\g H�-��r(qKd�>�8D����⚯�@f��������d��[�!��96nd�+<��y�d��*9\/� �`�B�av](/+��0�/r�t=㽍B���g0���AӀ�Y�4�lF��V�o I�(�$ޥHg���#&sxNx���*�����@L�{b�SqRD�F�m�G�J����0�m��i��������h�G���TtP��N��fK-h�{�Qr��l@�޷NomL������Z�W��C�O[�i[��FGʻ�|�V#+ � ��d���� �𾏅r�k��>��&�OЎ`l*�lİ�Lٮ5������p�l����
�� �b��u��0~�}�L���7=jO#�^�|7�7�ke��ZY��yHz��E'�D���.$*��v���r�C�6h$��(���ե�� č���j���^)��o��c�YE[��B��v��!(������)��F]-Q�H�5���$��M�v��(�iI�P6�=�:���w�1[��� �����hP���+S
�-3n���Z�M�׀��ƿ4E�b�����_uD��H�F+{S�Q����V�(|g��d�޴��A^��;:9�)�/;=������x����� �7��P�g(�3���� �x������������n7���(L �o"���k�'PKfn�?6l���
lN%javadoc/jssc/SerialPortException.html�\iӚ0�ޙ���N�i�}��N���b�������$r)-��w��f��d��d1�s�"h/&h��<鍆�j<����&����Fi�n{�o:�n�$s�[���>�o����F�q_��/�u������?�:gϴ��j2�N�׸V#��+�/uŠ=�6vu�ѫ���^�;��jcZsԬ߮7f��\A����� t���7��j�o6У�v�q�~���7�M�ZKZk���|������״�k�!�ݵ9�����]��'Z�v��� ��S욺5q\_�`�5�J�8lN67�}h@PdM��6Gd�5�׮79F:ʏ�*�P������"]�cx���os�:�ii(��q�r*�É�|P-`A0� �\�d�� "4ښ���j�o��WΞ�|� ���@�-�� I}��E��eq��Հv��۾�����v՚W�|ֺ X֡�6+r�� a5����왯A&8�ZV�k~��Ka�=E|�z�e��mn�4 Ԏm9�nw�{@;p��z�����j]UCJi���i������i��_���w�\�0!�-�KI�>:�5׵B�<7_�}˴�z\X]��F�)�(�. =�ڠ�5� `?�h4��P~���t���O���]�E�c���o̎P���1J�%����bԝNۜ���鮀-���k:[����6R�@攘���7Rb"���h�Hns���8�4��vC���ĒZ�x���<�_��[�k��j���dl�}�I&}pM(�u&�J����{�~��(s���'_,��X�V mX�tϋ��i�
�Z�x���e�x�}� ��w1.#���#���]l�)�f��_F1�򳄢n��0����2� �ϒi��u \{A@{@��*�zv%2�:�|���~��3��ntZҘւQ��L�YM���L�/��ծ�ÄM���a�����+��ٛĝ-t#�F�s-���5Np�)�if��``'���s-�>�^+A�c�T����<�����1�Ud�"�U�]"�*��;8�
���`<����sq�� �6����(�ٺ��e_����nY�+�W������7��u- �0���|%_<�iA�C�+4�
��_l �0�Ib�e��F�Y�3�}�,M5Id�_R]z~abk> &b��J#�HZ@1�1��;n\ �試����i"�"��+,B`?��Wm�}ݴ�O3V��b��X��G��tXJ�$
K�� ��0 ��z����Į֍ ���u�N JN�@HDOXSKF9.��3&�F��uK�_וWo���3?BSU�#�Ş�q :{.��_m.8�X`F�1���0�N�J[B����0�G�I�8V�
C��U�ŦG�a�G�[ ��p��0�a�j�M�}R �D��k:g���ŋ̤���dLZZo^Y���TMF�&�A�� Oz8�e�Q��*1x�5z���-wE���"�8���>��q��[xl�t\�/*�GF<�������o�w��Ro'���i�X���k��������>�����:<2eeД)���AbI�I9Tg�d8ޅp\Hy`�@Q�x>�� �#c���.��� I��wZ�y/a;{��df&tem�Jc�4 a��%��1{�V��N�œU��2��SI�����\'��ru�C��uG*쩽��בD�����a�����U��D#��8u�1:@~2�dE�M$u<�ܳ'����K����pJ�U����->A�U��2���Գ%'[?�'�\'y�H��W��`�ه'>&̡�H<���"��b��'�q�D�5Z���wv���չ�t�5�XPN���^C��\����B�˰d��Z6Ư����'��X��j8���Ar�w�u�#\n{�����O��6����կ1y��e2�g�x9��>¾ڠh ����  ���SX�~6�+f�6����a�� ��Y ��X"�w�d�{Ȁ�!���C������N!�M�K�5���X�/��SR�=媽Y�����uV3�p�夭~�3���v��ͫC��ylEJ!�T�E�Q
:��3�
^����ԇ�4�_�X��o<v5r �c��_����;5Av3���ޏ�J=��|'1.�k,;�/��XVaX� }/�w -L�XA`�2<[��Rp���v|s�1���k0�M��T'9�0�˦ٛ%��썀_׽Ղ���$�HuI�p�(mg%i n@��/(�^,��l���!� ��"nT�8�]�l�B����������Tv�Xw!���O)�0ӝH�gЌ���#��~#���q�K�.��e�* ���qK�]��dd�B�J���b���0�X�t��`����NKR��E�0W�7��/6O�������P�"���5m�gD"{��`ܨ߅{���B��{"���,i5��bV�]�&�S�V�&Q��蘢����^��s��$<�a��D`KȪXn��[?7���ƫ�l2.X�����k؝T��d��;��u�<�.x��Ǔn�roߕ��V�B3���>��� �[k?�Ò�a���A�M�ǝ:ԸR�G��q6ډ0Äid~ݐQ�AV�vD򽊳ZeT����q�3�Ŭ�)��`��A �Yƒ:e~Ք�qR<�Gd~��S4M�?��w4�+���U����}@��tF��_Y����Ng��8�p:#�tF�錀�%;�Q ����Qq��� 9������ PKfn�?���|�^% javadoc/jssc/SerialPortList.html�Zy��@����0֨m �(�-B�R�cJY�ZZ�.��ݝ�m)��x&�ڽf~s����5Ιv�}rjA���A{���zG�Mה״j �ċh��8�B]�F
( �V�u}��h��'s�u�[���0�)Ѧl�4Ϟi�S�ٜzs���ͩ���2�q�G"�x�La�^zo�i�Ce��)ԴZ�����G���ć��귯�nתpo�^��oW�pR��@rZn 8F��^o �G�DLu߭��l
#o��}�PŒnW�%��}w`�ǘ$��� �သ�d�F��e(S�!�=r��k(�Z;QOj��:��c �P({� �)���"�)U��X]C�4=����g�ywJr�q�.0�*%��G�$X1>e��|n7��4޸ I���3Ξ|�T����m������[{V�PɑMn�dM.]��v���Yy �QCs���!}��0�\���O\y3W��ο��or���m�|�{{`;��Y\�q����r�f�9b]�[F���m9.�]p�S���v��FS�� yo&^��+�ɉ���SR󜧯���32ٱ�?�{B�a��J��m��mǴP�����3�Z�z]� N[����.���:����Ö��P�{:��D��F�I���>�.���cCyo�^�!aXSK�b$�%�f+�0`V 0��Z������$B�R�a�F���H�ܓ�|�����W���G�^.���w4��ŭ�O����#��\���('�(ĽM��np��.>�a9� "�������;�Gi�v���h��T�5%���;F�w��hL�UXB�18܄� �&S�J��s��s��w��V�����1��|��´ �Jŀ~ ���]F)]�eʰ�ń$�/�~H�~$"Z�ٰ�b���S�;!��ʒ�d���O1�'<�H��h�� �OV<� m�1>�lD���h�X%S��\���8�b�+.�Oa?�I�ݭy��{ɜ`��ý@�u0 lC�Jz9��Ȇ���f��3��L솁�%Ƕ��$��0�\�Ձ��0��Q<K�� :\+ �#3x�.�����uLw_�M��O�)�6�/w�ܛs_�� eg�t�,����m�Z���(_ݾ5���k,�1��}'/��4���� ���-�i�+�m�;��L&�����C?%� �����_�^�_y�T����K5�52K�^�)��l]�T�������u��{Z����t椅C��&n�r=�-|�m��^4���K�3����=;�� ��:�E�Z !�̓���9�M��MlA+�k -rv[�́�E]���z>�ЊT��TɌB1�#���L2�EKy�qm'�=�X���F�\�Zm_�vm���;��oכ��G�i�;q'rE/K�!�1e{(P
���\��E��i/�����THS�h�x���l6:�iq_(��r.9��W�����jrh�� �N���6����6�-nhd����/:��1��� �4��U�\��#��t1���K[�1a����s�.�!����1�TO�w��o�# (����%���P V�-�O� @�QF�_��?�2�#��$^�!�E1��9w��)��x=��6�>Ia+p��$R�����m�0��U��E/�Wa�Y�{�/x�ž�G�x�}Q̂ٻ���U`��ϫ�����7CR!��󙬝�Kg��s����T;"��B�B�*)t_#����F���K%T=/�d�r�p�\�V>i��_�K�%�߷s˿a<���n��\��6�9��[sw�A[�f��5g�.�$d����IDos>|X�45��8��@@1�� �3x��И4ߓ$n�&�$���� uB �p��O��x�Q��-No�����P��@vk\U\��ȼ�̝�|�)cr�.�֗@m�u�avx��m�$f,^wa/���w�R����߼��m�}��_�����m��������k���/���V���}�p-���{Ά������w�gPKfn�?B :{�javadoc/overview-tree.html�X�o�0����p�P���%X��&]+ҤJ3^_P���!MJ� ����N�>t> -���>���w�ǎ�X^'x7�� ���~U��vt�
,��H�da�SF�$�u�vPf�-���j��V�Z��ꁯ��<~��i�m�&J����;���0<%��ǜ�x�-�X�c��,dd�s�.�IAm|F� �������� �E"h`>l<7�p<����ШH);hǨ��gti*�4a$ajp�
Drd*�|a� �fa�f�]�����ƏN�9�(b̢�9���R)�m lS�� �w<7���T8�h� C��N�}�퀩��<&��7C%�sz��]���,�d#>]�u��0�:����QF��Lϒ�[ V4�������n��v��C�P��(�$�,#S ��oZ{@sّ n��<8��8��xa��������!�u\� ����[���I��|]��[_�!w����w�>�x���jF��I���+�BX��}�k������u!��h���_�NS�1 ��0��҅��L���$�q���B]#�B�����P�|L�O�RnZmdž��[6�RW�M�
z�b����ql��,���������d0h��LEz�/~-�7N嚍�S�k���" �5��.�a�!ql(�k�aJ��e�R�'��`ַ`n�@��r�Ǯ�D$A�R�u1F�%��'x�I�>�y�/���.��|f��ͨDo�&�.^zW�͡�r��QIN(t����� ���u0�T��R̿q��}t�\�O�(Cn��N#/Ȉ8�}$�V�Ғ��H�S�Ӝ�cD���W�X"�P�R����6�A���Ќ� c�>(zH�������˒���=����
��FĚ��=��Um.�������f�Te��Im�� �}��*g\�mP��E���m[�s}�.I��d�2ts1��=�N  EFh7�>Fϑ<�Zid�v/^��f��,�#6�iM&D�D�U���*��ڃ
b��O$W�t��s�S k�1t�b����H���c��IB��ו�U �M�o��E:�Nʂ�N!`��N�Q�E�Q��JN|��[�4�M3��e"�ؑ�C��a9�7X�7UMDI�\�kY�˓م�4�<ꁺH��
�naZ�8�N�(-#�E�h�~��ar�y�$b��I��&��h�X�,I�g�iI�U� 44�AX��M��� v�fl?Y���%I� ��_W�C�+HB�JЯl̰| �1��/b¯|b����G�r��}\����a��%t�{=�-������.@�TW��u~�#݄NKY��w����۔�$m/�A�~Ք�S���~}���[��Mw�E�Mwr�n����t'7��Mw�wwR��e�?٭ v)��{T�+���PK
fn�?���javadoc/package-listjssc
PKfn�?javadoc/resources/PK
fn�?M�99javadoc/resources/inherit.gifGIF89a����,�� ���Dr�j�Ԑ;߀Q@���N;PKfn�?9خы�javadoc/serialized-form.html�Y��0���;#`W(I�r �Ei�n+ڤJ��yS� �Iq�-�xw�vғ�r �6H��g����`�����^<ԉ�=4x��u�5�x�p Í\�pG��(b$+��I ��1�S�� c�\�ˆ����Ɣ��;F���G|�O�^i^�4�.dB5M�W��l�\G�4��p:Bg�rNFy���I:B�~O����?Fy���KcT7��xx�|h��i?�]k<��P�f�HI�{��F��[$�v�ӌkч9�(V3 s�K؏P<%���z��zԍz ��%$M>��v�f�bTK�(��{̝��<?�����u�nbE���OP���� �!�ŔR��pC %.
�:��ޤ��W!Ȇ�s�o��A�8�T��+b�̹ /�Xx -�l�/�������OW� x�1:J�}��X2�>�J
�Q�8[�[�Ȳ�f#��|愁up�b&��s�Gj��W> �)�¾~�1�C [���N���^Na�<Ks2��b���:��W-�z�0��m�׳�V�塩ܘ��3�^�|�O��4lIR:�z�6�k��R�#�L��|�do \m��V�C� t=Х���u,l�j7��x���vݮ
��|8��K���~�_ZX��P��p��o��V����n��=Z�'�-���&����� +8˗+�/������!��^�ԷpL38S=+� ��q/N�� o�"6�$~+�K����� J��nshå7a�u2P[�F ��Rכ�Y1w��L�sRRJ̟񴠿E@e���.5�(=Ġ��ך��3�Ԡ�I��⮶�D2Dj�b����!������t�A >Eh��PqŐ�^�\h�[̒ɔo_b�e j�4�������F�� ��j�+U��W����
� ���Q���^D�NB�/�������b�Դ1$5��>a
eD�+Z'���P��?m�\1>���o3�n����❌�T��,`����d`�4;��I�4��Z����P ��i��Xa�u,�g�c�?.H�b�ge�
�߶�w��:��&l�o�H�|w�D�*���xP��Q�ܯ��1%� ��<fw0:�+��%X�[EA��E�Fq��!9K�pq֡d�d'Os�6u�����-o�v�D0�w+�D��9ƃM?�m��� g�{ӹ�����,)s���p��úS�|ESy�Wc,7%���"���/J�lT�IOI6�W�(��S*nr���(� ���8��/�;ż�)�3��8�"��������r��bum�!gN\��R1WtM���5�/B*3ʧ��0)������@|��M�� ~� �^��
�(�W��[ �Y�y>;�S��w�t���~�0���~�5/;��]vb���e'�C��*ů���^l�^�oƔl���R^��/PKfn�?���c��javadoc/stylesheet.css��]O�0��I�'1��#Q���1� ��g�lk(k�v3h��v]a���������ޞvN�s � �^r�i8�4͆Y����3��T-�D�`�� Iw��,�4)0�Z��IJ�� �3nn�/8��Rd�f�v9�>���v�Gc[(�G][�r�{�q��� ���V��л�<��b����O���S� #?2�G��P�a�YN[��,�F�xw���=�8�5�D�W���|����i���d SK�S��Iq���gJ�\��ĔiN����ʉ�/��xN�Ͱ7�!o��T�IՌ9�u���/ׇxдp?ph�3�,F�Dj.DVo��1�i�rD����z���݆��&��Ъ�W�5�uGծC�y�"�ҙ�K���@�h� �b���F�K����k��?+O��e��/PK?fn�?$javadoc/
0�sο�0�sο�4Qerο�PK?fn�?*�"NX$ &javadoc/allclasses-frame.html
0�sο�0�sο�0�sο�PK?fn�?#$ B�$ �javadoc/allclasses-noframe.html
0�sο�0�sο�0�sο�PK?fn�?f�P� y$ .javadoc/constant-values.html
��@sο���@sο���;sο�PK?fn�?��Dr��$ ljavadoc/deprecated-list.html
VD|sο�VD|sο�VD|sο�PK?fn�?�H�ؚ
O%$ Ujavadoc/help-doc.html
0�sο�0�sο�0�sο�PK?fn�?$" javadoc/index-files/
VD|sο�VD|sο�j�Zsο�PK?fn�?��_�q� $ T javadoc/index-files/index-1.html
j�Zsο�j�Zsο�j�Zsο�PK?fn�?2����!$ &javadoc/index-files/index-10.html
��ksο���ksο���ksο�PK?fn�?8�Zd �!$ �+javadoc/index-files/index-11.html
:�msο�:�msο���ksο�PK?fn�?�G�� � !$ =2javadoc/index-files/index-12.html
�wsο��wsο�:�msο�PK?fn�?��y��N(!$ �8javadoc/index-files/index-13.html
��ysο���ysο��wsο�PK?fn�?X;���0!$ �?javadoc/index-files/index-14.html
��ysο���ysο���ysο�PK?fn�?c���%�"!$ �Gjavadoc/index-files/index-15.html
��ysο���ysο���ysο�PK?fn�?33C�%D!$ &Njavadoc/index-files/index-16.html
VD|sο�VD|sο�VD|sο�PK?fn�?k����" $ �Tjavadoc/index-files/index-2.html
j�Zsο�j�Zsο�j�Zsο�PK?fn�?:����� $ �Zjavadoc/index-files/index-3.html
j�Zsο�j�Zsο�j�Zsο�PK?fn�?��ص�� $ |`javadoc/index-files/index-4.html
�E]sο��E]sο�j�Zsο�PK?fn�??3v�- $ Dfjavadoc/index-files/index-5.html
�E]sο��E]sο��E]sο�PK?fn�?&�_�I $
ljavadoc/index-files/index-6.html
�1isο��1isο��E]sο�PK?fn�?""8Z�b/ $ �qjavadoc/index-files/index-7.html
�1isο��1isο��1isο�PK?fn�?���wX% $ �zjavadoc/index-files/index-8.html
��ksο���ksο��1isο�PK?fn�?rG��%� $ O�javadoc/index-files/index-9.html
��ksο���ksο���ksο�PK?fn�?��.T�f$ ��javadoc/index.html
0�sο�0�sο�0�sο�PK?fn�? $��javadoc/jssc/
��Nsο���Nsο�L^�rο�PK?fn�?$ˉjavadoc/jssc/class-use/
��Nsο���Nsο�@nEsο�PK?fn�?����1$ �javadoc/jssc/class-use/SerialNativeInterface.html
��Gsο���Gsο���Gsο�PK?fn�?���`�j&$ (�javadoc/jssc/class-use/SerialPort.html
��Gsο���Gsο���Gsο�PK?fn�?[^��\+$ =�javadoc/jssc/class-use/SerialPortEvent.html
�2Jsο��2Jsο���Gsο�PK?fn�?�5?"�3$ .�javadoc/jssc/class-use/SerialPortEventListener.html
�2Jsο��2Jsο��2Jsο�PK?fn�?���9
�V/$ O�javadoc/jssc/class-use/SerialPortException.html
��Nsο���Nsο�N�Lsο�PK?fn�?����*$ ժjavadoc/jssc/class-use/SerialPortList.html
��Nsο���Nsο���Nsο�PK?fn�?N�-}� $ �javadoc/jssc/package-frame.html
$ 7sο�$ 7sο�$ 7sο�PK?fn�?$�U>i�!$ ��javadoc/jssc/package-summary.html
��;sο���;sο�$ 7sο�PK?fn�?3[>b�$ X�javadoc/jssc/package-tree.html
��;sο���;sο���;sο�PK?fn�?���Py$ ��javadoc/jssc/package-use.html
��Nsο���Nsο���Nsο�PK?fn�?d�#[t'$ ��javadoc/jssc/SerialNativeInterface.html
�sο��sο�L^�rο�PK?fn�?<�A��8$ ��javadoc/jssc/SerialPort.html
��-sο���-sο��Hsο�PK?fn�?�F @[!$ ��javadoc/jssc/SerialPortEvent.html
�/sο��/sο���-sο�PK?fn�?�WL�S)$ ��javadoc/jssc/SerialPortEventListener.html
p[2sο�p[2sο��/sο�PK?fn�?6l���
lN%$ \javadoc/jssc/SerialPortException.html
ʽ4sο�ʽ4sο�p[2sο�PK?fn�?���|�^% $ {javadoc/jssc/SerialPortList.html
ʽ4sο�ʽ4sο�ʽ4sο�PK?fn�?B :{�$ �javadoc/overview-tree.html
�Xsο��Xsο�ZQsο�PK?
fn�?���$ Ojavadoc/package-list
$ 7sο�$ 7sο�$ 7sο�PK?fn�?$�javadoc/resources/
� Csο�� Csο�� Csο�PK?
fn�?M�99$ �javadoc/resources/inherit.gif
� Csο�� Csο�� Csο�PK?fn�?9خы�$ +javadoc/serialized-form.html
� Csο�� Csο���@sο�PK?fn�?���c��$ �$javadoc/stylesheet.css
0�sο�0�sο�0�sο�PK00,�&
PK
It�? META-INF/��PK
Ht�?B.l?��META-INF/MANIFEST.MFM��
�0@�@��FZ+�jqp����59� M��"�{�&���0�$���C����VM�3��`qK��R�v$��~��[[<6��
V�)�c?2K�^���]ku7�ٹ��Z�CN��(�: ����3{�q�na���� PK
It�?jssc/PK
It�?libs/PK
It�? libs/linux/PK
It�?libs/mac_os_x/PK
It�? libs/solaris/PK
It�? libs/windows/PK
It�?�p��/ jssc/SerialNativeInterface.class�Wk|��O�5�,!L@Hx_�@P0��Ѳ �hvYL�X�d3I6;qf�$�a�JkUjk%HU��E�Bk[l�R�}��>>�S?�s���3!$��sϹ�q��N.������Q܊G#8E�*����5�|=��#�F*U񄀇U� x$�'q4�oF1W�=�������:�U��S�T��8ŷ񢊗T�P�'�x��8��U�=��*^SQPqFń��8�✊���U�P(�Q��,��byC��8�io*�f͞�vL+�@kݧ��z��>��f���9MV�q��ۡg�RJ$͜e��}}��-��ڒ�k��%�x�jI�lI5�u�E�(��-;Z$�HA )�-M��)� l9;G�h$��̙�f����&��Թ�f�H�{ {�ޓ5č�����mS�>1����%��'S�6x�M�y�hɹ�ݧg �Uf:�f�6+�k�[GL�U����T�a����;��ۆ��s~@r���1��i0��mfV�)���d=�S5F\[ϸ�Q�8��k��;���n+/��v�u$c ��-/"��$�Y�6�^
�0���E] �>H�"���N\��fnh�z:�"���n�yW2T^�6I��U�o�m~����H��n�^���U�3U�)ք��ا�//Lk�ȵ[�l���b�p�u[d�D�Z�Ϟ="��Cy����C<��L�r|Z�J��P~�#�:I��O��r\��LtX7}:#EZW�a
�ؙ��QAh޹��Dz��᱓?!�ئkLQ�Bf>-&dy�d�sޝ�� �*�e�a6�k[٤�#���+�C�~Gĭ�k�T�ʐ� '��nޑ���&xm:�n�d����vf��ΰ_hC�;����5��Ց6�|ײE�Yz��h����+��۷N\)�m�ML/7A����V ��s�E%� �t/�7�^׳����/����f����xG����<���p7~���n ��,��)c��Vlb���5֭aS�w˩�1 �1�?�=�"��h�8� �@��@�9S� 11���_�W�Y�Su�I��#EM�f��f�B�|��%q�,�()jR�,oK/�8W�L��t��a���A�#b 都 �'b�b�������M���;����HŰS,��������TX�z��Lfi�9�8?97X�%��lڔ��Q��W/a}�M��V;���H~�YѪky$>3S\MYݡ�r��Ñu��񲬠zvW���ȢK���Ґlmf�8��ކ䬡?�F�G�"�u\��%�U��!g� ��krx��|��ƽy=�\|/#�u�� �v�NS�Y���?o�W"<��״)M���q+�*q�9/>*�o��W���.ᛉd�Q�[�� �M��fDE�p_I����� �Ъ3PNI��aI��s�y ���QQ���~ �F�6�C�n�$k
�!FC(�q�KJ�� O�J0��`1�F�{��F��b��N�)��H�MqM��3�"���A>H_���]`���V�#��h`��xP���x��sPw�A�-�d5��^���9��C�7�3����q��
�x�"T�0owC��i�U�+���H����U.��"T����q��{����X��:��G%��-=A�p� �Cx���aB/=X�� b���1~a��O�GYtOQ�����Y��9d�<�� �9A�ǩ�E|
/1�'��-�L �i� 5�Fmgel��C����Q<���� �⮘�m�����O��㸇� 0�~6Į[6���守�Gd�R�� y���S�Y֘�^��b���^�,���XxB~sO�����s.�9ڢW�`|���f`����]2��J���Š�����p���f�t}<�� 8�� 8��
� ~� �Ӹ_���~Η��/�&M����9�~pr"u1���E��P[<�%Im)ה��k<�}H�P������0G�! �8k� �I�nN%iE����Z� IRy�V%IQ�:&�V[E�b��jyP�դ�1�V��hX�K�%�DTz�V?������[C�֣������@Cx�><�I�U���=� ���`Cx�fa����ch�L�&;��[�p���)��i�����c��k-+z�d=�p �+��iX��_�a���@���O@3�~�c����Il/G|�ý��Fف�����!r�dϜ�D��1z�}�%�͞���rܭT@WV�Gن�҂%S`�>�΂8ɞ���yN���+��=�?�P��—� `�r'{��>,Sn��Fv�EΔ�о(��PK
It�?%GX���jssc/SerialPort$1.class]LA
�0��j��?����7��Q� b\jKH �>΃�Q���� �����x(�)(���V� �˄yš���C�n�]�g���q�����(��6FS�B�w����9򾡰����ܲ��/�/%6�w���`$�`,8�K�C��'PK
It�?�x�z� !jssc/SerialPort$EventThread.class�T[OQ�NO�-�b[@)��Ki�.��hM�$mH���l`I�&� �w���D��M$xIx��%�ٶ� ��3��|3�͙i��~ �L$dI!R⚖т�b\�U����z3n঄ � !{��ԕ�fn�jk+ � ��^ӭ�C8�nY�dN3u��P2� rN�n�bh���Ë ޙҊ����pscY3��r�,��RA-.���{�����4��;l��ah�LQ�,��=�u�O��77 �QQ����0Ț�L���\KKd
��6ˑ��0���U0��y�"���AE�BA���t�p����������\�\i�,h�x�` �XW�TgTp �hSBX�"n)��;
�q��VW�)�`�='a^�=�g�>�����,��j�j
�ބX��jM���;�3�*jL�� P��\V�l�V��,FE��� ��٦n�RPg�m�dĨ"�����ce�r�s4s��ﳅ~��м�PH �,~���h!��6� �`,�o����섞%) 7�&�tW(����y���F���#$p����m<"��
�OE⇻��GFxb��{��~ �|lr$�������s�;�w��Ƨ��\��!�W����o0�w��� �-r|���K\´�=�@�A�ɋd������ct>�۠�w���'���3�@�_�0KH�d���2�E�_��q�s �匃�'@Õ�I��磩x',��QA'��`z��&�eG^AD_���>Ҕ�PK
It�?u�~ ' &jssc/SerialPort$LinuxEventThread.class�V}lS���w��l���i!�) M�@>��B 䃤L�&&��3��'�m�m����gP��H�+!MJ ��*�]�"&��N�VQ��Ķ�Qmݠ;��A�$ڞ�~��s�=���;����y�"�&|ׅr�qÏ��J��~ nD�Wj��&a����$ KxL�����Ӿ.!�〔#n�-���n�a1Gt|���������y����m7�fX�1�H����`4>iq@�g.4��l_���߶���N2��̽�R�!�Ac������O�ًb���LNN�ۓV��Ux��7�ݕ��Y�瞡��� ��=S_4Kg(�HZ����c��A'�?<��ֺ{!g�p,U�H�I�F�d,�O��ɹ5���[JjykD��(m��%��ɱV2='Kqx|$��ȱmtYG�D:r|�t��U}��1J%�A_F�&�u���T�QY�D�Jvģ��E��j���ے�(��\����}�RVbT͠Ň4��>=m�G�:��X��x�r��h�()���X�a
�F�'%���=*�=0>���b�[�s�i=X� lĸ�߃J HX#������HzP+-A u�JX'�^B��& �RH{0��| �% ���҃�xJ����g<�62:�����p�_��Ef(_�oἑ���ͫw�"2�Tcy���ё+��Z�H��|�vT$ߍzHFE��bs��\|H�/���rn�1MK�,��E±Tڢ�m�K�A&X�d�{ ����!�TZ����-k��_�Q�S�cww٢�C٘[�.k�Tܲ&H��Rk��C�U9ݲ�Ų���U�7d�ƕ�ƫi���q���?H��y�z���e�-��r�-�m�`�F[6Ii�!ko�C�!���( �`�9�`��O�9�O�A���#�3H}z�8�𖊵gpam�z^$D}�a�3�/K� ��2��<�}�{��]O��f�yT�l�3��H>�|8&���\9�T�;��J)�!�O딲,�*��P�o�J1rp)�w��ܗ;gU)6>%���B>�b�������P�/a ��h�o�������~g��S~g�q��o�kx���K�wx���+�\��{�C�ϯ�:��q�r���ô�F8Ў���!Ѝc i��u4��%=؊�$7�"ZѦHlGG�D>ER������VςAἼoo�!��G���'*�3�3]J"�i��e5�]2u"����
��bǡb�ۄ~�'�U� e�yBY�Mh�&�{6��lB_� �餭��lS�t�~�5c�N��5��S�
r�\���X�EK���V��e+4��<9|��,>Q�)�~Mٗe�U�e������D��i�b�)̒�M�_3jNQSjN��pf �4~��'�כ�����F�0�Wރ�kd��~C��i���K�}YlS~��d��4ꕷ�/2b���4�ʲܯg�ixM�)�+�g��S��S[�:��yu�I�9��W�B�I��)q�P��c�#w��`Z�V��b���c5ϟ����?E)����&���E-���߱����s����Y�/j�/��������-~���k��!p]8qC�pS��(b\x�K�X��ra�J��U�l�(c[�J�*�Y�X�zE���� ����j6&jXJԲgD�='���H4��z6#6�3�a6+6������������>��'���}���ҊĠV"��R�O+Ú_<��A�Q�>�t��ib�U�O�fvE?'V����she߅G�Hz5�:~�C�i�I^ e��ݔ���nc�:�t��a��0ZH���r�m,~�q�c$a8� PK
It�?3���/jssc/SerialPort.class�Y xՑ����5Y�Ȳ-ˇl|�#Y�|�� ɒ-[��$�3���y$fF>H8B !1�N�s��$X&�M䄐MGXvslH ������====m�o�o}t��~UU�z��{����DT�/)ɍ�4�e���AJq����Z.�^���6�m:�ӹ=H!��z៭s��]:w�� �ߨ�&�oֹG��ȼ-2ڪ�:�'�m:�/�����ޫs��c:�M�:� �\��K� t���uNxP& �� uN�:-�a���'H��E.{�O���� �?.b���/��2y� �\.�O�|@�O �:_��U2��W������ur����|� o��:ߤ��:N�[D����/�|0HQ�U._�m:��;���� �]¿[�{t�� ���r9$��|�G�O�UB}-�_��:�'ھ)��
�|8��3S�5��%���T,�4�-��׼'�Hw�LƢ}L�9Tq*��GZ�XrG�7�4�mW*�;�K�ۣ����t������S���&ۧ�L����!su4�7��ʤ �=�d�mWtOt�@4�?�+��'�3C�}||�M]АJ��+�cAC_�0C� Vv6t7o���+��t4���i`�>g��y�q��W�x���ꚯ���v��%�~��\j�ϸ�iTV|�B�]rVw��u-ٹ �so��.Zl�}�b����
~"�=� ���E������ʆ����m�$*>;�^8~;g�pv����tuw�W�:ᰝ3_8�6;�@Ӑ}�:[�{��w�7 KL2Y+Wf�7oln�R�:�B�Iu�ohR�^��� ����unnh����Mm� ���xޝy^���k�L_m�Z�VOQݛ�׭��A�*���+3\��)V�f*0�ںV
�>)Fcgs�Z᜕i�T"�Y"��$�wtK[Ǧ����Ύ6�2;��� ��Z��.� ݎ�;�7w��(�qn�H!L�����ٰ�Eձ� � �x= �d�#c�:2�Y��� 6�y<O��OU�{~�F&o�`*B1
V�}x��X�;�}@Ո�����(�6����8�[�H���z�Œ���Vc�x*Sa��٨1� H��5�� �� �8m�dt7Ɓ�V�Q��G��:�i�}�t�1��s=�2��!؛�y%s�9"凮NI��F� '�c��J�����CC���p{wQO���Ʉ*k�ԟ; �����m�.��J�b �<�m���i9!|U[�qۇw쐂���ì)"�&S݀�c�)Ts���`]���]M�Q"AU�Ը(�nH&��=*S�M�v � $�,�[g+S�y��( ��E��k_$�V��e�ͪju1�Mҷ��7�LNg*��6�;K�'>]e!�L�8�l4c2V1cAq<�c8ݕ�α��~�x�YO�m��}�pB�UQk��*��,�r�=P7)֚6aՒ�kP�G�i�ga$u���^������:����.LD.��_.�-6��`?J�F�fƋo���1Ž;c���u �ݱ���>��2�C,Օ���E.�RUw�p�h<%u����G��s�U��H ����N2�U�����ޜ�l���,������=1�}��>�Jے��-9<���YMr�w`0e��`��7�JMG3!ٕWL��z���N] Sg�Lu��L��"T�*t���TP/
Ƹ(h��cp8�k�˹P�}X+��z;D����R�,��yF�^���ty�>)�t9ӄw�!�O!��f�
2�G�l�� *��\�+UJ
�wC�*?���,���}8�=:J�����&Ң[�N��ϤC�:�:.������m'�L?*��. �e¨�hbV��*����!A���R��п��4�(�'t({h��P��b�{�rnd�Xs�'d�S�S�S��ShUu����f�h�~t&�L�KP�œZ)ӹ2�A. q�E��n��Œ!>Ώ��1z��_oŖ�\��C���Iz9�O��Џle��2w2�κL r�yTA��3�D�R��r��M��_6E�R�wL~��gSeM �"*�i<"�� "f%ܠY0G��H�^%vT��X�H7�ef��)ð�d��:����Ϥ���0������l�?��Ω�Vfʧ�y���]�� :�j%~�(~D�)��\s)�b�bc�O+c9��Tn��F�S���;e\����G!�1�$�?埅�z%�/���r��������xv2VѪ����^�V��6g�tl�����:�%��Y��
Gd]�=�Ū�5�]���+��Nu��Mn�zdt�U�F��c����ELzՙ�B�"sN�y1w�4���L�U���rb�m] � �I6ES�ӏ&�?���^ƖL���Ur8�5�6×JGe܎���e����:53s��ɡW�'�� �|۪g�����d��T�Y��O��
�F����{X�]��,֚�i*%)�w���sP^��<UweꎣU�q���'��u/�Oa��w%�l��A_m��}����gl���o��7����� ��6�s�o�џ�}��6�o�ѷ���F� �.}7�{l��@�F��6���证������l�7A�F�a�����8�k�}�1�a�Q����s<ȡ�c�������я�~�F?�I��m�3���ϳ�~��9�}�;����C��9�i��G����zן�" O��G��/�!�\r�#�GH�����<B��+-/�:���"/͠�I�h��4��4�M��ӱ�^���F<]�C��+z�D��h�����sX� L5L��W\���9�/q~�%�Up��y"|�J�Q�G��G��G#
�1B��P F%��r���4�G��T=�"�ެU3'B��b�C����P�ʰ�`��&����Y��3�~M>%ʷs��~c��$�#��T6�{�ڊC�俋|���%'�y����ebD�<?vv!2f4vav�8�\�_hh�V.Bo���ѿb�Q�71����0�:��w��{a��Jͩ�Y�+�X��O��g`鳰���ye�jC�ei�ei�ei�ei�i��~���S��a�ϱ�������(����z���52��� %��%~�eT)�2��G �0C�� ��A�p�Jp��IA���H�����H��!lL٢��l�L<c⭶$,O�$̓���z6-�_`����4�����w���<����L��.��&�h�u�e�a���zKyy&J��RO����M���UG“����B���M����R�����h
��vLuގ�� �K��p� ��Z.~���%Ben"Lu$ρu�'H�w��D�Ĵ\�ӜK��!��1�Q=B3�̀h9��H�\����k>���g
��a�G���YN�. t��B�� I����HIa�2�8�X?�E}���[��� ������}�E����� �N��[��q9xR�fF�Հ�>���N[1���=4�fR����h|��w"59����@��
�R*�˰ .�J�\Y��"p=f��i�3�����kU����9�cE~�������篇7�;ρ<�u.� ��Z@��=�w��w�S�Z-��"���EEx�-tj�6��iei媽�Ў�����#��=\�̫���,����z�L/ �CM��2}���2�A���ZR��x)Vv�-[�3� 2\o�x�ܛ���G�(�~�B�8��'�'����:~�Z��E�~�b��ml��B���.�Qȣ
Z���2�^n��H���4c ��z�����Sx3j�e�M)m@<�$�Ǫ�ǚ+�f� �!>݌��u5����Z���[��_VS�}����|�:=B���Y�ߜ2o����yږ�Y��2�k
�+4�_�*~ �y�A����7UPV��*����CC�Bmْ�l0�VǒPa��F�Ύ�d8�]蒖�!n0��gf}�_�Fa�Q�$������;�c��9��F~����G%�>v��h���>��iumc��r��r��re���*�y�)�Q&��l1k�8��P����LJ�WYNJǞ �=�T� Q���r�m[�3�(�.u}Sdm>d�r" 'r2 �r�)C� ��C�tB�r. ��� N�+L����<> y�DrbuN�20�f0���f[�5�Z��j�Jy/R��v������/r�w� ����M���x��ٜ�� �� w���S��lu��f�9&n�b#�J�u�=��k����t�7ͫs5{�4��O�Ds�ۋFk���Ʃ�&(��]�[ya�j�i<:��9Ʒ9��=6��.�Os3}]���N��C�wNp���0�#?���{�iz(kt��k�g�fp���_�L3�̾n����J�̻Rux��*e�mH�'���<Ac=O�$ F<��Br���H���NG�yy�$��m}�8��[ w���j��6}��xU���i��7T�y�T�q����m���轓U�m��k�ט�i*�|'�qژ �?P ��*�ؓ�����iv{$���o��q ���A��k��#$�ד�r�A�c|l�>g�����*/��!ꌠ;<w��U<�]`S��doD3G�ipu:i3h�6�΢�Z��fS��u���ji�6������Z��ӵZ=ݦ-�m�ۭ r;ϥ�;6��g�ƣ�7�s�Aj�L�rR���h�8��J��4^k�Jm �����Z�i�U;�v��k9s����r���,S=�G4��F�m�W�>Fў���b�J�փ�o�I�y�d���!�����b�"�^+zY�{�}�ɞ)�$�Ҏ�7���Tm �i���Ю8Dc�lZJ�|��[���:i�iq=^4Iۅ�^����M�)� ��څțuh{Q���;{�W��vj�r� // y��q�ˆ�����l j#�A�ۃ���ڔ��.�8HE֗k����4y�Ѯ��W�ҫ(�]M��kh�v-�Ү��z[ך�Lƾ�S�:/�%y������z��c/�^Ƨ�|�����.���p����
>��lv~2wFz��� ����FiJ�Rچ�^�Gq�G��PK
It�?U����jssc/SerialPortEvent.classu��OA�ϴ� e[
V�mQ���X,E+��i�ć������ݒ��GM|��75� �$#���Q�o�K���ef�3��f�7����&�Q���������a�7|4�)F��j͚��uF]�5mSK���j"oՌ��$�6}S�X�gH`F��Z���7���;�cLU+���n���\v�W.F��b��Ba�K��;U����|�/Ì�\6?���<�s�{\$��Ή�-����P܇�SFŰ��D��|&+"=U}��vd��>___�km�,ڭ��rQ�\�A�zb����k�YJ�ul��P�w ;�Wuk��X$�y�")}`�;�q����0��C²���tô݂ � �� ��2�` 5L�؂=�-x�G�W뵒>g�"���7V��T�G~��(�R;�*�Q��+kz�W.� >$/E%'�w�01���{�SP�B���t�.�#�>����=} �ס�C�p�>�~�>��������S0G�?�Ňv���%w���Qqc7�$J sݍ��1�r�� o��Y:G$V�&V� �Xq/܈�� �� ��y�����y�W'Zm$�hFQ�I��ۇ���⸴X9\���E�x�|O�'+ȣl;."��.��e4���R��Kr�G���z �!e �Y>9�)X5��RV�ɺe�����a��/�/�`6���^��7R�h ؀��w�����Z��r�G�>�Y
o’6,�a��%�}��_A�q�BM��4Fr�O��@�%�]�W�PK
It�?M-�D��"jssc/SerialPortEventListener.class;�o�>CNvvvF��Ԣ��ײԼFI ����d�`�`@~Q X�Z3���+8��(9�-3'��AM�OfqIj^j�^VbY"P�)05�  U�9�y���IY��%l� � L �������b1�I&6PK
It�?c9���jssc/SerialPortException.class�U�r�F=�O�qB>��q�8��-�@�q0ز�e��G����,y�u�y�>G;��L;��Cuzwml%�~���q;�����oaM�~��H��5<��m��&0�g3�Î4ϥy1��4v�탊Ѩ�-��+ZFn�Q���ǰX|�8Y��U���6�\>�#���x]�!ϰ4�0�v�\�dP�|δU�n�r�7 ���_,TmJ��s{{�p�A?�`�� ��i�U��2�%�ʐ�2J��B�+��=]9+W2��Q�*}�ey[C��J1kŢ
U �T��k���\��ꁆ7 W�Ϻ_���\d�:A(L��m.��V��_��#���O;�����+v��>=�/��&�A��.]����!m����ʂ��՝Е���n�p��.���*��W!��Get��G\T,��G�=%�b�-6Ώ��ݰ��]�xyD�-�K�~��z-&�B�!)kt���= e궭����ml�b]��e[IT�@R�M���/�H���؆��^%��B�N���}ޢ�� ��3�w�5�G\�m'��q�}�{n$(#P8���_��2����a������vp�u~�`S?�M��!���g_�8!�q�n�� yS�1���\�]�:ͨy��)M2����Sp<%ݔӡQ fF��O�K�B��h"���*�c��H��%��
.a��Y� �a��^"|5����˄Wb���1|������� ���ׄ�����������Z'('�u�iB�a�<�N�o��[�� �-N�ٔ�)2��&��̤7ΐHo�a6�9C�ſA�&�>�v���/�I�t�2���S��NjS;�r��Y<�k��*�&�"��Քr�T��^B���ͨ�ً�����F'/�F?TY��PK
It�?Q�g(�jssc/SerialPortList$1.classuT[S�P��[JI ��7�B)R@E��
�RE�  /!K��`�j����_|�������w�(`�d��={v�췗����;�i��p
�)���Ĕ��I��t&���'��*f�䁊�)��HŜ�����DɴM�� :��P�8;B��i����m���%��c�ֆ��
c���)��j�­X�� J���<�(�խW���LϿ9]T������xt����� �n7
u�5�F�[��2F���iʿÌ��h)��Xj��7��$��VS�˸�\��] �
�i�����' ��-��DZSǽ�w�!��͆��M��t�ϦoZ�J��w�Rw�e�K՝�k�eS�z�x.'��d�����w��5 ���2���L����װ���E KX�� +��#s�x�`��x4\�0�ݳ���;8 �*�����wj�{�����X�Wђ�c�i��.�VeWw��mS؆(�6�b�8�t��O�;Ѿ��geU� A j�Bkoz��Q7��D`���4 ���4úSm؎+:�V1��=�Q;͹�r��<e�H9�����L���0�!�ZGY���W�34�Eg ҭh9�F$m#�ՉC�qG�����
���ll�K�Ʋ��G ���N���0�?�a,�����&�;�{���7v3�ӻ�y@��X�,^�_�6Q
0�@��\�%Ĩ��erq�&pW)#���Fp-@����"�6q�сyz��_%~���x��'���>�L�HG��i����>�Qr�0X�0�<&Hc 8Ǖ�v:�M�PK
It�?sk[�v �jssc/SerialPortList.class�Wy|T����{�x2d"V@�̐EIe�HH����Lf�YhXZ�Z�fq#QiiZ�B�&HJ��Uj�j[�Z�m��ڊ�y3�lC�_����{�����y�͓=f�M7a���SG��}���a�~Yإ�>��ux�!�Gdt�4�f��z�A I���GT��цvExT�<&�;T<��;4��:4�����5|L�k8��:&�^�����Sb�)i>=��g�9�␎2tJsXL?%�#*�ꘉc��ɔ���T�P񴆓:�ȶ9��sҜ��G��k8�� _��/�X,�?')a���3
�V�6CU�[o-�7����ZG��L؛��j�=i��13�)[���l�'v�|aVN-O��6� r*�MKCf���6��M���=�ۉy
�J��/�4�DA���%���*�!D��:4C�M:�yF���`���`E$���� �6���L��͖����:Aߣ}:�sj�DCV�E�*fY��3v�k��^�� U�@
�)CN��s׵� %��sx�o�b�م�0;�J�0���Ds�C�EA��,n Zф �񬘇֤�֛c�EQE^d7�eӊX$h��R�x�
�1�l�H�q�e;R� �~��W:+��K~z���j���ٚA���X�*�f���� �Y$b�٣����`Mj#!"�D�z[��=n ��.�,q�&w�5���Kk5fpy��is�� ���H2��8�Gd�4�l�f�4�e�`���3�*�vi����WP�`��H����21������n��o���m�1�]��\ |�'�s����M}8�L�`�lN����Grڏ�y���@ �g ��\<-P�H��ncsK����9k��(�u״��W�3�|����
.��&W'cA�9�����^��~)��
�6��V�� �� �$��.���'�����.t� �g�aNhH�[ �M��;V��` Wy���['yǚ �C�4���-����N��m�fٖ��(���\� /?s3�$}ɧ�%� �c?�M��r� :S[��!3�_�,H8Cm ���V�"/��<��_��}3��W���HM5�=Tw��G���v����W���0�BC
��A� �mL^��B7�D$�v�䴞C�{���d8a�˩3��էz����V�d�(�$�s���C�|�xR��(W�_��r� ���}K��Y����R�Y
Đ-F�_�M�:3�j��nH��QQ�������Y��f4j���D ��R���w1�$�S/��I�3ō�^�?w���2� f|���p��N70MY��L�$8��ҥ� E�Vz<��f���r[w&͐|8z"h!�)n��1��O��%�ZT����Sn;�~pT�!7�|���A��‘.%
�;�ps�rĶ��r�|��
tA9쨬b�v�%��;
X�5�=�u��_B������:9r�a� ����y�ԥ��坂�� O��]^=5pF
#�L���H.�Pp�:i6�qe&cq3��2�"F0�1L��:9��M�c�tmns�Kצ���z�*1�c-�#RZ��#]�r:�a��p@)?��@�כ�7Q7��u���>���E]W#1t�����/�����p��pI]��94�\)����\�KS��v�5�&�0���sW�>�g��7�S�)��c�O-�̬�}��2Q��nL��˽W�0ŧ�I�$����������[Oc��?;52*UpZ�ڍ�:�څi�� -oC�/ߧ�0}��g��@q���Ia����j������|�f�� ���W:��3x�%~&\�G1pM�͸�m�i�0�I�&�z6fc#n�&"�H"̯��p�1<�NQz��WL ?UZy��<e���:���s��NŅ{v��{��ρx?Fq�e0�@��:�Q������&\M�,�� 9�'�^%}6�;ϝN7Q����j=�s3�7�o�Ę��ŝ́g��Z�>/#N���K���yA�60#�׊Θ�xwd��޹.���;u�LO9�u�u�׍9uފ.TV�qs�p�ݵm�`7���g/B��
���3۝7[-R���Q�s�3� ��WJ];J���;��٥Y�-��J?���Z��MgxV,� ��$�;M�s}� ���y(`��� G�*c��×��$j�M~�i~����~<�����Eh���(����W�[ T%eA�Å�� �n[〬r�����9]<gw�k�+�$�s� �zO�#�f^�,�s]vg��� ��o'd�Av���A&�G���0�u��eB�1� G��u���$����)Bv��2 �ɖ���zuc1s��(�n��эG��8II`U�1c�����ƻY�*X���PK
It�?%̻�5libs/linux/libjSSC-0.9_x86.so�[|TՕ�3��!�f�1�B!m �!Qta � P�C���0�0#�L:�&K0ٗ �1tV����`e]�t�~躱�Ci�Ti˧Z�m�A B������f�e�B����ɹ��s�=��s�=��<j+/��t,~�Ꮸu9���,��X>��
�TvKr���* �3��
w ����� ��#�@�,�$@4�x[�{R�����L@��;hg����W�]��A�����\0��>;��T��=�]��?T�K�Z�՘�Ͻmy�
�0�U^�k���kY l��a0��%�e�1���~p`:��Nd�,�\��ـ�7
5�_WT����|��ǹ-�V5횧����d��_�~��L� �3'�W5ma_�_���� ����/Ony�_Xt��C�v��Xl���7�}�c�I����;3�Z��������Ph�1Sw �\�m֔�xRh�?�����&�W�'���kNi_�ҿ.�ߗ6����>�B�R�U&�Ɣ�`J�])���4�� ���6�Ng����p��4A���M��g�ǩ`b�N���|=c j����3Uzٌ}v�J��:���&�0�y*c��} �.�fv&�}��$�-���2��J_D{D3�v����o �]m��]��Dc˳�\�~�ҡ��A��)�mU�WC�Lʁ���뱙����@��5��*�[��*����C��� �~U�g���Qi�pl���A�����s����褢���9���X��� J���Zg0��o9����A�c�;�u��甼 ��>��8]n�����$F����ZV�����|~G�߅>~s<P|��T� U�pJ��������%N�Yꕂj�� ��Jg�YDߦ��� �$��m�`��]-�~Q�\A���@ume�e��6��i���6�\����=x�J��5�}R���xY� 7d�X��Jؖ�ZqY�M/-�����v��Ղ�J�a�m���]�P��\���Q���z�fGCѕ�_��A'.x�?䓮ľ�Z���~���V�/��K��.������k��z��yU����+�x� �����zI᭼��orz�տ�Ey�}κ+���d���A��5gNa�_x�u����$��(��wPtqmt�<5N/������AyP�fK/v�VX�WU-*]�(.��--_^
��D�qka��dm�lKOi���#��K�Ȍ&�������r��,ʴ��3U�����;?ݘN��Sj�4�I#�'���P��
��N�Ƚ_��x�9��u����z֭��D�cQ2�� �m�0΄uh��! <�r>˜ #a�g��f�H-�qpL! ��C�|�8 ��qv��7Ά�����# �ƙwa��%�q�.! C�FPN D%��[EzWƙkW�[)�6D��5-=󑣇w��b�������d�d���Uk�����=oT�3�<����Ş�Y�P�P?�)��P�P��M��:8Mٍ��zh��衣}(�i�h=��C͜�&�|��9MY��N�u�&V�2�+9Mw�J�K8M]=UDq�.����i�!��̜^Bt=ь�$��H��E�ˉn��s���l��sz�n?�ih�nn?�$z��Ӥ�g���t�������z�^� Ȗ��oeL>mn~��c��a�-\�����`��GMX�@���ܾ������G����vJ�ܥS8[l�lN�Y0x��L�ur�y�Ck{�_��|�,>�%�s�p����?���)k�_Y��f�Ѕ����JӅp�QY;����X��n��� Ó�UV��%V�`�]�Xd/�=��b$���<�`�!i�d��~��xW��<^�g�n���)O#�y���:T���.+F5�2<ه��0� ���.(���D���0���R�<�拉1->�ک����w�h���vc�8{�b�ʖ�R�4bHw�v�s���9�ufS�ӎ�:��p;�̥�)�<y!�0I�-�]�na9��vi[�#֫e�ft�$}�Uj_��餌\z����0�c�t�e܈pӑ)��2^E��Qz���u�/��`�w�L;��#;jd���N�\Di�l���Cz�㾎4Sk�l]�2CY'ݯ�Z��?�rG����Sۈ2�_��2�<�9�u.od��1���uNu!�td������[;t��tP��zS�8�����mS�|���uɃ���?\$1ͭ�q�bj���u &�Ԗ!z@�u��{Qp��12�YA��Й�~w19B;�0;�8��ї`E�A�\l����M�­���.uQF�y#�W���jDػL/۬�s�����1�l/�n;�Y���"�=��ڎ�mS��-��+�&����
w�C�]��/)��@�j�F��Ӟ ͗���L��"l;/�����M��Tm�����踨���1��=�!>\�M0M8�e�o{[)3��>��0�Z8/��jf�B잖����a=j [�l@�?T�v�,��M�:%����B2H��QQ���%���O\��bR��#D`Lq Vi���~*Ls�m�v� mQ�~��W7��Oii�j������\�<�Ys�[*-|NaClp�=e�߅����?��0���{�2��!G|�i:>���M��� ��!�xM����8v���)�XG����za)+�g_�q���k�)���O�:d�U�����%Ӕ��3�7Y��֥�N����3�H�I h��.^?��7> Y��3�V;ҷL����;�u�Gh�A�T"5c�!��7��%j�P�ܧK��.r9X7H�&Iz9�/�WR��D=-���C�q����as1�w�C^ ��9���O+�б[��>���6����X����k��(�@�O� �~}���KD�݆]���n}�#�'y@��H'%��G��v�<g�8߄���DT��:���� �λe8��-�sc|�߄8YBf���M��m�W��玍���њ�~������Ϩ�qߍNB��t:�0:C����S����?��_q���}T3���?6���a��|4:���o�~x��8:��A1iK�ȏE��G ���짚nrc��b?�Y�_��*��m �I�<��[��=u �O.���������U�����:X܅���KtWr&���r�ty`xv/��-�o�Vm��L�B�J�%]�0�t�ip �u�Μ�kVY���8)�J�o������P����6I�7��7�v~�������u4��m<)�Y� R�'R|����"����Չ}7�m>�<�\�]eD�y\3�za�9���0I�`Eb� �it��y�F��[���GFR�:~.����YqڅW�C����0����Smo(��JF�bԞ#�aDݻ��p�F�HQ-2j��I�[�Rȃ �)��Ϭd�h�^l�3(���$��������8{��Zh?�F�.F�����\��?��!w䁴���&[��-56�g@q��5�~���.�E�m�T�>Rۨi�?q2k�ե{�~>�Z.������QJL��V�P���~� O�1Sf�ޠ�ş��rtqL�_���}�8QS&X��;���?P�a�������)H��� -�6a%E�}�,���L���vۈpB���7p%F�^��X� ����6.�53�D�L�A�Z����U���C��O�=g�T`¾.�*�p�E)5�˦(��p�4�4;\����ɧ�g&�Ğ�����OТ��ѳ��J� 7�y�k�y3RF*����ыt��:�{�C����|��~����aڱ�g�/�am��;�b���(��zy@��O ~Ӿ/��Tw���:�S{���}ͨQ*�-~c_ �1R�bߥT�`|�v��E�Ӫ�"� W�)����_��PQ�O��U�{�vR�j���ĥ8;M?8C���FJ�� ��0’�$�ϊ�����a@q+��^q���=��*�^��D�I�@a��<:���:і��XbOґ/�p�@7���W˱ �哩uݞ쨊Q��*ޤ��yt�Bz�ej} 5 �՞������Py�"��1 �i��y!=�2��A{���Cs�&���H�)���n�m���K�;в�����5ȏw��yRų��ɼ)B�o&�D�*��A�?I���a��֡���� v�{�g(�О7���ҟ]�7'�w�N
4 P�e �UL�5�>"��&�7eSp;*���f*�b ��h��P����6h����O8��#��c��^h�CO���W*8�Md�l��g �W���#d���3��?�<GƲG+!��5o�0͵f9��y3�Bv�A�E��|�|�̒,�Y�njڝ�L�Gދ����z]�m� �.�-��82�/�)F-�ح�����K�-H&��<I�i��|��^d�4��H����ŭ� `n@/�.�ҫ�`U�~�x�t�A��&>���uS� ��:�Κ��0��{lQ���M������ r������C=�^�5,�b�����5��:������g��K��e����f8.����,�Z��xi�F�mY �{i|8�L#�!�*���@;�wM��-9}�ᱴ��2{Ztx�Ђ�Gh�pD9�v-��$pע,;JB)Zc+�������^��yZ�Z�djuͼ���x�K�I'��r�7��6|g���4}Ir���6��ϳW�OzG���LX�m,'ֲ5��{���{Ĥgҧ365����d�~L�q ���+����:r ��#�O����;�M��{y��_����U��A��]���E���[/ɿf��a�K�S�豌�� >MkO{m�_]{�ޫ3�Ke�L9} ݄��iς���'x�U_�M����Y�{�?��=I��D�74v���_���Gbl�W��D|�|&�b1]����c��K�bP�z]��^W������u��z]���]�L��[P�^�p���UL�%ѳ>�^��7��.���u��wK���ܢ����� RM���=�q����3}CN߄�e�r��>����x���nI&��O2p�����q�w�Wz�7��k��ւQy�Y�;e�Հ@`�i� �����d`2��w��sķXt-]��� ��C>)4���s���
o/,��B���ق�N��R<O������ZT\T��hA~A}�p׺�A�l�
������Y��/� 7�B��C���[�ՌSg��
�7�������W�Z6H'>Q���X!� �Pr7�?�,�0����=�������T�D�\w��]/9�\-j\�?�=�
pe�u^���'F������չ}ҕ�5����iO���t��9nW��G�L@��4|�L.O/��������KЧ����.}�S�%�&X�W�����@e�u�4��<i�ڇ�AA����j�h�t�|��UW�״� �.1N �@��f�D>�Z �Ɔ`�5I��w� ���
��6�|dG� j��Uܬ���n&U� ��|��E��Z>��\����/�e�W�{�B1���~��3 >�W:�����e�/{���_11w��g4W��Ƞ�#�4����\��~��8>2w��`�|�5|�,��P�'>��C���ʋ��m���4�� ;�h
]� PK
It�?�5���8 libs/linux/libjSSC-0.9_x86_64.so�[}tוIc#���P�R�8+��ֲe'�z�IM��$c[r����cs�
��Nvs�6m��Y5mY'� �|��&l6[\B �a1�����=<��@���cO��t��޽����}����V{� ��u9�M*_A�cΫ"������dn���r��o˦`�|�^>|Ff���,{=`�����T�^F�2{MҮ0j��<����:�l�SZ���i*����)��{���n�0?���3F�̡N���q�,��L�����KL)k>������Q���TۜV˻�+n�T��O���q[�7s��?1�8�Hd��3>SQ��7>���;(��;ხߥ�����|]<u����,G꾿�^���G:ñ��x������c߭/����w�x��#��{gӚ=�k���̾''N�������\�]���Ӟ�_�_�Y���?���~Q�:��[ˇ�c7��bՍ; ��k��s�-ܵq�f��ߙ���~���xU�ntN���~��_�����P�k�?�a�6>����9�c9�r��? 8n�ʿ@�휊��T~�I� ^�5��GL�6�g� �4��@��/���L�~������J�-������J�OR�M��u�+�r{���h�)]���8ܪ�oQ�
�/�%����~�ξL� P;�-�!jg+m�f���w��3�(���4j���F�?bTq�$��F�)�O�M?G���*��P?+��ߢ� �n�ߩ< �f�ڡ�o(>��o���c��wyK$썉����r�P8$r�F P�o�᥯9�x��>���ppy(&�U;X,����y��� �ѐ�y�O � քA���z#��pm$*rx��"~��k���� F�ሷ9��H��>�yP�����`���C�>�Wc�^���X��Zb�^�‰~���(�o��P�5 ���Z�Ǩ���@s���6��.������x����HL� W7҉��������Il?\��F��u_WlU4�&B@���*D���*�W ~�^�
o�/��(�*@���-A�Ѷ6ok0�`,���+�od@*㍍�DZ�����txnsdUU$,F#��#���e�߮ ����\��Ě��V �{��'�B$�c$�gF��VQ�D��� `�/D��F�W+04�Zn`Ug��5���Ā��;�b���m�z����Ɛs"�Wqo0��uY,�f��n^U����r����UY�u������T ���n���e��$f$j4j�x��,xm�_�aA��W�=�jo[]��U7=X���֗���Y��w OQL�c��۪�_A��B����+��'��b��S�$�w�y���w��M���1 �=�h�q�����ޤ�9���8Ψ��ܤ�m����|��kp�/��c��hp���5x����_������k5x�����5x��h�& �="�jp�o���4x��U�����sd���ߢ��4�V ~�ߦ�'jpA:mN��(IO�pHwM@h�y�r�W�vN��5�N��+���e(��F�+�O��cHeR���<�R&I�I�ce�~��C�8�Nx#��n���OC*�@���P����B�
Ÿ@C'SN���� y������)�p��C�:3t���E�o"�'���O �'�O���?�A����𛐿��x�!���)vN�J�F��LC+��紁'���Ɨ Ҝ� ˉ�Bb�7�&�2Z���;�鞾؛5�;�v}b�A���c1� � R� �y��ޥ��ip ��w��Y���k��݃ch��^-����$7QO-B����20h��9H]�%�Anv��G8�<��@7K�Ę�Σ�=�G��a��_#�u��'�҈"�����u೗�yt��|�_�P��K;x�}=��OTs�X�sJO-�� �f�MH,q�=������t7�~,'8i�&�I#�^��������hK��= Y����O���JE���5�ڀ�n�C�:�6��`q����jxg"�'�:���)\�@���7qɱ��v��LL��Z7�+ 0(���=�'�%P��+~�C1��{�t(���fk��vz1v��Q�� �I^<kݘ&F�Cf�7��/`ll����ˋ�E�I 'M�K?�V���zq���w(�&�ŭ�:���/�q��A����$J`�!��X;��M��7��Bk�����N�������Fk�pY��R�]�U1�����^ �ۉ5n�.i�vޢ��7�K��v�T�1���g���W�R��K���'U�/������T����G:�G�NRL�� �y%� ���{��a<�c<��`8`8���=Y��^Cb�޺��h�_�W˯����8Z׻�� �(�[~_v;���z��`�\���^`��5����v=*��L�ʘ��|���K1?�c!����@�+�GZ�0+����'Dn���m�ʺ>��^�X��y�%]�al>�HG�c��]�.���5�����D�c|;$[WG�Q��]HWʧ�7\R��_q�s;����D��u��aKw .��a�<�V��ѿH/a�L/yh�s;�g�#�8��a�|:��#X�>"t�9l;n���~�#�D��}��
a�o�>q�+&~_ol�^q�~м�/��uf*��#���ƌP�����lL 4��X㨅Q���%�5��+�U��5.=��t1��W��yf�gh�C�> 55r�%ܞ�)���};��K0��q��;��y��?DE�Kl�r߮��^�ܕr����\�&e��L��D���U�%�"}d��<&�SI��Ʋ���5� ���:��
鐍L$�^&
}l��9Ϥ�Gك���bʒ��H@�����6��ٙj��Gƣ�C�| �'�����=2���,*'0�df�(/�R(�F
�J���.�8Y~3�K$�7��v9hf�zx_�����]�^<�ď��=`�@��<� ���o��`nz���W�?1��O���_�LɇI�.��� ���ÊR�~� �.9��$4!0 㮿��R�c��S��|':��7s�{Jk�r���s�3�=�_�0��� &�4&�!A>� ��˂�K~�yT�IA‡�XH�� Wz��0�κ�K���%�I4�A�D�a�erx+R��B�ā�� �� ̆ ��|��W<W�R�N~S�摃�a d�8:W��?��M�>�L ݕSi`H�c��;��H'A����`rSw�IG����[��cX�G�Ģc�"b�#�'���4���񑃻�)�+�txt��x�u�x�!t���;0:��<RjJϖ<�� `�du��^�C[���$H}|�5�:�/� ��-賚�l�:�6����=��&�&��%�����A�=���˹���sՐ6]$�ό�Bs��q:����`u�Iy�Y6��w��%�K��r.��Ё�� ����@�;�����ı���v0,/浿b�M.�Y|��^6 >wu�f�<���t[��Br��틺�ƽ���� �-�Ѯ���U�D$摩����0� �Y���>鐹�].1a<�.���|�Q3�룓Q�<���uP>��Σ��oW��_@����߇3�����Y�'ށ�3���VO�T������`��\��@��šu�:=� A�kF�~����l�N�i���;�B}ş�}���?����CLP$]�¬s��ù��(Ĕ��1k�|��K�K�tg-n���f���sLؗ�ڱZ�5��:O�iJ��!Ws��"��OT���DU�\]�����6@��0'�\�Ne����3������}�~�j��zĵ�U7Uo�cJ��o�ծ�����{ ��.���:�B�|�,t�?���l#����:G-Y��9RUK��C��T�l�]�\)�sY���<:��`}��4��#�9��G��Cն
K�>��ؙ�ݎ��=�� ���$���s�az��e)�<�3A� |9��pm�$p���x�1��&h}"�4��6<t�����Z-���x��H�A����j
T7��� A�fj��&����3,M���t�Ώ���;��C-k�3�+ݚ�O���� �����c-k�3�XY�����ѹ �c�p䎢���Q�AU�F��(�|�7�U҈��5C�/&���z��6�7[�Z�Z���K�]�,!����1����ʻ���y��y� I�n*_� ������x�?������]�ϵ?��fؤ0�p���L)yL�N,1د�O��xǀ� E3*"���\��u�.��틿��Փ]�<��>�-�s�4���ݷ�� ��~<�@E�<ɾ�쁤�#g�Qȼ{�9�c5�g�D��}(�.1��*�zʞ��a�d�W�� |�c;�(�@��M�r����R� ����s���=@�pC&�()��@��nj�*�p�O؆�n���^�pO0�wz�nw���ځ����B�(>oJӇ��١��9C��0�p�}����@g�P��L�㥼���� &��Y��Tߍ}9��4��CrM�(�̈́��A�7����u�Ҙ��ƍ&�.wӇ���3����V:�b�B�C��-`;{�S��y��b���I�oc�}^��E*���/��ـ�ߠ]�{�q���R2͵�/g)��b�W����7(��� �m �cu<��G,�5�ݦ �1`1����Q�!32��?���Lj�O4�OH�U����I��M8��U�@�U@��X��ڤ�k���� Fc�bF[<�N?ԓߨ�Z�+q�q��=0Ʈ�� r� 7���[gtY���d26ArY�5W�����~���ݖr�z2�t>:A.rS��/��@���/h�W�߫A{� u8� W k���Pi�=���b����ې��o4��W��]��U��%i0���,���������M���s�)��!8�������s�:��bWS���=g�W�>/��������y�[Zr񬰣������:~��o���E��>{���+J�Uds}y����K�]�>j�� �k{WߑH��/ػ6z����������ٸ���]�6J�;�=8��{hG�3?�(?��Dy͑�������e��7(}��aJ���)����)�K�#�6R���u�>M�/(�N�>Jߠ�=J�)ͧ/�L�����ʼ����K-����]�P����-���9�8�C�9�,���oW������xٲx�90+���5qe�������Q�fe0×'����f
ҫ�f�+#ov���6�&�w�E#�=��`��1�k z��Q����`�?�*z��f@�b$T����k �A:"�/�5����#--��x�y�[ �+�H��_�^��=ܒD�>[ߌ�Mq�N��$a)�>0}����k��uYNm3}�O��9�_��9u-3}�~]��ߨ�՜�����ܨ�&��_����e�H?~�������(ˇ�?���F�,,3��X�Ͽ_���f�V݀3}��VX����Q!���w���:}��0j�������k��Mt�v�C�~����~�N˗�i�)[^?���OߖM������(ƚ�?$�׏�������t�1�ݘ��:�b�_\vmy=��S�����ʳ�c����_t��?��?6��߬��u��<��k��g鿡�g�^�<�O�>+oS����Hݠ�_h��:�����kP]��r��ʡ���PK
It�?=���@8$libs/mac_os_x/libjSSC-0.9_ppc.jnilib�[}pSו?��ٖ��p�� ��I�v� �Dj+бk`� :L��I�26زƒ�H�Hv�i6lk>JH�i�Lf��3�,�4)I��3��t���.���Y�a�t�̲��o���'a������;<�s���{�W~b��?�["��3O)��D�Oi1= \���ܰ=H�m�exJ�C�����Ӝ7˗�Y|Ą�Y��i2��Hbo����Drh�}7� �ۄ��t8-�t=2K$m: uԼ����*�Р#��?�O��ЮC���ѻ���[���M8-k�kr-Z��MvY��\6(��Xk�N����$ρw�ٜ���}]��� ��:�º��z<98��
|�Jh���,6u�D�h*�'�dx� ::�L�����f�#.�/����r�c-ȫ��7wlhmϭe#�k����+6 $��>�׻c�֭-�6��_��#�w�z1$HK�w�Nh��{���Z���߮9}A����%Z�&_%3_,�K�s��Sy���9���L��D���t�q���Y'�W�Lz��X�O"���_�~5RF�/����exU�ﳉ� �,�uo"�_�l*�b+�b�"-�TO5�@%��WO���S��H���F����S�S�
�տ�9������: �|N�ǔ��n��sr��q��B$�o���M���O�S�ק�K/M�+�<RkLX|�<j��t�9't��[�
��6���y�0ҏ/M5�$�?��0Ӓ �h�o3o}��f���������q���,�MF�O�\�S�F�O�߃:�0�̏��5c*g�CD�'��2��2ы)��`��[K��K����U����Ӵ�;���!�gT;��$��Nиg�Ƽ!���k�_#�����}o�0X�:0��c�c���U�t�$�'�� ���=�J�7�4�2�v����s�m�xF;0WI�V�hy�*M�+sB. �#��ʳ�P�YSߊ,ƻ0�Ϯ��>�|)�˔%Ko�WЏ�1�5@.�ǩf��Ř#D�,>�}�1 ��P�n�2� Wd�.{�OP��'ֺ vԡ_¶py�0`Gc�G.����^\%a�{��t8����N�T/�9~V���Q��!�~̱���j`��3\ �
�����\n�E������Z'�=�����m��I�s#�ӡ%U���n��_y��E�6��?X�b����y�����E�K ��9��f����@�8���ɴ ��a�?���>�<��C��?�H� �0o0�h�п�ٳ�7����糙�Y�Ԝ�5�%}��*��P��3ִ���.��\+��C-�w%�޻4�5�F���{;�~㑋�̆wP����Ϭ u�{}Sn�%'�O�?����*�'m��+m��մ��RZ����4х,���1?��O��)��[*� l��lj`��2M�>vE��yQ�K� x��y�l#ej�f�����w�X�V�S�y�9b\�7�_>Xk���嘳{��@��D�>�g@E���(�}��B����A��^ޑ���o���O�ؓ�*�p��9��� �����C�N�*�.�
�?�S� R0�</t:�'�<���{4wn����B� �^���y���6�"�·��Q�ؿu��d99��}�'�lu��I����d[�vZ9S���k��^�w+o#tF��/�{��1��.|=N�='�ꃭ�o~r���x*�M�念iZG}�S訫y�q5Q���櫝�7�w��Y�m�2(�"&�6*_�18�y�E�5�]̱h#�l�!iӣ���"bs��9j�q�q�/�V�/ך��Ky6�3���Zx�p�)_1�|��ù��8�?��\�d���5�����
����q�9�L`�r{{�{6�w�
�.��D��R�3����{�1�t�"���ԧ��[R�tXvf���5��j���2��tR��=��1���!�7���5�w�sv����=>�,��J��w��>}��I�Ob�)�c��̘���* �K�<c��όu`��o��>3V�e�C�1���3c�g}�ʳ�����gP7�}fL��x�}f��>#xߴx[s��O����<
��e���l�\��,��uy�S�o�v�O%\G���wٛ�/��7!�/����_���Q���ZR�W���-kI�YG���=�\���C�Cs+�lc��11���(�E}=��P����G)�Jĝ�����q�Z ��ՆQ���ʱP@��d�e���T1��^�}�<G���?�g� \׶�B��6y�U���c�n�o[U�� d�6�eT�Ǎ���ׅݍ����y�6t���9��NRM��*�[)�ĤP��X�o�s��.���ǒ�w����qh_PE ˺y����a�Iv��&�K)��/v��<#�]��PE��G���y�ў�uҕۯ�3���!Y���9jF��lջ�G� �W���0����)�'>0=p�0PW�����J�p��)ԚU����:��H��Q�A؁�ĺ��f�<<�Z��RQ'ͳ��U+A��Y/!b�>h3Ǝ��)��a�hI0X��S�;7���S�%7�߇�;�؏���K8�q�������NC�_F���]�n��XO^��:YW�)/�-�[i�3=|W�x��3����Ԇ��7D��E����Ј�u��;��Y�i��?�D�|6ql}�Iw#���u�g
�_����Zd~��DžB^���9��Ƀ{ x�v��4�����+ȩq����⼙龇��~7�z��A�W9N��:�x��Ƃ_��ڋ�M37��Y�d�tΔ7���f(O���w:�7��oW������[�����D ���WD�d��X��S�l�m�����O>]2.��[����qz����'��/�B��,���B�9 �j:ݞ�87 }b�1�n�����rᆲ�x���h� ���"�-��h��-��4�=��J�����m�Zo���b���� �q���J˛�X����Ǚ�O�0~��aN�ja���4����3 9�+Go�st�t�pN9[Mn6���/͑�ߧ|b�Q9���>=[6�o�ȝ> ���[˙�~/Xfڨ��6�t�R����?��O��L��T�k3���|n��7����N�t4q�U �����y̭���1�3�G��"�ULq\����_��m�����#R�nḔg{�����{{�g,h?����i����=�ḋ�{\�5�w�4A����Vl�Vl�Vl�Vl�Vl�Vl�Vl�����x���k]VIX-a��n �$\)a������+�_€���I������Tr�tս��]�L��eӿ��2q���8��n���O�������$~ �,<g��W��q�����WM�5�&�d�Ӓ��/M��ʇR'�Q�L|!�R�i�ႺK����� _t�&�%<��Ǻ8�L�O0�#)��_DŽ��y~f��`�㼉χ �+��9�Re��
)#�ӆ߭���G��\]����m�wlx� �cÇm�6�Y�� �k~ֆ�m�ߝ������w���uěj���>��9K+�܃�x���
���ԓ�7�Z)w��U/�+�ޥR�A�]%����/�I��{t��t�'��/
��7���7��� B_�Hw�����л�b�o``�P���h,���׭�vxOXߕHD�����p��p�wO�=��v�#Q�por�ذ�e�z/�ID��΁���;������`�yo2�h��MʴhS8�{N���x�e ���4������X4�5N%��o������d������9Lj"OD,ggMDc]���C�dkp˜���$�+���`�N&����7��s��MFe���[��(}bp=�ux�kK�Y7�O������d�6�Ű�?8O�[����m�G���-��P�Y��:�0�=��Cb�7��3�ұ��p_or�����H7��Mģ�.��:�=�mn߾��q-��Lh��D���?�!�c��@�/��X8sm]�9[7��J�0��I�/R�H�BE�ى�PK
It�?'fo��8&libs/mac_os_x/libjSSC-0.9_ppc64.jnilib�;p�uo�N��p���"���(��Q朓ݓ��ɌJ�:.�����E��+Xq�! ���q���,�X%�t�N����T�Ä��1� 3�������n����o���;�$�t���Y}����}�{w�����[�r0�B���2x��VW%�y��f��� v�]�o�$%�*Y���6�q>��=;��H(�ӱ��=�t��0��Ϲ�Qt�h��+I��h<k���ʫ����b>GV>W�"�}����mb�nI
�I�]����T�N��>��k���u[msm�7]3����kKP Z�M8�ܖϑ�o�io�S��v.>�E_{P2�D�)]��W�''��{�wYV߾PH
��pL����{��
���E��a�8�8���/��,0�+$��~G��m�99b��+v�p? �b��x�Z�푽�w�����I�Xh����DZ��Hfll��=m�����Ѧ�_��S�U�
�U��� y��}�^|��A�.�pm���B�o�_a8X=����-~��3O=��.�Mw\i �[�~�zL=�'�r��eB�GaCV8W��n�]=q%ܱ�.�y�/.�)�ֽ�'�Q�i��C��'n�\9��mT+�����ݝ�o3�>��+O�Fl�&}*��:u4����tj���[�nU��ڹu����T�>��LMmH���x�W�� jZ�*�AaJ��K��#ej�0���n��ň_�x�cի��t`Ż8�7�SG��R�#�K� ���ڏ�þ�tZ�]���������6\s�h:��ju��溥����/��2�'���'�D���ē�T���j��F�)�q�D�'��I���C7�1omo���c��}��apמ�O�2�s؏�F�7r�a@���4�D\���8�B_o��2�/sY§���H��I
U^Y�2d�݈��?X��$�Y ��y�E�W.���N��P�'�|�+/7���߂�g��hc��2L���DLݥ^�s��Pv ��5��jddx�_��#ކx� }���2ӟP,P����Q�m��1��9eO�uM<ǠЋs"�6�B���B��tm�Ή�1px�L ��N/�v��jf}m�Y��ש��qp�>8����V��RU��5�[�^�9'�J��p\��;&pd:��-�����</��}�xsQ�<��������&>�� _l��M�c���7�?澮��v��Mjf�s��ý�����>+�9��ub(o�>�7C�H3�>B4� ��Fy�O��}Ǯ��Ե���*�����Z:��Y�q����ٷ�R�}����D�\sط�g��U�/Oզ�X�$���7��H��X���,�zL5�դ�k��S�RmB�n��X���B|���wT�k��O�F�a�?�FM��,SmK���rb�3�b?F����| �j>�g��-�
�
��u��~\Ia�=�H�»V�� B�jm�|7S{�X�խu�h���k,�}��wX�Rba/�g ���7)p��Ą[�a�T%d|7}���3-~�~ p?��]D�0�P�_��:���7q ������2c�³7�gV`M}���IbI�n7�0Z�
��n�a��������X�{���~c�m#�� ���pu��7�K�-�3��n����U�h�Y���D��v��a���b2˙f�o ��L���y)7��l�Xy�XO�Xl�8 lS���>:��:��P~�|q�u`W#gΝd��u�j�{��h����(����/0��N���+�gP�R.��>�~��zY;<ö��m����&~<��}G�p��`KL+�<O�~����ˋl�?,�����l�`�?iԟ@ �kKe@|��pCW�렘Mᾟz��wІ?��!mٗ�›�}��_xf d�J�:qoӹ4��I5�\G�V��\*]w��o:���K��l��<_ٞA���*T_y�4��Bϧ�E�+��&Ж��8%����^�;��ヵN�:7�S�6��kV�6�3�~eJH��T�-=�O�}L�;��[UZ��?ܥ�t�؟LP;, `_1�9��ӡa�F�7"���;0G�}(��x�t�A�o@z��8��{�p����g�~�_���BҊ=������ ��S���/�}z���UC����_>�ӗ�#?����A�^h�~V[N��{�����F�z����=ij~/4��e�?�~�Gq��x��&�.��q�Ow8qt���:�HdGh�TN���B߈��;T��������o��{ǩF��{T�P�jn�s�)�O��9+y��z.�Ө��j,�i(wɨ+b��6Ǖ��!����I\�1<'�@'U<\�׭��ש��j�+�~oi:��z�3�e�og<V� '����(����9 ;�� ���ѨZ��h�Z�9u�@��+����u_;�猳�@ n��v�V���oa6��j���g�`��Ѡ���k8݆1*�юc��o(vBq����/��?��~H��s�ѐg*ԣamНF��,��y�h�:�t�~Nُ<�y=�Xo���]s�]~����O�3��t��K�g�Y��O����g�h�Z�eW�3��Y`͚Ě�_�Y����L�㝣�;g��ͺG��g�}S�[��8�kಚ����:��}�C�_~/��z�@K�P�ӿ�a�0��0�v� -ȹ���[G��*c��8��4�p�`���kO�i��5Rk$�#YpY-����g�����|�}�m�N��pkB~fv���I�;�X��`�u��9�S������!�-��$�U��xVG𳲝r���O�E�bO�M��g&�jW�)��k �y�,7���U�e�*�?�%V�t� խ����\��o�w���]k��J:��7�z$�an��9�Գ&��k�N<�s�� bZ=�4�0�)A+Ø>��f�`�ޤ>��)���k3�+�Ӽ�ds���b���}� �޵h�"� ����HF^�X��^�ҷ��:�y� Δ{,�/�$|[�����%뷩碾E���VU�[VXS�j�uz.���k,�<���Xc��3=�,��}}G��,����=���w�¢9䟚����������A_6;����s��x�ks�#s��X_�WM��5>�G?������gB�Ğ���z=�W9�55�����<J��U��a3ޫ �8J(1�a&�/��3�!���j�pJޏr^�8-G�d�.��4�?Z�q�9�~��"�p�H1UT�eG�,�}���>��Pe���;��9��1���������
�p9�y7���$�
�N�d� ����)�3�%��;��?�㟍�!�sC㞝�ρ��b ����]�5?�E�S\?�ѐ�����W�y�O�8�+7����_O�!���3����%W2�H+1��Nѩ�L�(���7��e8�k'�{ѳ�<6�^�Sǂ��`5��q�o�x �<�џa1ߣ�+���]���������t�F��ƻ����6�µp-\ �µp-\ �µp-\ �µp-\�_n��xn>��c5�|��1��&>����6>���Q�� >�q�F���kخ��O>�λ���ַ�J�0���K� �%���ٻ� �8�I,���G��ea}���N>-��Kȇ�Y�^�����, �v.B��f�b�'>����=��,�!��##��,�����ːnsZ�n��Ÿ�x���G��~�?��D�`���ߴ��@����7G-�t.l/�f�/r^G��ʣoȃɃ����y�<��ypkܞw������<��\���N��������~06c%��ӻ��^���~������;x����s�2�_����3伕\���}��I�h���R[8���O ���F���D��� w�ҐZ��!����@w ���pT�#��6o�J�`P����]�H�}GP� �G�pWk0��F��L`���li.�P{g<��٥�ͺ/��u�����u=J8���;:?)âG���b����'�vF����G;[��i�D��]JP�ϋ� ��;��y�t����)�ݵo���|`���5���!�<B+ۚw΋�ӬL��2(��
v��Aeg��)>ޮ���۰97Q" ���:�ݲ3H�;�;��mA%XQ���LWwL1�@��H_�>�{Y��ww������ ��':p�P��6��OU%����h�=��H�A
����x,n�@� ���5U�A�t�h�w H�`�3�c����O )����xM�ڠB�����PK
It�?`�9�lG$libs/mac_os_x/libjSSC-0.9_x86.jnilib�pg��˒\��=h �Jr�C�?�;H-�i�2�@L!G�=�d�^��ݷ�M��ʺ&�Z;�h����Q������L��Z�hi�A/�֨�f}�۽d/$�t�qF���~�{�{�{����}os�y5��x!$�\���z�#���%6��[+�%���,Q~\�A�z�x�N�N�� �s��#&�HlR�.��u�/%�6��E����@h� :��qci{�q���5���p�l�]/�r0�]i�c�XuO�=&&*�,��3�w���̶\+�����9�?��Y���YǞ�:�x�Nl�^��=UG>��L�s��tm�Z�m�3XF�90J��Ҷx���@���h�~�<g�f�s3��'54��Aq: �1J��C_6�_X�c�[6Uo�6��+ �\���n3����)�``����7�^Vz��ີ��B �����O�~xӉ�^�s�7/�����-��-P~���v���1tr�5�Ep�%3C��3*t��8�^E�xp��7�_N_�;�h���(�����ҵ��j8�kd�f[� zT��<-2�L��퇢Tl(���� ,�� $�S;~k!j��k�:M���Z{x���/��&��q�yJ���rcJH��n��98����±�#
�N~�M�<�)]ԇ-7R�B�"7�d�H�4V�ӝ�Y�sz]W�"�U�t�� �b�ع�~ z�ϸ��O{{;���_h�:'�U������W:�����C'��h��q�G��z�)D�{�9E6����۞> ]@���|�<#�� ntT�9P�]—@*�g��b��vf�ߜ:w���E�S=PK����o�<c� �J���nN��J��M` ��y� (������: QK��>ќ����Z$��7����Ԛ�k�폕˩͉�����B|�z&bgs�)lkY�H�w� ���Ʒ�Gp���#�q $G�FƑ�xg��4�&{l��T.u=V*�����9��'H��&q���wȩY4�X�.�ʗ�B�1���"f��}�(��D�;� V;��� l�L���٥K�lRrB}����N��/2/�T���� ����?k�{[:�'��::��
/v�\��L� 7�Q~��4��4�H�� R��ہ�a�* ��]�cx�������4C�b�ρA�Fզ��+}��%����[G�i�[g��Ξj�=�O�����c�������ǡ�UO�D��%�8�A�|��0�X�M�C�҅�D��T5��?)�E�Qb��JS��vy�]㰦s0�L�'�}e*̓8ܺ�X�^}��Q�K�n�4��-z���S�a2�А�e�����Ѓ8�F�J�^<aH�=�n΍�H���C���Uޡ\����æo���ѡ�Y�icZ��?���e��TТI�p/ٌ��,�Eú� xQ1d�2�1=��A{���Zd����,����1�8i=��H�U;�XY�6L�~��m��oL��ث��U��c�������顶)�51_;��3_4���n�[���Gm�z��Z�����=��.�zu��`��39� �
Z.�mo��3�pV��i)�?�"4�k��8��\Q�E�Q*�-`�`s���|#��-\��,��K3�z��3���< M,r�t�ƣ�O_I<�~�u���{����SZ����o��%Н�VwM�4���}���_����x��K+ی�'' �xt �r�����'��r���X�2�)��0��Vi�[A �U�;������X`��a?t�m�t ��8 ��9����LnZ'nf�vӚ�ݹ%�Y�{w�����nn*��Cv ��� �UG=��|� f!�Β�{�!�zA�b>r+��r�N�\�����:�#X��oi�vy4�[�3����6���'�<yԁx�دA��=��_g4,f���ԯя��~�/ W��u�]k�a22�f�i�Kl�pe�GӀ��s�옱ٞe8�R�o���U (}��٣+�_�i��|��t�ύ7����+ �6�H��eB�&�������e��Kt,�·;GyUp��'� ��������"6: G�LJ�P�x��A��M����X������f��H��<�������g2��ɇ]�2��'�\ý�˅&�ʈ_03�B�9���>����C�5)/������ˠ*���5+�i0'9�x�|��ڣS{� ���m��0�,����4LG��+�_F���5@Z��fjf�44l��l�2 �<�w����6���A7&�@Ă��g*�N�%��B ||�n���~EW����W������xF>;[&���3n� ���Y�D}� �b��Q k$ �
�p�v27V���� ,�ر��qf &���)� F��c��؜g_�㻁2ԏ��f� ldp�S��t�� �Õ��o3�7�/��KAx@c�q��S-�g�V�!�׸��m ��t��C�}�OU0.�K�c�e&"#�[�d�0��| i� �3B$����f��� ߶}��n�� �>��Y�;6œ@�����J�BM���V���|�|.�Q<��O�+������DW� �*��.�p|��k��y]�K���,K��)]�a�yMD��l��UOpA^6� zRM��&t��Nn��ǿ���� �Dl?·��5�J�`ry(9��:vV�̟c�Q���S�+¹A!� �N;� �nÔ��~O9)<ǹ�yx� ϣt��9�
��}O�g���Q8�Էu��ڏh/��������Vπ|�� ����sc�Z���G�l��̞�ӏ���O�I�D���ћ@~��D��˧\|�0p�e�&���|
vd��� |�gX.)�aW�X���r�EM��5� � p�����(.�������D�RC��H͖m���# 9��6�7G7\=�i�iCN��h�#ng^x#��/FG��st^�h�_4푙� ����|K�Ç�%=�1�;:c��+��9�8�1�s����ep���� d���8�=4����Ƕ�Bs��4m�-;�_C~���ei�Yhn��Y��4W�]�V\g���Cm/�=���@=�;����@u@��zk%�B �?�upj��Z{�t~DŽ�i���E\���xT+�:��&2��X`�X`�X`�X`�� ��'�=( ,�� ,�� ,�� ,�_{����+̝�p'.,\�?�}���ee_V��,/�;��5�\�X���┭hQ�l�6,|*犭���S���M��s���7����l�s�9v��{�W@]<!Q�k�5���
�����QǗt�x;�7���|����C���KȰ���D�2��0��`��G �8�;M�Oȯ |�����]DȊ�9 ���k�����=Mi:��d�x~���nc�:���f6s�&�U�������O��5�S&<��� M�J^j�+M��&|� �pj��p�� ��b����P�w�%�{�ep-��f��g�Bw���mp�;'���۰�˾���}�b��/�F��ۻ;���@C��l��K�:o0~Xj$^q��Q�Ϸ�����y����/X?��&�7~_�� ��bM8B?�u�H+%�_�D+Q1�!,����-[}ч�b� ��H8�5\/f%�%�۩�JY���w��A�B&�(����F)�'���²��`֨���,�0*Ҫ�mY��++�7Vdj|_CV��j�0�_�0; �H���{?Y~g��q-��O���C�j�a�\壾�������G�F�o�`M�<��)��Ĩ� "k}�f?�� PxA"�;ջ��A/l�h8� �!��2�����FQ�7*�t���S�i皲���:4��:
��|�p4(���&�XS}�T�u��݋ �Gi�he37�N� PK
It�?t9H�`8'libs/mac_os_x/libjSSC-0.9_x86_64.jnilib�;mpE�#kl��B6ػa�Ă���yb�� �8>r�c'�<J ��F�`/�����Sl\W��.�V�.u�U����(N )��I,�'|$�戓�&r>H���Ͻ�ݲ�JL�{��]�~������^����#NJ�f����+��p���x���p�\!\YJ�N�N���Ģ���Q�u��7�`��-Z��B��T�Ц�5-MjH�q]�o�- ��lqp}9�P��Nkj�ڮb_+�����EU�-��n�'ꫜ������������I�5q}�<:[�mUUm�h�5kW����� s��"~�ڪ�g� �T�+dKC)�Ϋ�����^�jæ���W���V�����Ҫ�]����9,�u��?������M��q}�,�U��� ����ѯ���[��o�w[=Y�}P�^����՞�Vd'8�^���e�� σh��q�3uuU�T,~H����K?l.o���7������{�{[�T>(��8�{��� ψ,��rY�?7�yX�)���;��
�O��)n�`S�e�����vI8Զ��'�7��k������B���m��\h��*v��+��6�t�y� ��e�L�?y�뼝���i�uf�t� H �| ݴ�+�w
yz�K����zI�e/ )ƅR%V�!��x�f��`�BZ!�rЕ�́4c ��G_Ez�u��g%ApI��DN}hcૄHd?�����2/9����] ��1o��̡��ycMeNoL/����l@ :��L3�
�c�iJ����V
�s(�cSџ��t�Vz���04�N" *���c� *}>v �����5 -����#�A�܊��~z˚��*���і�"�ݐ%�X�"�JH��`:��g\~u ʯ.�wnY1����X�/E��r�ta�P 6��u���9o��0�?��th@f0�Lǃ�艘?A�v���$��=J� j�/��U���o�q�@:���#�I�Q��Wo�Eq�����o�0��8&r�&�t�]�G�O��4�B=C;�?�MR�ƀ#�Duw'�#�t���h���d��t�=t|�J�a ����2
�� �>t�]In)����l�����:ўzr��TAs:��^LJo${�����ӱ�K����5�B���gt�8C����*�e�!DM¤���\M�f���7��~�����ͺ؎Q-J��7�]���kJ��,�A�F�q��a�=S�G��8���+�0�B�c)��3�0�9)ಇ�y�f�� d��ٝ�H��^%f��3
9av����U�K��_&�2sga���ŕ���l?�I��`�1�C��a`V�� _��6eכN\�\;�?� 3:�ݖ����b ��g�;(�Lf�L�Uȧ4��S;y�e~B�k)B{!ɍ�-YCrV@~���g3Ѕ������l'�pc0Ašd�@?�
�����f��@�),H����W)�:��O��2�QS��1�M�=����r_�)T�kz�
�{�/å�v�u��&��� ;��4vq_�K%2�DF@���pL��s��i�G��-�(d&�F�TQS�� �/�xsQ��]��?S���d֟�jY��]�O^QG>��K .��_�7Kp?����6��O�����-+�C�[�_6N�!��/��;����L���M�T��y�H�2x��nE�2�X�zS�
��GpbU�/3KK�$��3[��Wg!�<����|�2Ix /ә 4��KJ=���N'R��� �D���u>�u��hr.��v���F�'�_�j�8�<O��Z�o�����#^��-���0��nƠNsn�0� <z\����f�[��S��,kb�Q�C�{ۚo(g����r)P:���
*z��!{�"��ׄQ���B��5D8P��Z�9
��Y'"+D �(f�������%���&81�$l\ F��13X�&I�i*�ɻ4;@���Q��� ����"�x%�&5{�b���v��=�*�K�1#�xE����}��s�;IyxS�O��c�<�$�
��[P���ٞ=�x<CE�^<?�r�� ���t�1�n��زb4<2ۋ���"�E���,r��3�%�f�r�"�x�ି�[l��l��RG萄<��gF���b5{�i):���|�rQ����o���F�,7߇�e�c��*�CU.0�� �L���� �f�M�(��V u��0�~3Ԣ~]����[��|y�33g �Z<�!�cgѩ���ڽ�T�g��Fo��7a�����m����7�� ����@Cw���dy�ZE�79'�ϗ7f��U���"��k� m8������4xt ���w@�1T(u�<y/��ࢱ��(2L�.'�­���p��� �}QN��M���?ڰ+n���Z��/�G���(Eo�|�_��>c�^� � vP5#�Ï� vKl�1����8�
;��#��>*'V�HI��wR9����j �J�h��B|� lܑ�;0��t��U(��N�%���cYs�z��9��A�THS�D�
G�B�I�AH?�So&�����#U��\?����U>�xz�5�E�3���2�� �����@�\=��x� ����`� �6�l�W:�_�>K�O���>Pr��uQ^y1�0
$=���Ҙ+��� �R�lv��4�Y�3y�fA���ߛfR�1Es!kHц_�����'���� �eһ�\���R�q�&gm�~'ٿ/S��s�~U�t�6R��|����qH�?� �S�ƅa3"�����%۟^��w�S&�1���ރmx츻w�C�ݵ0mcS59'�� �F[Z 1} ���5��"#45>,u5�F'����� y=@�l��u�^��t��WM6�>�9 '�~ `)J>����s�1��2FJ���&z������9�{'r
��s���N�O�?��tO̽[ώQGG�8ES�����r=��?�;Y⫷:��q3 �1|�}�=K?��?��G$;�3����ߍi���N��&��@i4IRR�; qB��q59����r�礌S��#RuM��q���������bX��ct�����,�A�Y��Ck'����\Z�D�y��O����֥����e��6��tn��.�&�!�����2�%�+� �K-�E����N�ˈ� w#>���� �D|���>��=���w1��S�H�%���X�CqwJ�]Vya����Z�r���Y�J'��9��� �e�2x�}fҲ���~?/��m�sk���|g�ز��(%@��엄��4�3��<f�T����Qn'<C��ܓ��?3_�8��2�k�BΞ�s����+�܍��W�/煦J.7sr�+�뀦y�� ^+.�u L.7�ʉ��v�="],��� r���x r�M��H��I�Q,�� �.��y�l�z�g��؞�Ǟ�g{�X
u�`7���㠧��ydrsX��B:���oX��SD�s���k�5���s�����\�?]v���Nq;�����c��2=�^k�8�N���\�hr9{��X�V.�\nB�|�}�˽t���N��/��
����z,���\��;E�s�P�б� �oI�5֏�U�jJp
�4�36x��`u1}o_k}0�0n��Zk\�fgR5�=fK?��{��8�_䰌�+8�%�o���9�p8�����~���>��<��i���9���D��c�(�.�e�L��2]��t�.�e�L��2]�����[T��"+8|��Jk9\��j�q���F�9��a7�/sh�x]�OJ��J�R+��a��ݸ��b�\Ng���N���h�1��=�C��� ����e��ҳ}�ӫ%Fϲ1�r��t�e��,]��qz5� ��g3�2���o�v>~�N�q�t���ӻ����0��71�����������������͜vr�_��e��Wv�G���oQ:2�C�y�{����G)�{��b^�H],N����7�� ��<zI}�<�:�~2��A�_g���������P`���<� �}v���o��x0�����'�#���ڼN�o���4_��&�^��Y�lh ���; � 5�զ��gí���ׂzHP���τB~�Nkk�5=���k����|~M�7���ږ6��]�j�p ����mҵPUK885)7���zvJ�mj�P���Z�jZ�)�x�Z�N���)�����fm
2-�Zpj��n[;�m���ky�!-ذ �Oa C�^�b���!;�#vdj}m��)MP_�����6���S��֨k|����Nt�F�|��nX�îO��s�j��[֨�,��M���[u���T�A�.�B�f �64ծG�� @��Tu�ƍ*m�%�kj�7��+���7�Z5��-Y�SP���$��-~�Z3tԠ/�j�4wtO����@S8��֧�A��P����{�PK
It�?��U�t;libs/solaris/libjSSC-0.9_x86.so�;mtSǕ#[�,��@��4$!� q>H�� �$y��I���t�a� Ey�u�i�Is��NKrr��I[w��6�P�a74�v9[�:=ޮ��)I Ҡ�wf�4z�W~�]��̝�s�̽w�<]�{J���X,9�>��Ϩ� p~�Qw+YB���d2�������7����4�kI�1�=��? �瀟�0W�ﰧ���2��e�̂�6>��&�� B�?�(]И��=��̓@<J;t^%�-��� �\���y2��
B���Qγ��!�d�<V?4��#�ʏؘ�ͨ���?>X��l>�P�u��y��0=�,�O.�#~��+��v��f �^��qͨP���/X�������[�J���X���Mr��,�P_� ��n�R��}�~������e�@5@ �zN������>ͼl�ڄz/��C��1\|/����W�y�߁��>7��?�,�}/� m+VM���IdUTT mk֙�j�z���Mt��w��|��DŽ��p���/: �}3�w
x�D�� ڄ��s���l?́� ��z\�,Xn��2,�k��/��,��A�/gD�a�U ����~!S� ﵰX�K�瓧M���Mz��g�}�q[�1��3A<����ŀ
�y�a�� �l�"��}73D�GY��y˄������J�X,B|�� �[�/����}��x ��.��[v��?
8�� �d��̄[���L�c���x�0�G��Sh�L� �C�*=������~�����I�ik�m'��}r6쀄@��Ɇ�b� o�"���i�?�# ����ܼ�U������A���?�]�A�<x;;�� �=��lA�-W\_�u���}���v�����}�K��kB?�c>����U�ۊ��y�K��1�ۋ�y�������!|v����.��
� >
����?"���}�=f�a^+�/������ٳ�W@�~�@� ��;���{𳂼c�7 �n�m��)����.S%�eB�6��gz����I:�auyC���S�>w�nR#���2�-�)]�������T���y� �3 !�� ��JVʲ�#w*!e+�SB�[��
�A_$,wy��Tcw8����h?��`�z����r��}�nջC���.w�"�Uڡ��p�;� X�J(�@eE�ZY� E�*B�t*��/�����������8��W��W���҆�u5N�Un��_Kp���'��N����u�U7 ��W�6�U6�776�ʍ�M��MrM=�:TQ;�@-s�t�aeR�[���Y𫡀�V8������U�ׯ���j$���+{�Ў�9���+ו7N*?��;+v�J���b�@_^5\��>�� �� U�+R)���ОhN��뿮��L5��5�;W4Z����5������������u�mrпN��@\CA�������冖�IE#��lA���YZ�6�W����t�w�a��I�$n��?JJ�:���]�#�pPQ:�����6jꛥ��W��Њ�zB���S�4����\�{{�y*ܑ�F7.�;O� ; �ܪ"��چ��Z��$5����8I�C��u5��ςC0U���z����]�T��u��NTny(�޵�� �Q+wo1Z�9d��T�T��8�P�~�:WK�ZInn������2w� mn��\�ѵ6=��pe �WA�A��� ]��K+�|�vt �.� V��66pe���9hb�l(i��ߪz��57S'D��i��k@�u4���P`�����1�}�C+�� l:0ܻ=�ې>�� ��d�ܢaK�ҡ�!���F��^�zIy����IQF\���0oW�J��)e#l�9l���~c�7��;�n\�5��ƆJ���Q�kk�7����-%�|�Q�)�2�h�N%,�6�tu)�0 f� 3U�%6�!�kKsu����@1a�(c�6�Le�m`Q/���z "�V#�(HՉt��>���<�!"�3m �c�%V�U�#�+'?� "A�a�@�,����Nb{�o��)����3�Vfc/�ۋ�b������ _C7oÁ�����'�"1w�y9���O̝b��a�
s����\*�1���X̃`��bb�s��O�\(�;1�9Y�yb�s3a�T�}b�����71�y̽bs��{�|1�e1��9=�z����(�V��#��e�;��07�9i�>J��W��N �K�𲗗{x���}�|��o𲟗o�r��'yy���89��4�N��"B^�tKX�A,A�DZ�&�q(sfR e.0*�2 t�%(��&X���2,A�UX�"�a ���r)�K0b3�_�` �yK�z�KPp'��,�@>,��A,����7��KFN?�f�=X�'��f�=�?Cq�.{�1>Hq����8z�ǁ�!�cՃ)�x��=h�x/ű˃�R3�t��f�#�]$�8z�]+^Fq�A���P=ă�wPYypAq;��s<A� ő��� �GO����SEy�����D
�e�~���M;�Cl�α�Φ[���n���7&�����6}ԓ�l�}i����Z22?v�R�Z{�ֲ"��E'Q�٭��tD�6������l:�m@�v�Ş\�J>w��Z����t��EU8ժ���m�`$w�`�n ������D\| E7����<���\d|�k0� �3�+��0�G�9�0��wl(��L �O`C{m�.�l8j� �q��[.m��l�<�6�M�o`� ăHn?�jB]�{+�0�$��`L qJ��!ߡƯ��5����&�_C�Y�ؒp�!{�C�N8��`�Jb�b�E��]~����ju������_mtZĺj0�D�1�-�Fs���!a�Fm�]���ӿ� �z�n!Q��#úTH�L�q ӎ�v0�q�l���v0�q�l���v0�q ÎvȰ�@�2�8�aǁ ;v@��3;���\4��_I�P���h1�(��f�Q�]g�ZT:;�{q�ӫt?F���y[�bW�k,9�G쭱OX X�n-�,�@����A쿌����B�p���u�6
#��z�Y�Ʀ}�Nސ^�`�)u�6�ԮXvN�N�%fAw���Cf��”���k�à}�;�c���5��ډ�Br��z���nM��I�š]�� ��,�^�j�z�vժ������1�㾙�b�,���D�L�-��g ��+2C d�
=���"fK��h?��H�g���+����'[�\="`b'��O,�m��hnV����҈�s#|� ]� Z�R�\nc0j�Ǭ�ৠ���4\��{�#ü�[�?��]}�~9�n̟ �^*|7�Z�2�~��9�i(1��E
���Yڰ%o��ۃ�y4���]p@���,x~�ৃ�q� � �����3��1�S��/����x���� :��ը�W�ҹ�>QhQ�i����
���eT0��~dM,1���r���Q^V���/)y��|i^�y^��0=d��P��/l�B8{_����h[+�9&Q? T�pL�2*��|� ;�5���?�Z\����@`k
,��lm�0�A6Ө4���a`[k7qmL~��N��-�ʧl�4�VI���o��C��0���΂���
�p@vy�겖�O��b�TB>5FX��� �tp������n�
<j���0c�o�y��t~��P����x(��t z�]1咱Y�>OЉ���6}���?H&� ����\>��%2G�X�s�v-K�m�چ� �e0;��x#oH�f-�:�ӆ�)�!K:�%��>�?M1dZt �!� ���p,�Rz��9���l*Z��Y/��lF���#Y�:��� �u.���.r} s}�{1��at�{.�y��2�LEޞA�D�sj��!}��!\�� Q��N��'m��U�]�+猹�J�\��\'��Wra�E
�~Z��Q�؅��Í����'�#�[л�Z �k���ۺ-����O��������L�ed�O.2����(��=���m����n$j�~ZVQ@�A+ꈸb��V\�6Z͇I}����O�8�*Ȉ5�$�e~�x^h���ݤ�.ݒ[���|�\��~�O�ǖ/��gp��I�/[�u���1���,�;O�@�8jĉ��>�FޠSxC��6�h��v����~����g[��>� ;��'���'�[�(��G�V��5���t�5Zw2�rZ_��hX�=� ��t�dT:�K��ҋ�t&*ҥ���a]:������ *��GlZW�^�j�Ax,��W�7t��ƏSg#�kd>,�5�H<�h�]�E�?#��!��$m8�o��=#�g�Ǵ+ğ�{�\26��zh�'f�.D��� q'�6�B�&�� ?��,�������3�w[�},�Z�Q=�@��F �p��P��sښ�����Ϭ ��޶h��|�?���.Վ�����j����?��y�6r��0��BH�U��
�:�U�;P� e6mЮ Y��z2�:"��GĈ����W.P��g��p����.V �:Z{5�fG[ο�K�/�� /��~1�=N�Xc�U<I��(.�O�끩� �3�%���4�1b�S��5w_�>���\q����M˛������3ɞ�>�^���)��S�w��ȗ�?L�Y[k��� -�ח���K5̀&]ߌ��?�s���!͟�H�������v/Qo�Ȇ>��:O��!.�Z)Q�􍱍�I;v!����#aߦG�S�������z�1]d6S/���r�B�6]�\��#��M)*�1?�lɂu01�j2�'~8��k�n$�&'�����x����K�����: ����\��޽4�c����'� �_*&$y�"�;k�p-�����{��\bm��ħ��ao�VG�V�t͡b�� QVF5u��o���1>�0����ߨ"�$n@u�
�#�4��Ӷf�w�<6~0���|8�� o���xy��Gx�ys��q��rN�&������]�^�8u���N���nܵĺq����w���]2�G�w2i;�?�u�n���bݸ��u�~'֍��X7�����;��'��F���&�:)#����r���|���p ��
px��=��c�����kK���r;���������� � ��7�Zg|`7�e���rA����
�:�����e���0�^�tr�ZL���,e�YH~�.���+��ұ��}c�q�j]L�,,{LI{?�wv�1���*b���^�1��8cz��o\8Ƹ+i�ya�1G9�&9�g̰ 'f�su�1��ތ{���e�c�)+N�1�r�6Θ� ��8�>�sHs�4���sFs�$�/�1v���{��wo(T�u4E�����ק���=�w�X�\� M�wU�j�ʒ%�KJ��X�Vz������4fIIϊ��KzJV�1�Xw��O2��c|�0$Х�t��Zů�ܪ���^�W�*a�2�����9�N���˹bŲΕ+�^ 'wSK}���g�.�{���8=w�1�k;�L�j����0��c !�P8�>hdwI�EP'�0
�k�N�Q��>�G{`!�/�қJ�W��P��.v�5 ��[��.� z;8�T+��_�����T��AH�цT�2�s�����{n��f�c���Q����]��b1����h�l?M�C�}� ���!�q�9 �c ��t�B�4Fg��� L�`l�����7q���_Z?�r�}7� $�1�>�������u�z[8�����8� ��!>�7�yG0��3��:����?g�� �t
t�����?��Ka�Oa� r:\/>�"�o��ד���:�1�v��;w����Lr���yn�3�>�8��:|^;�d����Q����3Nv��$3���@��\����y��q��g>s_�5E�i:�Dt���0�w�t��<�e�&�< �5MgT�$��ϡ;�Dž���ssp��]c��PK
It�?�l��pO"libs/solaris/libjSSC-0.9_x86_64.so�\}p[Օ�e[I[@�. ��ljCpHB-[v$�m��)-�"˱GR��|�-J����P3��dg�N���ٝmf;KMwlB��RJa�²IKY��4�"$�s�=Wz��l�����}3�y�w���s��x�]�&gs��PlP�U�ܯ�{��N��cuJ|߬ܤ\I��F��I�[/ �E���lEJ��v_6UH+�.���p�}�vdS!W@r;)�NIύJ�����lߩB� *�y�ljʪ�m�]n)��+9�+�S�ʈ���Q���T�.q����
.&~�
"1���5�d&O_K�2���/�G�3�q�z�K问��H�C���U�yG���/!�)%��?Tɩ�k �_�+�c&}D�ݬd_�Iq}Z���O��.�,�����0�p��g�>��,�׀mC@�P��@O= �u7�5У@/!� v9 �
��z�)JГ@�_ ��N U�?�p�%��I�}@�ր��:t�I��Z�+X ��k9`@C@�:�(��tӁ��{�5@k �]@C@C@��t�G1��R�g��ٮv�K�q+�~i�i�`*5�5�����>U pD�~`-3� �e_-l(�<al(�:XTP]�a��y� B�.CV�QT���*��<��[S�r��PV�dq�nCY=�[�ѧw*�:Q^�g�̺�ޅ��;y�`��ef�?F���c�^?����vZ�3�?��� �j0_'䛘&��Q�Ww���ʞ������A�� �oC��<��s}�<�_���-�d�t�!� �19_K��� �줾�ʔqR�����ܒ��5�8揿�t�b>4�����<P0�=��^R����;��-�2z��B�u~<��\e���ºK����ro�z�-NAylJ��,�;����O)h �˦����wN[�w��G{^?u���S�WL[�{7M%�z��O)�z��O)?8���S��V��S�_�>���5�'��/\��z�`s��.�pV���x��z���jX���/`^Rn�6��^ ´�T�= ��ݤ�bª��k�.U�t�+�s/|�����Մ��Jf�o%�@��&�8��a-D[����.�D�t�zݽ~>��Ai��=���)~���z�@J�-
_+Mwݕ[��_Fty�|��WV]���F�}3|��ˮ���3��:�y��ua\�S2�:ޘG�
��wf�^«$|g�r������]
���7 ��<CN�I/+?��j����(�(94@:�0�� X� �7Vg?7|Ɛ[��������^�~n�M�}y��x�j�v��H�^�+%�� �U���A���)�_#�T���d�[����o�ʷ����\�� w�vQ9��r���黛����r>B�*g�TN�����ʯ�Э�p;����?C��B�!«����P�����%}�|�E<\g�]�M��q����wJ�?�'{�����������R<����~���E�!���A}�p �]����S�墳R{�E�L��tQn;,-��&(�'�]��_.��8�+&�OP9u�LJ �~Qn�G(���?N�����|j.��\����8w�|�\�zy| �J¿Cx���R�[��H�*I�+T�E*����.��I�}��e� /��o���K�n�_�nS
MXN�2zGv��L�.)���� Q�����/��g�M+����v�,�R�>H���?>+�=���z�u��:D��)ބ�~L�(�_� |������.���c�ǟ<��s�뫳IɞJ�?�.i {��`�'�t��p1q�w֭X��ߴ���qqM�J7��˫#A�V�����S�۷��� �6C���ۣ�W���w�?�O�["o�7b���r�R��@Py�����\�_���o����>GJ��x}�Om�� ��Od�R�m�l�Z-���jZZ��ֻۻ���i ���SI
6@�L�G�(��/��^�_Q��Ў>� Qo0�\q��mCc[kg{����������v��T���������4GkgS{{���L��f����� ��`K��7��"n�Ro��|5Y��w�ݓ�su��mͬ m������
�UVŲ�+�C���s�7\k[k˿T���j�aWkt)5]�a���a���4|cg�TFo[�7�L�����v���@Oc�'Y���u�v�/����b&��1���}�9C��f�Y[W4;ݡ\f���:f� �~��-���~�/�dw�|��N��QY�f%)���o/��?��zfǺ�F�����l������i�`S(Xn跐ϣ�9Z�q����=�jmq4*��ܽP�Ͻ-�>�
��V���5��Z�⇨p��l�{�(o��Ht�uu���[Za�l������>̈́;c�ѐi F*X*��n�o^�Z��hLS�oz�?���Fwh
vt�npCS��xr�|�H0������!��&���JC{���Y�X��Y h�0%���f�U�^���5�e*nn���!h����Z�ܠ���;�_\�<�&�~�nގ���8y9Z��@��m��3�(�=���m���E��
8�[�,� L�`D��]�m�M���&����=cmp6eW��çꪠp@�J���e&Ͷ���;XH��a� ���[�Q�?�uR�>����y"�D�I��I�C ���:��<a& �G�ơ^s�������՜Q�l���B�`�-�~0Dm�!��at����Za���d�mv� S6��Y���A>��Vg�M�Y�� a����ޙ6av,�2jr,wt�F�L,dy�a
������.�[�w�h��i������w�G<|_�{�� eQ�>;�W��4|���߸���$��׏�����p
��1��� ��q�^��ʟS��
���g+܇��޸���$p��+� ܷƽw�3�w� ��������}���;|�wbo���]�sݫh�dU6n��T����9�"�b�J�žu_<$���)�ߤ�ݘ��}֊U�sL��^v�������:��R����̄����(������txH���u�������]�����w":�S���-:��o�<�����E:|P��t����Gu�gu�I>K�����w��u�B����3K:|������R�|�Z��Z���J-D���N���<
��d�n�q{pl��a�q7u�(� ��0c�� y ͱ�y ���ۑG��B�y4��F�7 ��s1�>���X=�!�&�a�]���2fa���5ff���k�1���"��X�&�"?y3k?� ������]��� ;vٵ�.H�k�����Z2u�^�x]�� ع�L����i��krj�e��wh���c�v�^�3{�p�);�ή��k���YKl��mZ����.H�יՕ 7�+�.����wX�+��5��� �O_F�Dp��J��Y�.�Ԫ���d���_x�x�-1�W�-�T��vx�O-��d������.��eq2�=���- ,Rf1�i��X�� 2�-�a������ �.`����0@X�|�!�����&C6�b��!���h� F��{R�����߶'��7��4c1l�ۀ=�X���z`_0 �A2�ؽ����0~+�� �8 �_��L�H|�r��Y�uھ�TQ�X;<^O��S%po�{s<e��5i[�?<���!��6�}���}'�c��K�dž2K�dž2K�dž2Kr� e<���x,�=6��X�{l(�$��P�cI�ǒ�cC�%�dž2Kr� �ǒ�cC�$��y,�=6DKr� �ǒ�cC�$��y,�=6DK�dž���c�/E��j/�/����z���J�c��8�g��,[�m����8�'~�Q*��Nc'|�%�z�C;���}�������F���M;�ap��4�<!��ƯB�x��*M��?�͙���Z?��_6�(��_�/k:�V��,L��{����y5�ai�==��{��쩬4”`��T�Z_�U�S��z^�����4ge}<iP�œ�x�P]O�r�ȱ�D��!�*��0k���<�t�R�X��"A���S4ǰ�Nl���H2��?_Y� 7�8b�@�� K{�1�h�ݠ�h�0��5�(~�ʁ���h��B��N^*h��K��6�ԾFN<H��a`4[��q��c�5Л��pd�8���^q��1�ٸX�41����rm$~� ~�0g��ǯ9��R�(��5��˟��X��|ȶpr6�������:�>6�J��`?��c��h�R*�lP��>��1ޢ�L�ʹ�3S|���73�Cd�;m}�u�]a�L����OT�0�j��kc���a��ZB�h7�6m��}S�쀮�s�f��H���' �55��c�w���Q�V$�>ش?ش3��0�'���V�*���8/�@�_�j�N1�h�];[�3����iT�X1&_I�]�����M��]�Op��T�)�ksp���ɪ;ĪK��Mh��z��h�]X�pI�\�s�9΃P�����sT�v������������z�"F����H�6O;Ϻ�&a!�U{Τ�|Ku\<n�=���
��E�L�&�bp��q���d,���m�_6A�e�='��!������q��~�w��8 ����g�k �Q�1���o�C��{��#450o&N�c�[���9{��R�9V�cD�sq5Wq��[�F�Q�ú;��r�( �|�Z_j����V��Ł�ʱ/�bYx��5�z�<Z���-����ǵ�$o��0r�ئ�g��LӾw�\�N��C����¦�w��8�%.��`H8�/:4)��� ��; � ��B�_�at_I�a�?�;�̂s�kc�h4�@�|��Z����!P�/�r �9�b�d�W��͹>�n���W����3�헱'��qj��5p�a�e3u�l�8�T�;Ta��@�"h��(�����`B $��r/%,�`���N�`����VY5���m#�3 b` �4~���AW.�^��B�s��`�謴k�f��.�E=�y@m@+�ځ.�j�Z��ߋ���\K��%���)�K����Nh٬-Ʊ��16F�#\�a\���K���9+�ʟ=��_��n��B������, 0�Y��gP)A�k�XJt�i�������
���9� ��3�� _����%�W��k�sj�� vhi K�8��X�u�U{ӡ�G����V��/�)��{�z���ꖇb}��Z/��>>�a85מ�-�`���M0ݧ�M��9>b�w�� Rߘc��L�[/O�R?d
�#����M��b>�vV�1��xRO�8R�P����ݘcl��}@�|˟lK�|������J�89ݮ�Sz�S30�����Q����>ċ�/�Z>�S^��2�|wy}��4�i�q�ϰvٵ�v���500^<��Ω-D�ú��l�ߧ���M�Z��z{����h�ɔ�粰\7��2�2�fS�?|��.��I�v�|�y9q�#���=�W���A���V��h+�G��~��D�E���#�*�w����Uq����ꇸ��⟕�)أ���;�����s�"���-���E f*Ⱥ�$o"<��ʪX��D�[2�X�Eg��� U��K�b�vn��]�~*+�d���%� ���~���^����>�<Y�ú:`��)�[�{]���b��c�*�9�ι�L��= \>/��|�8v���9�X7�#�ӍY8.�ߍUp\>;�q���s���ҹm����}���"�|~=v���g������(�+����- �'��G:73s\>�����㶏��DG�>��E� z��"�øЗ~�����%ZJz�%Q� ��[�\��R>���cF>�j���ۅ��.���W��>�|�\�z���3�o#�Q�O>�o��]�v���3�/��}��`����{z���|7I�����=+��� ���>�ܾ7��ޜa}��O>�/��T߅�'~�%�O>�-�� +����oe����������[1�����'����@�R}�gX��<������K�m�a}�<�������{:O}�s�\�+����p0��g�,��m!�/�7ۂ��e��0���?[aYV��fIMݒ�� ����KE7�$����Kk��Y�ewN%�|r%C�O,��"�^u�'쳬�|a���.���W�e���[���VKS�b��^�t���e������zBJuϮ�g�߫T����k_O8�)�}�H �C�ȮmL(M�-K�`�(s ��B�@<ա~@�I�jv������١���A�|;ݑ>hX�z}!l�;� l�c�<ߦH�W��iV���ߢ�~N<��j/X���#}���٤�.���TP�{���H���h�������<�x��,?���������׭��1��g���,I�N�<��R�83#�E����Y�����zJ'7K'/���
�����#h�)#o�!��#FS��D���}^�a��X�g�>��/�HP�@Œr�=J�/��>��Q�����H^�=}؈�N�4�|X���G6��?"�vH���NЃ��=��������{^�~q�%y��H�w�������8?'���V������/���#���:��~A����sy� M���%yqo?��S����$/��CVߐ���{N�����j%�%���(��2L��O2��?F�u%?Y�����J�����sQ�//���%)`���]�2�:��i��(罠p�[�r�s ��� PK
It�?3S%gn�libs/windows/jSSC-0.9_x86.dll�}xE0>�l�f�A��3r������dY����('Bf~g2V�NP�����O<�D�&��3 j�gY��ٷ��g?Bʏ?~��y����tWUWWWWU�t���bA0�/� ��.��_�ޛ��>�z�a�'W�d�ܔ�9��3���iSg͚-�<8=e�cVʌY)�����쇦�ܹc*��o�1�aŘ��:�Z��5� 1݉���#> \�W�9,Et��6p��o��&v1P�!�����.�afx� ��p�Jz B~��1� $��<� $�/6P�>_����� ��`� |h�4�M��u�: ���e i��sXƬ+d� $�oK�|d |p�\�_2��M�Sx�7p:�G<�g<�>o��,�xI�~�}ֱ��xUd`�8�F>i&їB��|Z[��>s�4�� ��`���s��Y����+��cI��T9,�d����k�bL��� Tm���
�Ϳ�`��1��h��������󏓏%��1�{�4H�K����uWc�>�D�����‒����*�0�TI]h7@��#qR�v�!�� ��Z`V��ä��QK,�i�dU�J5)�S�ʠTm�P��ٽ��K'Ft= [�vO0Tmu*�%g�c�̂Gꃨ��z����Ă҃�ĺ�X��,EP�Dą�@y|�j@���2��H�o �v�F�ϡj_����3^ė��1�x�WIB )A���q�w6V�*)YSk)Җ@��@�5�� �P{��XL���H��j��t|�����`N�Zi�Z`R�JۡɓN��}/���̘]���ɩA��\�T��~ZK���֬z��R��k"\��j�e�f�n�W�&>վ���Z���v��bx����W3T�m���:{���t��*l�bA{K5�I]��q�O\��� ��``o�N�Be��R��e����#�ԌZ��P������w'���d�Z�3�U
/U[�b5���R�e�-�Ԛ��RJ�ݜ%��Ye����Rk���A�c�8�|��R����oj����Jk��-BL��{�
k�n:������⥶Z- tx��V�o*���&�p���B�c �
��}3�F�YPVE���f �_z��;$4��,x�*/�U���v2"��wBb��N"�B/�o�NgI�A����^�
�_��z�(����6�Ņ˅��eQ; ��TlLd�}�ěa�V��x.ݵ�t�%��U$e�E�����[<�ZH6�L �:��T0��[a��@d&��HHh�u8�{[�&yIB��R �Z����0�LS�YH��&��?�����c�#Ҡév v� �ɂL�}�J3^�ǤJۮ��X�*m��
K�����V󿞠h�����!����q�mrK+�
v-�Z�oK�}Wɵ��ҿ�S���+�5�ݤ�p�=��87m�/�uk��k� ��xl�P=3�f`������5� D��bX��q0�Qs0���!x7A�����{"��ʃ_G�� l
���u�}ktֿf�I"
� q��}��ù�T[S�ay]ɣ,��D�H�*@73��
��7!�?8L�����VKT�GY�]:��[�R���&͑j��$Gg��҇�����ky=��x�}?��ц��Ǔ zǰZ���y�jTl�U+Tx�0J��z<�{;z�o��� ^�t'��Ӡ/K��gJG'�y��*� z�G�l���������]ڧ�* @�w�p��1R��ýQ2:G'���I�;�˙�UH�韜��5���jvٸ��j�6-3E\�c]��d�b�1 �b�j��j����y"��I���I�J/���> �O-Ht�[0+��?iXp5���𐏩{�f0�u¸�tlz�=k����`;����Q���r{����ݰ����p�kLE�\~�[�zw�?y�~����Ys�v�?�����X��Y���$�%ѵ�]���ei]V���g#J�&D�ް�$��������+_(�y^�d�R��*%�Ԓ�J�R�d�R�\-yI)YRa{ɰ�"]��,.Dٝ���X��y�"�円�7�D����0E�YRZ����4�_"��1��cx2��.�F����,yI���
�R�'kn']��;����d9俟�]쵤g�yI�F?�^��23�ư�ն�� �N��AűJ��/�܅^��\ ���Z��h]�cP�p\(�5�WrX���<y{�1�#(�>�"�^�5R7�p0�0P���(1�d���}@�:�õr�Et�q�}���DW>.�b@*SD7��yK��g�RAz (�����Ҷ6�x�R�Y&�˙�.e������f#
�&��lT[�ȳ� r��G��qd�\��`:��������j���<�5%���y,�-hiC~״�f�B����?��z#�,�����Z�e�<͡� ���*4�2S��"���Q>�m(���۰����gqvB��Ϸ/�F��
�`����{�+4���[Ņ�{�7�9���^�� �H��9���g<�_ׂ��E��!�������U�A�-��m��q�6e�^�:E\V�x���7v�X/�vt�����%Ի\o
}�N�|ݦ�_�8BZ�!/�˔e(�ڡ�\W��, Ws`����L�EE-ٯ��P_�Q���{�f]���D�9��
uuT~ ��Я�\.�::�EQd�kC�Q�5�X����F�ͣ�VF�U+u��52�/o�mS�P�؀@��K��H��`lQrj��䖟�8}�����~M ,(3�9���c�J!C � �jbCt�&x)/��������oo�k�Ҩ � th��g���8$&�!Q�3�]C��0�0���0�Aq�E��o�S�w��S�I2�S]@@ Ȗ(��YV��ǧ&���'o?�6��]s�t����+�����WteJz��z��1���Z<�C|�?�}��!Y�v��.�إ>480O1J�D;�CW�F� `���`�6L�[�n����:��@�=�:]?ϣ��zn��ö�Q�קC�-K�ןP�����`—ry׾�G����G���M(��F��+C��v����̠�;�����0RH�ȍ��H�ҵ�^�x�Ø�����G0�~��N),Ű\�����ϳ�l�}��t��B;M��%��L���r����������eA�jW�gt�z�y{�Er�e8����=�^R�t�w��J���M��y��Z�O{]��>�����U�)�[x)_3٫��)'��^��{q+� ������F�d_�\{F�EQhU�.�L��c���)j�
,6p��p�P���lJO���(���A�5ǁ F Y}�lÔݐ�l/�V:!�c5�l��OoH���� F��Ai�<s��tB�,��m/�%�G�c���ԥ�}��A���@Cn�����\�+��t��b$낮rS�d���� ��W���U��`̩���f�nu��Sp w��vRޑ:���=�u�k��p� �Ξ�':�2��P�T���,v�Y�s7�N�ӟ�&T`}����� ݅�۫�C�^�ڪ[��Ɠ`���L6�*��f�W�W��F�.��^]k�wdS�}�w�PHn��D�l&y������D 9�5ž�Ҷ���rX�A���gQ]��KL�/31ci�/>�)q�DD�A�ڒd-Mqc#��U%�q��{7/ܳ��w7T��A�An�a�ׁ%"s<3IU[2�ڥd� &���X-J�T�>�d�NT��Lx%���U��Z�iw�~�=;�!�U��K� �w��%W���ڇ��O�}I�{t�����2H���
��p��|$r��i��J�]�ʑU�Q����f�IY��up� ��d��q
�ȝ�!T�G��=�Z�k7cM��~mk3*�Z��k���%�O���xλ�H �ǧd4M ��0Y�v�Y&��`5�����e�)KXkPYI��P�`�� ��MmZ�2 TY�K<�'{g ��@��' ��IDw#���H��&��1+�I��,�1�Qǽ�= ��-��Q_��W�� ݍ ���C���� ]���͐K�Ö��YNdv4��]��{��/]�O�$�y^`�� q��������7��^�B{�G���Zr���|�Q�6��7����5�(g��$&*JN�JSrRx�����rRt��W3ۚI��h�w�M�n���f�D(��(��Gg�
�ې�ԞX�.�2�޲�s��ݷu��������H�W���F���eF�D�휋�2jw����p��k �8�_܂0G0bni����%�;�����=$�$��yR�[��>� q�ts�j��5Q��|��� �P�e .��V!���iѶ��v��2*��%p�/����:�$|P�Y ��]P[�R@���Xx�����L��R��J��H����V!���,b�S�Ʉ�l%��(y���I�}��kV�^R�S���j�7�axԾF���_ c\�4I섞�9U{�i/t��'?�!+� ����?�Z�/�����
���SXեj�ZpV�c5��yK����Ab�j��F��7ڻy ��eQO+[B��j_N-K�ӫ6-E�X�f��C�N�i��t��f ]���2l
ٗ�ؖ�I�彄�s� ��‰�0��ҙ[��{ 2��Ƕ�ܽ�8
Vgr�̈́L t�X>�+�o^m�I�jȂ��Z���^���`���^թ^kF��9�Yٌj ��������ŶK.�J"{EzD%�N�}��K�v �R�*w�‹�����҂鴥���m>�7E?�6��7,� ��5|����'�j�J'��i�j��v�o
Ҝn8� �`�C�%���&ͯ�i� .X�Rg4��6x�I�(P�aQ
̊ͤ�$���Zo��TK��4�ӄ2��:�Ԃd�`�jKA� �\�L��U�j�ڮ �^5�F�N� G�qFw��{ �K� vԁn� s�9l�=Cu�UaR3��T��N)HQ �+���3��-JQ:"�J���J+ ؁��>��E���" z��1\��� ��r���Ro/��@G��bY��^%�V���9���J;6�
���~�����tZ��l,�@[|)�k&\��Vog���x��k��I�-�< ]r���:�OmL �]zL����%2M}զ)�(���rmlKb��Dz:�3Q����LݸQ�ZK�(��
9Zi��&"Tą7:��U�"I-IZ�" ��8k�&�&*��#�;QɌ�h2��%,�����W��ߡ���Z�݁O͌���r0���䭃3�u(V3�]�J �p�7�Y�� ��]�iCo��]"�p��6�|�}�@������n� ]�_0����b �z�q��\}����uS�>._�B���ݤ�}NW��#�@�9�&F��9(�ފUL��Ur�gYܙ����+1C�@;� w�F����0�W���c�+V3T A ��)�j7!LZ��H$��Eѽ��;:�݇&�����B>���Rg��۩G��z�;�GM�#i�{s$M��+x.MלKSFg�����+��C �̡��j9�����\���������-,'���0/Nn2wk�&Œ�t?�Ay���kP�K �!�)s,�E��9>@*��7p@{�,oC�uͅƺŽG��&��l-��- ��7�l�V�v a^C�8� �"��K�u��g�>��8��Y��@l֮ ���a$!���zl���zR�Y�������z)L��@w�R�N�Ⱦ4l�w�sSз-Ps����a{HO�*@���&vtMߣ����qF�iђ�u �G=����u��m���5,h�����?�a��kq�V�����Xn����y#�'B6K#esJF�l*% ����D�|� � T!��2-"���� �wE
��C��qH�;��o�J|�$,�h�D�e����4o;����(Y?u����Rd7���ߞ
�Qt-�T�[BIÑ4���n�\���XPr��kiU_#ņ�u
�� p�ՙ:S�o��B$��.)C��Lu��--�7�QQ��,�F��!�!�[�W����07��ܗ��"��.�ٓ��Pټ��D��=<S0ؽ'4�y�S���P��`�K��)�X&���Y�)BV�ՂC�5QW�V��5IW���\i����Zif��9�Қ�A��۳p4�-�P��ívM�MèS��j[;��=]?�D�3)�a����KSGZ��T�nRQMBq
WQ��x7'C�����y-7��;5)1����;� ��H!��)�)O0���B�n��B6H��6> ��>\�䣼x�3T~��c<�廓��#倴e��Z.�d��u�j���j�X�>bJ��)�Мew'�ZX�P�i{a�S�ӫ ��rS���nm��q�bJ��&T�����;;Bo��q�'�҃4�� ���G�!u���^Q�p"M�q�vp�9Q�NL^U{����]%ō�b�N9Q��(���o
�zaCd�̾-�I<�aa� �0'o�s��8�����n��G��v�jVI�Z������iz��=��B�P��3-�# ��� ���g��㐒�� �FJ�a����mH� �F��/dM00� �8{�&�q����T��~d�*Q�3����y4J�#�W\����53���>/�q>�\&�^.a���S����z�9s>q�u�x��[�p3ʷ�*��$��a�<�R^k�{��|�X��.۹<�u2_��}������yǑR��6�dk�+ODq��d�&��Y��_� YNJ��c�H�I�<�e��>
�ֲ��b�,������74�m�H��Ov��u�`��x����(�H-goŒy#% Ğer���ϛ�d�gۮ�� I��s[f��2�"Z&��|-3��5�����@��I�VpɆg��A%�H#6���'�r�z�'�S�s�r"�
�7��<bC��;�0�ۃ�1V"�A�.����g�0!��q�tq[W�F���ϱpL
��P���ۤa`d���M�I�S��C���Ç�)0������8��sԤ�} �9���y��Z�UMU��#l��9�=�ã���̀*j�p[���nj]fit�|,�̂�}<?�LY�\��>,r��9`.޶�dˍS�q�`���P c�b[�̸Nt�̂3A���҃�R���mMĚ��*\�b� þ,�V�R�4!jic)��>�1��+s���M{_���D�݈e�,'��N��)�5``��Y�p�@���5ܕ��Ap�� (.d����2��&�"[b,�� �HL}�g��e5���l�`0Z��s3�\�@�Gk|��j�@�I����z��rG���:w��4706��:"3n�$�F���%(�?� � ���Q~)Nd-_pfZ�q�%&�9{^�`�2� R�� #}�R��9A�իE�C��J4Orq�؉��JQ"ء_)ݔ�F�I��J;x�́=�̏� �Z��`l6�?�!�2Ψ�6�i�u(���S5�\&�m�)2�V�Ϝ#ef�#���.h5�AC�=����dٚ��զW)5ZG���Uޑޠ���ceQe.�2 ���Ү���!:ԉf��qR��=J��,.�mPr�e� �*ǭ�U Y&���(�Պ�&It�n6M��R4��誠@B��f�qK���:\��=F�MS��� ��2��`V_5+YM|)���j��qq��Þ�/���[�<��R=�kq1��|sYGW�����#P)U��/�r[��{������%�;
���"/����^h�$�q�|��l6�/l��%_�ӠLz��\6eAm�'��窣���z57qhnR��G�2C3g+���bell�'�jI=������fu�Y��b��687I|v- ���6��R{��E#;�J�1*��������z�)P��/����,� ^��-|\�g���*\!�.�Jy���p���N2��9�xC��`��t�d_]�H�Qʁ2��,�$���`ς�Q� ��륟��(ݱ��R�Fz ^9VV�,/¯b)��BT��N�{��3,Ơ>i�X���6C7�[�n�%��(0�;N�<����"��X`���t|���Z�J����*5�P  Y������a�c��E ���l���N^#��f0X���م�|6E�8��AR*T��Y�M�AOvuf¼�j�tȟщR4,�:G�Q֑ �$#�T �g�|��5l%���}�Z�Vہ�Iد-�=��.�=Y
���G�T����g���(�V�3c��s|I�� ��c5k��/7�K)�lGy�ɜ"uΜ��Jz���s�q��I,���Ǚ�C�8��
|�����x� ��ퟨL��}��Ak_ut���I%�z�#�kcb� ţ�çO+\Ĭ�;p��G�R��u��)���+ ���˵�̆���'ˬ-lA�]����6��=x��v�9Fm�/#��SF@휰����:K�F������m'�?�g�pt��1��������ZgS����CM&�5�>(�������ҍs��N���4y[�~۔qi���H��UX���Z��*�@�㾠�S3GK)��jg�∉3h��{`�I����4s����}oq5-U��C'ަZS�ZSK6����ą���Vxל�h�|�B/xI�2t\j�s��J9e/����lhc�7]���d#ƿ�[q-O6N�ep� �X���!k�3��ŷq�����Ö"�lK$��1��L?����>�ʗ�������ގ�w˗��%����f���|��jA�O(A�;�Zv&��q8r@�M���}�螌Q����)�yu�� ���W1���3Q����K��v&.xj���B��W��
( ���T��J�h&G4J�[|�R<��5�h ����%�q�Vw#��H�X�a\����(��q�&�?� ����O�����]���!p�jg] �:�Tng�����H�C�}��*��*5��QdQ9~����Ef�B��ǥy𵢛ȷբbo��{��lY�����m���˜"���u�ZZ&��7����/0D�$�Ӳ�M �����v�?5�.$�F�����Q�A��H �yS���/����e�q>8oG��C�I�NJ�e����k����ߨ D��(�3kQ�����]�%W�O��1�
b<~�K:��w,�X�3� �Pх��V
�4���O��M��jj���$�����f(� ��"P�lhū1(�
�xE/���B�D*�B�>Y�˹�*�Yn2��~�;����>��Z e�x�$�)�ގ+ G�˺���kf���l����*|�ˎ�#Kq�U���e�1L�^���Be��?E��@؆4����0�MK�@cP����=�si�P��迦9\}��F�� �wa��@�^���sʜ"��b��o¹�Vc�� e�q��4ń�z�W�%&?d�o��ʇ����QB��n�9�4� ��@����_p�6���.n]���D�G_��ӌI��:���P�gτz܏"b� ���oN!?�jQ%\v:�/��ޚ����/���#�W9�5�?�a6Eٮ��@O�哲3m�m���oX��c���8K��/s푒Av���"��F2��pxNA������|�d@.��q%?aIC`��߸4>�o��}���H����u�]�hydnK�1p-#�<T}��+�O1���/Ra���2�JnJ�\�r� H��v�����0��v6�n\I[f;��|���ۑ�@�.p{X�`��W�,����ކݻ� �J�^���FϿ�N�;�g�_ֱ4��#��ec ��ғC쇟�\���\���f��G2��/8�� �6r6O�/��Wr�X� ����Ҩ]�@�„ġ�J>�?$~���u��qq��|4 dY�5�yy��VED�<�鏜-2��G"��@�4j]�A�0�[j?����g:,�q&C絙Ȟ�jW�xr_w6�*N��~�l2�����1ҰL�����3�m���7����Qr�Z�bsL���bM |v����y�� /�<�?I����`�2��2g����Й��YTzO$�[��
�=�� QZ��Q?z�
�t (3��2> ـ����g(IV=������:����Ε[zH�2�Rq�0���"9��d��xM�'����0�tM����a���-9ߊ�[<�� �ʝ&�Z�[�l���V(-�"��3o�&V��m,�ma�Ʊ�KX:���B �zW�n����PB`5=�q�0��L�� ��y�D%YI�vŴp �������/��,��#�1�<ۺ1�꫌��S5ܤ��[�ۣ-�o��u~�+#���EP�`<�7�"s�A%`5��<��g����hBk�G]�6g�Di��y����8AZjE��p��s ��4o��l���G$�*�\�6�:f6%��GZ�M��+��'�ø�N+�;aߓ�1�]��0�h�U�G�.\�4F�P� :�>v �u����v �W�1�J;*ЀnfC��-�$k���f�>?S3�y�xo�X�x���G�������M��<�^��WPD\���-���tI�EϢ�r����^�g����f+�4�u6]���.�����5��'�>������xѵ����T(�����(F ڛM�GR�q7]�O�ʾ4��y���I�5�<��A��1�
�+�5�1y�+���D�sp�1H6��W�]��|5�Z�
r��Ro��rtvi���,��]�Ct���7F�L�$t'3Y�O3�g��$�J�$-ׄ��1��d"Տ=΋�~��c��vG S�L�a���o��F�ڢ�@�^? E}�8)� ��ᭉ��s�/�<>hp� HV��#�q$ �����P:{_��8�9?�=.�Cdw0���$׏1��(�[�E� ���� ~À��^��Ԓ:��OLW����#�E��G��#k ѥ@��.()L�/�/���XHO��br6�`�:;�@ߠ
)��Z�6ȩ��ҝ�=R|��d��S����`�ݪԫ��(�z#�壗��1�Oީ�6�T,c�y���룋�j�'��,>!7�8��_- ּ.^ g���z������DetZ���T�l!�lp� �7t�:�$g�X�%�gM�-Ǐ����ZTP�;����V�]�F���-­� �D�.e�)�|�����-**:�b�_��3�I^�[���d}��`�v�;��C$9]9FF��I��(
h�'�vV���EC��o�qD���1uЉ��p�`I�T�� ��}� ᳳ�TXX���ȴ����QV�)���QE���
�Ly��z���.r}s�'��+t�0ڀ}Q�ǁ@� �"s&��{X�gqa��#���#��O�q:s�"�tfY�,9,�/*�e,�4��7��jT3˒Ų�9CY�7FfIdY�dY��,��{D�_�g6��W�e~[_?n�`�5�b|�\�3�}�@ P� � /�C.-I�E�e=1�>�!�ͩ�.�G�e�[�w�L��u�=���� � �����zP���N.�D7R#�� ��?�Q����D7V��uT�D(Z6 Cn&��!�e$3Ut߅�,���G�����Ja0y{``:�� D~�.��xT�V��C��,f^� �b�!0w��A,[�1p[��p���t"͐��z9OO�:�������
K���#�N�T�����*�Z{�D���*���2dN����9z�H�Yr����� �3����r�5�X
adΒo��f��B��U�0��y��� �6�q���<�U-5���{�웲��������"u���Up�\�WҫۢmW�l��̈́a>^�B�/�3 ����K�g;����%-��z��*��T�/��Dyi �r��m�=���Uh�E�l�S���j �c�����Z>� �f�K����7
|� ���g��p#�uH|�>
q�q����_�
�R$�o F��c�=M%�Ã��a(v�I�ǀnQo�z�9�a4�QK3����]�=�кM7��D���oҽ�5� ���;�֭թwq�u}��m��f���ӎ)f��] ��|-��H[� "p��>�N��3�Cܠy���y??8ձ��b���g9��P���gu�|+|_��]]��,�V��v��Sspi���Y̶kP��=�w���1ZTB׭qQ ��1��}O���ˆ���ߔ�0~�]��4���wD�L_`bE�cl�㭜 ����gc���2
�hu8�J�����}�����n�8�{�k��A��:��B]�8��+���<C�ߍ�D�|˝��\�|�
�6 H�P�,�T�H�1�����:�{��W'����%�8�b� �RʳJ�w2*�\�<~~8bpI]���o�oL�Tȱ���'�u2�b�������ʩ��tzU�}��(���{��uڮؗ�.NTKqR�]��ڗ�1rcvq�JY���.܁��O�^?��X��cTؼ\��_����T�Y��+gU���y�4���Q�� [n�����X^փ���vk ���6vj���"�j+��+</އ��dx���Ɲ�"��?�� yR �7i���j�I�H���4(��k ?q�e,I�o���{�RAZ�KZ�+����b��
�k���bX�qR�n��՝Đ��H �[Qe��2Qe
���F9�?�S*�(�7D�a��̸]t� ?�B �}uz`�(���o񽹨�@ɔo����Zк׋�2=߈~��h��������B�n4!!���=� ̸ה�%�]�RZ��4��:Vi�3�l��5�{)�9ۗ���χ:�%�[S��������������'��}��ļR�|AyMo�D�2���M�A�[�{d���0w~�`�~[����o�'���81��a��;��38��z�6�Rږ�j���/��sA�Ft�)��(�_om7�����a��� ��n%�{�E�E�������#�Fn1�.Õ�� p.ş�� 蟇��P������cTM�}��5���5*j����\u$c�ؼ�
�6�=8GAc�Z��AD��.�Y�z常/�����m������PY⭬�_�G���
I~��v�x;�x���%��O^H��Dx�.Y�2���� or�K\��»���x�k���!���K��� ��Gxw���u›Cx�u��xs/��Nxk�\b��\�#���p��ь �}����|���ą�>Gx�.5^�� ��O^*>7�E�g]�11��  �8��d��ci��W\�ߨ��qc�7t�f&�E*]?tke�
�B����a`ȔN���)��]NB2h�J�'FԱh�L׀hF.�t>��T��T����"_��Rk��.�-��J�ψ�Vږ P6�u
�"ȯ��l ��n��\���#�X�Wa����,���|s�쳨7�?^.��t�ͪ�K�� G{a�&Ft�ANw)TQr���0=��F.Y+.��HK�TN����k�*��&g�nJ ˲����p:=-�wJ�F��O�M�s�0�r-��ݫ��^��FӍ{�暃�%��d���5�[�ق�T΀: �����Zw��Tmj��#L �`�(_҇������SH��R�{����~��70��E� lQY�y#ڜ�R( X�npt��0ŋ���������)�_�J��$�.3R�2C���P��E�U��O�*{d��U]���GI��� ��/�|%#�W̏I��L���g��-[[.��;�k$}�V2i� �O�=P����1^��n��.����}gX�v'tᮋm{�(k~��<��Ѐ�+۵W������[��ګoh�W7������/��w���K��� �%�}���� �m"�'�.q}�/��� �� 2^lR��O�%+��3����c{���.����wP�4����eT<���3�����+I�̽��m �PJ�{l�R�P�emkB�{T^������ғv$g��;�a�ӱTq� ����}5����O�!������I��,|�X�6`b��ܪJ
ha3SM�D<9���S��[`�,- (�]�oM"99s��� ���=R �G� *���=�D .t{�<*�ud�r|x)�H�\�rDlJtݎ����"� ������CѠ�R����EZ�2z� �G�\h|��p�]�~��"�G&�(�����s D�~� �E���G� I�j\h;؏#O󷖕]]1�B��9������O�Y���mFN�1𤧀��j!ۏ�O"F#[��HE�=�ahd�'Yw_������T
��.^������}�Z.��P@�M�sy
4�=� J��n�9J��`\������HOe�m�&����gȘ��{܇���h�[ ���4$R�t�Z��.�M:;�t1ƀt�]j����J��Ǐ�2�Mw9��I5������ٷ�<����������e�=��ȂȊ��1S�G�m�Ƥ'ی�]�n\�x\H��g��W�Ė3�x��!;�$R�J�+���� �v[y���Θ���cҹz�k?&�+��
�cS;<��f�[�"�߷\����e��6��r1q�KL7���L��S�M���Sۮy6P@k�i;��P]�z�ώ���W���u��}��C���c�� ���ҵ��
�����Ms�SB��X� wM��?�l���%�?H5DL|v0LI���F]����?ưA�����Ҿ�(��J>�i\�m�^v�M}y��6�3�a���k~���!�F�>�X����A�9��&é�-�<��܄{��gN�2�Gu��Q2 ԰��f$#��~�rc�ӕe��U�; J�R��х� �P`]�F��_8ר�eT�� �P �� cPo8G������2����B2֛����/��_XG������3�$G/oc��������X�6�?��R��K�Ƌֺ���P3_�]�O\��$Gl���֑�y�c� �X�:�"��g}#�ċ��k���;���|A툖O�xg�o��ƛE�̒c,�/=\f�N�[�$Hܔ�&d ߂���Vj�ߦZ�o�U����xd�m֙���q@��:��p�0G|��t��oZx���#d�v�1��xLL��������࿍��8���=�5гЋ�ͽ��zݔ c~R����o�a �oh��Fgp�o�^��]�>� :��E�m��=���݈���������@wqK��O���%P��#FϠ��nh/��y&�vk�KϽ�ó��(�QBڄ��� �}�gx�����JΕm�b}L��+A ��v����m���F�\�P:٩]ϓ�����۪E�ы*���Ek��b��-B�v�%m�����^�'� ��2�z����������r�螾?z�˟�"׹���dS��o����㧋��#! ��=�|�z�ѥƒq�+�_�����k0���G-E����������0���j�5FV{fT�g�w�������� ro�2d5����o�8��D�ӿ�Ģ��Z"��ށݡ=q��u�g1��G���Ao̺����Ć+(���q�&s�����1ܾ����_��k~+Q�7��E������ǽM�93���<�%�)_~������߄�,& 8��o%������5a ���� �g�� �� ���g�X����͢��I g��=�~a����g�%a�<�N���v0P�ZZ�� Mfƫ�w�ɘ�Fx����`�i�γ{A:w|�+������{�Sr�[���-y�Kv8���Y�������#����vP��2��O����0v]�U:f�n7��nN К��e].d7�{mi^���ey�U{m�e�U1��Gϻ���(�Ɠv��n�ms�rm`%��C�-���Kuθx>c��:��¥�Ǎ�wbh� y���A��&�,���鸨B��a��"���ׇڍg}.&��Od�>�<?g�տ�[�b���ᵴ��� ۭ�?8�.��u�5�t�ڶ���]M���ǖ ���D5��v����!��]�B��Dk�%��!���Vn!:�vP�g��Dc�n (�_U�-K�6�F�"��wHQl� k��=Z"�i����o�O�}!�el���� ���`�'���S|c���l�-h���ʳx#7^+M��B�Un���+��{���t�{�t��A���Zqu�_-��J+ x���
�B�����}�VX�1���Q��3ʄYh��z��vl;�E�r�[hbiQh�X�Z�O� 5��o�&��"�id �:�ƁY
%W,bK��F�upE�����в�4��[��@o�P�v�W]� z� |�cI���u�Xs.:7����}C�j�EQ�dC`�X�=�N�9��!��q�ߠ����� F���-�*a�i5;�������2Za_:d�*�������m�f3:ӃD����޶�\�+��M��SF�����D�����0[R�f�RX�Qa�����}���-�N�9��c��V6����J�N}܄3Ϋ�� ��j���i!l<��'ڕ�3�t#n��ucJ���sB�&E����Ԯ�1,~��q+�=�` "��C���}s*g�] � ��n��l�6�C��ۅ���Hg�9�]Xx �cE�\q�����B���#ָ��Eh�.����6V�A�\,Gu��Y��?��Ѡ�:9��A�;H�|�}����=]�A�����Sn���L�h�b*��}[:��/=�w��0^������<ᅑP\T��t �ξ��!��YQ�J8gڱ��v����m`��b�EDӾ����]��Bc���L]�c�(z_����Sv[��V�͑���LN����/����7��*��L�׉�t��A~��ZCz���7ʭ.��.��t�8�7aN����_s��_���C��E�QԞM�jEg��p�5Q�4f�v�("�ė�J�F���p[�Z��"ß���&G��ls�o��G �z���������Xxq�2�q{1rt�"�f�߈O/�;���@�_ꢇAr��Z�G�Pu>a(�^2p�yrq�S*h����a`r�@cY����-��7�p��y����Z�̶�4;��l� �ȡ���<[ ϥ�%^�����7��� �5w[�ޑ�kS���y��[涋顁�]�s9٦�r�G0b_���0� �s� ?��8q{X��/�����'��j�(����$� �7 �Uz��}�]����<�N�mC�m3mES��ۮJ�W%��Ҷ�*m�٥�]h��1��ct���rm����6>�
�`�'�*L�)� ��^��Pl�8�z����u���~\`�;3@��,!MI"��kW�H#Wؖ
�J�*vYK�M������t�
_��!�>TK�
W~���)��� �[��X�%�<dv�I]���
�eք�a0x�ݸ ��ɎSD�?�R��v�J�\��s��>э[Z�2O�3��EK��8�v\'p����1<�@B��FArK��l��-3��^%>��3��G������}l�H�#�;����d&��mq~A�7H�T����#�ִ��MO�Z�4�Y��f!6DI8���M�
j�!~��2!�(L��,CMs�Ǭ^}�@'�m��'T���at���vŽp�'�^M��_��p���\����Q��x�A�()�@�Q?���yw�㿁��}�V�y���~���Y���H8@�X*Dy��0y6�j&:L��S�#�$��2���F�|rm ��ձ���ە����3?\ܧ�jA>�J�q]]��,x�>��+ՄR���t��`�"#�-Ng'�H+��F`�:���
�l���n�gNe���]q��yy4�d`�|�����.@�� �x�����1���P�wB�
̊/��˕c� �@6� ��3��ߡv�������VA��G������KX��I"�&�;��6�e��CĂ����?H,�Z��4�]�{� -���Y��h���.�W?_7I)hT���g�����)����'��(��[Szz&:q;9[\���ڞ\r�UJ�IP�F� ��򩣳ZpRu4��p�`�Ƕq$3���|��51��U�~��(�Ý S=�:<��]�Y��jۉ�z�
Y�������>+ K���:�{#�����`���d&E�X�oQ!��C*#B�3VT��@��%g����m�:m)�����q�\>|-7v���Uoë;�J�y�58�ιxW������bQ���8&�V�d�]��P�ݝ�l7/<�0溶8{V��I\?�d�7�,7[���4�\"�HXn6I���x*����~���"�C��SR �hU��^��v����r�5����s�!ӫ�+��R��3v��=�C�����Y=�:�����[\{�g�^���G�76��}J�ཆ�K��&>�u>� ��cT]�>64����B�b��t;@��񳕅j�K=�����ǓY��x��N0���eg�^y�#h��Ai��n�A��s�7�C��( �<��m�w�|7��L'�(�=V�����z��qP���ڹ���S��2���GU`��N�T,�ZN?ѳ������3�Q��Б�5���}G���3=�gDZ�t'=�Th$�b*%$4+�=�jvx��:�"��CnC�Q���I9s���v�i8|��G���������q�\U�Л z�S�g^�'�R�:��R�x��@go�/ ,�st��\��K��
�-��e��S`^��J9�|�g=�c ���ݤ�_9���5����㓩<�3#�옞����b����am �K�����8�
���QG\ݍ���zE�|� Յ��vf��Ie��R� <��E~��G� �Z�i�JE��7���Q܍�G��x �NK�Ƨ��zyg �`X������{����V��*(��s �O� �Ż�nn�hۺ
B��t`��tK����wn��̳�U�ڨ3�^�<��yx_�c�>i�zs�5H�|�A�������e��>dO,�J�h� �{5**V"���B�6���D ����:�z5���E6ϕ��,k�P����U�PA��H�9:j��NJ?.��U�͙�}2�A�����b�/�˦�j0@��Dn�k= �n��c�Y��b��>�C�=��8J��"*�;t*$R�7���90��#1���Е�,<�T���I� �R�L�+2����֯�Z �i��u܎;蹼Z�^7'�3t�mZ�������wH�bd�` ŏ��t ��:5>p�ǧ�j:�O鵺��k�NvQ�!9�6�SV�bۛ܀���y�ʘ�$`�V���dC�9�GaD�C�-�8v�8`\�*�#Q�:��KоW��.)��d(��@S��D�c��?ީ�Jzw
jm�+~<��;�[��n�=��4�k��}"��3su�\��Fo����u�ӫM����S�O�m�����z�xFo��#czɠ�Cr��˝XꁻP2�2G�wO��ZEg\Ϊd�j�>A�D?�p{�24��U�v�ުr]VS�
��Z�nJR�^���`�n8ÏK^<|Z��T� �g;=_s:J����9?���7z��x��g����W���|�Z�n�1[W���(��oeg�~I����w�’�_5ӷhD{`�W{�Yo�U��н��Ai9�}�Nk@ec�*�uü&}<�4@gR����~v)�ͳ@ve f�e�Bc���;�{鍂a7�R�Q�Ԭd�^�+�)D�]I�;(���;���iX�ɺ<�b�7��.{��P�H�W�*`ȅ�=�HkS5�n�޿�1R8;��x�;a���짭e�!5#�"�U`53v�)V ����O�C���R�]�L�oCl WbRG�^i�E�4�<�G�$]��Q� ?����F]R���5���s�q���k��z�;�<\�7(����}>:p�4��:�Z��T��T;iRk�\�
�����Ə�����{��ǏI��� �@�g��k����6F�G���`��)R^�c2���P=�f��*A�箄p=��z� ���U����x�&�Y��o�e�>׳�nbm�9�|C#ӵ2ԅ�!�z}Р�{���3���q a>�@�֠�aX�؉�gDvE��K ��d�� %9u��j��M:O6��<9�O���Ș��=܁����q+��%��y�9�� p
�T�^�YT�����H�S~�n�D��~���D��K��'��h�) ��x�$��VcW�^�?�꿌��u�@sP:`�Y�;�d��,����յ��ɇ�W ��d�K p�l�����v��Ȧ�]��'uN�A��k��l|��Ì��N�8b�&$���j�M�hN��~�� ��R�@�rHPj�]*�~c������}RX�Sˌq�F}�]f�~��Q�S��O�M�ıT���z�.���/�)�� ��0�fmI<3�)�JX|&��?O�K��>/y�OƓՌ�v�XT��C��[�j�㰵x��z��Ԇ"Ū�$�����,�D�-��GcP��Klv::t0��'d
��h�|��cQ0���E�S�E̫��w�t�jYs�� |�) 3��6��}����BAE}���ȭM�������3*��n��H���047���s�8-��sy}��8Sa�1GЬ˝�3��Y#�:�$ ���V�r>8.���k�b��ҏu΄����{�Vc�<�{��lD_�ط���䡣MR'������F��=�� �hK
�X��`�P����d �P���m�߻��6@��� :��q��rs� ��s�)����3m�^�a�e8�1�:M�� �֑����8�|�ّ�z�H�Ϝ����ݵ'���dwQl�=٢b��d�Г}'��y�ӼɩWȇ귬��VQ�;����e��*�j^݉U��Ɠ��ݔ�S�/O� �T���+������1T�V��!S��`=+ zWK_��c��CYLN��
�^�v��x�rp��A�[!dg�tԓ�@� PZl:��T5o������� A_P�ݎ��L��h�+u��+�o+H�$<Y9�晁8o$�š�n�>x��y�:�_���!~�ϯ��Zʯ��u �J�����W'����˯K��)~}�_k��k-�.�׽�_-<#~�_�<}^ǯ��k&����y�~]ʯ&�>I�����;��I~�̯i�}~M��5�}����z~M�����9�_S�u5�񫑧W�g���� �_�=���Y�#�W�>��k]��>aV�LU���g������r�gc)�� c����0+v(T[��=Jӊ�x|�6} �p���H�j��W7[�����D)0�;'U�o�A��мe���"�C�}�|bd�i]�G���|�������{��lKQ�G�l�3�h�7(t�_aĞ��l?�����h����eBy.�3Ҡ����/@��sr#�������LJ���f�x��i��>�3�)�����������9֙S�Ν>�L)��c�M�k�<�v�H�-/;�8�ؑ�c�w��M�0�x� 3��z�qҜ�̩����[?�τ��k�� ��~��А!��O�^$͘=K���>4%�$������N�9W�1k�$L���,ǔi��2eʴٳ�9�̙>k��)3gO{t��9sf�i?�cVD.!�p�LH�"ǜ�)�3�H��3S�.=2�i�n�C&����Jӧ<2u�C3�ϙ2�����/�>M��P�Pn!e�t c���3���9�BR��Ȝ��)Sg�̘5W�
d��.L���疙7htH�y�4 `��X�QHI���T�o�!))���f)���׿�/���F�_��2��GDžy���oD�H�Z���a��Ok\��\KQ��_j.K7�_������KQ�r4].��2b�]9�c�}�Κ=���f;�̚����ES�M�'{G[�~����V�ɮg��:��[ -L���d0����<�N���oX<�[�|4���u���Gk������C{��YN�M���{�n�< �?��~��E�[rW�5w�NFu�2s(��3QE
Bʽ���&~����kJ�AZ��-E�
د� |�n���OS����fAϗ�+����ܴ����k~@�]p��]�~���~�����C��J´��C�P$ C����̙�0�@(��>8szJ��9������:�'!j�h )���F>��~�ܯI `��i1Z4�dn��|\�#�6�Ԣ����х6��h���*��R�[�T(�-��M����"��f��3�"��Gw{��7�}�s�{�����;�xɢ���ƉŐnd���]bF86����V8�wD'9�:> j�9����5՜���MŽ�Ò�xK0�R�2S�D̕�N��9�Q�$L����'[�����n�MYQ;�&�;��P��F ��몃)|�66���n^{(��%qK?�B��p+�^����@$��XdJ$�4,a%��nLBVc���[LfΜIV��D�
�c�'�5�Hzo��cg}�憬��\ FB�br�de:�F��lO?���˒^z�;�ⱟj�x��<�eq��p����Zn��oM�e�Z=�!`�r�`�
��+
W�7A��\s|����u�t�X����׈2�U�{p)��R'e������5�o� Q� ��؏Ŝ�Q�-�k���S�K�B���
\f���S�E�) W^���#V+&8\���
,c*��յXl���v}>み8���;�^ l�qV�?���t3�2d5��K� w����6G��s���ow�����%�KbXg���i��#�+#�dy�"�x�G"q�Y�)�sz&�I�܊±Ԉ��d��de��:�8E�II�9�pirؖx8D���ԥ�F}X�#��b�#T�Q������`�)�M^�&FP���S��]>��Y����D#�ܬlA6e����u��a����\�d ��q�L� z�+e�$� \)��=ʕ�4_�^3<����?Ml�Oٶ�RV�+�;�2�SY=��]π�J����l�s)����Е��:�m.e?��zvn���M�������\)�'��F�Rvq��Rv]��/r�&q�+���#��r)��G��̥쒲��eb�L��٢F�l0� 7�9g8r
��v��\�-��ތ�1�D0�Jf�fV~�N��k:j��`�n�Y��*E�S
;��Y����'�w� �(t��)t�`���ଃ\��������̥{�:k���Q�6r�G�d�\��:�_0�}ו�^�\;�еH����7��b���m�潚�ñ��g�!��r��Ӧ�Br�A��A �+ �z�դ1J�cO$w��"2� � |b�JY8#�,2��"Y�IB-d��'�Ċ�[�u;1 ��"&>S�$�j�����>�`H$Et�Of$ZA��3Lf�h�D�d�  ��� 7�Yd�A�T�?L"�eLL�U�� �8ik#X�mĮ � bG�4b��9��6�& �ܞ&���L1H���hU"J��D4I�WX�&/I� جp&\clp�Ǹ��Up ~`>�a4� �9���i����/?>��p��g��WNp��h�+�r�S\��=�U~h��X���*o�.=��7���ܥ��\����\�o]�ʿ�-��zЍ.� t�U��+�O���ې;�� ��Ӯ�W��;A������q�� ��� ����\���A?�-�d@ws��?�q��n�>����ⷂ~���^��\������.W{v��������_�~�5^�@����î� �w������#�|��(�c��w@����o�������Hy�����쥬̧�>����G��e��tE�-���x�.æ�u +o��ՅR�g�'�N�*�ZfRo"K�Y$ G� KeOC9������� ����(��" �B���)�w$^� ��b�e1���ҡ8b���b;O��o��H2�����g��Ny��ɕmb�/��^�tҪ˒ɥ��uq��(���qF�9jEg�BQ8���<vɐ�nFZ�t2�d]YY��vh�{b����r�[�4�������-�:�h=�n�y ��8B�P]:�, ��@����u,V�c��a�O������G^
|��S� ���OԄ���o�to>F���|���P���߁T��ޝ��s��e�1��,���td>��`����@�f����Ox���������Ũ_�X;��۹��@�U/y�����F� A� ~=��`�@{*�wܬ9{W]�{����l��D�f�-���v0{�A�å#?��|D_����7�t_��l��#�f`�3�[.!����R�{/'�Nj�FP�yދ1O��G����y!о ��G�:�\��<2��o�s���L���~�U���2������s :;�u!����Sd ��\H>M<diu���L]�O�� �-����dc]��# �����X�J4a���xҪd� �Tr����nj����v�9ql+gSin�K%� &o;���"�es�T"�.�c�YT�Ǭd5��t�l�;�� ٫�3V��V��N'���P"�
e�%�V,4��<vI+UVSu6�>��$?�Je0��M�RU5�g,� q���3M�S�3�gu��GNaMy�=�t�*��Ȋ�#�de y�s�z �h���zȻ�y=Hw��{���<R:PD���5�z�x� �'�sCyd���[�` ��4�x8�<���2`!�X
��z`���l��/�>�8 �b�<@��Ёy@%p3b@kS���� c�.��Z27��.
F�V)����ዮ���m-�.P
����RĩdN�
&�ģQ�Y���\� U��՗g��A�"sP0ee ����!(%�f���) �"�g�j+��q�lF�=�� 7#�V�� s�=~PL.Λ�l �kҼt,+��7'e��y��Un`���my�X)���4��%Ƴ���~��O�f�?�;'e /f�̑3U�̼��!�3iE0�ʎ��|�Г�dGw��z�3��m[�*+���H)�V&⍥Nh�4~  F�|����x&vεBeV#�6���7����*�`ˇ�~TE<ʎ ڶfT%�iX?��GU�Wl�y4&=�LN49��rlT�3B�ur<�gF����9է�T{AuIJl����H��9��c4�8� �0@�Kb\u�{� qb�R�!�Z��A1W7��g,[���~^<Q� 6b]߰�U{��F��3���c���Y��y���"���輺p��� �uȢ����5���GW�7fc���H�})��d�S�$�I����&�1�<�){����l�'��6�h��ˌ���RM���d*�H���d�(��?�P��@~KS� !l�J��VΧ�̲�
f�� �[õs�έ@�ɓ��!�&[)G���k���/��s���7b��_�캴}�=ؼ`�]`�����vy�#����\.�%����7���R~�"� �M~��˦ܢ/!�(�:w/��A�(O.�u�_׻�4���F��'c��/c��`.5�^��4I`L�(0-0'��@2�n:=����,x�r�N�/ӽ��t���(&Ļ����&���xi�t��KQ��,U�+k� ���m�K���x�����o��q_�o���ׯ�����O�oPջ���-�m�6S[�=�=����D{U�F��>U��k�z�I}��#������,C1�MFظ�x����s�7���s�9Ӽ�\m>an1�5w�o���%\x$�x2�#��[�w�d�����4������0��;�ϸ_s���x-�W�����Q�YX!�+���~&~/�+�K�H��6�'z�x��R�8IZ%?(W)���A���`<x�ݳ���H.�.�r��=�W�/���?�_�'�W��|3TC���[�� )C�=!�'I#|��;%���o�z�����zX�g4�� �\d>i�bN � l� ��.�s2w?�w%� ��b!*����'��}Q���}��o���������}�2���� ��~���� !�ܳ�%���>K����Be�r��-�·O}-)0�7&_1��(�63Ĥ�������E����y�?/��W�'���&`��������T���7h˴��'�M&���+�]�M�%~�������������7�G�D��S��j��L�z��Qݦ�P����'�<�J}�.��z�~��D_�?�����J����x��5�o����r��\n~�|��c^�<0#P�6�X�6Vξ���L�^��|��[�-��8wF������|�P$L��uBXX&�-ta��#�K�|z}�>Fw�#�;��O�s��%A�--����^��H�˂<[��CrB�W��E��|B�W.T.S~� +��=�;��}�?�/���7���������xu����R�R�Wgh%Z��Aۡ��^ӎiW�%z���~PSO?����t#��w �0G� oDŽ��|:�^D'���T*P�Φ h��6Х4AWлї��[� �ka�E��W�k� z��G����E��rq�(��8[\ V�7� �Rx����}����'�-��.�5q@,�&K �f�k�&i��' HCҰT"�$3�?�e������Z�A=⚹gs)��k�ڹU�D(
�1�G�9�(x��B�0]�Q� �P"� �B�P)���b�^ �BD����*� ��*a��!�� ���.a��I�6 [�mB��]�v
����~�B�pX��A�0$ ��B:�z�8ZD'R/�L��t�Q��NKh-�����Z����m�j�m�?i���j�A��u����]t#�D��f����n��t'� ϼ��i=L����q:D�) �Bq�ȉ��u�D,��
�R�k��b��ňh�)�Ul��U���Zq��)��č����fq��M�����Nq��W�/�}�a�36(��a�HR�4F�H��&J^�d�4]�$Q�a�(�ʤr�B��j�Zi�T/�0�ɖRR��&��VK�Zi��)�����X��fi��MꑶK��Ni��W�/�bm��>��5B��P#{�qr�<Qe���%r�\.Wȕr�\+/��aW�rD���*����*y��!�������]�F��ny��U�&����^y��[�+���>��/ȃ�q��a�(J�2F�(�"e��U&+��t�SDŇ=�D)Sʕ
�R�Qj��J�R���b+)�UiSڕU�j�CY��S:��J��Q٤t+����E{��J��S٭�U�cG=��)��~e@T�+C�~����>�a��?�?���'�����X�NT��d���SEէ�j�Z���j�Z�֪��uC��VSj�ڦ�����j��V]�v���.��Mj��Y�
�ڣnW{՝�nu��_=�T���j�:���O��qʴr�B��j�Zm�V���f-��ZJk�ڴvm��Z���j�Nm�֥m�6i��fm��M�Ѷk��Nm�֯ h��qmHֈ^��ct�>N/�'�^}�^���F���h6l��Xe�5:��8�l3����F��o7����d�3}f�Ya֚��&s��c����s(s���b@�*���h �
t:qf�l �AD���p.��y�oé�����M�V�����������<�nf�̪�E3kf�̬�Y0�^f��j��2k���D�89c��Z��2+eʬ�Y&�Jf���%2+dȬ�Y�:fq�ژ�1+cƬ�Y�*fQ̚�%1+bĬ�Y�W�,s�f7�f��0[9(�:V���W������|}^�d_�/�&?j=���G���z˭��:P���Z�jc4�6Y+֦k��<b�e����#�y����qc����_��PK
It�?���{n libs/windows/jSSC-0.9_x86_64.dll�}y|E��L�� {8��D �0�� �!3�# "�'�����=��Q�]w�]]]����"�8I !�An�p�ÀrhH�ェ�#!��|>0��U�^�z����n/3��L�4��&�b�s���W
�����G�_^�����[&�?-k�ԇ�zσY%�<���R�&dM�?�u�CY�Fe=��ddt��u{L�{禛n�Ѩ��i��SR�:x��d�`2���m�u�� �S��g��[g�Ļ*��.�)�˟�{珥fӷX��l���6��S΂8-�.x�lZ� �HfJ�;�;�P�)�8�7�T<~���H���w��P&���oOr>�i|x�T��PgH(�t��a���0m>OI�����X�VѨ���tK��r��g�@K�9�;��|��7߂�c�W�ԗ��-�9��Ʉ������M:��� �.1�� s��x
�a�6���QKL@$Q>����<(��R��� ���b�t�-��)���4�râ�2�ʉ�7@���\���u�O�%*k��`��ji���kgO���a����X�!Q���t� K����c�ٴ�8� ���%@�7���9�E�ӯ����QnH ��^PB���&�%�v���\wV�MfJ�G'�jZ�\�N�:�X_T��v�����Yr��cO���2H}Cħ�Q�N���j9v���3Ő�g!=��1�T[�C:���b�����|��
!�ڲr �uDi��CHUK���H��U-���U_'[F� Ub�Q�����wM��"Q� Uhr�*�����ô�1M���b��]E����u�4� ��އ��j��>6|�1�?V[��!��m��j�`�)��Кu=r����^n�41X�س5D���,Qy";W� *���DE����|ʽ�N����j��.�z�2zD{0h2yM�&*�ںw�R%�`��T��v�A�P���{Tg�.�B�jU�#�ŧB퀵X)�2�
u��<=S��*�.a�J�ߵ�
��%�=΁H cp3O�:&�?��KL�D�`�x �> �
���DH��<�=B`$����ޡ&��OO$|1��Ho�먏\FŝD?`�j˸;YGHؔ���r �R�A+wv�������S�H�b,�)��fb?�Eڏ����1 {c����rg���0�=�#��l�w��Z� #�R!*՚� �L e�,��"d�%�����,��}�l�*�D5ի4@���e�X�|RW4���X���o��ߦ�3+u�O�MJ���Mi�#,7�/�e-%���g� �XTR������b����W�8�����Aa�G���¢W�_�Q����NĮ������P��V;3MԎ��q�K��@v)���٬�J��� @y�|O7x*���B��y�庯J���{҅���4�*��j>���\���j�9&��y)�g�)>Uy�Ee��{W@O�B�]‹����ǟ�LnEC�� �r�lyH6'��胧b ��J_^mc(��p���6y�j\�=s�%������, Ԇ�r*c���v�O-���y�] ݒ��ۻ�¾]�#7X+x�_ k^e |\��f(#ٗ��j_�z)c����x�v�����J���g"7���%Y&&�Dd��>�Z��&���� �o�J4m�
�[O�R��p��HV�D�^�#�Q�H�R���q:�� �Z�,u)a_ȇrt�O���T"�TyA�@v�%L�P ����"U�U�>E�C������"�G��K��<N�q�^���u�g)��nW�f�2� �� De����WWF!����h1dY�%iǷ6b3��s�#��D��**�< ̈�'˭�h�XTA�Y-*�i��~�Ψ��'}[�+�D ��$K<9��P��io��pC$E_�Dd�MTS��9zY):8�Y�P�8jt{�c@ƒ�Y�PQ�[�*��S� 5DoʰL4($�Z���1Ypnw�>���բ�ڠ����/=�BӵːrE���EĜ0��䥖꼨n?Bp��S�xN$��۷?J|��'l�[-�!V,–sd �P(r7�QT�a��|���$n�и����� 7J}3j,��u���]҉�Ui�Y� U��3���K����LjИ���|k)�"�w�Vג>�����j�ف�'U�ק���U���������G$�B��[Ґ�_@ں�5���pDAiD[��J�?�E�RX4<]X4Ɗ�y�q���X�ry����7����l��R~'I��ڲ%`^�*��ĩ�4K ￐Wg��^_�"��?O���+Ӥ���S��V� x0G��?��F$�6k �|�/��XC���3���;�
yWniS�SXP��?O�/�� �#�0�?Y�� e�d��(��l�RN�<�m��` 7��s+kg_J���������� h�x�t[��T�p�L�'���3�w���M^���z-L��9����&��
��[�&��3����W����)�5d9 �lݾ������V�, ��L �P �B�_�ɮ�������
T`.�X�%� ]�Q��3�t��ؾ�*]&�t-Ôj���X��Q�ܭ�{��e�G9�Q~�('ڤ줬��du\X*]�Y?5�����~�Y�0�Bt��r-̒�Oʑ�T�B������0E�'}K���I]�>��O`��(V�h��QςE�E��&m8(�d�������R/��б`�*�Ɋ�<�U���!�^
-�Dv����(I�RD� 71�'��
����,�#�̢� p�����j���\��'3����� ��,.��T�rH�2{����s
�s��$<��������{?�Q��)�Gh=Fhe AL�!OY@8�>4$#�+8����,.F��>K'N%~]A�J�k ��b�%Ȯ� �ȍ' ��8��N���L�$��j��if���4��$t i�W�Yy���j}��h�@Q��U�>���-4z/��K"I��b��=����G(KV�,�) �Cv���5����4�q��*;4S�ݼ�W��eC��8l��>F��g&+S`�9�d�T�$�r�F�����xދ�;�����2�u@,=�K�1�X�tG-�%�B��bP��]��Ex%U����$g��6øY�'�g�t����8$o���r>Aq
�f]��4����Z�� T��09���s� 4n~�b4�(�s�?��#������U��@���:�۵�v_?I��/�t�O�E��2��%�#EMI���V�=L)�^�g61}�U��ˁ�JG;�:f(���H�@�X�$�z�a2sf�ꠇF]�n�dʵ<e�c;�0&P ϐg0�c���}o���㳲MT�!0�&���\i�.���q0��y�=��YI�)Z�zմlh؎���>@ldEYw/�� �ϫdC7��#ة�y<�Z�\�,F;���������ub�I�m�x/,RQ��k� �h`�u���"�C�h�^����n�N� c��ҟDZ}jbٯi&f���1�ۯ��nu+� A�����"�� �Ӊ���+��~�w �k�*P2�������<z.�����!�f:�![�F�X�o� [���=V��5��Yk%�R}� ��K��yCi)z�#\������G�=dd�Y_{K*\r�Y ��E;2G,�KS]Y-\��|���SDՈe�Ud� �/�?cma����F�O���n՛���7�oI�K.�`��`�1����O�RrkK)��'�=��V�1��Ɉ7��+SXd��9?j���D�0�,���raq;y�I��#\�U������$��b�B��`����`����� U��.4*I�J΋.q�cTD�u\e�Fz99���?'�V�B�4o�d�fxCN3��L���i�0��N�A�;�\�*mH�-��R[0�_��MP���
+��C��u��
a�^ ,�  ^�pi�8��͔r�un�¨oz9<}O=�y/@���j���v���nt� r1�{�\��]N� j�"�R�_ h��f_? � ��}�@PY+,0�����t%�4��-��݃�ҥ������G y�@@���,7���k�b ��Fs�csg��|�{S���[�3՗��B&\���&� #��6�b���%��Gv��,��U���'<;����� �G5k�N*@$n� �$�x�i�.��o�Ő��xs�Ff5���Ȁ_�C����l.�@\ ��L���(+:�_�ġ�΢z�M����0�����������^���y9f6�0IT�V�N�� �������? ֊��'��x�r^_�;����@f��ߌ0�K(�_�>P�k���A֥�҂��@��Q�T=��s�m*�GW��I�|��qڇ�O迢+ t�,�:�\ �S�b�6}�K-���8��+�}"X�ΏSf�jG���% <���6�дe�5u�� BTi��_`�|HL-�V��y�5�h>��?f�3E߁b����d�X]�]�Br�AV`�ocѮ���Q��l�4�ñ }�pQ����JE`;�CQ��
��� g�'$mL���Rql���\��]�3C^7������;���a�L 9Ϥ�r�8*��"Ȉsaؙ��(��I��Q/7M��3Ւ8����z<y2��Aafi�8�F��B��ڹ�!z�ЈL�=��ǬocV�"3f��}�)��K ��Ց �S
�I��@s�ߗ���ı�(�a�*�2�[i> �����hVGe�� M1G�Ol���Ҽ[�n�p�X3]��(�Q�gn� �fuTΐQ�f}%��C��(��@bL��\/}\�}e��I-ڛ�M�4�O:�e�[32S��3����<�3�k�*c�s޻k������v)aG����~QN/9$�Y/�~��B[ {��L˔��^� ��D|��w� ����MK���7}��]X4�*�n�BǤ �_V��F�2T�=0W(��:e���� ja1��%�)�,����]��H��bm�1�����Xl_.6,�s�僈qv�z���1R���R��E��u�M7L�8F�(�z?�Պ%�^����Р�a��qP[z���*��"���"�y�����p6{R� ��Ǭ��"8P9(�W��yC
f-"�%��O�V
I0�:��;�_,0�g�@VI
+*�n�q2
�����>7�G���sI����5�;��ҋL��z�=�:�:�sC.�� 5a�� �LR�#SdmxA.a^-��Р�D�0)���\}�O�7%�b��?��EH$�w��g��&�7��o�翐���]sr������'��,��"}���Q�\���C;
K<@Þ�
3���$&nվ��gN�[�^�V?`4��o��^dVO�v��N��d(�=��,.䆪����8=[����0M&F����<J�E�1�%<�2 5_Zo+�X+�^3 S�;��2�qx��c������&�& [
����6!`��$�u��+��GlNCБ�Pg&�Gt���B&f`#�ŖyP�g ~>JCҫ�[y���ii�B`%$z�OH�r^o!X����eg���8>���K���M��Р{
J�Zn����� D�WY�����QW�uL�t<j�!p�C�� �`.�3���B���:�����' d-}4�Xja�����~Bh��d2Rh��Ja����+(��v��>�$� ��A �N���p+)�g�b��,;�0�ل,�CPw`��C�Ǡ��d��D
�>�9-�%T����qU�&�G=�b,��o��$|��f;'�.0J����ߧP�i+�JGP�0�Ro�
�����Κx���q��Cx�;�y� !hd����a��1
<�z� �#��FB�QHͲ������aD86�q�K�z�'���6!��|�52�-y��$��h�P��#2�oC7҆���6M#~_&�4Q�t�T5�IUn�%R=n&R]�i2��?���+�*��<��7����`� �PԊEѪ��/�/�������Te�!��iV�)����`�� �����c� �:�+���&`�H��+̌ m"F2#r����{��R�$.P��P�v��UE��A��'����W0[���i`FH#h�H�>v�?� �����I�F0 \�@X���#�C�Wt`ܿ�Yz9g�W��lƽ]J�<�E�-=���z.�������qw%c8��l������*������l�� ݿ�*6�֢�Z�&�.P7HW;��C�C�9:�Y.�c��{�Plio�de^d����<�+�9f .���$ӟÿ���>�Q�nBj��L��@��jNQ֒�k�.e(�εl:<�����.C�_�s!JtԂ��V�}�)��^�4���:�t��B���>^�'o�?GX�5;��
�ePҙw����t�W�W�#h/z��� ^@t7��f@�
���!�)���̠(�V�*(��<]�eQ6^cAT�atv����#� ,�5B�5NaŦjS�!���J��V ��;TI� ��zR�%�N!�}Zm�G!�bk,�Q�R6D%�S�o�;��C� �@H�gic��W��OK��܅�%>i���`��7ǂ�-ݗ�d�7�4�D�,����"�K�:�&�ۃ  '�k[[�}�x� �nÿ�
�'�Gx��B�Q�?�FGS<�h !�l�7��@�����K3
������ �p�4s�C܋��7�o.���o�)L�"�Y�OgIH�!ķ�����l���h�l��)�e}��`�~b���\0�I�I�d#2K3��kLĥVO�C�>a��L F�0��o$���D^0L������n�Da���o�~S$�7R�-�Jz��A��;8
� ��ͿdI�M�<�5b_ݮ}�7|�Q����g8[y���E�B ��x�'C�O&����x�O��y2�8��#��D(0�T7�<��N"�l��%n�m�Y�L�����*F�#���Xz�W�!��CL ����3Hw��*ĝ���21�Ґsi_l�3��+cN�tǰҦ��}�M^�f����I�����E���Ǵ�4<��@m�j��&� �h>0Z�0��<�� G�m᯾ߑM2�J�WB�2ѿ��y2[���?.2�q:�u<�$���
Ι> ���q�q�0ДBSi�gH�?2���p��&��;i�� v!P�{U���*�S
#йʹ�8ѯܳ�Y�S��Y������0@����'�9c^K�b�[Lu8��t�k9��>࠿0fV�� U��p�t�����0c���t��r�'�Fi �J�烍ۇ H_�H���_��r�ͫ<jMX%����o�0�"�7
��ʽ�a�`3v¢\gF�y�?4查M=�g��P��P�n�;�_(�����-�q�r#���&��2��{#(0J�s��]�%��;���ퟘH� i��aeT�)1�3.9l2d�� �hUl���������c�ϻ�Z X8j#�O��y� \6��e�N�t�X���0{*�[0��_�F��񠓌җ��VxP
|��O��Mx���<aX���;%���d���TB�"����������;A�2xB�.��ø#v�LcpE�
i:��F9:14��g))���A�t)+e ��{[|/��X�q�:�.f0����vߍ�<���S�b�>Q61�m~XC��IY�}�����6�ߏ,량\$u0ԅ�V�n#2T�W aѠ��4!��� o2�b�O�[
��� ��M��;�50��6��Mj�P�>�)eF��z�'�F��#rC��ZQ����?3�C�P�m�Q���@Q,�wSF�~��[r�€�_�����]HF�M A -F:q9��0Iv��a'�6�LL BC��Iv���1
���!1&M�N\��^D,�l���J��J�]�&*���s�H��� O#�L��i������9o��K�b(2I���YܰW n�����8A��sk��Ng�еN�[���Fl���()�ME:—��b��e�
�/ `�m'���_�{b,��x�-�����0����,G,��4>�X�t��M�t�_��_;����?�},=Ӈ������1қ�/���J�HO#���6�� ������3�Ê7�a&׌�]6N���]v��$[-L�.�սɪӾ<� ӟ��Ҧ1B�y`S��y'y`����l6 X�;r�q<U8���� �I�;�[� [�ԧ�p��y1z#�"����6eK�.y�ٕ��}".䬣�oA"���c&s� N��u�ًR&�49^_>�4_Zw �yq���ǚ��t#�9��w4A�<EM'M�B����?�66U_�@ ڭ�j/������7�rI�U>�¬�i����kX��E�����xE��b���)��[�nl���W�O�Ϳ�2���8�`�ԝ�2 �������=������'g;�d2v�b>��Vh3��V��\p����i��{b��29�!�.��Q�� ��M)xH��r�m����u��Q��a ,]�E
8ՅKZ<�,6�=���R][�=�P�H=A��ucP�lN�����/��󓫙\L�LI\?��^�]'* ��Oaqd0�`K:Nяc��;������ms�>!�[� @c|��`�v�߉�L�� sW"m�w�(�g��0�ҥh����̵�XJ��:z�O9)4'rV۫��+h�a���Zߝ4O\�y~�1G�ϛ���Y��m9& ]��8��Bf+`�����x(6����p��#Iv~t2�� �B�.S�`s����Ԝ}�L,��VP�bh谎fS� 6Q�R���T���G��=YY�gW �qC"��u�D&o��3�1��F|��y��� ���@` ꚦT�I� l�kQi6 �gB<�/ވgN���FD�����N>��J{� �[����RĝX�tu3�I���[d�1_��H�s����x\�u9��m�|9[޴��0�*�T�%F�+�K�,z�h����n6���
WҦ�ſҧ�p�M�.�:�R*K�
Iӓ��#�����IEJ�X��,��>F�q�)�*J���c��S�rD�\�G������Y?ƈ`���ʭb˽�l�Wٜh�����ʩl��X�G2<���w�ٵ��<N0& �RAb�{��w�`� 9�,@0*�Ǵc�yc��/a{K���z�V���ޒU�JK`}�Ң��vZl�\mvΟ�5MT�7��s�;6x�^ �I���ֿ~)>Vɩ��P���ص�\$�N\�Eޯ��#N�_c��%}7�@&�)�J�j��ه���(����~m���S��n �y7�D�>ʶ���l�N�>������n��k�ղ� � ���U^�ʠ�T^���Wy�*�_������G�;�,%��C�:�pbסf���x�
o����9 �Q!Q ���q�Gj�Qy�U�nm�C���_GBw.ޅP��6G��H|J�O�)KP�ޝ;[� K]o}����>捽��4r�݌��V����\t��r�cm��v�OnN�}Dk ��\�S���S|�rq�!>�G$�����E�� u�0PTD��icK�����5��t��^����˂h���f�b���!�(SoI�Ӽ�c����k�"4�J۸�j�$�� �Է�[�~��/�1x��=��������#�B��kQ߀v���60��8�,�C �ܗ��3B�\�3~ t�?��x�_O&?� 1� Bgu���7����������x1�~&�O��M����D���b�)U���sQ 6�]�X�l!��;��DR��6-�D�x�~��]�w�KZ�~l��9y&z��[i޵B�2|�� ���:^C���k���9%G�g�,><��x$}�B�2���������L����s)Q���c��C3h��1T��SgYq�U��R�&� ��u~����a�Y�:X��ͳ���L�G�T� ^��$��I�wc 2��_�
��Q 9���[����{0�
="(7�"Ʊ|S�0Ѽ����h��I�}���n����T<�M��D�Ԕ8�I��pmj����~�x��EB� �#?5�P�Å&�s����%�s���H���Bod���� ��df�N��Q���;�ą�қ����^��w)�I��|��R�ǂ�B ݚ"
�&�|ߥ��|/&�qA���&���蓨���c\ s�4�
�~�_��@�A9������s~��� ������1��e�! -F3+�����'�2]�+/���*/l<E��������N)��:���7$r��D\�3�A\��{�m:M���ڨ���7�Oe�����A��߱ߣ�6�w��[�{��o3���������3'~ى����ߣ� ~��������8����6Ï�.�����v��~�=�����Mm�����y �sm���7�G�'h�+����֢�!0�HK�wE�����'��eL��1�=1��6}�S_'���\$�Ƙㄒ��q�*����!ྕ�m��$k��W"9U��E�dU>ugg@>z]'�h#<y3�iඥq�͗�g��E�N&����LP5�:�=� ���=؎�JM�����O�N��o�������1G ���w��)���^>�����$���F��0#���7� �� �W�굺T3G�iC38�����'�{ �80��ILT���!-}("�oA5���Fo)�3��0:��.�������j�GG[�.nu������{�<�����#W�V-�;3&
ZZ<�N���Z!�J�V�����$o�Z�B�F�c$U��2�N�íh��i� #A��~�����'J���"�\�c�isg= �?��!~9�7g߾�r�g��s���?��U���ۮ_:�v����;�������#W��@�i��W+�L��T�8x����T�塘�sL�9�`����/�e�����@K,.; �����X�cU�@Qi*s�Sm��E���z$"7��葿Z�A�u������������1�Y�Q0(c��;[Ԟ�b�ir��<(��0j.��.J��ec�Em�/����꽒��a�5��� ���LѿM�gu1�����Y,� �Y���NL0ݏ�������i��>b�� ��xFTiC��?���;�(r�Mi(\x�b =�SI�NLd� &
��W���׶څ;OO�&k%r��a=��x�Z�!kQ�I�z^s�������i���!D�+�DT��
���P]m�
����IF�p�)�I7'��GߌK ���G��)����O��/a7ɳp�Ci�6r�䰆GKv �'��g��#(kTF$�U�0�+!�|���
�-gqi��W�h1cc���v�.�!�\K�8� �;�I�Sv�ۡ����@�8�fy���� �;?�����5?�?��� |��/m;��~=�2��2�8����8����������s pp�s/H�Ո�!{�A��IZ�[~e�P����/7��Τ��;usk���5�V��y�̸��d�̊�{Ol���#{O�a��VL*�'2�Ey�_%J�;7��v����%{~�Aw��3�@Rw�}��������R���ޚ����yU4�=ώ������m�+'c�ZT�
�9rOic�} �2��x-+6�(����6�H��y6����x�a�N�i���Vu&k?��z>=
�QXk>?Bp8��?�pk(r�N<^5F �H㠒�3�l�0s92}�x���Z���IJ��7���C���P�`
�u8�V����^t��T'�tDK"��Q�'f#�M���H)���dž�'C=XCty�l�8_h8Ȟ�qӵR}�,�[N�h/����a��Ǘ�/f���ݙLi�4�y�EH�����K��s9�`��j�-'n��y� 9+�ǘ9���Ǹ�.U�ˊ��'v������^����Kl����?w�G��}����8Z�w����_ ��wYw\ �;jp]����z�F.�O��>����<��I=ӎLy2ֵ 0�B��H)��٪N�@n6 O�i�qh'̽7�7�����iJu0.z}�?��ݨ�AB�N�~�"SA�8
��!={h��̗l�C�#]���E�|q�rZ�)�8��"�0��E�χ]ĵ���߬�������}U� ���,G=� ������:���8e ?i��*C2��e�(/fw��d͌a�]��kв����`<rt{�����ږ���by#P�tv�h!x/-�J%Yv+�<���V�e-�!&;!�|WZ��MXԎo%�?+m�̰R�k�����"��@i�FW`Xn'?딯�(N5%�ɰ���ܷmC��h��/�߶�s�H�gH�M�B{�a{q5+66m|����4R�ױ���`��������٦t�B���+Kf���W���t�R��G;چzʶ���%Ud�A�$���A^wס��Z���m[A{m ��4a���lY��dR�Œn�� @��w22l� dع�Hӑ�U`ڗ[Z��G��O��ON\Y����?���E�-��HH;�D�Q������n�.k8�c���O����U�A�0k[y��.�^L��!"�}l �ݝ��e�12\� Ȁ�QEը��ym_ �D�Z�����κ {[˚��6�}��Z����������Ā��J�������g�ս5vP`�[��Aԫh���Y׹j��� Ɓ)�s�+��� s�� �*`�&p� ?�!2�!�q��O�*�m�KN��=�hЛ���L�F^+e��m/����C:S���6D.�C䲯[1���j�4��32�{�=3��Des|ˇ�"k�rå��C�μ�� ��7d��`�>�����F�� ������_����wx<#-fm-�6��A�&�`����h�_�o�Ol5��q���j�,o���ç��ss����6| �۶���
����V� 1����#���"O���zs�l+���.O*wy�_+y�����&��9��8���F${k'Y�_�����Umh�_c}�| >h[[�������ӭ?����_n� �K��щW�ҩ��O�8<�jg(w��&�'��C�g�oN�'�-m��Z|��>���Us3wB�_4�?Auن��m3�񈶶�?�����|��aDe#�5����<eb� 5%$�S�_#�E�rC�j�k��(��I�4�4XnH�f���XpBT�� ���yfZ`s�Zd ���u�"�O���@���4Xay��t4�f��E�e���T*�i�X��W��}šT�7[�kh��
"Ml]�b쒉E$l�I6��s�?#�(Q�k�0�-T:̧�箉Geئ�eC������Z>3m���ұ����ƃ�٧�`9��,��}6�+6��۰���hlȋ�i\v�mX�C}�Miܛ���� ���|v�w�~�=��z���+�`�H�#�xK����n>�ϐ�����&�g��%�&�6r�\vF���ĝ;��&�:]���0�d��?�^e# P���Vctf��B�<��K�� ��r��^&u� W�|Lc��A���ĖB˝1L(�9�\O\&����uw�%�^u���ZI���V�Z}��v>���w�⠮���G�y�
�Q����� 4z�o�}�������3��w��īmj}�J���6T�_��&�����R�?g �갳|��;!R��tncMx����[}�W "��Vx<2ԣ���V��S�ʫ�$q��Tz ^��E���*�_6�j�$ݫD�vz���.�T,�z �����Zp��c���BC�ͥt�*��}Q}���a3��U����z'����zҽ%w�oU��ݗ�clfX4��C�����?�$�����Y�qYB�2�u��7��B+�v��=4t�!�g��ӂ�����8�V�$B(�����z��2m���q�������
l��V�yqmi�}T���a�������v�� N�zi�U�z����\����̣%�����9��+bC��� �S[c�+��x�N�Z�σ�# ��h�3ch~[El���SgD�le�1������8v��U��3�ڒ���������9gYb�S�8����~�egq2D�r6['�L����V4��N�ߟhK�n���o�&�۴�����џ���/�4rC;) l���]� �/<L4/�x��)n�bJ~��RO;�Y+rN�iM�%A�� �D�h����h�f7��8���� �蠴D�_�U��YZi��"<�+3�c+1�t[��7�?Wχ�y~��/�� �ϛQ��x�R;G}����Q_�x�qB�7� f��p�?��Bi���w<ݦ�Sڙ��]��5á�.��Hܤ�~�ڳ��<�����O�Js��T�jO�'�������KI��0K�H��}���J7��,*Ee��yU<��ˤ�C!�F��
�!�R������d,E�C��cK��?�]ġ�HT��Ly
�Gu���U��'��o<hӧ�׉���ڒO�t�2q@3T��Τ���a�S*@�ߵET�u�:K���j }_�-��\�=�M���o��!x1��y�&H��]*;��O���o�;��~؄m.�4�Q ��S�rs�W /V@��Q#Wh{�7H����cIs%4���5?�]�AD&��>�8F��s����|_���^rUjd v`���މl ]iT�" $�&�b��&dg��~��H]Rb!�t=v�]��vƭstۜ��;v σrØ$ɒ�n�����0Xq�џ���Թ?�;$u�5x}��˱g/����ع��#'w�V1V=��Y������˩:Q�Y{���xA��{� �9�Lz���I<�c��ρ�=�=ڈ��P%��#�O��3d-Ei��ɳ�v!��챻��辜`����t>�ʜJ<���8��#,�5G�/3��g�f���&�����ꐦ��Ю���Y�a�� �0�"GcG΃���� ~���Yc@�Vj��y�DŲm7�b�~[�e=&���[�4Y��V����)���0�<���P���;^��gu%E�|_��W0���x�;�����dJ�:T[����"u����u��J�qwe���wh��Jux!8)�:nVH�L,�-9zi�|\+?M-v���7c��jNS�;~�������X��F�/{�Wv@�ͫq���]��7�sA�� ��.�L�x�^��W�O��s�/l���Cr�SpH���x�M)I�w��S�m�cm�NQ�@ ��$ Sp,��Cj���
�!5tI꜕��%˵G�n�x��{|^�u� i�L/�Nd֞,�/��68���ӵ�I����Zj��'��)}#V����WA��S�]y^] �}� ���!K;�P��x}��H���j<Y�嵐|ma��U�e �%n�g{�a:���cgu������9~�- 7���P���&�M�g �w�=C�_\�W)�;�Co�']��>Pw���>-$���[�Dv���_#����HsD5��"�#���|�?:u{䦘�:��­��(<��5���Qixߝ:�J燩$5*;�q�l5���ܑ�7h�D�����. 8��B��Յ�6�������]*�q1��8At��\EF庘��~<�2 \�7'�z���9�KM��,�D�~���D��Q)��繅O:��U�J�S�I��9�#RTϑ�B�:��P�'Z� ���2�o
��q$fI�3��e�1���`�R��[%p&S)�+/J�u
�4^���E�[X��U_A%��� }���!-�ۨ�$�# ��3^Y ���˒��}j���b��� �T���Ȳ�� ��}�8��ݪ�捸� 8㺍�Z#�_m��H���P�_K/���m��cQ���՞�oG�v�.
n��yR��-z�*9j�㥡9АЬ;5��p�v(2�D�}��P�]��M&���;P"}%�mЅ x�-�Mf��5@��~S�u���t�]�!���T� ��t�W��uB��B�g�h���+�6�% �=�>C�޼O�ⷙV[�x<2s[sb'�}���}���L�����}|F{#f*�����0}���Q������t�n�C�|/>n�J����A�n:��cJ�Rt���^u/�֋���g��^��������>�Λ�C<�N��Sz_J�Z��:�2����+�v����˯⭌~�����9@坵&r��^��g՞�Xh*4Z#��z;&�\�NB�S�p�3Xѣ5<��6�y����B��<2����-AŘq��Z��B��i�p�ehL�Z�m��#��<`�[���j�~;m������z��ɟA c%�n^H��g��,�b9YK����xQ�Ι����>g2�g ���,c33�*��B��Bd�ɤ$�#�S��� 0�p� ]5��t�̡�� H<���QzӰ�r �j�����+�<t������������3|��DD�61DP�I��!���ؘ�/a�g�<��{��KOe�:G�!^ޱ=v~�ОX��� ����:%��h�^� �i8��a���������
�0�rE�j���XŠ��R��PC|NR�E��~K�
�a y��gԈ���� ~�|�q �6m�������@tM�H�ǒ\b���7�}Ľ��K,���|'*߸�����A�o�������N� �neB�rnj�U��}4Q^eU��*���r5|?�%]D��Y���kt�!r����R��{�F&��(7�#��<τ�&ͪ�����ҊD6>ޓ�>��AEt c�u$_�e���Q�q���`$^�5�!�d���q�^7����6���F�&�ѿ㍢y�`�x�v������ʾc�L��qRyG}�1��?/����-72O,v<���F�%t��bv����I�|���Q~j��)w�q{�}�6���d\%a|Z����颜�㛁��������xt#���H�/ b�4DT����~��ϧ�oΧ{���xd��".]g��z䐉�C=62'�|~�<��j��5�?��z����+kv�U˛�b��D�Р��X�jƞ`m�����kDe�U��H
�_S�e9� �ަ�W�HA���Ql>V�\�5 �_O;/5��OC����[�K究�m���j��mRtٵ���H;*��1v�u�<Pu�MT�mZ�U�c�c����"�nn�R�;8�r� �~�\j�E���I��xێſMQ<�2��l@Y6n�a �̣_�Zn�@�d�jK7��t�3���<,����?�eGx��۹9%��,����{�<;��옂�4�|j��*���D�# ���v🫛��k<�'�Bns��&�1毇sܪ��G)�毟��NuZ}�S;��fw���ŎF?�s�/y{�u�k��L��`���%�lfg�P�6pIo�oK�n�����'-eN��sfB+��Lj'|R� ��;�'��t�-3���-�и�B&m�`I�6��8u����}[��C̈́�$0"���+��&L�Ƃ �f�3��<q�c��W@�aH�����a j �C��6ڎ�˩w^����r�,W��lS�������9c>�y �%v�|Iƿ!!���Xw���"�mb�(t,��R�1 �ɧz$+Ŗ` E�
*8��8�ߊ����}*���3i�:6K�P�1(��f���'�;R�ڕK���V��O7� [�h.V|!�P��,��(��S�`��� �|�$�!���l* G<{?X��ǖ eXnn 4qȭ�‚���)@������a�.��O��2}B��R��{u����ދO3�/H�� Y,�E��D���Ք0��<��RrQ��
�}�WdI�u{q�.e+��J����p^�����KP�߶F�w�����CY�ڢk��JH(ń��:�� � ��9�%_1_v �[�D�1@��pH��b��j.@�PU���R�`����4l�C#� �a?��&�+ȗz��˵���*�~�k�ܡh҆Ě��`k�o��a�tL���\K���4m}%��o�:h�O���S��U`�A;"�� �Y�}�ܵ�d�����B��o`RS�P�T�A��r�t�Z�9�X����IQ����r�E�`F��7!#����F�{� ��� *T/�W�丽@݃+Bf���K��ݪ���in�r'O�)*�'��W��YzZ�>Hp�#���[�Ϡ�@V���F׋(�K !�|l�)��V�����&�O_@�wb�<�6`�r���>DŽ4������m��w���;��2%>�#|x� ְ��j���Ր6� N��&�q�]���+pUW14̉�cD���;ަ�����|^�Hݢ������S<^~��0�t�B���2-��Ӱ5�ye ��@���i�������kpX��zLW�MГؠ��t+���5� �kxSw� '?�N7R7c*��,h��A���~��F�&��Z��TdW�fk��
Ok�&�Z?g����3R�*ἇm����.ߏ}"}���7�X��T�@��^�<�]��%<� x9��C+�l,(�b�t�~�`y�`^\-Q���R|��qj��|7�Q{e��P�a5�>���׭�d�i'k8�`mF*�/N�_UKMM��2�V-3�аʺC��&�ї8=�F�� (}��q���#�a/g �j� a����V� �ߌ�Ǫ{��0 [|�LJVJ�Z̲�Zާ��<^��p��_N�^��(��X�a,�i�S�,�7�k\y�Sڣ:���OJ����=�$$��ռW1���0��ŮƷ�!�����ۏ����y��Ji��v��ap���m���/��
�\���I&�E� ��SS�SJ�a.��V�v��n{�G���&��tg%�?��ư�ռ賬Tu�����Yl�����8��޿ '�i��W:�@��������O��fPwd&�f '���Lx�%l��k��7���*� =)���d:�5��������5\ �_c�V�8�_�q�� �u�Z�7��t��u'�u��N�^����R��{'žf���q�;���m�1��^�� zGV1z_�S��oj��GF����g"�א�����YB%&d�|c �Z�������| �B��� ��XLW�J� �n2��>��m�8]� �q;�1R)?��� ��.Ƴ��!��m&�?�_�i� ���~"RI��u@cِw[W2zLdU�̒V&��o%6��X�?�;���q���OL�����?�`B����x��֗��i�oM��J8�Q������Ӭ5L��+�O� �3�ԣ�<�o�� V�@�w�ԗ�l^�O0~��̈x���tv���J�_�W��5z���b���1�`{#O���\X�@�!tq��J��.g ��p &l=B c.��4�У��O��.�EQ�#HR&��|%��h�m�8E-k*8E6Ĵ�0�?���g|{����� �2�Wmu�`ܲY����o��U8��7�x���:G�M,��[��U�*_J!w\��c��ۢo [������䁧�V��^��7�}M[
�!J2�o?��_\/R�s��.��GYBE9�o��-�����I\�n/�u ��n�*�ġ&�S{x������$��'�a���>��S�y��V����J���V�j�U�kTe<~ rƒ1
����?�X�ir�. B��8yv$�/��KjՓ��6t��J���^˜5��F��:>�Z��ܤۻ�`��E���
���J9-p�Ě(zno��u��L�n�|;�j�l Ҷ�dm�����+��8T�If{��Fng�w�?����x3O��qԸ����Sn�ڷ��@��jX�nc<z���[���*����� D�^4;ꑢ���R�д�FXv�/dIu.2�ҦV�5��=$|�����Z���s����� ��>��{�-��}��x ��@ώ�.�Ø�]V�v�Oi J�-��n�O���-(R��E*R�!Ӭ��6N����tO���-��i�ep���4s�5�e�4k5��(ݲ8��Ǿ���h?6Z�_� ��s�tǸ�V������`7�Qa5��I�Ll������4�N�X/������--�(.�Ƹ��[Y��Zr��4!|Rn�n�����/Ē�%NF�Q�7ډ�G�Y�����!.�0��}�>�,��t��6|T&� �^����W(�3}�'K���VD�t�Jw�q�;�@1:� i��nt�WR�ڤ'� ,_�Q)E��+��b�&AT�W_o}��t����;=xe����׎�ސ�Z�w��׻4��$��8VS,M����)cA^�|��;������*"0jq��Ƨ�zKV9j��ڛ�JCU�5�k7�L��lY�2�_w�% 3�
 �D�A�1�%�L��־#9PE nj�!�^5��X��*�\��f�G���Y%���'�=J�G�D�I넑�|P����hk�abۉ��7��8��Z$5j�j*��.J����L��rG-R�2�*�YY&��Ί��L��T\Vf�$o��#<���^D���cZ�>������w����>�ol�;����Z������>���Ż���vc2�vI�w�}��{���;�]��/�|���o��"�;�����|�<�j�>���������Y���������a|�U-�'��5�{oCr{[���/4������gEmr�|�~i ���m����������k����͵����z�?��`|�nv�����N�7���9����g�[��Χ{��|�/��rc�ȚcI6$���q�z(��٤��
���}��Z�n3��J��՘��uԠ~s ����OR������ ury��
O�f�N��]]�N����8���ѧta���h4%�*N{�3�=��­�z���ګ������o��;�xN�Eܸ�h_���]���KXT#=�Rj��.�1E�k���*y���2����D��<��/�F���Ƕ�R��8�� �s��p ]�i�w��"����]��OP��e ���&��g�Q����ܢ����Ta�5tugi���NaQ=�# ����B���
HȢM-�¢�X�@�_�#Mu�Cǰ�%�zRܰ :DL���'�^C�s/j神_�G ]oƋ�s�QEG�ov�g�Cx���Y�}�h_&B�?+V�"S�mh��"e�hl$����>9F�,b�m������;��¢!��E�A��u���4��h�p�C�9բڎϧ֋m�������m���E.H�#���� �s�_�����R�_��_[�����*��)�z�h���j���W�"7�J^mG#[��K'n���&7������cD����-��;[��*tr�yF�nsY�͟-����۳h;.=�k��N.��<</��oX�9��~`Ric1��"���|q�X���W�
��}�*�An�4��v�����o{:��"����"����Y�����y0̣�Ej�"��O!kVD{��$c18ƖW �a)�OQ��n�Σ;Oq|��8�\)^%���ї�J0sZ���W��c| �Pe|��D� =&W��q�7�"P;soo�o����DF����b�2��9�*u��Y�j���CE��3L�#��S ���y��x"��<��Pq�5��΍�L
;��g���!�@0��BGZd�}ѕm���v�1V6\{
Ϛ���S�By� ����F�O�Tmx7�-���<��y�������[�7����I��ղ3�:Ŭ�܁�mb�;+c�������mm�G |�� �-��(:��E�|��|Z��b\-�e0�����e�ј�l����,L�'?=�>���h |���`}I�/bM��@�S껿E}�:.��}����k��C�k{3V/FV���-��F�2��3{��+Z>X.�C/�Q��f����Ŭ�ڕ�鮧�NN �3�_�S�wyu�^�}wg���{  B����t�� O�@�U���Y�
C��]>�A�-4����T5Ȭ����[��X����U?Ł���9��s�=C8�؞�&<r�!
�u$���.�a|֨4�*��FߊW����d\��g���!�69
Kk����(����䄷�s,J��#�xݳY݅������h�m���C�^��J�U�~��k�S�r�;d�~�> ���pf�\�ن9Rx�����<"A���Gɭ�\������4x]ҁ�i�gǟ��ِ�`̧T��/��i&S �%�L�~���j*�O-�A�s���:��2��$�/ ����-�QU��{��L�b��;
h@ R 4��Nd���byL���d�df�9�B�M�L#���֨���<�6��o�� X|D���Z���?���k��̙������o��߷g��k?��g����{����wC�xt���mS�;�C��Pi�y-N�w�&6�����,�s<ʩM�9�>�k��9���,b��H�l��`X���c蚂D���^��Va������Ⱦ�91j�k��%�k�����/�8�e��_��p[�g屦� �ЭTb�* ���]g2�.��.����|��gry_00�� ��y4�v n˭4<?~�q�ӫ���|��j�vѭ_~/M������w�����t�D}��A�Ւ�����!��� )W-�Jm�X���g���8��ߛЩx�;���;s���9(����ԭx�+۬Y���s�@�`o�����#o��Uf�*Ul=t霯R��.I[���OLl���E��b�C�yP�DYT��������Ԛ����ѝQ�g������Z]��-���7 9�j���0�9$OÖP��nq�R|t͎ng���^�Sg��[���a*C�������aB��Z1"�߮��+�q).g�[�u�;�:�n��8����⩿6̛�߬V��^9wJ���pp�Z�5/�?ݽ]&�� S�gj�f�`���/1^��o}k�}q��=L��%��G�=�ŗ�I��>�\�>��;�R���r�M/-�>oP}�
�VB���)�[�N�v��lP���� Q'�m�J�s̆�bDE���|����L�h�����n'�iaǻˆH7=�;����w(�Fx�J��FN�xv]5^}���
O$���?����z��}{����8h{��3H{~"�۟�/ڞ ��=+�����_�{*��1?��.��. �Q1?���e�#�i��r ������m��ɘ�X���N� �ɢF�jS�ۿ�?���}��~h�)l?e�m_:o�u���<Lվ�#�>8�[�w����4��_��~��~���̫���\Bj�r��4���0� ������'mm�5�;L��a�*���M��S+�L�u �)W��v�� �����ӯ���Ɗ��~���$ Ɍ��"���������?m�v���m��4��@5�D$����U�� ��1����^}�E��~��X��X���sk�+&�-׋@���^U+�����E�xu�͕y�<�on�A�Q��kǕN�ϡ��ӗ��U0T�7�V�
G�M��g����!�]�##:�ɷN��6��pӁ�$���K �x�޴-����Z}�����>׌��xQ�բ��y-תk����X�;�9 �f�����Q�2���͑�7m8O ����"�_)��#ʡmH:z�?� ROI/�0Y�A�̆�<.���IT�+y�A� ��(�\��'|���E2�gR�2�)!���Z�{�G3�t'�9�<�Xz�`B ��C�&!
���Pl�7��d���"��pv�8���%,��C @@����N��CI@Vn>�~���s;8x�s畉K��si�&��4?!0� � |��S'�
W���a�� f ��g����/}����n�3~��w��NU�$`-��½�U��9ˤ�O{���GN_Å��OpY�3�U!� �#��[�|=������[��LO�8�����z��BBs{ }�o�L���L��^7��%��Z,&n�����&���
�� gY'NS�w��(���_�*.i3=��<��s-��o�e��;����P>~iM{`�)��=�V[�Ys,w�톊I��%�U%)��9�����Hn�]t.n�Xϙ|�tG8�<�G��s��0?ٿ_�� �8g(v>�_�v���ǟĭ�f������|�CË��G�50�zT��TҬ��z[F
��d B��b�q��'��]q��ME�ީ��æ����WS��em�����D �B�^A�)|��B,��«q��0D��L��`�f��V�U��m����Z׎o�#�H؈�b����� o�Z��2K����t�������k,Ȩ��g�������'pI���=���]��R����,!�����+7��۾R��:�>���\k��KNaC7�� ��g��&�c�8��b�d%�ޤ�MU�xO�ҟ��ѵ\I�ɳ"����#��XE:�̪�#rv��t�g�SCU,�;�s0V4�3���A~����[�)��a� I$�c�p�+[�Tj�#4I?2Q��}B/�U�����czZ�k�$�s ���Y~�e@x(��9�y�ψ"�_�G���hf��:<=�:���֎9t ��(����m�,��=�x���R�,�yάgVo��Y��s^1L�?����b�|0����M<N:�A�h���'��� �+�zi�G܏^�߳�ж��`F�
R�<v� < x�������g�lPju���K��Z\��S����=�?�S}��7hK7oދN�w�������+��7H���� ' ����_�W~}#w��;��I7�[8�
�o�j +~���t�� s���Sx��*���1�)����Dű��|:u�nq��񏥼[� ��T�
C�*0�g��o�_�� �龷�ʛ��2p��h�U��EW!g\��8U�qg����N�Ǵ����^ᩢ���cU����؇��G��o�W��������y.�i��=8�U��w��F���|��Tc70�E�㮬Hbr��+�P4bel.� �&�Xh�׾�54�@� ̗���v�)��!��Rܭ[T� �����(e�<�y����P��'�T�»����x�<��=3����E��Q��J�x}�ӛ�P6߭�}rd���1 �n_D��_���I���\���oB~9~�g
�&��Z��R�y�_o��Qŧ��J?smz�%9�e���b,�} �(��8������h�N�}�%t%π]��k�U_��t���'������IzR���*{��!��h����I�@h|7Fg��-�b��� ��R��>vvu��*����S)�N'��q�k��x�3s�k�|�DNR<j�}U=�Ŝ&��n�yѢ;�}�.\?�y-��W�/�$j�����0���P��o����~��X���?��t���O����j(��/a��z%i�]4{�����1����0\�W>l��M�7�� �\�lzt��8iá�x�#�~n��[�h)b�a��|H���:�v,��ט<�;�Hb݇�V�ۂ�� (�b�E�s$�Z�*j�F^��nxy���n��*2��b�{B)�۶��c$���a�0 3��:�!��z�mO�Ll���#rS=Rٴu�玲��#�A��_ ��ꤝJ�y��V�ބ�A[�1��H�j)���B�2��ۀ5�6��AY&j�U�'V��O�����͐3��78�U�n��J�f��I�&q�3�C�#4����'�����b�ć�H��„)���b�7<��՜-��~�/W�m' ���hBET} �)ū}�N�DBj�o~;�����~� ~j�\��VQ^�Zl^�|Tli��5"��OIT"�8s�Re�����FU"���Qi0}�ѮPڂ�h�2������%��*7O,f�5�/�dam�I0�Š���B?���C�����1Pߠ��y���?�� Z��b"��2z�tFH�!�����Z�1� UR���ڃhh�['�^�7�[�15�n *���B|��xAp߫�}AT(�O�bb����� �Z�o����e��`pa>��}a{O��sj�žnr f|K9?D�l� (�|h�c"��Є����$J�|%��N͑�(���N�={̔���x|����N��m���J��n���jb{;H叺\����<�(���z�F�����zE�Y��8u�_8��]���4������8N��� b6�PI �4�)����5+=*�Dߑ�-�C7���)�u0�\�}��Q�ݨb����T��-6��]'�W|#�^���kWe���Tm�:hTG𿳅}~�OP�jP���\6 � ��Rl;��W�����B�!1�4�?��x\;�����'N���+����8�#/��E�j�.J
~������<�u2�S�c����<5 �h8�I�b8��ĪG�Έ<uO�l`�%V�S#�i�Z8���\:>�D�J-;F��)���^��Q�w�D�N~�&�X������ה��1�“)^�c| �#)^�c|�c(^�����~p�՝����_����n��?�8��o��qL�<�~�������5���>v|0������|X�GtZyL������x9�_N�je��x���4���A�9k��W�箉o�G�_/Z|� �Lp�]����Zg#�zM<?�x����r��˩hM���ɚ��E����S&��5���$|���q�!��6>�im|��4��j�� �I��k�6ޡt�L �E�(�#�=?�O��Ӫ����O8���-�M�_~F����h�_ �����H�u1y����_�.���[�G�ET�﬋���� ��I��k�s3��5�3�E�~6�s4�����Γ��(�;>}��]o|C.�K4��~�&|%�wkʽ��5��V��k�%�K4tJ�� ���U��8?���b��o&�M�?�\�5�oՄ���m�~��'|����?� �G�C�v�$|�&}᭚��o���_�����z'�ǿi�m'�yUz,��kҿL�k��#�MM��"� �B��{>��|����0�5���sZ����vI�g�xv@�/������{��[4��t�;��Nw�ӝ�t�;��Nw�ӝ�t�;��Nw�ӝ�t�;��Nw�ӝ�t�;��Nw�ӝ�t�;��Nw�ӝ�t�;��Nw�ӝ�t�;��Nw�ӝ�t�;��Nw�ӝ�t�;���o�u�}sمto�����B�}tJ�&}����x�M@��v��� �>@�R��W�.�����R;����� ���C��O里Ô�`�Q- _��W�!<Dx�k�"�^�k9|i�k��픯n���P}:fw�_^ѷ�F��׺��|^�]C̟����N�g��{3�QzZ~E���B0m��q�F����#��!ҝ���iO��_]k<��F:���/��|M9+r��Y��&7��EyKs,k
�V��-_�t +���f�l�����.��:�X�#�l�����3����.�/;�Ε*�Wvz�]osXcA�N*��<�m.?s��2�Z�����b�\���q�>��KV�Ǿ�*�|�7`��;.e�6��<|����6��L�K<��$�H�+K�2��&K����|VI��V(@��JvYr�� ���}T��,�\�F�o+� �\��l>mn���m����x�id�t7:��3��2�7F�x$37�����s�FMy�7r��x�aj?��7�=�1���@t��0͇o��r��X^u����z%��3��m_��H���?!ƒ��C����k�Q��פ���/�1[Y���qo*��F��L�{mvi2��� �׾3��8%`!����i�1@>�)A���d�������^�<�C�{C���N��guA�}������|��� ����_�z�p��S��_���?��|:0���±��� shwod$�G>P� �u��k���7���ճ�g�����s��������~��t��s�fw1�̼2�;�ݞ���6��kY�l[E��ݵr�x�� :4`Ƿ�Q�b��=�ɛ���]�AQ ��&��-`�NS&/�$��`�=F�7��)��6� ӏ�UQ8��l~� Y��F�<Z;�T$���(Ke^����$"J����i���� �9v{��Y�`.bS����aV��Y��s�,�b.�XL����$�CT�'�=��݅�7���ӧ��6_�&tc�_=>�q�� �Cl�:��"�w���;l�l�v��� P���"�泽�g%G"ÇG"���!�a���H���G�D"��)p�7A�����汑��4xF�id$rX� �������23&9��a�h��@�ߝ�<��_�F惟
io���7�
?#���Bo$�F�͈3�7�M��򙾁�r]$b��m�_�\��p�X�q�d�Kb���A�ʼ.�\f+dF�f�Z�%dB:�� ���7��|'����\2��+௙�ԃc��������p�.�+�������;�� �����x\�G����$K�� ��a.�0��屡�a��,p� 9�r,D�p"�(�Y��"�F4�_��( ���t��X�U��KT��f�n��<͞�<!����73s6P‡[f�W���Gv�tl��n��Cx4=�M;�O5�pQw��)�y�
�%B� 'P�le1�C��q�E~O�����R�y���1���]�( �2v�|f+`�cc6���4�Of�26F!�!s��f�g0�%��J�Ma���Q�f0i9[7�I��I����Y�����0W�7o>Y�_? �%�y�,�M����l
�:�4V�beel�4�1��
sK��� � �}=so�`�Y�6�gۼ���lf^3�y>���� �La^/�? ����-e��3_[��I��g��I`1�} F�B�nDm��웥 R�m�=�� �e'Τ6� ���Ž2��� g5����S�$�G�����w��8ɫ�5�top{6��^�px���e'v��#{���\K&9��B��NوMR�/��}Y�0A��[U�2�!\ZF5��u�d[��E8����`�c�d�G���
���v�23�hV��;�33� o2L��z�<u�i�o�gT%�8�ZQUɻ���p��1�@pq
q�g³�yIUX6'�r0s�@+ ���?{���)ș�\l=�@��Z��x\R�� �����!<V)���2�逻���Ͼ�1�ՌUL��$�
Q�d�*�3��x.�q c���:�����Nڃ�����S~d`��W��� �'�'Uح�mෂ�J�KNKdI,� c�Y
�F�Ql4�ƲT��J
M˘>�Z�5�:{���h-���� W�2����h)�$��,8)��X��@��/����o��d�+�ܲ�Ϳa(��<yܲ��Z�w����n�_C9�Jr�M^���Y@/w���_�кf)��AS�%�c!$���r�P�]C���b��leCi��be���6�T/�<xR�cw��ؿ0}�]�۬
�|��fAؼ�T� ��fV����?����S���g^Np"���,$(|��n��|��q��3���Op*��W,!���cw�w���`B=���wf�%��` �|��^��;�"��^��>A�H0�`.�e�,%��z�M�|�x����?$��J��%x5�N%8���&���,%(�!��#��|����F������r��-��jr{G�
�8�(���
H9���0�/�6�U����p�Ȟ��V�E.��[�)+3,+��䉏bwB�G&���=�ABY�Px���`�"li@��(�Fx�Tf��ao�\n^.���i��
$���β<�Ĵ��C��n�JX��7��jX �hF�a�O�������* ߗd�@��ۆ8f��Q &�2ҘX��`��q������{�oX��U��,A�Yj��m~��p�Pb�E��2a�r0]6�Wr���0���P$�#�JƂR��/Ke+�B��cW�ۅ1+�� Beg���y`��קw�͒��O03'�=6���-��a_�g��k���+Ï�� �ǎ'���bE �3��_0��2�)I+d�H��J\=f������F�J���H 3{<^%1���]�1d����Kxg$���~G�9��N���e���B�N��.��S 'h�q_R�K���_�V*_SQ`�I+]�au�g@v��%|��+P�ד,��)���e` c�'���2�n���q��r|��W�t����K1ۄ�Q��lq2� �{�Y�`y�R�S��m�:=�Eй�mbV�R��<�M6X�:~<��-\6;�J9O%���m�Q���D;Y��'y��up��(�a�'Q-F'�Q�+�ʤ2�Z5�@[3 �ǣg&�����w��^��-�ے��n�t ��fd�'���\�r>>�1ڙT^D�qps��{W�%����$w���%y+��cmM�0՚���W����b.���M����th�t�������L��M�������u�� `�?�O�`(-d e��C�Pa�� ՅB��P{�#�� �i;�;2v����Q�#��mG��;-; wzw�v��l�ٱ�kg�N�+m�qWƮ�]�]����*w��
�j�վ�cW׮�])�����m�]��b������v�����}nw�㞌=�{V�)�S�'��i��=�{:�t� ����R�72�L ��†����ʆ������� � ] = �R����Y�ٍ��U�%����ƭ����ƶ��;�Í�YSZ�������&SӪ��&oSE�֦��PSS�������ΦpSOkNi�ll�h�j65[� �K�+�+��뛛�ۚۛ7w6w5�4�kNiIk1���d�d�XZV���x[�Z�[:Z:[zZX+�6����^Na+�q�JG�
*�NF�N!P��R�R�j9̩u����9��Қ֚ޚњ՚�Z��m�h�l��Z�Z�jmjmk=������՚�7m��ƽ�������ݺ�no�����{;�v��ڛ�/m��}�}��2�e�C�0�4����<� ��R@jƇ�����R�PK
It�? �AMETA-INF/��PK
Ht�?B.l?����+META-INF/MANIFEST.MFPK
It�?�A�jssc/PK
It�?�Alibs/PK
It�? �A2libs/linux/PK
It�?�A[libs/mac_os_x/PK
It�? �A�libs/solaris/PK
It�? �A�libs/windows/PK
It�?�p��/ ���jssc/SerialNativeInterface.classPK
It�?%GX����� jssc/SerialPort$1.classPK
It�?�x�z� !��� jssc/SerialPort$EventThread.classPK
It�?u�~ ' &��jssc/SerialPort$LinuxEventThread.classPK
It�?3���/��ljssc/SerialPort.classPK
It�?U�������*jssc/SerialPortEvent.classPK
It�?M-�D��"���-jssc/SerialPortEventListener.classPK
It�?c9������.jssc/SerialPortException.classPK
It�?Q�g(���j2jssc/SerialPortList$1.classPK
It�?sk[�v ����5jssc/SerialPortList.classPK
It�?%̻�5��Q?libs/linux/libjSSC-0.9_x86.soPK
It�?�5���8 ���Ulibs/linux/libjSSC-0.9_x86_64.soPK
It�?=���@8$���llibs/mac_os_x/libjSSC-0.9_ppc.jnilibPK
It�?'fo��8&���|libs/mac_os_x/libjSSC-0.9_ppc64.jnilibPK
It�?`�9�lG$���libs/mac_os_x/libjSSC-0.9_x86.jnilibPK
It�?t9H�`8'����libs/mac_os_x/libjSSC-0.9_x86_64.jnilibPK
It�?��U�t;����libs/solaris/libjSSC-0.9_x86.soPK
It�?�l��pO"����libs/solaris/libjSSC-0.9_x86_64.soPK
It�?3S%gn���(�libs/windows/jSSC-0.9_x86.dllPK
It�?���{n ���Qlibs/windows/jSSC-0.9_x86_64.dllPK���
jSSC-0.9.0 Release version (21.12.2011)
This version contains native libs for Windows(x86, x86-64), Linux(x86, x86-64), Solaris(x86, x86-64), Mac OS X(x86, x86-64, PPC, PPC64).
All native libs contains in the jssc.jar file and you don't need manage native libs manually.
In this build:
* Added Solaris support (x86, x86-64)
* Added Mac OS X support 10.5 and higher(x86, x86-64, PPC, PPC64)
* Fixed some bugs in Linux native part
* Changed openPort() method
Important Note:
openPort() method has been changed, now if port busy SerialPortException with type: TYPE_PORT_BUSY will be thrown,
and if port not found SerialPortException with type: TYPE_PORT_NOT_FOUND will be thrown.
It's possible to know that port is busy (TYPE_PORT_BUSY) by using TIOCEXCL directive in *nix native library,
but using of this directive make some troubles in Solaris OS, that's why TIOCEXCL not used in Solaris (!)
Be careful with it.
Also Solaris and Mac OS X versions of jSSC not support following events:
ERR, TXEMPTY, BREAK.
Solaris version not support non standard baudrates
Mac OS X version not support parity: MARK, SPACE.
* Included javadoc and source codes
With Best Regards, Sokolov Alexey.
============= Previous Builds ==============
/////////////////////////////////////////
//jSSC-0.8 Release version (28.11.2011)//
/////////////////////////////////////////
In this build:
* Implemented events BREAK and ERR (RXFLAG not supported in Linux)
* Added method sendBreak(int duration) - send Break signal for setted time
* Fixed bugs in Linux events listener
* Fixed bug with long port closing operation in Linux
/////////////////////////////
//jSSC-0.8-tb4 (21.11.2011)//
/////////////////////////////
In this build was fixed a bug in getPortNames() method under Linux.
Not implemented yet list:
* Events: BREAK, ERR and RXFLAG
/////////////////////////////
//jSSC-0.8-tb3 (09.09.2011)//
/////////////////////////////
In this build was implemented:
* purgePort()
And was fixed some Linux and Windows lib bugs.
New in this build:
* getInputBufferBytesCount() - get count of bytes in input buffer (if error has occured -1 will be returned)
* getOutputBufferBytesCount() - get count of bytes in output buffer (if error has occured -1 will be returned)
* setFlowControlMode() - setting flow control (available: FLOWCONTROL_NONE,
FLOWCONTROL_RTSCTS_IN,
FLOWCONTROL_RTSCTS_OUT,
FLOWCONTROL_XONXOFF_IN,
FLOWCONTROL_XONXOFF_OUT)
* getFlowControlMode() - getting setted flow control mode
Some "syntactic sugar" for more usability:
* writeByte() - write single byte
* writeString() - write string
* writeInt() - write int value (for example 0xFF)
* writeIntArray - write int array (for example new int[]{0xFF, 0x00, 0xFF})
* readString(int byteCount) - read string
* readHexString(int byteCount) - read Hex string with a space separator (for example "FF 00 FF")
* readHexString(int byteCount, String separator) - read Hex string with setted separator (for example if separator : "FF:00:FF")
* readHexStringArray(int byteCount) - read Hex string array (for example {FF, 00, FF})
* readIntArray(int byteCount) - read int array (values in int array are in range from 0 to 255
for example if byte == -1 value in this array it will be 255)
The following methods read all bytes in input buffer, if buffer is empty methods will return null
* readBytes()
* readString()
* readHexString()
* readHexString()
* readHexStringArray()
* readIntArray()
============================================
Not implemented yet list:
* Events: BREAK, ERR and RXFLAG
///////////////////////////////
// jSSC-0.8-tb2 (14.07.2011) //
///////////////////////////////
In this build was implemented:
* getPortNames()
* Parity: MARK and SPACE
And was fixed some Linux lib bugs.
Not implemented yet list:
* purgePort()
* Events: BREAK, ERR and RXFLAG
///////////////////////////////
// jSSC-0.8-tb1 (11.07.2011) //
///////////////////////////////
Not implemented yet list:
* getPortNames()
* Parity: MARK and SPACE
* purgePort()
* Events: BREAK, ERR and RXFLAG
/* jSSC (Java Simple Serial Connector) - serial port communication library.
* � Alexey Sokolov (scream3r), 2010-2011.
*
* This file is part of jSSC.
*
* jSSC 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 3 of the License, or
* (at your option) any later version.
*
* jSSC 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 jSSC. If not, see <http://www.gnu.org/licenses/>.
*
* If you use jSSC in public project you can inform me about this by e-mail,
* of course if you want it.
*
* e-mail: scream3r.org@gmail.com
* web-site: http://scream3r.org | http://code.google.com/p/java-simple-serial-connector/
*/
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class jssc_SerialNativeInterface */
#ifndef _Included_jssc_SerialNativeInterface
#define _Included_jssc_SerialNativeInterface
#ifdef __cplusplus
extern "C" {
#endif
#undef jssc_SerialNativeInterface_OS_LINUX
#define jssc_SerialNativeInterface_OS_LINUX 0L
#undef jssc_SerialNativeInterface_OS_WINDOWS
#define jssc_SerialNativeInterface_OS_WINDOWS 1L
#undef jssc_SerialNativeInterface_OS_SOLARIS
#define jssc_SerialNativeInterface_OS_SOLARIS 2L
#undef jssc_SerialNativeInterface_OS_MAC_OS_X
#define jssc_SerialNativeInterface_OS_MAC_OS_X 3L
/*
* Class: jssc_SerialNativeInterface
* Method: openPort
* Signature: (Ljava/lang/String;)I
*/
JNIEXPORT jint JNICALL Java_jssc_SerialNativeInterface_openPort
(JNIEnv *, jobject, jstring);
/*
* Class: jssc_SerialNativeInterface
* Method: setParams
* Signature: (IIIIIZZ)Z
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setParams
(JNIEnv *, jobject, jint, jint, jint, jint, jint, jboolean, jboolean);
/*
* Class: jssc_SerialNativeInterface
* Method: purgePort
* Signature: (II)Z
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_purgePort
(JNIEnv *, jobject, jint, jint);
/*
* Class: jssc_SerialNativeInterface
* Method: closePort
* Signature: (I)Z
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_closePort
(JNIEnv *, jobject, jint);
/*
* Class: jssc_SerialNativeInterface
* Method: setEventsMask
* Signature: (II)Z
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setEventsMask
(JNIEnv *, jobject, jint, jint);
/*
* Class: jssc_SerialNativeInterface
* Method: getEventsMask
* Signature: (I)I
*/
JNIEXPORT jint JNICALL Java_jssc_SerialNativeInterface_getEventsMask
(JNIEnv *, jobject, jint);
/*
* Class: jssc_SerialNativeInterface
* Method: waitEvents
* Signature: (I)[[I
*/
JNIEXPORT jobjectArray JNICALL Java_jssc_SerialNativeInterface_waitEvents
(JNIEnv *, jobject, jint);
/*
* Class: jssc_SerialNativeInterface
* Method: setRTS
* Signature: (IZ)Z
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setRTS
(JNIEnv *, jobject, jint, jboolean);
/*
* Class: jssc_SerialNativeInterface
* Method: setDTR
* Signature: (IZ)Z
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setDTR
(JNIEnv *, jobject, jint, jboolean);
/*
* Class: jssc_SerialNativeInterface
* Method: readBytes
* Signature: (II)[B
*/
JNIEXPORT jbyteArray JNICALL Java_jssc_SerialNativeInterface_readBytes
(JNIEnv *, jobject, jint, jint);
/*
* Class: jssc_SerialNativeInterface
* Method: writeBytes
* Signature: (I[B)Z
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_writeBytes
(JNIEnv *, jobject, jint, jbyteArray);
/*
* Class: jssc_SerialNativeInterface
* Method: getBuffersBytesCount
* Signature: (I)[I
*/
JNIEXPORT jintArray JNICALL Java_jssc_SerialNativeInterface_getBuffersBytesCount
(JNIEnv *, jobject, jint);
/*
* Class: jssc_SerialNativeInterface
* Method: setFlowControlMode
* Signature: (II)Z
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setFlowControlMode
(JNIEnv *, jobject, jint, jint);
/*
* Class: jssc_SerialNativeInterface
* Method: getFlowControlMode
* Signature: (I)I
*/
JNIEXPORT jint JNICALL Java_jssc_SerialNativeInterface_getFlowControlMode
(JNIEnv *, jobject, jint);
/*
* Class: jssc_SerialNativeInterface
* Method: getSerialPortNames
* Signature: ()[Ljava/lang/String;
*/
JNIEXPORT jobjectArray JNICALL Java_jssc_SerialNativeInterface_getSerialPortNames
(JNIEnv *, jobject);
/*
* Class: jssc_SerialNativeInterface
* Method: getLinesStatus
* Signature: (I)[I
*/
JNIEXPORT jintArray JNICALL Java_jssc_SerialNativeInterface_getLinesStatus
(JNIEnv *, jobject, jint);
/*
* Class: jssc_SerialNativeInterface
* Method: sendBreak
* Signature: (II)Z
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_sendBreak
(JNIEnv *, jobject, jint, jint);
#ifdef __cplusplus
}
#endif
#endif
/* jSSC (Java Simple Serial Connector) - serial port communication library.
* © Alexey Sokolov (scream3r), 2010-2011.
*
* This file is part of jSSC.
*
* jSSC 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 3 of the License, or
* (at your option) any later version.
*
* jSSC 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 jSSC. If not, see <http://www.gnu.org/licenses/>.
*
* If you use jSSC in public project you can inform me about this by e-mail,
* of course if you want it.
*
* e-mail: scream3r.org@gmail.com
* web-site: http://scream3r.org | http://code.google.com/p/java-simple-serial-connector/
*/
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <termios.h>
#include <time.h>
#include <errno.h>//-D_TS_ERRNO use for Solaris C++ compiler
#ifdef __linux__
#include <linux/serial.h>
#endif
#ifdef __SunOS
#include <sys/filio.h>//Needed for FIONREAD in Solaris
#endif
#ifdef __APPLE__
#include <serial/ioss.h>//Needed for IOSSIOSPEED in Mac OS X (Non standard baudrate)
#endif
#include <jni.h>
#include "jssc_SerialNativeInterface.h"
//#include <iostream.h> //-lCstd use for Solaris linker
/* OK */
/* Port opening */
JNIEXPORT jint JNICALL Java_jssc_SerialNativeInterface_openPort(JNIEnv *env, jobject object, jstring portName){
const char* port = env->GetStringUTFChars(portName, JNI_FALSE);
jint hComm;
hComm = open(port, O_RDWR | O_NOCTTY | O_NDELAY);
if(hComm != -1){
#if defined TIOCEXCL && !defined __SunOS
ioctl(hComm, TIOCEXCL);//since 0.9
#endif
int flags = fcntl(hComm, F_GETFL, 0);
flags &= ~O_NDELAY;
fcntl(hComm, F_SETFL, flags);
}
else {//since 0.9 ->
if(errno == EBUSY){//Port busy
hComm = -1;
}
else if(errno == ENOENT){//Port not found
hComm = -2;
}
}//<- since 0.9
env->ReleaseStringUTFChars(portName, port);
return hComm;
}
/* OK */
/*
* Choose baudrate
*/
speed_t getBaudRateByNum(jint baudRate) {
switch(baudRate){
case 0:
return B0;
case 50:
return B50;
case 75:
return B75;
case 110:
return B110;
case 134:
return B134;
case 150:
return B150;
case 200:
return B200;
case 300:
return B300;
case 600:
return B600;
case 1200:
return B1200;
case 1800:
return B1800;
case 2400:
return B2400;
case 4800:
return B4800;
case 9600:
return B9600;
case 19200:
return B19200;
case 38400:
return B38400;
#ifdef B57600
case 57600:
return B57600;
#endif
#ifdef B115200
case 115200:
return B115200;
#endif
#ifdef B230400
case 230400:
return B230400;
#endif
#ifdef B460800
case 460800:
return B460800;
#endif
#ifdef B500000
case 500000:
return B500000;
#endif
#ifdef B576000
case 576000:
return B576000;
#endif
#ifdef B921600
case 921600:
return B921600;
#endif
#ifdef B1000000
case 1000000:
return B1000000;
#endif
#ifdef B1152000
case 1152000:
return B1152000;
#endif
#ifdef B1500000
case 1500000:
return B1500000;
#endif
#ifdef B2000000
case 2000000:
return B2000000;
#endif
#ifdef B2500000
case 2500000:
return B2500000;
#endif
#ifdef B3000000
case 3000000:
return B3000000;
#endif
#ifdef B3500000
case 3500000:
return B3500000;
#endif
#ifdef B4000000
case 4000000:
return B4000000;
#endif
default:
return -1;
}
}
/* OK */
/*
* Choose data bits
*/
int getDataBitsByNum(jint byteSize) {
switch(byteSize){
case 5:
return CS5;
case 6:
return CS6;
case 7:
return CS7;
case 8:
return CS8;
default:
return -1;
}
}
/* OK */
/*
* Set serial port settings
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setParams
(JNIEnv *env, jobject object, jint portHandle, jint baudRate, jint byteSize, jint stopBits, jint parity, jboolean setRTS, jboolean setDTR){
jboolean returnValue = JNI_FALSE;
speed_t baudRateValue = getBaudRateByNum(baudRate);
int dataBits = getDataBitsByNum(byteSize);
termios *settings = new termios();
if(tcgetattr(portHandle, settings) == 0){
if(baudRateValue != -1){
//Set standart baudrate from "termios.h"
if(cfsetispeed(settings, baudRateValue) < 0 || cfsetospeed(settings, baudRateValue) < 0){
goto methodEnd;
}
}
else {
#ifdef __SunOS
goto methodEnd;//Solaris don't support non standart baudrates
#elif defined __linux__
//Try to calculate a divisor for setting non standart baudrate
serial_struct *serial_info = new serial_struct();
if(ioctl(portHandle, TIOCGSERIAL, serial_info) < 0){ //Getting serial_info structure
delete serial_info;
goto methodEnd;
}
else {
serial_info->flags |= ASYNC_SPD_CUST;
serial_info->custom_divisor = (serial_info->baud_base/baudRate); //Calculate divisor
if(serial_info->custom_divisor == 0){ //If divisor == 0 go to method end to prevent "division by zero" error
delete serial_info;
goto methodEnd;
}
settings->c_cflag |= B38400;
if(cfsetispeed(settings, B38400) < 0 || cfsetospeed(settings, B38400) < 0){
delete serial_info;
goto methodEnd;
}
if(ioctl(portHandle, TIOCSSERIAL, serial_info) < 0){//Try to set new settings with non standart baudrate
delete serial_info;
goto methodEnd;
}
delete serial_info;
}
#endif
}
}
/*
* Setting data bits
*/
if(dataBits != -1){
settings->c_cflag &= ~CSIZE;
settings->c_cflag |= dataBits;
}
else {
goto methodEnd;
}
/*
* Setting stop bits
*/
if(stopBits == 0){ //1 stop bit (for info see ->> MSDN)
settings->c_cflag &= ~CSTOPB;
}
else if((stopBits == 1) || (stopBits == 2)){ //1 == 1.5 stop bits; 2 == 2 stop bits (for info see ->> MSDN)
settings->c_cflag |= CSTOPB;
}
else {
goto methodEnd;
}
settings->c_cflag |= (CREAD | CLOCAL);
settings->c_cflag &= ~CRTSCTS;
settings->c_lflag &= ~(ICANON | ECHO | ECHOE | ECHOK | ECHONL | ECHOCTL | ECHOPRT | ECHOKE | ISIG | IEXTEN);
settings->c_iflag &= ~(IXON | IXOFF | IXANY | INPCK | PARMRK | ISTRIP | IGNBRK | BRKINT | INLCR | IGNCR| ICRNL);
#ifdef IUCLC
settings->c_iflag &= ~IUCLC;
#endif
settings->c_oflag &= ~OPOST;
//since 0.9 ->
settings->c_cc[VMIN] = 0;
settings->c_cc[VTIME] = 0;
//<- since 0.9
/*
* Parity bits
*/
#ifdef PAREXT
settings->c_cflag &= ~(PARENB | PARODD | PAREXT);//Clear parity settings
#elif defined CMSPAR
settings->c_cflag &= ~(PARENB | PARODD | CMSPAR);//Clear parity settings
#else
settings->c_cflag &= ~(PARENB | PARODD);//Clear parity settings
#endif
if(parity == 1){//Parity ODD
settings->c_cflag |= (PARENB | PARODD);
settings->c_iflag |= INPCK;
}
else if(parity == 2){//Parity EVEN
settings->c_cflag |= PARENB;
settings->c_iflag |= INPCK;
}
else if(parity == 3){//Parity MARK
#ifdef PAREXT
settings->c_cflag |= (PARENB | PARODD | PAREXT);
settings->c_iflag |= INPCK;
#elif defined CMSPAR
settings->c_cflag |= (PARENB | PARODD | CMSPAR);
settings->c_iflag |= INPCK;
#endif
}
else if(parity == 4){//Parity SPACE
#ifdef PAREXT
settings->c_cflag |= (PARENB | PAREXT);
settings->c_iflag |= INPCK;
#elif defined CMSPAR
settings->c_cflag |= (PARENB | CMSPAR);
settings->c_iflag |= INPCK;
#endif
}
else if(parity == 0){
//Do nothing (Parity NONE)
}
else {
goto methodEnd;
}
if(tcsetattr(portHandle, TCSANOW, settings) == 0){//Try to set all settings
#ifdef __APPLE__
//Try to set non-standard baud rate in Mac OS X
if(baudRateValue == -1){
speed_t speed = (speed_t)baudRate;
if(ioctl(portHandle, IOSSIOSPEED, &speed) < 0){//IOSSIOSPEED must be used only after tcsetattr
goto methodEnd;
}
}
#endif
int lineStatus;
if(ioctl(portHandle, TIOCMGET, &lineStatus) >= 0){
if(setRTS == JNI_TRUE){
lineStatus |= TIOCM_RTS;
}
else {
lineStatus &= ~TIOCM_RTS;
}
if(setDTR == JNI_TRUE){
lineStatus |= TIOCM_DTR;
}
else {
lineStatus &= ~TIOCM_DTR;
}
if(ioctl(portHandle, TIOCMSET, &lineStatus) >= 0){
returnValue = JNI_TRUE;
}
}
}
methodEnd: {
delete settings;
return returnValue;
}
}
const jint PURGE_RXABORT = 0x0002; //ignored
const jint PURGE_RXCLEAR = 0x0008;
const jint PURGE_TXABORT = 0x0001; //ignored
const jint PURGE_TXCLEAR = 0x0004;
/* OK */
/*
* PurgeComm
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_purgePort
(JNIEnv *env, jobject object, jint portHandle, jint flags){
int clearValue = -1;
if((flags & PURGE_RXCLEAR) && (flags & PURGE_TXCLEAR)){
clearValue = TCIOFLUSH;
}
else if(flags & PURGE_RXCLEAR) {
clearValue = TCIFLUSH;
}
else if(flags & PURGE_TXCLEAR) {
clearValue = TCOFLUSH;
}
else if((flags & PURGE_RXABORT) || (flags & PURGE_TXABORT)){
return JNI_TRUE;
}
else {
return JNI_FALSE;
}
return tcflush(portHandle, clearValue) == 0 ? JNI_TRUE : JNI_FALSE;
}
/* OK */
/* Closing the port */
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_closePort
(JNIEnv *env, jobject object, jint portHandle){
return close(portHandle) == 0 ? JNI_TRUE : JNI_FALSE;
}
/* OK */
/*
* Setting events mask
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setEventsMask
(JNIEnv *env, jobject object, jint portHandle, jint mask){
//Don't needed in linux, implemented in java code
return JNI_TRUE;
}
/* OK */
/*
* Getting events mask
*/
JNIEXPORT jint JNICALL Java_jssc_SerialNativeInterface_getEventsMask
(JNIEnv *env, jobject object, jint portHandle){
//Don't needed in linux, implemented in java code
return -1;
}
/* OK */
/*
* RTS line status changing (ON || OFF)
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setRTS
(JNIEnv *env, jobject object, jint portHandle, jboolean enabled){
int returnValue = 0;
int lineStatus;
ioctl(portHandle, TIOCMGET, &lineStatus);
if(enabled == JNI_TRUE){
lineStatus |= TIOCM_RTS;
}
else {
lineStatus &= ~TIOCM_RTS;
}
returnValue = ioctl(portHandle, TIOCMSET, &lineStatus);
return (returnValue >= 0 ? JNI_TRUE : JNI_FALSE);
}
/* OK */
/*
* DTR line status changing (ON || OFF)
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setDTR
(JNIEnv *env, jobject object, jint portHandle, jboolean enabled){
int returnValue = 0;
int lineStatus;
ioctl(portHandle, TIOCMGET, &lineStatus);
if(enabled == JNI_TRUE){
lineStatus |= TIOCM_DTR;
}
else {
lineStatus &= ~TIOCM_DTR;
}
returnValue = ioctl(portHandle, TIOCMSET, &lineStatus);
return (returnValue >= 0 ? JNI_TRUE : JNI_FALSE);
}
/* OK */
/*
* Writing data to the port
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_writeBytes
(JNIEnv *env, jobject object, jint portHandle, jbyteArray buffer){
jbyte* jBuffer = env->GetByteArrayElements(buffer, JNI_FALSE);
jint bufferSize = env->GetArrayLength(buffer);
jint result = write(portHandle, jBuffer, (size_t)bufferSize);
env->ReleaseByteArrayElements(buffer, jBuffer, 0);
return result == bufferSize ? JNI_TRUE : JNI_FALSE;
}
/* OK */
/*
* Reading data from the port
*/
JNIEXPORT jbyteArray JNICALL Java_jssc_SerialNativeInterface_readBytes
(JNIEnv *env, jobject object, jint portHandle, jint byteCount){
#ifdef __SunOS
jbyte *lpBuffer = new jbyte[byteCount];//Need for CC compiler
read(portHandle, lpBuffer, byteCount);
#else
jbyte lpBuffer[byteCount];
read(portHandle, &lpBuffer, byteCount);
#endif
jbyteArray returnArray = env->NewByteArray(byteCount);
env->SetByteArrayRegion(returnArray, 0, byteCount, lpBuffer);
#ifdef __SunOS
delete(lpBuffer);
#endif
return returnArray;
}
/* OK */
/*
* Get bytes count in serial port buffers (Input and Output)
*/
JNIEXPORT jintArray JNICALL Java_jssc_SerialNativeInterface_getBuffersBytesCount
(JNIEnv *env, jobject object, jint portHandle){
jint returnValues[2];
returnValues[0] = -1; //Input buffer
returnValues[1] = -1; //Output buffer
jintArray returnArray = env->NewIntArray(2);
ioctl(portHandle, FIONREAD, &returnValues[0]);
ioctl(portHandle, TIOCOUTQ, &returnValues[1]);
env->SetIntArrayRegion(returnArray, 0, 2, returnValues);
return returnArray;
}
const jint FLOWCONTROL_NONE = 0;
const jint FLOWCONTROL_RTSCTS_IN = 1;
const jint FLOWCONTROL_RTSCTS_OUT = 2;
const jint FLOWCONTROL_XONXOFF_IN = 4;
const jint FLOWCONTROL_XONXOFF_OUT = 8;
/* OK */
/*
* Setting flow control mode
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setFlowControlMode
(JNIEnv *env, jobject object, jint portHandle, jint mask){
jboolean returnValue = JNI_FALSE;
termios *settings = new termios();
if(tcgetattr(portHandle, settings) == 0){
settings->c_cflag &= ~CRTSCTS;
settings->c_iflag &= ~(IXON | IXOFF);
if(mask != FLOWCONTROL_NONE){
if(((mask & FLOWCONTROL_RTSCTS_IN) == FLOWCONTROL_RTSCTS_IN) || ((mask & FLOWCONTROL_RTSCTS_OUT) == FLOWCONTROL_RTSCTS_OUT)){
settings->c_cflag |= CRTSCTS;
}
if((mask & FLOWCONTROL_XONXOFF_IN) == FLOWCONTROL_XONXOFF_IN){
settings->c_iflag |= IXOFF;
}
if((mask & FLOWCONTROL_XONXOFF_OUT) == FLOWCONTROL_XONXOFF_OUT){
settings->c_iflag |= IXON;
}
}
if(tcsetattr(portHandle, TCSANOW, settings) == 0){
returnValue = JNI_TRUE;
}
}
delete settings;
return returnValue;
}
/* OK */
/*
* Getting flow control mode
*/
JNIEXPORT jint JNICALL Java_jssc_SerialNativeInterface_getFlowControlMode
(JNIEnv *env, jobject object, jint portHandle){
jint returnValue = 0;
termios *settings = new termios();
if(tcgetattr(portHandle, settings) == 0){
if(settings->c_cflag & CRTSCTS){
returnValue |= (FLOWCONTROL_RTSCTS_IN | FLOWCONTROL_RTSCTS_OUT);
}
if(settings->c_iflag & IXOFF){
returnValue |= FLOWCONTROL_XONXOFF_IN;
}
if(settings->c_iflag & IXON){
returnValue |= FLOWCONTROL_XONXOFF_OUT;
}
}
return returnValue;
}
/* OK */
/*
* Send break for setted duration
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_sendBreak
(JNIEnv *env, jobject object, jint portHandle, jint duration){
jboolean returnValue = JNI_FALSE;
if(duration > 0){
if(ioctl(portHandle, TIOCSBRK, 0) >= 0){
int sec = (duration >= 1000 ? duration/1000 : 0);
int nanoSec = (sec > 0 ? duration - sec*1000 : duration)*1000000;
struct timespec *timeStruct = new timespec();
timeStruct->tv_sec = sec;
timeStruct->tv_nsec = nanoSec;
nanosleep(timeStruct, NULL);
delete(timeStruct);
if(ioctl(portHandle, TIOCCBRK, 0) >= 0){
returnValue = JNI_TRUE;
}
}
}
return returnValue;
}
/* OK */
/*
* Return "statusLines" from ioctl(portHandle, TIOCMGET, &statusLines)
* Need for "_waitEvents" and "_getLinesStatus"
*/
int getLinesStatus(jint portHandle) {
int statusLines;
ioctl(portHandle, TIOCMGET, &statusLines);
return statusLines;
}
/* OK */
/*
* Not supported in Solaris and Mac OS X
*
* Get interrupts count for:
* 0 - Break(for BREAK event)
* 1 - TX(for TXEMPTY event)
* --ERRORS(for ERR event)--
* 2 - Frame
* 3 - Overrun
* 4 - Parity
*/
void getInterruptsCount(jint portHandle, int intArray[]) {
#ifdef TIOCGICOUNT
struct serial_icounter_struct *icount = new serial_icounter_struct();
if(ioctl(portHandle, TIOCGICOUNT, icount) >= 0){
intArray[0] = icount->brk;
intArray[1] = icount->tx;
intArray[2] = icount->frame;
intArray[3] = icount->overrun;
intArray[4] = icount->parity;
}
delete icount;
#endif
}
const jint INTERRUPT_BREAK = 512;
const jint INTERRUPT_TX = 1024;
const jint INTERRUPT_FRAME = 2048;
const jint INTERRUPT_OVERRUN = 4096;
const jint INTERRUPT_PARITY = 8192;
const jint EV_CTS = 8;
const jint EV_DSR = 16;
const jint EV_RING = 256;
const jint EV_RLSD = 32;
const jint EV_RXCHAR = 1;
//const jint EV_RXFLAG = 2; //Not supported
const jint EV_TXEMPTY = 4;
const jint events[] = {INTERRUPT_BREAK,
INTERRUPT_TX,
INTERRUPT_FRAME,
INTERRUPT_OVERRUN,
INTERRUPT_PARITY,
EV_CTS,
EV_DSR,
EV_RING,
EV_RLSD,
EV_RXCHAR,
//EV_RXFLAG, //Not supported
EV_TXEMPTY};
/* OK */
/*
* Collecting data for EventListener class (Linux have no implementation of "WaitCommEvent" function from Windows)
*
*/
JNIEXPORT jobjectArray JNICALL Java_jssc_SerialNativeInterface_waitEvents
(JNIEnv *env, jobject object, jint portHandle) {
jclass intClass = env->FindClass("[I");
jobjectArray returnArray = env->NewObjectArray(sizeof(events)/sizeof(jint), intClass, NULL);
/*Input buffer*/
jint bytesCountIn = 0;
ioctl(portHandle, FIONREAD, &bytesCountIn);
/*Output buffer*/
jint bytesCountOut = 0;
ioctl(portHandle, TIOCOUTQ, &bytesCountOut);
/*Lines status*/
int statusLines = getLinesStatus(portHandle);
jint statusCTS = 0;
jint statusDSR = 0;
jint statusRING = 0;
jint statusRLSD = 0;
/*CTS status*/
if(statusLines & TIOCM_CTS){
statusCTS = 1;
}
/*DSR status*/
if(statusLines & TIOCM_DSR){
statusDSR = 1;
}
/*RING status*/
if(statusLines & TIOCM_RNG){
statusRING = 1;
}
/*RLSD(DCD) status*/
if(statusLines & TIOCM_CAR){
statusRLSD = 1;
}
/*Interrupts*/
int interrupts[] = {-1, -1, -1, -1, -1};
getInterruptsCount(portHandle, interrupts);
jint interruptBreak = interrupts[0];
jint interruptTX = interrupts[1];
jint interruptFrame = interrupts[2];
jint interruptOverrun = interrupts[3];
jint interruptParity = interrupts[4];
for(int i = 0; i < sizeof(events)/sizeof(jint); i++){
jint returnValues[2];
switch(events[i]) {
case INTERRUPT_BREAK: //Interrupt Break - for BREAK event
returnValues[1] = interruptBreak;
goto forEnd;
case INTERRUPT_TX: //Interrupt TX - for TXEMPTY event
returnValues[1] = interruptTX;
goto forEnd;
case INTERRUPT_FRAME: //Interrupt Frame - for ERR event
returnValues[1] = interruptFrame;
goto forEnd;
case INTERRUPT_OVERRUN: //Interrupt Overrun - for ERR event
returnValues[1] = interruptOverrun;
goto forEnd;
case INTERRUPT_PARITY: //Interrupt Parity - for ERR event
returnValues[1] = interruptParity;
goto forEnd;
case EV_CTS:
returnValues[1] = statusCTS;
goto forEnd;
case EV_DSR:
returnValues[1] = statusDSR;
goto forEnd;
case EV_RING:
returnValues[1] = statusRING;
goto forEnd;
case EV_RLSD: /*DCD*/
returnValues[1] = statusRLSD;
goto forEnd;
case EV_RXCHAR:
returnValues[1] = bytesCountIn;
goto forEnd;
/*case EV_RXFLAG: // Event RXFLAG - Not supported
returnValues[0] = EV_RXFLAG;
returnValues[1] = 0;
goto forEnd;*/
case EV_TXEMPTY:
returnValues[1] = bytesCountOut;
goto forEnd;
}
forEnd: {
returnValues[0] = events[i];
jintArray singleResultArray = env->NewIntArray(2);
env->SetIntArrayRegion(singleResultArray, 0, 2, returnValues);
env->SetObjectArrayElement(returnArray, i, singleResultArray);
};
}
return returnArray;
}
/* OK */
/*
* Getting serial ports names like an a String array (String[])
*/
JNIEXPORT jobjectArray JNICALL Java_jssc_SerialNativeInterface_getSerialPortNames
(JNIEnv *env, jobject object){
//Don't needed in linux, implemented in java code (Note: null will be returned)
return NULL;
}
/* OK */
/*
* Getting lines status
*
* returnValues[0] - CTS
* returnValues[1] - DSR
* returnValues[2] - RING
* returnValues[3] - RLSD(DCD)
*/
JNIEXPORT jintArray JNICALL Java_jssc_SerialNativeInterface_getLinesStatus
(JNIEnv *env, jobject object, jint portHandle){
jint returnValues[4];
for(jint i = 0; i < 4; i++){
returnValues[i] = 0;
}
jintArray returnArray = env->NewIntArray(4);
/*Lines status*/
int statusLines = getLinesStatus(portHandle);
/*CTS status*/
if(statusLines & TIOCM_CTS){
returnValues[0] = 1;
}
/*DSR status*/
if(statusLines & TIOCM_DSR){
returnValues[1] = 1;
}
/*RING status*/
if(statusLines & TIOCM_RNG){
returnValues[2] = 1;
}
/*RLSD(DCD) status*/
if(statusLines & TIOCM_CAR){
returnValues[3] = 1;
}
env->SetIntArrayRegion(returnArray, 0, 4, returnValues);
return returnArray;
}
/* jSSC (Java Simple Serial Connector) - serial port communication library.
* � Alexey Sokolov (scream3r), 2010-2011.
*
* This file is part of jSSC.
*
* jSSC 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 3 of the License, or
* (at your option) any later version.
*
* jSSC 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 jSSC. If not, see <http://www.gnu.org/licenses/>.
*
* If you use jSSC in public project you can inform me about this by e-mail,
* of course if you want it.
*
* e-mail: scream3r.org@gmail.com
* web-site: http://scream3r.org | http://code.google.com/p/java-simple-serial-connector/
*/
#include <jni.h>
#include <stdlib.h>
#include <windows.h>
#include "jssc_SerialNativeInterface.h"
/*
* Port opening.
*/
JNIEXPORT jint JNICALL Java_jssc_SerialNativeInterface_openPort(JNIEnv *env, jobject object, jstring portName){
char prefix[] = "\\\\.\\";
const char* port = env->GetStringUTFChars(portName, JNI_FALSE);
strcat(prefix, port);
HANDLE hComm;
hComm = CreateFile(prefix,
GENERIC_READ | GENERIC_WRITE,
0,
0,
OPEN_EXISTING,
FILE_FLAG_OVERLAPPED,
0);
env->ReleaseStringUTFChars(portName, port);
//since 0.9 ->
if(hComm == INVALID_HANDLE_VALUE){
DWORD errorValue = GetLastError();
if(errorValue == ERROR_ACCESS_DENIED){
hComm = (HANDLE)-1;//Port busy
}
else if(errorValue == ERROR_FILE_NOT_FOUND){
hComm = (HANDLE)-2;//Port not found
}
}
//<- since 0.9
#if defined(_X86_)
return (jint)hComm;
#elif defined(__x86_64)
return (intptr_t)hComm;
#endif
};
/*
* Setting serial port params.
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setParams
(JNIEnv *env, jobject object, jint portHandle, jint baudRate, jint byteSize, jint stopBits, jint parity, jboolean setRTS, jboolean setDTR){
HANDLE hComm = (HANDLE)portHandle;
DCB *dcb = new DCB();
jboolean returnValue = JNI_FALSE;
if(GetCommState(hComm, dcb)){
dcb->BaudRate = baudRate;
dcb->ByteSize = byteSize;
dcb->StopBits = stopBits;
dcb->Parity = parity;
//since 0.8 ->
if(setRTS == JNI_TRUE){
dcb->fRtsControl = RTS_CONTROL_ENABLE;
}
else {
dcb->fRtsControl = RTS_CONTROL_DISABLE;
}
if(setDTR == JNI_TRUE){
dcb->fDtrControl = DTR_CONTROL_ENABLE;
}
else {
dcb->fDtrControl = DTR_CONTROL_DISABLE;
}
dcb->fOutxCtsFlow = FALSE;
dcb->fOutxDsrFlow = FALSE;
dcb->fDsrSensitivity = FALSE;
dcb->fTXContinueOnXoff = TRUE;
dcb->fOutX = FALSE;
dcb->fInX = FALSE;
dcb->fErrorChar = FALSE;
dcb->fNull = FALSE;
dcb->fAbortOnError = FALSE;
dcb->XonLim = 2048;
dcb->XoffLim = 512;
dcb->XonChar = (char)17; //DC1
dcb->XoffChar = (char)19; //DC3
//<- since 0.8
if(SetCommState(hComm, dcb)){
returnValue = JNI_TRUE;
}
}
delete dcb;
return returnValue;
}
/*
* PurgeComm
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_purgePort
(JNIEnv *env, jobject object, jint portHandle, jint flags){
HANDLE hComm = (HANDLE)portHandle;
DWORD dwFlags = (DWORD)flags;
return (PurgeComm(hComm, dwFlags) ? JNI_TRUE : JNI_FALSE);
}
/*
* Port closing
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_closePort
(JNIEnv *env, jobject object, jint portHandle){
HANDLE hComm = (HANDLE)portHandle;
return (CloseHandle(hComm) ? JNI_TRUE : JNI_FALSE);
}
/*
* Set events mask
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setEventsMask
(JNIEnv *env, jobject object, jint portHandle, jint mask){
HANDLE hComm = (HANDLE)portHandle;
DWORD dwEvtMask = (DWORD)mask;
return (SetCommMask(hComm, dwEvtMask) ? JNI_TRUE : JNI_FALSE);
}
/*
* Get events mask
*/
JNIEXPORT jint JNICALL Java_jssc_SerialNativeInterface_getEventsMask
(JNIEnv *env, jobject object, jint portHandle){
HANDLE hComm = (HANDLE)portHandle;
DWORD lpEvtMask;
if(GetCommMask(hComm, &lpEvtMask)){
return (jint)lpEvtMask;
}
else {
return -1;
}
}
/*
* Change RTS line state (ON || OFF)
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setRTS
(JNIEnv *env, jobject object, jint portHandle, jboolean enabled){
HANDLE hComm = (HANDLE)portHandle;
if(enabled == JNI_TRUE){
return (EscapeCommFunction(hComm, SETRTS) ? JNI_TRUE : JNI_FALSE);
}
else {
return (EscapeCommFunction(hComm, CLRRTS) ? JNI_TRUE : JNI_FALSE);
}
}
/*
* Change DTR line state (ON || OFF)
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setDTR
(JNIEnv *env, jobject object, jint portHandle, jboolean enabled){
HANDLE hComm = (HANDLE)portHandle;
if(enabled == JNI_TRUE){
return (EscapeCommFunction(hComm, SETDTR) ? JNI_TRUE : JNI_FALSE);
}
else {
return (EscapeCommFunction(hComm, CLRDTR) ? JNI_TRUE : JNI_FALSE);
}
}
/*
* Write data to port
* portHandle - port handle
* buffer - byte array for sending
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_writeBytes
(JNIEnv *env, jobject object, jint portHandle, jbyteArray buffer){
HANDLE hComm = (HANDLE)portHandle;
DWORD lpNumberOfBytesTransferred;
DWORD lpNumberOfBytesWritten;
OVERLAPPED *overlapped = new OVERLAPPED();
jboolean returnValue = JNI_FALSE;
jbyte* jBuffer = env->GetByteArrayElements(buffer, JNI_FALSE);
overlapped->hEvent = CreateEventA(NULL, true, false, NULL);
if(WriteFile(hComm, jBuffer, (DWORD)env->GetArrayLength(buffer), &lpNumberOfBytesWritten, overlapped)){
returnValue = JNI_TRUE;
}
else if(GetLastError() == ERROR_IO_PENDING){
if(WaitForSingleObject(overlapped->hEvent, INFINITE) == WAIT_OBJECT_0){
if(GetOverlappedResult(hComm, overlapped, &lpNumberOfBytesTransferred, false)){
returnValue = JNI_TRUE;
}
}
}
env->ReleaseByteArrayElements(buffer, jBuffer, 0);
CloseHandle(overlapped->hEvent);
delete overlapped;
return returnValue;
}
/*
* Read data from port
* portHandle - port handle
* byteCount - count of bytes for reading
*/
JNIEXPORT jbyteArray JNICALL Java_jssc_SerialNativeInterface_readBytes
(JNIEnv *env, jobject object, jint portHandle, jint byteCount){
HANDLE hComm = (HANDLE)portHandle;
DWORD lpNumberOfBytesTransferred;
DWORD lpNumberOfBytesRead;
OVERLAPPED *overlapped = new OVERLAPPED();
jbyte lpBuffer[byteCount];
jbyteArray returnArray = env->NewByteArray(byteCount);
overlapped->hEvent = CreateEventA(NULL, true, false, NULL);
if(ReadFile(hComm, lpBuffer, (DWORD)byteCount, &lpNumberOfBytesRead, overlapped)){
env->SetByteArrayRegion(returnArray, 0, byteCount, lpBuffer);
}
else if(GetLastError() == ERROR_IO_PENDING){
if(WaitForSingleObject(overlapped->hEvent, INFINITE) == WAIT_OBJECT_0){
if(GetOverlappedResult(hComm, overlapped, &lpNumberOfBytesTransferred, false)){
env->SetByteArrayRegion(returnArray, 0, byteCount, lpBuffer);
}
}
}
CloseHandle(overlapped->hEvent);
delete overlapped;
return returnArray;
}
/*
* Get bytes count in serial port buffers (Input and Output)
*/
JNIEXPORT jintArray JNICALL Java_jssc_SerialNativeInterface_getBuffersBytesCount
(JNIEnv *env, jobject object, jint portHandle){
HANDLE hComm = (HANDLE)portHandle;
jint returnValues[2];
returnValues[0] = -1;
returnValues[1] = -1;
jintArray returnArray = env->NewIntArray(2);
DWORD lpErrors;
COMSTAT *comstat = new COMSTAT();
if(ClearCommError(hComm, &lpErrors, comstat)){
returnValues[0] = (jint)comstat->cbInQue;
returnValues[1] = (jint)comstat->cbOutQue;
}
else {
returnValues[0] = -1;
returnValues[1] = -1;
}
delete comstat;
env->SetIntArrayRegion(returnArray, 0, 2, returnValues);
return returnArray;
}
//since 0.8 ->
const jint FLOWCONTROL_NONE = 0;
const jint FLOWCONTROL_RTSCTS_IN = 1;
const jint FLOWCONTROL_RTSCTS_OUT = 2;
const jint FLOWCONTROL_XONXOFF_IN = 4;
const jint FLOWCONTROL_XONXOFF_OUT = 8;
//<- since 0.8
/*
* Setting flow control mode
*
* since 0.8
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_setFlowControlMode
(JNIEnv *env, jobject object, jint portHandle, jint mask){
HANDLE hComm = (HANDLE)portHandle;
jboolean returnValue = JNI_FALSE;
DCB *dcb = new DCB();
if(GetCommState(hComm, dcb)){
dcb->fRtsControl = RTS_CONTROL_ENABLE;
dcb->fOutxCtsFlow = FALSE;
dcb->fOutX = FALSE;
dcb->fInX = FALSE;
if(mask != FLOWCONTROL_NONE){
if((mask & FLOWCONTROL_RTSCTS_IN) == FLOWCONTROL_RTSCTS_IN){
dcb->fRtsControl = RTS_CONTROL_HANDSHAKE;
}
if((mask & FLOWCONTROL_RTSCTS_OUT) == FLOWCONTROL_RTSCTS_OUT){
dcb->fOutxCtsFlow = TRUE;
}
if((mask & FLOWCONTROL_XONXOFF_IN) == FLOWCONTROL_XONXOFF_IN){
dcb->fInX = TRUE;
}
if((mask & FLOWCONTROL_XONXOFF_OUT) == FLOWCONTROL_XONXOFF_OUT){
dcb->fOutX = TRUE;
}
}
if(SetCommState(hComm, dcb)){
returnValue = JNI_TRUE;
}
}
delete dcb;
return returnValue;
}
/*
* Getting flow control mode
*
* since 0.8
*/
JNIEXPORT jint JNICALL Java_jssc_SerialNativeInterface_getFlowControlMode
(JNIEnv *env, jobject object, jint portHandle){
HANDLE hComm = (HANDLE)portHandle;
jint returnValue = 0;
DCB *dcb = new DCB();
if(GetCommState(hComm, dcb)){
if(dcb->fRtsControl == RTS_CONTROL_HANDSHAKE){
returnValue |= FLOWCONTROL_RTSCTS_IN;
}
if(dcb->fOutxCtsFlow == TRUE){
returnValue |= FLOWCONTROL_RTSCTS_OUT;
}
if(dcb->fInX == TRUE){
returnValue |= FLOWCONTROL_XONXOFF_IN;
}
if(dcb->fOutX == TRUE){
returnValue |= FLOWCONTROL_XONXOFF_OUT;
}
}
delete dcb;
return returnValue;
}
/*
* Send break for setted duration
*
* since 0.8
*/
JNIEXPORT jboolean JNICALL Java_jssc_SerialNativeInterface_sendBreak
(JNIEnv *env, jobject object, jint portHandle, jint duration){
HANDLE hComm = (HANDLE)portHandle;
jboolean returnValue = JNI_FALSE;
if(duration > 0){
if(SetCommBreak(hComm) > 0){
Sleep(duration);
if(ClearCommBreak(hComm) > 0){
returnValue = JNI_TRUE;
}
}
}
return returnValue;
}
/*
* Wait event
* portHandle - port handle
*/
JNIEXPORT jobjectArray JNICALL Java_jssc_SerialNativeInterface_waitEvents
(JNIEnv *env, jobject object, jint portHandle) {
HANDLE hComm = (HANDLE)portHandle;
DWORD lpEvtMask = 0;
DWORD lpNumberOfBytesTransferred = 0;
OVERLAPPED *overlapped = new OVERLAPPED();
jclass intClass = env->FindClass("[I");
jobjectArray returnArray;
boolean functionSuccessful = false;
overlapped->hEvent = CreateEventA(NULL, true, false, NULL);
if(WaitCommEvent(hComm, &lpEvtMask, overlapped)){
functionSuccessful = true;
}
else if(GetLastError() == ERROR_IO_PENDING){
if(WaitForSingleObject(overlapped->hEvent, INFINITE) == WAIT_OBJECT_0){
if(GetOverlappedResult(hComm, overlapped, &lpNumberOfBytesTransferred, false)){
functionSuccessful = true;
}
}
}
if(functionSuccessful){
boolean executeGetCommModemStatus = false;
boolean executeClearCommError = false;
DWORD events[9];//fixed since 0.8 (old value is 8)
jint eventsCount = 0;
if((EV_BREAK & lpEvtMask) == EV_BREAK){
events[eventsCount] = EV_BREAK;
eventsCount++;
}
if((EV_CTS & lpEvtMask) == EV_CTS){
events[eventsCount] = EV_CTS;
eventsCount++;
executeGetCommModemStatus = true;
}
if((EV_DSR & lpEvtMask) == EV_DSR){
events[eventsCount] = EV_DSR;
eventsCount++;
executeGetCommModemStatus = true;
}
if((EV_ERR & lpEvtMask) == EV_ERR){
events[eventsCount] = EV_ERR;
eventsCount++;
executeClearCommError = true;
}
if((EV_RING & lpEvtMask) == EV_RING){
events[eventsCount] = EV_RING;
eventsCount++;
executeGetCommModemStatus = true;
}
if((EV_RLSD & lpEvtMask) == EV_RLSD){
events[eventsCount] = EV_RLSD;
eventsCount++;
executeGetCommModemStatus = true;
}
if((EV_RXCHAR & lpEvtMask) == EV_RXCHAR){
events[eventsCount] = EV_RXCHAR;
eventsCount++;
executeClearCommError = true;
}
if((EV_RXFLAG & lpEvtMask) == EV_RXFLAG){
events[eventsCount] = EV_RXFLAG;
eventsCount++;
executeClearCommError = true;
}
if((EV_TXEMPTY & lpEvtMask) == EV_TXEMPTY){
events[eventsCount] = EV_TXEMPTY;
eventsCount++;
executeClearCommError = true;
}
/*
* Execute GetCommModemStatus function if it's needed (get lines status)
*/
jint statusCTS = 0;
jint statusDSR = 0;
jint statusRING = 0;
jint statusRLSD = 0;
boolean successGetCommModemStatus = false;
if(executeGetCommModemStatus){
DWORD lpModemStat;
if(GetCommModemStatus(hComm, &lpModemStat)){
successGetCommModemStatus = true;
if((MS_CTS_ON & lpModemStat) == MS_CTS_ON){
statusCTS = 1;
}
if((MS_DSR_ON & lpModemStat) == MS_DSR_ON){
statusDSR = 1;
}
if((MS_RING_ON & lpModemStat) == MS_RING_ON){
statusRING = 1;
}
if((MS_RLSD_ON & lpModemStat) == MS_RLSD_ON){
statusRLSD = 1;
}
}
else {
jint lastError = (jint)GetLastError();
statusCTS = lastError;
statusDSR = lastError;
statusRING = lastError;
statusRLSD = lastError;
}
}
/*
* Execute ClearCommError function if it's needed (get count of bytes in buffers and errors)
*/
jint bytesCountIn = 0;
jint bytesCountOut = 0;
jint communicationsErrors = 0;
boolean successClearCommError = false;
if(executeClearCommError){
DWORD lpErrors;
COMSTAT *comstat = new COMSTAT();
if(ClearCommError(hComm, &lpErrors, comstat)){
successClearCommError = true;
bytesCountIn = (jint)comstat->cbInQue;
bytesCountOut = (jint)comstat->cbOutQue;
communicationsErrors = (jint)lpErrors;
}
else {
jint lastError = (jint)GetLastError();
bytesCountIn = lastError;
bytesCountOut = lastError;
communicationsErrors = lastError;
}
delete comstat;
}
/*
* Create int[][] for events values
*/
returnArray = env->NewObjectArray(eventsCount, intClass, NULL);
/*
* Set events values
*/
for(jint i = 0; i < eventsCount; i++){
jint returnValues[2];
switch(events[i]){
case EV_BREAK:
returnValues[0] = (jint)events[i];
returnValues[1] = 0;
goto forEnd;
case EV_CTS:
returnValues[1] = statusCTS;
goto modemStatus;
case EV_DSR:
returnValues[1] = statusDSR;
goto modemStatus;
case EV_ERR:
returnValues[1] = communicationsErrors;
goto bytesAndErrors;
case EV_RING:
returnValues[1] = statusRING;
goto modemStatus;
case EV_RLSD:
returnValues[1] = statusRLSD;
goto modemStatus;
case EV_RXCHAR:
returnValues[1] = bytesCountIn;
goto bytesAndErrors;
case EV_RXFLAG:
returnValues[1] = bytesCountIn;
goto bytesAndErrors;
case EV_TXEMPTY:
returnValues[1] = bytesCountOut;
goto bytesAndErrors;
default:
returnValues[0] = (jint)events[i];
returnValues[1] = 0;
goto forEnd;
};
modemStatus: {
if(successGetCommModemStatus){
returnValues[0] = (jint)events[i];
}
else {
returnValues[0] = -1;
}
goto forEnd;
}
bytesAndErrors: {
if(successClearCommError){
returnValues[0] = (jint)events[i];
}
else {
returnValues[0] = -1;
}
goto forEnd;
}
forEnd: {
jintArray singleResultArray = env->NewIntArray(2);
env->SetIntArrayRegion(singleResultArray, 0, 2, returnValues);
env->SetObjectArrayElement(returnArray, i, singleResultArray);
};
}
}
else {
returnArray = env->NewObjectArray(1, intClass, NULL);
jint returnValues[2];
returnValues[0] = -1;
returnValues[1] = (jint)GetLastError();
jintArray singleResultArray = env->NewIntArray(2);
env->SetIntArrayRegion(singleResultArray, 0, 2, returnValues);
env->SetObjectArrayElement(returnArray, 0, singleResultArray);
};
CloseHandle(overlapped->hEvent);
delete overlapped;
return returnArray;
}
/*
* Get serial port names
*/
JNIEXPORT jobjectArray JNICALL Java_jssc_SerialNativeInterface_getSerialPortNames
(JNIEnv *env, jobject object){
HKEY phkResult;
LPCSTR lpSubKey = "HARDWARE\\DEVICEMAP\\SERIALCOMM\\";
jobjectArray returnArray = NULL;
if(RegOpenKeyExA(HKEY_LOCAL_MACHINE, lpSubKey, 0, KEY_READ, &phkResult) == ERROR_SUCCESS){
boolean hasMoreElements = true;
DWORD keysCount = 0;
char valueName[256];
DWORD valueNameSize;
DWORD enumResult;
while(hasMoreElements){
valueNameSize = 256;
enumResult = RegEnumValueA(phkResult, keysCount, valueName, &valueNameSize, NULL, NULL, NULL, NULL);
if(enumResult == ERROR_SUCCESS){
keysCount++;
}
else if(enumResult == ERROR_NO_MORE_ITEMS){
hasMoreElements = false;
}
else {
hasMoreElements = false;
}
}
if(keysCount > 0){
jclass stringClass = env->FindClass("java/lang/String");
returnArray = env->NewObjectArray((jsize)keysCount, stringClass, NULL);
char lpValueName[256];
DWORD lpcchValueName;
byte lpData[256];
DWORD lpcbData;
DWORD result;
for(DWORD i = 0; i < keysCount; i++){
lpcchValueName = 256;
lpcbData = 256;
result = RegEnumValueA(phkResult, i, lpValueName, &lpcchValueName, NULL, NULL, lpData, &lpcbData);
if(result == ERROR_SUCCESS){
env->SetObjectArrayElement(returnArray, i, env->NewStringUTF((char*)lpData));
}
}
}
CloseHandle(phkResult);
}
return returnArray;
}
/*
* Get lines status
*
* returnValues[0] - CTS
* returnValues[1] - DSR
* returnValues[2] - RING
* returnValues[3] - RLSD
*
*/
JNIEXPORT jintArray JNICALL Java_jssc_SerialNativeInterface_getLinesStatus
(JNIEnv *env, jobject object, jint portHandle){
HANDLE hComm = (HANDLE)portHandle;
DWORD lpModemStat;
jint returnValues[4];
for(jint i = 0; i < 4; i++){
returnValues[i] = 0;
}
jintArray returnArray = env->NewIntArray(4);
if(GetCommModemStatus(hComm, &lpModemStat)){
if((MS_CTS_ON & lpModemStat) == MS_CTS_ON){
returnValues[0] = 1;
}
if((MS_DSR_ON & lpModemStat) == MS_DSR_ON){
returnValues[1] = 1;
}
if((MS_RING_ON & lpModemStat) == MS_RING_ON){
returnValues[2] = 1;
}
if((MS_RLSD_ON & lpModemStat) == MS_RLSD_ON){
returnValues[3] = 1;
}
}
env->SetIntArrayRegion(returnArray, 0, 4, returnValues);
return returnArray;
}
PK'p�?src/PK%p�? src/jssc/PKp�?2�3�N �.#src/jssc/SerialNativeInterface.java�Zmo"7��_����:��5j^�TI��\��)��b�Ͳ��7���o��u����K /���!a���3/{iC~��R���R���,d�g�Ӑ�(b��AZDٱ���b:�#P�EDB>�T.�-� ��/��;� ����%uHF��e�I^m�l����"�ń+2�$�Q-FFK�tC�Qb��T��d!bЈH6�JK>�5�ЄFö�d*�|�~��!�DO�LN�`ޟ} 'L)�{�"&���x���E�
*ሚ�!�8�x���Vx ���$�ü$�L*��[*�$B��:�h�$b�| �zAB�3�e�S#A�1c�D��s�d�H��(��
��{�s���;�H.��� ���YQ�s��I#��Q��Q��g`���t/>���{qv����'{�|��=�p��'���=��#: ��� _�C�)Ub�Gp�%�!��[n�)��l�� Q E46F8A��DB7�U�M���m���7�bO�q;�̪���t�kd�fv���C�$ 3`ӔL!z��,kM)7�A��>��V�F�E��#}K��A�~�y�s6h)�!��yR�9 Đyc!�!C����;�8pb��l>��$�� ��5�� ��J��- �|G>� �2�S5؋�,־F5J�(7����g�O4�H���F�kR�\:��ߍ AF4`�ϭ-����^i���D�X�Gc,I��,�Զ�j�n��Z��m�> ��bJ^�x;�<�K�>呐~<�;#܈V<͌l����(���{��I���o���YGy�=;�]�@�����A"v��U���:�ӽ�k��.rV�l���X�0�v:�(���'��X�P�ϩ�t*f��Bji�q\�_(ͦޘ�s O�E�&��l�Q�Ge0��9��0#U��[�,V����DT�kv0���E!�V�#��"�J᣺5�c�4T�� ��Z�xf� �Zh�;���)i�e�_�o,T,��Mju ű^���=+�y4s�j�,Xs����v�Z�����ߣ�!�|�Yl`y��) ���vϲS\ u��,�
ƿk���w�5S����M�A>&��o`zI�刯��*�W.L��7�m"�Ȫ�'_��LiN}[�x�y����3�N^h�
S��'+�(������ىmXq�����86�k)��(�WLX�N[��=�LO�,1���e�3A�'�K�ؙZ�I�u+`Iv�% 4��o�J�y����C,+�eU�� �؜ �KX{ӛ!���h�L���R\# X��X�Bvf똦 >�˪��FFF"a��Χd?��i1��I����iW� i6���ChdNO%���~�a��TL�L88;`rE�t�X[b�]o���&n��C.M/�X��%%2_gHgTy��^��> N�grH*:��=7���a�#ǿ��-h4��9�Z�݌�er}���rU�f�AN���?'�s9��;��a�Q,����2]�]}������>SpR؞���6h�ڵ�K����f��ʮ^�,s���b�,4�tEp�KBڎ}��Û�"������,��%<��]��'~�F{�V�Fmi�8K�W��� ��$�Mce�b_V�� ��eP�4�i�����`B�Gw�k0 �$|׃���6�Ӛ��W�$�C�Щ���ّ5�]�����ۇ�&��H�0y��6S�GϠ�'���L�L���^�|��;g�Sv�k$���n���(3=s��'Vg��3޽Z�$����l�<�=_������>^8�S˻�`�|���:���$�p����v4�m�*&-��<��K�Zk���Q�6;�>D_���k��8��ă�ylo�y����5���CZ�b���g�+k�]ߛ�ȼw��Q̌�
#�#Ff�\� `}J��V��ے9 !ZF�k�@�L��e���S�STp������n��eD���dRU���>�H�R�.��Y�r�pvT��D:��M���PGi�p��0T�4�\+h� ��gcK�J�Y�� U��_��߲�w.|��k�LHkp����{�Ǎ2��E���E�UqеƋJ�" �!sq���}3��MC�����ae6z8/㫯9W̶��#iLQ�s4@�!T���6���S� �d�M���D��0}v�T��y,Lj��Daq�O��/�{|��B:V�^Hb|K�t�_e��2�:Cm0Q�N� qT�ݲ��u�`b@y�/�zl�����_��*��)U7O�T($/����ud�;ݖ��(\���"F����"B�;�-� :0�p�q�7��l���
�.)O�{���إ�5�Sa�_أ�#x{�{�]�إ����9�[�t+�V�O����i���&)P�F�!ix������4 ܁w?p03f�>gw�'�%�ʢ)�`B�,5�� ���*�v��T2eLZ����3���؇+�h�<u粤���@ĠF��� ����\�lX��� ��Yq�q�Y�v��:�LŪz&y�(���4W��o.�^�gt*�V�"���]��<2��4�c���? K�e~�d~��J����w���?dS���f�le�Ð�]A���a�"��n5�����VK�
�� Z�Q(�)B�9�ӫ!v�����G̕�cP��j~
�?�w[k�Ơ�������fӾ�go�����+|Sw��e���Tۂ�#�ʆE��7���ժ;��ɹ�9Q�*��݉������k��E&�;��M��Bcu�q|�0I޳�+50tpᛇ��٤��С�㫌��={���9����s��v����u Z�}��o�Ec���$Y���-���#M%�_�<]�}��-}��Zj��e�PK�k�?N"Y"���src/jssc/SerialPort.java��r�F���Jg:�b>��u�:S�q���֙L�#ÁՂD%�I2�w�S�5�(}���t����3 ��������Nէ��^�Ɋ�W��ل�wLcš�e�g;%��\qmf;����2�g������V�����?Xc�o�-�ٿ��݁Í�3�Tf۵zm ��#,��/M��Lh>g��Gď��!��9s�wm8|���s60,���z�y1���� kX�6��������r�y��yܙ����}ʎ��½o������bbر9��˙,�����#�Cd�'X�_6�'9�7�î��\�ɦ|�ef;H�hx���3�+׷lbx
5����i�K{�� ��.^�� ��l���|RFTf?����Y�����v���=�.m�˯� �:7�2��1,��F
�[��w��xut|�̳ã~����N�5�I��?j�7���{��* L�#Q �!��
�8�aN\��o@�.09�K㊃�ܼ 0�٭�
��1��1u�� ,��e{e��__z�l�Z������y�v�Չ@v�/%?��
C� ��L44s��E|��;Ч)���\��=4��[Ʒ��I�A��}�e
�׆�Z��I�]�� ����U���_l��~ ����Ձ=䕱m�'1�����〉>�%�yk��x(W�̌�/��麃�'O�O�J��1�`6N�AK! &��ʠq����' �f�yf-� txd�����%�AQ�Z`��18j���(�iy��� 0�����t�mLc7/l{� ��vf@x���Ș� আ�K�u�q&d���p�b�Rt=Ã��i�̫��A��o���5���������YM� ��B��M�mm��;��|G�+��W9�z��P�S�+ٕ����lG��lG��_���2G�/s�E����N����6���/|!��y��Q��;�}�Ӄ�mL�K��Rv`wt���Fų���Bф��<���c'����N�(�=���A6���c��͹~�����k�NM��9@k���m�{�x�����7`^�{Z8��V�����������p"�<ϲ�׍���w�n�6$��q��lm 0��z}��րn�{h��=b� ��q��A��W�V�tln[]�a[���Q�[�|�@�cZ�7�*;l��R
�ǝ���v��9�t�0F��������� w���xg��Y����Vz
�lpgO
��-�)��@C���a���x��#|��5\��x����c�\ N&�(��7�x(���a,~���K��ӧ� �<�f}YfBU�P5(�o�����E���.F��Ӑi��Q CJ`̽�A�5�$�]��%���`�s�X�D�E�-�n��6].R����pD�],�T���E|c��M%�������/�6�H_W/^IV/��-��9i���Hq���!�p*ǃbڻt�k���4�td#,�ڝ��a�}�E-.�#*h��Q��|0��
��-T�X�A�_&�iRq�Ԡ.�|��(�������B:3GE�/�@�'�J�(��Yf�h��[QbnÀs��I��:()��|S5 ۏ;{�o*h^���ɯ*5)U'�}�U����i�v��s��}<V�`Lo%C�F��&c݋;���t��Sh�8GL�6q��V �8���]�����pb�[�ń&�`vid�'^"�1vȧ]��a�F �A(v�R�^��ˬ����H�\����ٳ((]J��M�V~�]|���  F �[��=�e��@^����Ռ2�K>�o�Q��Z-J{aG�[A��{���j�+N��b�8 eω��V^[V�R�Rb�"*������\DB��޿�B�6-�1��i�Er�b�]�ܷ�D� �D�����ed�ߝ�}:R��o)���S�=��|�-LZ�Θ�Ѵfs�,X ���8�c�׹���5�c��K�RG
�l49�\a?B�8��bac��y�B�oALn0-�: �1�x�j��`*�����
�D]�M,�ؕ1 �[qmyǶ�[����}͇v���w.F��9C �~73I��5{���"�kOq���WF�0O��qj�R>��g�w�Z3�[��=�
�&Ң�� Bc4YՅR��Y�@��G0��!haǥ�2�cӚ߰NO3�V}&���� ����6�d8S%}LQ���P����?$�@� D��0��$����M�Damϥ�I1<��ՙGM?��ui蜻`�5VU��I�" �M3�/V��@�b�݊w�}�.�� ��o�>\n3]f�ևNG�^��"�Cg� Uf�:n�v�?8�uz��G��3��Cx�\�b�s 3x���|�h���Y�}�7���퓴������^����?�t/E���82��=-"��q �1I����f."���N�T> �ZuV ���&<%r�k��ћ#3�ZY�E@iB_ ��O�$s>�GG&�)(���0�����+9�T豧�'En+�ם��&�a��N�%B��������Ud�Qy��u���"#s
R)V�;&6k/��s��
X<�{F�˻�d��Y�wQ�W(7+���.dY�K�Z�MyH]:y��0�t�)�z-���?G��s
jZ � A�Z��vCZJ�X���P������O������8�-&��BgkJ�{�
:��;o�� �U��i�^���/y�� &?Zx8���I�)�@0����{mŤ�%��Z�)�W�~\� �R�/U���<�Kk�AP�R�hs�O�t ��+�k�&d�4��{�j���/X�ɂ� Lϗ���:�hbN� �ZKUHM�a�YKA�54F��^c ��m3�O1�:�$��$qY.L�5�.�8�`�5��^_�(\���h��xk�4a ��ʖ%F�XhB]n C)��H�l�s�ʀ��Gtɥ�Z`��JoՊ��-�
L�!����A*���ޓ�e��/���D:��(&��A� TA~ M �[<���qn��9� N�����⑑\U�V�R�.W�w�&�$V���� �N�/a�ʂ�:�gZh�3����w���̩1�7-C��V4�\��(D� L���
�F�b}�"t�ժ����.���&vw;��]�����:[�0��V���������X�ޏ2%������$�� �B=k� ��������/(��zW1Tz_��K.�Dy�|_�0{]#@�Db-���izA3ӝ��g�� ��q9� J=�:��w)x1%q�����B���gy�B�"1��3�ވ&3�1 xv$������9�A��4\��&�#���Rr�0h�P+��ů%Τ�A�9�/���I�[���sP�3������܀�з� [��-��dޗ�%����F�;0͋���N]����]� ��%�MJ}S֣a��ԉq[�q�[Z�J�&�/����e�S��\��%T|:�hK��� J�aC���u=�!G��b�l;^�������8
��վ#��
!Эbt�W�|��ZL�(�%!L1�Y�jY��bZ�c��c� ��F ��c�̽��*��L��;�����?k?�P_?:{*��nִ.S��R&K5��Ru3q�H=Jc"�6�B�sK��#�/��N +R�mĞ�A�t��[�ށ���XCs)n�٪�T4w~sx��H�ڛ�z]@Poo <W!��|[{�O#��b���3�6��xgZ��[�Y��`� �)ϱ'x\$��j�6�D��]�m�=-�X���Zb��wi8C<'2�`�Ǭ�&��.旇p�)�ƛ���|Xp�Li����ER��W#�ebI�䶋%��T�%�^{$ˌl� ��:��u�y!'�t��qXly��/�0<܎3���sa�S��]�������R�Ge�t���R�Ї��V�p@LK�t�i��w�}�ܵa�]�� �%�c:M�HSmq$IE)Nv�y��P�b+3��q6���r���&U���xi*��aO�:�'��6� ��U��O��n��O�Q�� �<�g�Vq��ܒZaǡ_䃠y�gUc��;n4���:ۂ z�py�����k�x��<ɗ�Ul�l�u5���lN�ڍ�;�>E�j�� �0N���~:/ �"l�́������&�����Ն�4oH}=���K2z�EP�X�:A����|�BV��W�:L �[Y����٧/>(�ay�����$��VlP�/y�����`�����kCQX=���[CA������� �?j �h���г��/6�<A��:��{D3 ɧ��r.��c��H��� ���q�Ι�s��^=�E��wMD(����.Qb��Ĝ��e'\ѐl����p{��GN��3S��#b�p�D�� \�
��ظ#?"��yK�1$�P�V?I�H ��:A܍�EH���t��%�>���6�n�k��R(��y���G��z! ߃���5�:GxDO��Wi��%��jUa�]/���z}( ������2qc�ҏ��������v�lL\;|�C┪�AQ���І�3��ՙU�GS�c(�0��đG�E� =D.�u'�7������#J�h�N$Ɍ"�3��U�CQC��� 9(�$KD {$��{ (Ӝ穄���Q����u���'ۄE�u!
��8��'t_1�HIs ����{���/|
�@�Ex���Ko��.
Xy@��0����+i5�1��x�uV.��u��v���2t�Y����
81�KFQ|נi��+�KjюJt���;a|�d?܊9Y ��L�1� �"Rsnc�:�3?ۦU|Q��yMv?P����"��3��y*3�7�w?� ��w8H�Bz�Vr�od�'%%�|����͉�#���񐂑�F�����ϡ�FT�?С ��@��L$�F@!*2#E��~0��D�E9
��azu�zg�da�ދ@��9Fao@JC�O�� �7zї�/����7�+��|�!��;s�ח���'�6�a�_H��'jDV�?Kv\)�%�������"/aQ�Ϙǩ��"l��.FC����b����;����8���Zt|��u/�{�rИ���gD�A �4��kIӮV[.��&��J�e�hO�,�w�����*3��ԛ���'xqڋ���B� ����z��;��k�w�0�;��׾�B'x���As/,;�ƨ��D񮂠�E�����2��� ��~ZP't��W'"o���z.s$�
(�,��C�E5�f��h���i��w˰{���"��{����&.NEz���T6���d��0��E��1v��
xr��*|?��c�Q; �(��b�΂ =�M�q?�]�c����� �.�tZ�i4�?�x�]4�&g�x�2Ri�/}�������!j�?7a�2�l�9�<K���l����`� B�\� �נF:�r. o.�4Q#��� ş�ڏ�@㕒�97t|�*Rɋ� �,���s��c���(7�3+5�^�� }u��V�¬�~��J�3)�<��o�,��a�]V?5y�?%�0=V�/��>^�=G��3��!D|�c �u������J�/t�%{2��h�QҔWry2����ï�ƾ �efv�ғ)_^����K��F6�]�P��P$�y%�+�].@هl�l�� ��CF��]�J���o5|(b� �նn��#[D�&�]~,2-Y�hJ6W�L�@E�Z����'�l�\ڀ�k5m��4r�x˴T�6���ik��ԁ����W/S�Q���?I%X�Ú�A��i5�t�j���\��,S �Q����?I5�^�R�Q�R<�7��!�ѻ�4��_b�E�iX�� ��Q����%����G@m�ė���jTHR�~��|Zմ+Z��L�}qD0�<ԅ�@�~�.&K��ӓ�@?�f���4d��W�0D)/�5?Rk\����?{��x�I>�D��2��{�I�y��#�2�|�7PK�k�?��d���src/jssc/SerialPortEvent.java�Vmo�0�ί8����{��v�XK76FQB��� �;����7��v�$ ��$PU���sw������&Π�MbG���LI�C��T��k��B5'R��
%!=���V�}�����g�[� �M�9?�{xzpxP���%xw$ ���!��xR@a4�`��N��G0S �L��}a���"�&��0V}1��=�%��5���ؠ��]�
Z��{�%ט['�E"���4�D+f���#:gxA�i(�K!�ӡ\྆ ׆ty��� +�4����4����0�D�ޛ�f?O�q�T���0ũ�"�qH $Q�L _����W]����K������1��H�.���\ 3棙�3 �>5��hR�l5��<\4��F�ťu���n��U��s�w.�F �t8�"���B��2�<�k<^�AF}� �c��`� K/�=���EJ]�NN �9�l �z2�6>��tZʤ��ЋRc�f���8� ��Q�� �H^���9�a���#�-xo�:f ��#�Hi�L�)f�2��}C1��Z �Sޫa�����#_ U�׆J #N�^��`��%�x5��j�����^)f�-b�Ƅǥ����E��%X6z�Cg"�3&�� nj��J��X� ��1X�r��G����Ҧ�i=��,���g%��63��2�_!Y��׳�X����x�U���Ÿ��ƧN��ϋ�g�A��A� ���Z�9žm�ߨD�� �5|��� ^�m�Nj�K��jy�+�GWY9�����>�j�z��2"�"H�����h�#Cݥ�ʥ�>�k�A���H�#0hHs$����b�Y�Cn;Y��=�OIs�h�g��?�!���_$9jd9��4䁮&�J�u�ӧ'�[ZHNOz��{��Qs�'��]���� �Ҿ#Tq�Y��GcM�_�X����٦����me�$1�]�-!�o{�H��]ϊ��8$����� ���K�#9�p������^�;}��A@C`���A�D�q�@-������y���%����a��<o�ue������2�gxV't�������$-�'.Ha^$d��M���ȬmʞR�kݤD�Ѣ��´z�]>��[N�Ex?���O<B��,\L�&����V� �B%RȮ*�͆-H�1j�avU �k[Y
E��]�<��x@�B΃� x�lA�)������+� ��)T�!vU����^@�B ���B���+i
%@����J�PK�k�?�x�מ�%src/jssc/SerialPortEventListener.java�T�r�0��)� ह%�N\�$t(a0L��l�A�,y$�i�@}�>Yw�tr
@ҷ���oW���x�o�$ �E�b�R(��1��a��+�������L��F�����0�� R�k�͋Q��Zŕ�����ń�.���Q:�%]I�� j�7zZ@��1���YX���T�
3鼕I�ƒ�Yh,&�yM�W� -�#�G[8��Yܯv�D���5Z�m]%J���)j� H�#f�0]x�R�V
� �7uJ:�pB�.W�U=��e���SrܐTנ� }��k�$D��hJ�?DE)��R� T�J�9����><����m6�j��!�?:��T�$f��
�k�� ����D_��vO��n�]���7�:�l��2��z�Y?��)P� ��*�7^Q3�B*��'{�T� ���$
j������%�ч&馜$q��6~ ��~>z_^���|�t55��6؅_:=��qy��l/*�y���N(�
Ꞅ����pR�8��Sr��dK{�]�.���� k�=�ޔ�gL&Nz��N��P���&�����B� ��f�"y�'�<O�~�Cb�R�/�@i:��A8u�nEEmc_U5��4�n.���X�1���K�[6~ЧË��YP�NFf������۳���&��PK�k�?��p'�� !src/jssc/SerialPortException.java�Vے�@}�+���]��Eŵ�lVQn�-��!i`4ɤf& �~����3 aYQ�4\f��9}��s>A�߰5���y���,���2����U��Bj�D����"���%��v���o�&� ���"k8W�D�>�Mxx���}<0��<\q N���3� ��4���J,�I|
[Q@�2�s�%�� 4�,v��T�|�%�Vd1J�+�2U�`��N��J��+�PRl�b���<�L!0�dV�
c�8�xm���'�� �i_��2yyTQ�� �9g� A���To!az�z;�:H�3��9���7<I`�P(\IӸ�1�G���޻���i���J�.���25�L�H��-�6��&�e�� �$�{�� �������^w�w}O��(��@���N���֊��f<Q���T^E"�Vl�T��$2j�|{r KD��A�t���2���H곕��S��l6�eV��\:I鬜��03��yI�K�Fdא�C1��R��M��i����2n+c�GT}��%�e��Ye�vsc4�X��6͝��༥��9���4�/��H��^
�L�x:��f�<͌��ynE�w�i�,�Ȗ�RQ��p�ޭT�`���UY�* Q”��1�ާmk~Ҙ�
�+� �g�3�V�4��P�S���؛�G~8s��^Mg��7���� :U�$�[*z|�9p8
o��N�;�.��,���� ��.��hj& )SOD����t�u���U��[#�CBoZ�����k��������qx�A� u.@����46�7��S�"14�x@֤S*b4G��)�Ap���1=�x!�o?�V��tѹ�������ݑ�{��֜I�"EJǪ��������|8��-�����J�HK��ĵ�m�O����Ҷ��I0��z^���&01]�&���Y�돨,N.��׾* )۝c�T������#��X�W��3��?�4�"_|&��Q�漊��� �Ր���wc�b�[�O:M����k�]tv���h�<�5�-�L�;ڟ��.�+ۯ�۝�
��� �,A9�/7��Y�he��=,�^�n�$���}�vI_�WQ��ȹD]�l��A�Wͨ�:��䕕=.�">E"���������z�t_?PK�k�?�D���src/jssc/SerialPortList.java�X�r�0}�W,y`�����B��)M'N�aGI�e$9!@?����X]9�õ0<��6��{�hW�];hÛ0<�I�� ��,!N�Y��X2ނ3�1.!f�y��8��������o@�|�nBޓ��-K�<sͯ��\ٿ������Ψ� E��E�&���ܔ '��e��MX��(N�THNG�D Q:�9��
��X�� 9# � �������p\�I>Jh G4&� !%5"fd #�**���O ���P�� \(�\��
�=`\�x�T ��2��B�+H"�T��_/��Tc�XF��p�K�$0"� 2ɓ=����7|�?B��<�����3��dA ��9Ed\�R�B�
����cT�����/�<<� ��!<�� '���wxz�����>��Q����X��DF4ź_`x�L�0���@�n�l��!TXQ�ҩ^�v'R�M erR�5�2���ҟ����4H���X>���ܫ1T 2c(�� �H�!q�4�9r�T|�ҙGTGF��1�E �2JU�1+z��Q��N՘�y�$�d�TbX�eQ�T��lL�)cӄ(� �`�������N\�x��A#����)D|�h���w��S���'�97 ��Au�!&��`���}L�NߞK�\�R����%����ru� �kN�L�9�&.�fr� �k�u��(Ǭ�k�kg��I$�=OJ������q���!� ���1�/H/Ō�D1N����A��c| B����CpR����ZH�u����c�� ���`�3�����t���xO��K�q"�D"��͹�g0|Ɏؒ��H���~�TN��D��\�h��-�*,�K�U�O�������K�uJ����w��$K����4������삾��Ѕ' �kh[�lk+m<o�I@�c��m�:�~�z��Z�چ�{��`�$���s3h�9��ԢA'tv���&�#QM-�(�i�Y�gJ羺�X<$�\UWUU})�;���b%$����]C�f��U�P���kRVc^��@�D���@8���@B�)���A���il*Qg߿��' �rQ4h4G��j��
�t�>]Ӂ)��;��D��ť|�c}���*#(~�6� ���G���筏5aWF�h��/Y��n �>���=K/l} ��}����;;��,�8�����k��?Q���s �[�Ҋ� ۬P��.uC�j���|[�Z�*�?��y�࢈��0�[��\td�����$�t�OB�eG�8�3�&���J<̈́�0:��uLl��hF'�޹����3s���j���� �$Y!�%���Ǭ��ѵV�\9K\��>�.M���\ubQ�no�fw�=�,&_=yjy*�\�s�j ���^S�6+��f�\�&�9����+PVK^��7w�ܱ�*�E�YP#`-� �(#�4Tj67�3l�=������������.�:]0r>�\y}��L+5W]n�����\����ix��r�s����{W���V���c�<C^Rૡ���ú}�7���n*�-�}�#���!��r�U�� �d4��Q����ʍn����eG*��1�a�Vŭ�Tnn}|!���'�����@����@����n_%q�1~ɗ���-�Gz�j��� �O
�hʮO��Q"�L��'^�����N����4��S;o�<wl�U�4�Iʞ4&z�L%&�~5���3��d������i�t9���j�]rڏ�H v.UR}��oq�|�G{�/���n �.bhФ:��3�)�_[�Q^G&��B���Vîs�Zη�w`ߢ�c1<��X��y��Ydk�avA͗�e<X +$3��DEG\I�U���e�����n:��� ��$��q3�{�⧎c�|N��?���֢�������&��\�grC߶7~�S.F�}��N�HN�5�PK?'p�?$src/
.��Ͽ�.��Ͽ�,^��Ͽ�PK?%p�? $"src/jssc/
����Ͽ��O �Ͽ��"��Ͽ�PK?p�?2�3�N �.#$ Isrc/jssc/SerialNativeInterface.java
���Ͽ�����Ͽ�����Ͽ�PK?�k�?N"Y"���$ � src/jssc/SerialPort.java
��'`˿�����Ͽ�����Ͽ�PK?�k�?��d���$ �#src/jssc/SerialPortEvent.java
�=w˿�����Ͽ�����Ͽ�PK?�k�?�x�מ�%$ �(src/jssc/SerialPortEventListener.java
�b!˿�����Ͽ�����Ͽ�PK?�k�?��p'�� !$ �+src/jssc/SerialPortException.java
�ϖ�˿�����Ͽ�����Ͽ�PK?�k�?�D���$ �0src/jssc/SerialPortList.java
^�a�˿�����Ͽ�����Ͽ�PKW|8
import processing.core.PGraphics;
//
///**
// * Created with IntelliJ IDEA.
// * User: Duncan
// * Date: 14/03/13
// * Time: 4:29 PM
// * To change this template use File | Settings | File Templates.
//*/
//
class Matrix extends Animation{
CellArray cells;
Flipdot parent;
Matrix(Flipdot p){
cells = new CellArray(3);
parent = p;
}
//This renders the animation
public PGraphics drawAnimation(PGraphics pg) {
cells.handle(pg);
return pg;
}
//This updates the animation
void updateAnimation(){
cells.staticActivity();
cells.action();
}
//This resets the animation
void resetAnimation(){
}
class CellArray{
float width;
float height;
float pixels;
int count;
Cell[][] cells;
int[] offset;
public CellArray(int pixels){
this.width = xbound;
this.height = ybound;
this.pixels = pixels;
int cols = (int)width/pixels;
int rows = (int)height/pixels;
cells = new Cell[cols][rows];
for(int i = 0; i < cells.length; i++){
for(int k = 0; k < cells[0].length; k++){
cells[i][k] = new Cell(pixels*i, pixels*k,pixels,pixels);
}
}
offset = new int[cols];
for(int i=0; i < offset.length; i++){
offset[i] = (int)random(rows);
}
}
public void action(){
for(int i = 0; i < cells.length; i++){
cells[i][((parent.frameCount/2)+offset[i])%cells[0].length].spark();
}
}
public void staticActivity(){
for (int i = 0; i < cells.length; i++){
for(int k = 0; k < cells[0].length;k++){
cells[i][k].spark(random(5));
}
}
}
public PGraphics handle(PGraphics pg){
for(int i = 0; i < cells.length; i++){
for(int k = 0; k < cells[0].length; k++){
cells[i][k].handle(1.08f, pg);
}
}
return pg;
}
}
class Cell{
float locX, locY;
float sizeX, sizeY;
float cBrightness = 0;
Cell(float locX, float locY, float sizeX, float sizeY){
this.locX = locX;
this.locY = locY;
this.sizeX = sizeX;
this.sizeY = sizeY;
}
public void spark(){
cBrightness = 255;
}
public void spark(float bright){
cBrightness += bright;
}
public PGraphics handle(float degredation, PGraphics pg){
cBrightness /= degredation;
pg.beginDraw();
pg.pushStyle();
pg.fill(cBrightness,cBrightness,cBrightness);
pg.rect(locX,locY,sizeX,sizeY);
pg.popStyle();
pg.endDraw();
return pg;
}
}
}
/**
* Created with IntelliJ IDEA.
* User: Duncan
* Date: 9/02/13
* Time: 7:16 PM
* To change this template use File | Settings | File Templates.
*/
public interface Observabe{
public void notifyObservers(char KeyCode);
}
/**
* Created with IntelliJ IDEA.
* User: Duncan
* Date: 9/02/13
* Time: 7:16 PM
* To change this template use File | Settings | File Templates.
*/
public interface Observer{
public void update(char keyCode);
}
import processing.core.PGraphics;
import java.util.ArrayList;
/**
* Created with IntelliJ IDEA.
* User: Duncan
* Date: 18/03/13
* Time: 12:09 PM
* To change this template use File | Settings | File Templates.
*/
public class Snowflakes extends Animation {
// Particle[] particles = new Particle[0];
ArrayList<Particle> particles = new ArrayList<Particle>();
int maxParticles = 100;
int height;
Snowflakes(Flipdot p){
for(int i = 0; i < maxParticles; i++){
particles.add(new Particle(random(0,200),-20));
}
height = p.height;
}
//This renders the animation
PGraphics drawAnimation(PGraphics pg) {
pg.beginDraw();
pg.background(0);
pg.noStroke();
for(int i = 0; i < particles.size(); i++){
pg.ellipse(particles.get(i).x, particles.get(i).y, particles.get(i).partSize, particles.get(i).partSize);
}
pg.endDraw();
return pg;
}
//This updates the animation
void updateAnimation(){
// particles.add(new Particle(random(0,200),-20));
// particles = (Particle[]) append(particles, new Particle(random(0,200),-20));
for(int i = 0; i < particles.size(); i++){
if (particles.get(i).y > height + 10) {
particles.remove(i);//Lets remove the particle if it's off screen
particles.add(new Particle(random(0,200),-20));
}
particles.get(i).x += particles.get(i).xVel;
particles.get(i).y += particles.get(i).yVel;
particles.get(i).updateVelocity();
}
}
//This resets the animation
void resetAnimation(){
particles.clear();
for(int i = 0; i < maxParticles; i++){
particles.add(new Particle(random(0,200),-20));
}
}
class Particle{
float x;
float y;
float xVel;
float yVel;
float partSize;
Particle(float xPos, float yPos){
x = xPos;
y = yPos;
xVel = random(-1, 2); //Random speed
yVel = random(0, 2); //Speed the snow falls
partSize = random(2, 5);
}
void updateVelocity(){
xVel = map(noise(x, y),0,1,-3,3);
if(xVel < 0.2) xVel = 0;
}
}
}
import processing.core.PApplet;
import processing.core.PGraphics;
import java.util.ArrayList;
import java.util.List;
/**
* Created with IntelliJ IDEA.
* User: Duncan
* Date: 10/02/13
* Time: 1:22 PM
* To change this template use File | Settings | File Templates.
*/
class TetrisClock extends Animation implements Observer{
PApplet parent;
long lastTime = System.nanoTime();
long timer = System.currentTimeMillis();
final double ns = 1000000000.0 / 5.0f; //FPS
double delta = 0;
int updates = 0;
int frames = 0;
boolean blink = true;
//clock stuff
number h1, h2, m1, m2, div;
int m = parent.minute();
int h = parent.hour();
int s = parent.second();
Grid grid = new Grid();
TetrisClock(Flipdot p){
super(p);
parent = p;
h1 = new number(3);
h2 = new number(3+9);
div = new number(22);
m1 = new number(35-8);
m2 = new number(36);
showTime();
p.addObserver(this);
}
PGraphics drawAnimation(PGraphics pg){
grid.drawAnimation(pg);
h1.draw(pg);
h2.draw(pg);
div.draw(pg);
m1.draw(pg);
m2.draw(pg);
frames++;
if(System.currentTimeMillis() - timer > 1000){
frames = 0;
updates = 0;
timer += 1000;
blink =! blink;
}
hideColon(pg);
return pg;
}
void updateAnimation(){
int deltaM = parent.minute();
int deltaH = parent.hour();
long now = System.nanoTime();
delta += (now - lastTime) / ns;
lastTime = now;
while (delta >= 1){
for(Pieces Piece : h1.piece) Piece.stepDown();
for(Pieces Piece : h2.piece) Piece.stepDown();
for(Pieces Piece : div.piece) Piece.stepDown();
for(Pieces Piece : m1.piece) Piece.stepDown();
for(Pieces Piece : m2.piece) Piece.stepDown();
if(deltaM != m){
int ddM=divide(deltaM,10);
int dM=divide(m,10);
m=deltaM;
if(ddM!=dM){
m1.destroy();
parent.println("Destroying m1");
if(dM<6)m1.setNumber(ddM);
else m1.setNumber(0);
}
m2.destroy();
m2.setNumber(m - ddM * 10);
if(deltaH != h){
m1.destroy();
m2.destroy();
h1.destroy();
h2.destroy();
showTime();
}
}
delta--;
updates++;
}
}
void resetAnimation(){
m1.destroy();
m2.destroy();
div.destroy();
h1.destroy();
h2.destroy();
timer = System.currentTimeMillis() + 2000;
showTime();
}
public void showTime(){
h = parent.hour();
m = parent.minute();
s = parent.second();
if(h<10){
h1.setNumber(0);
h2.setNumber(h);
}else if(h >= 10 && h < 20){
h1.setNumber(1);
h2.setNumber(h - 10);
}else{
h1.setNumber(2);
h2.setNumber(h - 20);
}
//Set minutes
int dM=divide(m,10);
if(dM<6)m1.setNumber(dM);
else m1.setNumber(0);
m2.setNumber(m - dM * 10);
div.setNumber(10);
}
public int divide(int a, int b){
int z = 0;
int i = a;
while (i>= b){
i = i - b;
z++;
}return z;
}
public void update(char keyCode) {
//To change body of implemented methods use File | Settings | File Templates.
}
public PGraphics hideColon(PGraphics pg){
if(blink){
int pixels = 4;
int width = xbound;
int height = ybound;
int rows = height/pixels;
int cols = width/pixels;
int offset = 23;
pg.pushStyle();
pg.rectMode(CORNER);
pg.fill(0);
pg.rect(offset * pixels,0,pixels*4,height);
pg.popStyle();
}
return pg;
}
class number{
Shape[] shapes = new Shape[7];
List<Pieces> piece = new ArrayList<Pieces>();
int offset;
int k;
number(int offset){
this.offset = offset;
shapes[0] = new Shape(4, new int[] {8,9,10,11}); // I
shapes[1] = new Shape(3, new int[] {0,3,4,5}); // J
shapes[2] = new Shape(3, new int[] {2,3,4,5}); // L
shapes[3] = new Shape(2, new int[] {0,1,2,3}); // O
shapes[4] = new Shape(4, new int[] {5,6,8,9}); // S
shapes[5] = new Shape(3, new int[] {1,3,4,5,}); // T
shapes[6] = new Shape(4, new int[] {4,5,9,10}); // Z
}
void setNumber(int num){
if (num==0){
zero();
} else if(num==1){
one();
} else if(num==2){
two();
} else if(num==3){
three();
} else if(num==4){
four();
} else if(num==5){
five();
} else if(num==6){
six();
} else if(num==7){
seven();
} else if(num==8){
eight();
} else if(num==9){
nine();
} else if(num==10){
div();
}
}
PGraphics draw(PGraphics pg){
for(Pieces Piece : piece) {
pg = Piece.draw(pg);
Piece.update();
}
return pg;
}
void loadPiece(int i){
piece.add(new Pieces(shapes[i]));
}
void destroy(){
piece.removeAll(piece);
grid.clearOffset(offset);
}
void rotatePiece(int count){
if(!piece.isEmpty()){
Pieces Piece = piece.get(piece.size()-1);
for (int i = 0; i < count; i++) Piece.rotate();
}
}
void movePiece(int x, int y){
if(!piece.isEmpty()){
Pieces Piece = piece.get(piece.size()-1);
Piece.x = x; Piece.y = y;
}
}
void setDestX(int destX){
if(!piece.isEmpty()){
Pieces Piece = piece.get(piece.size()-1);
Piece.destX = destX;
}
}
void setArtificalFloor(int af){
if(!piece.isEmpty()){
Pieces Piece = piece.get(piece.size()-1);
Piece.setArtificalFloor(af);
}
}
void div(){
loadPiece(3);
setArtificalFloor(2);
movePiece(1 + offset, -2);
setDestX(1+offset);
loadPiece(3);
setArtificalFloor(2);
movePiece(1+offset, -10);
setDestX(1+offset);
}
void one(){
loadPiece(2); //New L piece
movePiece(2 + offset, 4);
setDestX(4+offset);
rotatePiece(1);
loadPiece(2);
movePiece(6+ offset, -2);
setDestX(5+offset);
rotatePiece(3);
loadPiece(3);
movePiece(3+ offset, -10);
setDestX(5+offset);
loadPiece(2);
movePiece(2+ offset,-15);
setDestX(4+offset);
rotatePiece(1);
loadPiece(2);
movePiece(6+ offset,-20);
setDestX(5+offset);
rotatePiece(3);
}
void two(){
loadPiece(0);//I
movePiece(3+ offset,0);
setDestX(3+ offset);
loadPiece(1);//J
rotatePiece(2);
movePiece(5+ offset,-5);
setDestX(5+ offset);
loadPiece(0);//I
rotatePiece(1);
movePiece(1+ offset,-10);
setDestX(1+ offset);
loadPiece(2);//L
movePiece(2+ offset,-15);
setDestX(2+ offset);
rotatePiece(1);
loadPiece(0);
movePiece(3+ offset,-19);
setDestX(3+ offset);
loadPiece(2);
movePiece(2+ offset,-23);
setDestX(2+ offset);
rotatePiece(2);
loadPiece(1);
movePiece(5+ offset,-27);
setDestX(5+ offset);
rotatePiece(2);
loadPiece(3);//O
movePiece(6+ offset,-31);
setDestX(6+ offset);
loadPiece(0);
movePiece(3+ offset,-35);
setDestX(3+ offset);
loadPiece(1);
movePiece(5+ offset,-39);
setDestX(5+ offset);
rotatePiece(2);
loadPiece(2);
movePiece(2 + offset,-42);
setDestX(2+ offset);
rotatePiece(2);
}
void three(){
loadPiece(1);
movePiece(3 + offset,0);
setDestX(3+ offset);
loadPiece(3);
movePiece(1 + offset,-5);
setDestX(1+ offset);
loadPiece(1);
rotatePiece(3);
movePiece(4 + offset,-10);
setDestX(4+ offset);
loadPiece(0);
movePiece(2 + offset,-15);
setDestX(2+ offset);
loadPiece(0);
rotatePiece(1);
movePiece(5 + offset,-19);
setDestX(5+ offset);
loadPiece(2);
movePiece(1 + offset,-23);
setDestX(1+ offset);
rotatePiece(2);
loadPiece(1);
movePiece(4 + offset,-27);
setDestX(4+ offset);
rotatePiece(2);
loadPiece(3);
movePiece(5 + offset,-32);
setDestX(5+ offset);
loadPiece(0);
movePiece(2 + offset,-36);
setDestX(2+ offset);
loadPiece(2);
movePiece(1 + offset,-39);
setDestX(1+ offset);
rotatePiece(2);
loadPiece(1);
movePiece(4 + offset,-42);
setDestX(4+ offset);
rotatePiece(2);
}
void four(){
loadPiece(1);
movePiece(5 + offset,0);
setDestX(5 + offset);
rotatePiece(3);
loadPiece(1);
movePiece(4 + offset,-5);
setDestX(4+ offset);
rotatePiece(1);
loadPiece(0);
movePiece(2 + offset,-10);
setDestX(2+ offset);
loadPiece(2);
movePiece(1 + offset,-15);
setDestX(1+ offset);
rotatePiece(2);
loadPiece(1);
movePiece(4 + offset,-19);
setDestX(4+ offset);
rotatePiece(2);
loadPiece(0);
movePiece(5 + offset,-23);
setDestX(5+ offset);
rotatePiece(1);
loadPiece(2);
movePiece(0 + offset,-27);
setDestX(0+ offset);
rotatePiece(1);
loadPiece(0);
movePiece(4 + offset,-31);
setDestX(4+ offset);
rotatePiece(1);
loadPiece(2);
movePiece(1 + offset,-35);
setDestX(1+ offset);
rotatePiece(3);
}
void five(){
loadPiece(1);
movePiece(3 + offset,0);
setDestX(3+ offset);
loadPiece(3);
movePiece(1 + offset,-5);
setDestX(1+ offset);
loadPiece(1);
rotatePiece(3);
movePiece(4 + offset,-10);
setDestX(4+ offset);
loadPiece(0);
movePiece(2 + offset,-15);
setDestX(2+ offset);
loadPiece(0);
rotatePiece(1);
movePiece(5 + offset,-19);
setDestX(5+ offset);
loadPiece(2);
movePiece(1 + offset,-23);
setDestX(1+ offset);
rotatePiece(2);
loadPiece(3);
movePiece(1 + offset,-27);
setDestX(1+ offset);
loadPiece(1);
movePiece(4 + offset,-32);
setDestX(4+ offset);
rotatePiece(2);
loadPiece(0);
movePiece(2 + offset,-36);
setDestX(2+ offset);
loadPiece(2);
movePiece(1 + offset,-39);
setDestX(1+ offset);
rotatePiece(2);
loadPiece(1);
movePiece(4 + offset,-42);
setDestX(4+ offset);
rotatePiece(2);
}
void six(){
loadPiece(1);
movePiece(1 + offset,0);
setDestX(1+ offset);
loadPiece(5);
movePiece(4 + offset,-5);
setDestX(4+ offset);
loadPiece(4);
movePiece(4 + offset,-10);
setDestX(4+ offset);
rotatePiece(1);
loadPiece(1);
movePiece(2 + offset,-15);
setDestX(2+ offset);
loadPiece(5);
movePiece(5 + offset,-20);
setDestX(5+ offset);
rotatePiece(3);
loadPiece(4);
movePiece(3 + offset,-25);
setDestX(3+ offset);
loadPiece(1);
movePiece(1 + offset,-30);
setDestX(1+ offset);
rotatePiece(1);
loadPiece(0);
movePiece(0 + offset,-35);
setDestX(0+ offset);
rotatePiece(1);
loadPiece(1);
movePiece(1 + offset,-40);
setDestX(1+ offset);
rotatePiece(3);
loadPiece(1);
movePiece(0 + offset,-45);
setDestX(0+ offset);
rotatePiece(1);
}
void seven(){
loadPiece(3);
movePiece(5 + offset,0);
setDestX(5+ offset);
loadPiece(2);
movePiece(4 + offset,-5);
setDestX(4+ offset);
rotatePiece(1);
loadPiece(2);
movePiece(5 + offset,-10);
setDestX(5+ offset);
rotatePiece(3);
loadPiece(3);
movePiece(5 + offset,-15);
setDestX(5+ offset);
loadPiece(0);
movePiece(2 + offset,-19);
setDestX(2+ offset);
loadPiece(2);
movePiece(1 + offset,-24);
setDestX(1+ offset);
rotatePiece(2);
loadPiece(1);
movePiece(4 + offset,-27);
setDestX(4+ offset);
rotatePiece(2);
}
void eight(){
loadPiece(1);
movePiece(1 + offset,0);
setDestX(1+ offset);
loadPiece(2);
movePiece(4 + offset,-5);
setDestX(4+ offset);
loadPiece(6);
movePiece(1 + offset,-10);
setDestX(1+ offset);
loadPiece(4);
movePiece(4 + offset,-14);
setDestX(4+ offset);
loadPiece(1);
rotatePiece(3);
movePiece(5 + offset,-18);
setDestX(5+ offset);
loadPiece(2);
rotatePiece(1);
movePiece(0 + offset,-23);
setDestX(0+ offset);
loadPiece(0);
movePiece(2 + offset,-26);
setDestX(2+ offset);
loadPiece(2);
movePiece(3 + offset,-31);
setDestX(3+ offset);
loadPiece(5);
rotatePiece(3);
movePiece(1 + offset,-36);
setDestX(1+ offset);
loadPiece(5);
movePiece(2 + offset,-40);
setDestX(2+ offset);
loadPiece(1);
movePiece(0 + offset,-43);
setDestX(0+ offset);
rotatePiece(1);
loadPiece(0);
movePiece(5 + offset,-46);
setDestX(5+ offset);
rotatePiece(1);
loadPiece(2);
movePiece(4 + offset,-49);
setDestX(4+ offset);
rotatePiece(3);
}
void nine(){
loadPiece(1);
movePiece(5 + offset,0);
setDestX(5+ offset);
rotatePiece(3);
loadPiece(1);
movePiece(4 + offset,-5);
setDestX(4+ offset);
rotatePiece(1);
loadPiece(0);
movePiece(2 + offset,-10);
setDestX(2+ offset);
loadPiece(5);
movePiece(0 + offset,-14);
setDestX(0+ offset);
rotatePiece(1);
loadPiece(2);
movePiece(3 + offset,-19);
setDestX(3+ offset);
loadPiece(0);
movePiece(5 + offset,-24);
setDestX(5+ offset);
rotatePiece(1);
loadPiece(4);
movePiece(0 + offset,-28);
setDestX(0+ offset);
rotatePiece(1);
loadPiece(1);
movePiece(3 + offset,-32);
setDestX(3+ offset);
rotatePiece(2);
loadPiece(1);
movePiece(4 + offset,-36);
setDestX(4+ offset);
rotatePiece(2);
loadPiece(5);
movePiece(1 + offset,-40);
setDestX(1+ offset);
rotatePiece(2);
}
void zero(){
//Note setDestX sets the real value, movepiece x sets the start point
loadPiece(0);
movePiece(offset,0);
setDestX(2+offset);
loadPiece(0);
rotatePiece(1);
movePiece(offset+2,-5);
setDestX(6+offset);
loadPiece(5);
movePiece(offset-2,-10);
setDestX(2+offset);
loadPiece(6);
movePiece(offset+1,-15);
setDestX(1+offset);
rotatePiece(1);
loadPiece(5);
movePiece(offset+2,-20);
setDestX(5+offset);
rotatePiece(3);
loadPiece(6);
movePiece(offset,-25);
setDestX(1+offset);
rotatePiece(1);
loadPiece(6);
rotatePiece(1);
movePiece(offset+3,-30);
setDestX(5+offset);
loadPiece(5);
rotatePiece(1);
movePiece(offset-1,-35);
setDestX(1+offset);
loadPiece(6);
movePiece(offset+2,-40);
setDestX(2+offset);
loadPiece(5);
rotatePiece(1);
movePiece(offset+4,-45);
setDestX(5+offset);
loadPiece(1);
movePiece(offset+4,-50);
setDestX(5+offset);
rotatePiece(2);
loadPiece(0);
movePiece(offset+4,-55);
setDestX(4+offset);
}
}
class Shape{
boolean[][] matrix;
int c;
Shape (int n,int [] blockNums) {
matrix = new boolean[n][n];
for (int x = 0; x<n; x++){
for (int y=0; y<n; y++){
matrix[x][y] = false;
}
}
for (int i=0; i<blockNums.length;i++){
matrix[blockNums[i]%n][blockNums[i]/n] = true;
}
for (int x = 0; x<n; x++){
for (int y=0; y<n; y++){
// parent.print(matrix[x][y]? 1:0) ;
}//parent.println();
}
}
Shape(Shape other){
matrix = new boolean[other.matrix.length][other.matrix.length];
for (int x=0; x<matrix.length;x++){
for(int y=0;y<matrix.length;y++) {
matrix[x][y] = other.matrix[x][y];
}
}
}
}
class Grid {
int width, height;
int rows, cols;
int pixels = 4;
boolean[][] pieces;
int artificalFloor = 2;
int animateCount = -1;
Grid(){
this.width = xbound;
this.height = ybound;
this.rows = height/pixels;
this.cols = width/pixels;
pieces = new boolean[cols][rows];
for (int i=0;i<cols;i++){
for (int j=0;j<rows;j++){
pieces[i][j] = false;
}
}
}
void clear(){
for (int i=0;i<cols;i++){
for (int j=0;j<rows;j++){
pieces[i][j] = false;
}
}
}
void clearOffset(int offset){
for(int i = offset; i<offset+8;i++){
for (int j=0;j<rows;j++){
pieces[i][j]=false;
}
}
}
PGraphics drawAnimation(PGraphics pg){
pg.fill(128);
pg.noStroke();
pg.rect(0,0,width,height);
//pg.fill(255);
for (int i=0;i<cols;i++){
for (int j=0;j<rows;j++){
fillSquare(i,j, pieces[i][j], pg);
}
}
return pg;
}
PGraphics fillSquare(int col, int row, boolean c, PGraphics pg){
if (col<0||col>=cols||row<0||row>=rows){return pg;}
int px = c ? 255 : 0;
pg.fill(px);
pg.strokeWeight(1);
pg.stroke(0);
pg.rect(col*(width/cols),row*(height/rows),width/cols,height/rows);
return pg;
}
void loadPiece(int x, int y){
pieces[x][y]=true;
}
void eraseCleared(){
}
boolean isOccupied(int x, int y){
boolean b;
if (y<0 && x< cols && x >= 0){
return false;
}
return (x >= cols || x < 0 || y>= rows - artificalFloor || pieces[x][y] != false);
}
}
class Pieces{
//Here's where we declare each of the shapes
Shape shape;
int x, y;
int destX, destY;
int finalRow;
int artificalFloor = 0;
Pieces(Shape shape){
this.shape = new Shape(shape);
x = 3;
y = -2;
finalRow = getFinalRow();
}
void stepDown(){
if (y >= finalRow) {
endTurn();
} else if (y >= finalRow - artificalFloor){
endTurn();
}else {
y ++;
//TetrisClock.this.currTime = 0;
}
if(y>0){
if(x<destX){
x++;
}
if(x>destX){
x--;
}
}
}
void update(){
finalRow = getFinalRow();
}
void setArtificalFloor(int af){
artificalFloor = af;
}
void left(){x--;}
void right(){x++;}
void down(){y++;}
void rotate(){
boolean[][] ret = new boolean[shape.matrix.length][shape.matrix.length];
for (int x=0;x<ret.length;x++){
for(int y=0;y<ret.length;y++){
ret[x][y]=shape.matrix[y][ret.length-1-x];
}
}
if (isLegal(ret, x, y)) {
shape.matrix = ret;
update();
} else if (isLegal(ret, x + 1, y) || isLegal(ret, x + 2, y)) {
shape.matrix = ret;
right();
} else if (isLegal(ret, x - 1, y) || isLegal(ret, x - 2, y)) {
shape.matrix = ret;
left();
}
}
void move(){
if (x > destX){
}
}
int getFinalRow() {
int start = parent.max(0, y);
int row = start;
while (row <= grid.rows) {
if (!isLegal(shape.matrix, x, row)){
return row - 1;
}
row++;
}
return - 1;
}
void endTurn(){
for (int i=0; i < shape.matrix.length; i++){
for (int j=0; j < shape.matrix.length; j++){
if (shape.matrix[i][j] && j + y >= 0){
grid.pieces[i + x][j+y] = true;
}
}
}
update();
}
boolean isLegal(boolean [][] matrix, int col, int row){
for (int i=0; i< matrix.length; i++){
for (int j=0; j < matrix.length; j++){
if (matrix[i][j] && grid.isOccupied(col + i, row + j)){
return false;
}
}
}
return true;
}
PGraphics draw(PGraphics pg){
for (int i=0; i<shape.matrix.length;i++){
for (int j=0;j<shape.matrix.length;j++){
if (shape.matrix[i][j]){
pg = grid.fillSquare(x+i,y+j,shape.matrix[i][j],pg);
}
}
}
return pg;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment